/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { margin: 0; }

/* ── Prevent horizontal scroll on all viewports ── */
/* Note: overflow-x on html breaks position:fixed on iOS Safari — body only */
body { overflow-x: hidden; }
html { -webkit-text-size-adjust: 100%; }

/* ── Header ── */
.refuge-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(180deg, rgba(8,1,4,.60) 0%, rgba(8,1,4,.28) 55%, transparent 100%);
    padding: 20px 0;
    transition: background .4s ease, backdrop-filter .4s ease, padding .4s ease;
}
.refuge-header.is-scrolled {
    background: rgba(11, 2, 5, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.30);
    border-bottom: 1px solid rgba(201, 169, 110, 0.10);
}
.refuge-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.refuge-header__logo a {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    letter-spacing: 4px;
    color: #f3ede4;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.refuge-header__logo-img {
    height: 65px;
    width: auto;
    max-width: 180px;
    display: block;
    object-fit: contain;
}
.refuge-header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.refuge-header__nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}
.refuge-header__nav a {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #cbb89d;
    text-decoration: none;
    transition: color .3s ease;
    white-space: nowrap;
    position: relative;
    padding-bottom: 4px;
}
.refuge-header__nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #D4AF37;
    transition: width .3s ease;
}
.refuge-header__nav a:hover,
.refuge-header__nav a.active { color: #fff; }
.refuge-header__nav a:hover::after,
.refuge-header__nav a.active::after { width: 100%; }
.refuge-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #cbb89d;
    text-decoration: none;
    padding: 12px 28px;
    border: 1px solid #cbb89d;
    transition: all .3s ease;
}
.refuge-btn:hover {
    background: #cbb89d;
    color: #2e2a28;
}

/* ── Hero ── */
.refuge-hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
}
.refuge-hero__slides,
.refuge-hero__slide {
    position: absolute;
    inset: 0;
}
.refuge-hero__slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
}
.refuge-hero__slide.is-active {
    opacity: 1;
}
.refuge-hero__lcp-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
    transition: opacity 1.4s ease-in-out;
}
.refuge-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(40,36,34,.55) 0%, rgba(40,36,34,.25) 45%, rgba(40,36,34,.55) 100%);
}
.refuge-hero__vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse at center, rgba(0,0,0,.55) 0%, rgba(0,0,0,.18) 45%, rgba(0,0,0,0) 72%);
}
.refuge-hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
}
.refuge-hero__title {
    margin: 0;
    color: #f5efe6;
    line-height: 1;
}
.refuge-hero__title-line {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: clamp(38px, 7vw, 92px);
    letter-spacing: 6px;
    text-transform: uppercase;
}
.refuge-hero__title-script {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(30px, 5.5vw, 70px);
    color: #cbb89d;
    margin-top: 8px;
    letter-spacing: 1px;
}
.refuge-hero__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 18px 0 14px;
    width: 100%;
    max-width: 560px;
}
.refuge-hero__divider-line {
    height: 1px;
    flex: 1;
    background: rgba(203,184,157,.6);
}
.refuge-hero__divider-mark {
    color: #cbb89d;
    font-size: 16px;
}
.refuge-hero__subtitle {
    margin: 0;
    color: #e6ddd0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(11px, 1.4vw, 14px);
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 2;
}
.refuge-hero__dots {
    position: absolute;
    right: 36px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.refuge-hero__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1px solid #cbb89d;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background .3s ease;
}
.refuge-hero__dot.is-active {
    background: #cbb89d;
}
@media (max-width: 640px) {
    .refuge-hero__dots { right: 18px; }
}



/* =========================================================
   SECTION: Why Choose Refuge
   ========================================================= */
.refuge-why {
    background: #F7F3ED;
    height: 100vh;
    padding: 48px 0;
    display: flex;
    align-items: center;
    color: #1A1A1A;
}
.refuge-why__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ---- Head ---- */
.refuge-why__head {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 20px;
}
.refuge-why__eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #A18B6B;
    margin-bottom: 18px;
}
.refuge-why__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    font-size: clamp(24px, 2.7vw, 38px);
    line-height: 1.18;
    margin: 0;
    color: #1A1A1A;
}
.refuge-why__title em { font-style: italic; color: #4B0F1A; }
.refuge-why__head-right p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.85;
    color: #4a4540;
    margin: 8px 0 0;
}
.refuge-why__divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    max-width: 240px;
}
.refuge-why__divider .line { height: 1px; flex: 1; background: #D4AF37; }
.refuge-why__divider .mark { color: #D4AF37; font-size: 14px; }

/* ---- Grid ---- */
.refuge-why__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    grid-template-rows: auto auto;
    gap: 28px;
}
.refuge-why__card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    padding: 28px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform .5s ease, box-shadow .5s ease;
}
.refuge-why__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(26,26,26,.16);
}
.refuge-why__num {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    letter-spacing: 2px;
    opacity: .7;
    margin-bottom: 14px;
}
.refuge-why__card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 26px;
    margin: 0 0 12px;
}
.refuge-why__card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0;
}
.refuge-why__card-icon {
    position: absolute;
    top: 36px;
    right: 40px;
    font-size: 20px;
    opacity: .5;
}

/* Feature card */
.refuge-why__card--feature {
    grid-row: 1 / span 2;
    min-height: 380px;
    color: #F7F3ED;
}
.refuge-why__card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .8s ease;
}
.refuge-why__card--feature:hover .refuge-why__card-img { transform: scale(1.05); }
.refuge-why__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(75,15,26,0.92) 0%, rgba(75,15,26,0.45) 50%, rgba(75,15,26,0) 100%);
}
.refuge-why__card-body { position: relative; z-index: 2; }
.refuge-why__card--feature .refuge-why__num { color: #D4AF37; opacity: 1; }

/* Gold card */
.refuge-why__card--gold {
    background: linear-gradient(135deg, #D4AF37 0%, #c39a2c 100%);
    color: #2a2412;
}
.refuge-why__card--gold .refuge-why__num,
.refuge-why__card--gold .refuge-why__card-icon { color: #4B0F1A; opacity: .8; }

/* Maroon card */
.refuge-why__card--maroon {
    background: linear-gradient(135deg, #4B0F1A 0%, #390a14 100%);
    color: #F7F3ED;
}
.refuge-why__card--maroon .refuge-why__num,
.refuge-why__card--maroon .refuge-why__card-icon { color: #D4AF37; opacity: 1; }

/* ---- Responsive ---- */
@media (max-width: 900px){
    .refuge-why { height: auto; min-height: 0; padding: 80px 0; }
    .refuge-why__head { grid-template-columns: 1fr; gap: 28px; }
    .refuge-why__grid { grid-template-columns: 1fr; }
    .refuge-why__card--feature { grid-row: auto; min-height: 380px; }
}
/* /SECTION: Why Choose Refuge */

/* =========================================================
   SECTION: About Us
   ========================================================= */
.refuge-about {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F7F3ED;
    overflow: hidden;
    text-align: center;
}
.refuge-about::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 580px; height: 580px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212,175,55,.11) 0%, rgba(161,139,107,.05) 40%, transparent 70%);
    border: 1px solid rgba(212,175,55,.16);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}
.refuge-about__inner {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.refuge-about__eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #A18B6B;
    margin-bottom: 14px;
}
.refuge-about__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    font-size: clamp(26px, 3.6vw, 50px);
    line-height: 1.2;
    color: #1A1A1A;
    margin: 0;
    max-width: 820px;
}
.refuge-about__years { color: #D4AF37; }
.refuge-about__title em { font-style: italic; color: #4B0F1A; }
.refuge-about__divider {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 220px;
    margin: 20px 0;
}
.refuge-about__divider .line { height: 1px; flex: 1; background: #D4AF37; }
.refuge-about__divider .mark { color: #D4AF37; font-size: 14px; }
.refuge-about__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.85;
    color: #4a4540;
    max-width: 800px;
    margin: 0 0 28px;
}
.refuge-about__btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1A1A1A;
    background: #D4AF37;
    padding: 15px 40px;
    border-radius: 4px;
    text-decoration: none;
    transition: transform .4s ease, box-shadow .4s ease, background .4s ease;
}
.refuge-about__btn:hover {
    background: #4B0F1A;
    color: #F7F3ED;
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(75,15,26,.28);
}
/* /SECTION: About Us */

/* =========================================================
   SECTION: Stats Counter
   ========================================================= */
.refuge-stats {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
}
.refuge-stats__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
/* Royal maroon wash over the background image */
.refuge-stats__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(75,15,26,.94) 0%, rgba(45,8,15,.97) 100%);
}
.refuge-stats__inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.refuge-stats__card {
    background: #4B0F1A;
    border: 1px solid rgba(212,175,55,.25);
    border-radius: 14px;
    padding: 40px 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

.refuge-stats__item {
    position: relative;
    text-align: center;
    padding: 6px 20px;
}
/* Gold divider lines between items */
.refuge-stats__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 70px;
    background: linear-gradient(180deg, transparent, rgba(212,175,55,.55), transparent);
}

.refuge-stats__num {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1;
    color: #D4AF37;
    margin-bottom: 10px;
    letter-spacing: 2px;
}
.refuge-stats__label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #F7F3ED;
    opacity: .75;
}

@media (max-width: 900px){
    .refuge-stats { padding: 80px 0; }
    .refuge-stats__card {
        grid-template-columns: repeat(2, 1fr);
        gap: 44px 0;
        padding: 44px 24px;
    }
    /* remove vertical lines, use clean 2x2 grid */
    .refuge-stats__item::after { display: none !important; }
}
/* /SECTION: Stats Counter */

/* =========================================================
   SECTION: Glimpse Gallery
   ========================================================= */
.refuge-glimpse {
    background: #F7F3ED;
    padding: 110px 0;
}
.refuge-glimpse__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ---- Head ---- */
.refuge-glimpse__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.refuge-glimpse__eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #A18B6B;
    margin-bottom: 8px;
}
.refuge-glimpse__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    font-size: clamp(30px, 3.6vw, 50px);
    line-height: 1.2;
    color: #1A1A1A;
    margin: 0;
}
.refuge-glimpse__title em { font-style: italic; color: #4B0F1A; }
.refuge-glimpse__divider {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 240px;
    margin: 12px 0;
}
.refuge-glimpse__divider .line { height: 1px; flex: 1; background: #D4AF37; }
.refuge-glimpse__divider .mark { color: #D4AF37; font-size: 14px; }
.refuge-glimpse__intro {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #4a4540;
    margin: 0;
}

/* ---- Grid ---- */
.refuge-glimpse__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.refuge-glimpse__card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 3 / 3.6;
    box-shadow: 0 16px 40px rgba(26,26,26,.10);
    transition: transform .5s ease, box-shadow .5s ease;
}
.refuge-glimpse__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(75,15,26,.22);
}
.refuge-glimpse__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .9s ease;
}
.refuge-glimpse__card:hover .refuge-glimpse__img { transform: scale(1.06); }
.refuge-glimpse__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
                rgba(26,26,26,0) 38%,
                rgba(75,15,26,.55) 72%,
                rgba(26,12,15,.92) 100%);
}
.refuge-glimpse__body {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    padding: 32px 30px;
    color: #F7F3ED;
}
.refuge-glimpse__body h3 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 24px;
    margin: 0 0 8px;
    color: #F7F3ED;
}
.refuge-glimpse__venue {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #D4AF37;
    letter-spacing: .5px;
}
.refuge-glimpse__loc {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #e6ddd0;
    opacity: .85;
    margin-top: 2px;
}

/* ---- CTA ---- */
.refuge-glimpse__cta {
    text-align: center;
    margin-top: 56px;
}
.refuge-glimpse__btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37;
    background: transparent;
    border: 1px solid #D4AF37;
    padding: 16px 42px;
    border-radius: 4px;
    text-decoration: none;
    transition: all .4s ease;
}
.refuge-glimpse__btn:hover {
    background: #D4AF37;
    color: #1A1A1A;
}

/* ---- Responsive ---- */
@media (max-width: 900px){
    .refuge-glimpse { padding: 80px 0; }
    .refuge-glimpse__grid { grid-template-columns: 1fr; gap: 22px; }
    .refuge-glimpse__card { aspect-ratio: 3 / 3.4; }
}
/* /SECTION: Glimpse Gallery */

/* =========================================================
   SECTION: Wedding Inspiration
   ========================================================= */
.refuge-inspo {
    position: relative;
    padding: 72px 24px;
    background: radial-gradient(circle at 50% 0%, #5d1622 0%, #4B0F1A 55%, #38090f 100%);
    overflow: hidden;
    text-align: center;
}

/* Mandala PNG watermarks — screen blend drops the dark bg, filter shifts lines to gold */
.refuge-inspo__mandala {
    position: absolute;
    top: 50%;
    width: 400px;
    height: 440px;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url('../images/Fower.png');
    mix-blend-mode: screen;
    filter: sepia(1) saturate(8) hue-rotate(5deg) brightness(2);
    opacity: 0.30;
}
.refuge-inspo__mandala--left  { left: -160px; transform: translateY(-50%); }
.refuge-inspo__mandala--right { right: -160px; transform: translateY(-50%) scaleX(-1); }

.refuge-inspo__inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

/* Head */
.refuge-inspo__head {
    max-width: 780px;
    margin: 0 auto 40px;
}
.refuge-inspo__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #D4AF37;
    font-weight: 500;
    margin-bottom: 14px;
}
.refuge-inspo__eyebrow::before,
.refuge-inspo__eyebrow::after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, rgba(212,175,55,0), #D4AF37, rgba(212,175,55,0));
}
.refuge-inspo__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 500;
    color: #F7F3ED;
    line-height: 1.2;
    margin: 0 auto;
}
.refuge-inspo__title em {
    font-style: italic;
    color: #D4AF37;
}
.refuge-inspo__divider {
    display: block;
    width: 90px;
    height: 1px;
    background: linear-gradient(90deg, rgba(212,175,55,0), #D4AF37, rgba(212,175,55,0));
    border: 0;
    margin: 14px auto 16px;
}
.refuge-inspo__intro {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(247,243,237,.82);
    max-width: 660px;
    margin: 0 auto;
}

/* Circles */
.refuge-inspo__circles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
}
.refuge-inspo__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 130px;
}
.refuge-inspo__ring {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(90deg, rgba(212,175,55,0) 0%, #D4AF37 28%, #F1D87A 50%, #D4AF37 72%, rgba(212,175,55,0) 100%);
    box-shadow: 0 8px 24px rgba(0,0,0,.32);
    transition: transform .4s ease, box-shadow .4s ease;
}
.refuge-inspo__item:hover .refuge-inspo__ring {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 36px rgba(0,0,0,.45);
}
.refuge-inspo__ring-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #4B0F1A;
    display: flex;
    align-items: center;
    justify-content: center;
}
.refuge-inspo__ring-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.refuge-inspo__item:hover .refuge-inspo__ring-inner img {
    transform: scale(1.08);
}
.refuge-inspo__label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #E9D9A7;
    margin-top: 14px;
    letter-spacing: .02em;
    transition: color .3s ease;
}
.refuge-inspo__item:hover .refuge-inspo__label {
    color: #F1D87A;
}

/* "And More" dot item */
.refuge-inspo__item--more .refuge-inspo__ring-inner {
    background: linear-gradient(145deg, #5d1622, #38090f);
}
.refuge-inspo__dots {
    display: flex;
    gap: 10px;
}
.refuge-inspo__dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    display: block;
}

@media (max-width: 900px) {
    .refuge-inspo__mandala { width: 260px; height: 290px; opacity: .18; }
    .refuge-inspo__mandala--left  { left: -120px; }
    .refuge-inspo__mandala--right { right: -120px; }
}
@media (max-width: 600px) {
    .refuge-inspo { padding: 50px 16px; }
    .refuge-inspo__item, .refuge-inspo__ring { width: 112px; }
    .refuge-inspo__ring { height: 112px; }
}
/* /SECTION: Wedding Inspiration */

/* =========================================================
   SECTION: Wedding Services
   ========================================================= */
.refuge-services {
    background: #F7F3ED;
    padding: 110px 0;
}
.refuge-services__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ---- Head ---- */
.refuge-services__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.refuge-services__eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #A18B6B;
    margin-bottom: 18px;
}
.refuge-services__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    font-size: clamp(30px, 3.6vw, 50px);
    line-height: 1.2;
    color: #1A1A1A;
    margin: 0;
}
.refuge-services__title em { font-style: italic; color: #4B0F1A; }
.refuge-services__divider {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 240px;
    margin: 26px 0;
}
.refuge-services__divider .line { height: 1px; flex: 1; background: #D4AF37; }
.refuge-services__divider .mark { color: #D4AF37; font-size: 14px; }
.refuge-services__intro {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #4a4540;
    margin: 0;
}

/* ---- Grid ---- */
.refuge-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.refuge-services__card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    overflow: hidden;
    transition: transform .5s ease, box-shadow .5s ease;
}
/* Gold accent bar that grows on hover */
.refuge-services__card::after {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 0;
    height: 4px;
    background: #D4AF37;
    border-radius: 4px 4px 0 0;
    transform: scaleX(.4);
    transform-origin: left;
    opacity: .8;
    transition: transform .5s ease, opacity .5s ease;
}
.refuge-services__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(75,15,26,.14);
}
.refuge-services__card:hover::after {
    transform: scaleX(1);
    opacity: 1;
}
.refuge-services__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212,175,55,.10), rgba(75,15,26,.05));
    color: #D4AF37;
    margin-bottom: 22px;
    border: 1px solid rgba(212,175,55,.18);
    transition: background .3s ease, border-color .3s ease;
    flex-shrink: 0;
}
.refuge-services__icon .ti {
    font-size: 26px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.refuge-services__card:hover .refuge-services__icon {
    background: linear-gradient(135deg, rgba(212,175,55,.20), rgba(75,15,26,.10));
    border-color: rgba(212,175,55,.38);
}
.refuge-services__card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.35;
    color: #1A1A1A;
    margin: 0 0 12px;
}
.refuge-services__card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #5a544e;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 900px){
    .refuge-services { padding: 80px 0; }
    .refuge-services__grid { grid-template-columns: 1fr; gap: 20px; }
}


/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: #1e060d;
    color: #cbb89d;
    font-family: 'Montserrat', sans-serif;
    border-top: 1px solid rgba(212,175,55,.18);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 40px 0;
}

/* Brand title */
/* Gold accent bar at top of footer */
.footer-gold-bar {
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37 30%, #f0d060 50%, #D4AF37 70%, transparent);
    margin-bottom: 44px;
    opacity: .75;
}

.footer-title {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(212,175,55,.15);
}
.footer-brand-img {
    height: 90px;
    width: auto;
    max-width: 320px;
    display: block;
    margin: 0 auto 12px;
    object-fit: contain;
    filter: brightness(1.05);
}
.footer-brand-name {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(13px, 1.6vw, 20px);
    letter-spacing: 2px;
    color: #cbb89d;
    text-align: center;
}
.footer-title-link {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(13px, 1.6vw, 20px);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f3ede4;
    text-decoration: none;
    transition: color .3s ease;
    display: block;
    margin-bottom: 20px;
}
.footer-title-link:hover { color: #D4AF37; }

/* Tagline row with flanking diamond-and-line divider */
.footer-title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.footer-title-line {
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,.6));
}
.footer-title-divider .footer-title-line:last-child {
    background: linear-gradient(90deg, rgba(212,175,55,.6), transparent);
}
.footer-title-diamond {
    color: #D4AF37;
    font-size: 8px;
    opacity: .8;
}
.footer-title-tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 15px;
    letter-spacing: 2px;
    color: rgba(212,175,55,.7);
}

/* Top row — 3 columns */
.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.1fr;
    gap: 48px;
    margin-bottom: 52px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(212,175,55,.12);
}

/* Services mini-grid */
.footer-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
}
.footer-services h4 {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 500;
    color: #f3ede4;
    margin: 0 0 6px;
    letter-spacing: .5px;
}
.footer-services p {
    font-size: 12px;
    line-height: 1.6;
    color: #8a7a6a;
    margin: 0;
}

/* Quick links */
.footer-links-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37;
    margin: 0 0 8px;
    padding-bottom: 12px;
    position: relative;
}
.footer-links-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, #D4AF37, rgba(212,175,55,0));
}
.footer-links-col ul {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
}
.footer-links-col a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #9a8a7a;
    text-decoration: none;
    margin-bottom: 10px;
    letter-spacing: .5px;
    transition: color .3s ease;
}
.footer-links-col a::before {
    content: '◆';
    font-size: 5px;
    color: rgba(212,175,55,.5);
    flex-shrink: 0;
    transition: color .3s ease;
}
.footer-links-col a:hover { color: #D4AF37; }
.footer-links-col a:hover::before { color: #D4AF37; }

/* Contact column */
.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37;
    text-decoration: none;
    padding: 12px 24px;
    border: 1px solid rgba(212,175,55,.5);
    text-align: center;
    transition: all .3s ease;
    margin-bottom: 6px;
}
.contact-btn:hover {
    background: #D4AF37;
    color: #1e060d;
}
.footer-phone,
.footer-email {
    font-size: 13px;
    color: #9a8a7a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 9px;
    transition: color .3s ease;
}
.footer-phone i,
.footer-email i {
    font-size: 11px;
    opacity: .7;
    color: #D4AF37;
}
.footer-phone:hover,
.footer-email:hover { color: #D4AF37; }

/* Presence / locations */
.footer-presence {
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(212,175,55,.12);
}
.footer-presence > h4 {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37;
    margin: 0 0 8px;
    padding-bottom: 12px;
    position: relative;
    display: inline-block;
}
.footer-presence > h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, #D4AF37, rgba(212,175,55,0));
}
.footer-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
}
.location-box {
    flex: 1 1 160px;
    font-size: 12.5px;
    line-height: 1.8;
    color: #9a8a7a;
    padding: 18px 20px 16px;
    border: 1px solid rgba(212,175,55,.14);
    border-top: 2px solid rgba(212,175,55,.45);
    background: rgba(255,255,255,.02);
    transition: border-color .3s ease, background .3s ease, border-top-color .3s ease;
}
.location-box strong {
    display: block;
    color: #f3ede4;
    font-size: 13px;
    letter-spacing: .5px;
    margin-bottom: 4px;
}
.location-link {
    text-decoration: none;
    cursor: pointer;
}
.location-link:hover {
    border-color: rgba(212,175,55,.35);
    border-top-color: #D4AF37;
    background: rgba(212,175,55,.06);
}

/* SEO link strip */
.footer-seo-links {
    padding: 30px 0 26px;
    margin-bottom: 30px;
}
.footer-seo-links__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
}
.footer-seo-links__line {
    flex: 1;
    height: 1px;
    background: rgba(212,175,55,.22);
}
.footer-seo-links__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(212,175,55,.55);
    white-space: nowrap;
}
.footer-seo-links__body {
    display: grid;
    grid-template-columns: 220px 1px 1fr;
    gap: 0 32px;
    align-items: start;
}
.footer-seo-links__vsep {
    background: rgba(212,175,55,.18);
    align-self: stretch;
}
.footer-seo-links__dest {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer-seo-links__planners {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.footer-seo-links__pgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px 24px;
}
.footer-seo-links__cat {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 10px;
    font-weight: 600;
}
.footer-seo-links__dest a,
.footer-seo-links__pgrid a {
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    color: rgba(247,243,237,.5);
    text-decoration: none;
    transition: color .22s;
    line-height: 1;
    display: block;
}
.footer-seo-links__dest a:hover,
.footer-seo-links__pgrid a:hover {
    color: #D4AF37;
}
@media (max-width: 900px) {
    .footer-seo-links__pgrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .footer-seo-links__body { grid-template-columns: 1fr; }
    .footer-seo-links__vsep { display: none; }
    .footer-seo-links__pgrid { grid-template-columns: repeat(2, 1fr); }
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    gap: 20px;
}
.footer-bottom p {
    font-size: 12px;
    letter-spacing: .5px;
    color: #5a4e44;
    margin: 0;
}
.footer-socials {
    display: flex;
    gap: 16px;
}
.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(212,175,55,.2);
    color: #9a8a7a;
    font-size: 13px;
    text-decoration: none;
    transition: all .3s ease;
}
.footer-socials a:hover {
    border-color: #D4AF37;
    color: #D4AF37;
    background: rgba(212,175,55,.08);
}

/* ── Footer Responsive ───────────────────────────────────── */

/* Tablet: 2-col — services full width, links + contact side by side */
@media (max-width: 960px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-services { grid-column: 1 / -1; }
}

/* Tablet-narrow: stack links + contact */
@media (max-width: 680px) {
    .footer-container { padding: 44px 20px 0; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-services { grid-column: auto; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 14px; }
    .footer-locations { flex-wrap: wrap; }
    .location-box { flex: 1 1 calc(50% - 8px); min-width: 140px; }
    .contact-btn { display: block; width: 100%; box-sizing: border-box; }
}

/* Mobile: full single-column */
@media (max-width: 480px) {
    .footer-container { padding: 36px 16px 0; }
    .footer-brand-img { height: 70px; }
    .footer-top { gap: 24px; }
    .footer-services { grid-template-columns: 1fr; gap: 18px; }
    .footer-locations { flex-direction: column; }
    .location-box { flex: unset; width: 100%; }
    .footer-title-link { font-size: 13px; letter-spacing: 1px; }
    .footer-bottom { padding: 18px 0; }
    .footer-seo-links__pgrid { grid-template-columns: 1fr 1fr; }
}

/* Small phones */
@media (max-width: 360px) {
    .footer-container { padding: 30px 12px 0; }
    .footer-brand-img { height: 60px; max-width: 200px; }
    .footer-title-tagline { display: none; }
    .footer-title-line { display: none; }
    .footer-title-diamond { display: none; }
    .footer-services h4 { font-size: 13px; }
    .footer-services p { font-size: 11px; }
    .footer-seo-links__pgrid { grid-template-columns: 1fr; }
    .footer-bottom p { font-size: 11px; }
}
/* /SECTION: Wedding Services */


/* =========================================================
   CONTACT PAGE  (contact.php)
   ========================================================= */

@keyframes goldShimmer {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* ── Shared helpers ── */
.cw-eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 14px;
}
.cw-eyebrow--dark { color: #A18B6B; }

.cw-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.2;
    color: #1A1A1A;
    margin: 0 0 28px;
}
.cw-section-title em { font-style: italic; color: #D4AF37; }

/* ── Hero ── */
.cw-hero {
    position: relative;
    height: 56vh;
    min-height: 400px;
    background: #4B0F1A;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.cw-hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(107,22,39,.55) 0%, rgba(30,6,13,.6) 100%);
}
.cw-hero__inner {
    position: relative;
    z-index: 2;
    padding: 0 24px;
}
.cw-hero__inner .cw-eyebrow {
    background: linear-gradient(90deg,
        #7d5c10 0%,
        #c9931a 15%,
        #f5d97a 30%,
        #fef0a0 42%,
        #d4af37 55%,
        #f5d97a 68%,
        #c9931a 82%,
        #7d5c10 100%
    );
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: goldShimmer 4s linear infinite;
}
.cw-hero__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(34px, 5.5vw, 68px);
    font-weight: 500;
    color: #F7F3ED;
    line-height: 1.1;
    margin: 0 0 20px;
}
.cw-hero__title em {
    font-style: italic;
    background: linear-gradient(90deg,
        #7d5c10 0%,
        #c9931a 12%,
        #f5d97a 26%,
        #fef0a0 38%,
        #e8c84a 50%,
        #fef0a0 62%,
        #f5d97a 74%,
        #c9931a 88%,
        #7d5c10 100%
    );
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: goldShimmer 4s linear infinite;
}
.cw-hero__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 18px;
}
.cw-hero__line {
    height: 1px;
    width: 60px;
    background: rgba(212,175,55,.5);
}
.cw-hero__diamond { color: #D4AF37; font-size: 7px; }
.cw-hero__sub {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(12px, 1.3vw, 14px);
    letter-spacing: 2px;
    color: #cbb89d;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ── Main — 2-col layout ── */
.cw-main {
    background: #F7F3ED;
    padding: 90px 0 100px;
}
.cw-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 72px;
    align-items: start;
}

/* ── Form ── */
.cw-form-wrap {
    background: #fff;
    padding: 52px 48px;
    box-shadow: 0 8px 60px rgba(75,15,26,.08);
    border-top: 3px solid #D4AF37;
}
.cw-form { margin-top: 8px; }
.cw-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.cw-form__group {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
}
.cw-form__group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #4B0F1A;
    margin-bottom: 8px;
    font-weight: 500;
}
.cw-form__group label span { color: #D4AF37; }
.cw-form__group input,
.cw-form__group select,
.cw-form__group textarea {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    color: #1A1A1A;
    background: #faf8f5;
    border: 1px solid #e0d8ce;
    padding: 13px 16px;
    outline: none;
    transition: border-color .25s ease, box-shadow .25s ease;
    width: 100%;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}
.cw-form__group input::placeholder,
.cw-form__group textarea::placeholder { color: #b0a090; }
.cw-form__group input:focus,
.cw-form__group select:focus,
.cw-form__group textarea:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212,175,55,.10);
    background: #fff;
}
.cw-form__group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A18B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}
.cw-form__group textarea { resize: vertical; min-height: 130px; }

.cw-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #f5efe6;
    background: #4B0F1A;
    border: none;
    padding: 16px 36px;
    cursor: pointer;
    transition: background .3s ease, gap .3s ease;
    width: 100%;
    justify-content: center;
    margin-top: 6px;
}
.cw-submit:hover { background: #6b1627; gap: 18px; }
.cw-submit i { font-size: 13px; }

.cw-form__note {
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    color: #9a8a7a;
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.cw-form__note i { color: #D4AF37; font-size: 11px; }

/* ── Success message ── */
.cw-success {
    background: #fff;
    border: 1px solid rgba(212,175,55,.3);
    border-top: 3px solid #D4AF37;
    padding: 48px 36px;
    text-align: center;
    position: relative;
    transition: opacity .4s ease, transform .4s ease;
    margin-bottom: 28px;
}
.cw-success__close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 13px;
    color: #9a8a7a;
    cursor: pointer;
}
.cw-success__icon {
    font-size: 10px;
    color: #D4AF37;
    margin-bottom: 16px;
    letter-spacing: 6px;
}
.cw-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #4B0F1A;
    margin: 0 0 10px;
}
.cw-success p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    color: #5a4e44;
    line-height: 1.7;
}
.cw-success__timer {
    height: 2px;
    background: rgba(212,175,55,.2);
    margin: 22px 0 10px;
    border-radius: 2px;
    overflow: hidden;
}
.cw-success__bar {
    height: 100%;
    width: 100%;
    background: #D4AF37;
    transition: width 5s linear;
}
.cw-success__note {
    font-size: 11px !important;
    color: #aaa !important;
    margin-top: 6px !important;
}

/* ── Detail cards ── */
.cw-details-wrap { padding-top: 4px; }
.cw-details-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    color: #6a5e54;
    line-height: 1.75;
    margin: -16px 0 28px;
}
.cw-detail-cards { display: flex; flex-direction: column; gap: 14px; }
.cw-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    padding: 20px 22px;
    border-left: 2px solid rgba(212,175,55,.4);
    transition: border-color .3s ease;
}
.cw-detail-card:hover { border-left-color: #D4AF37; }

.cw-detail-card--combined {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: center;
    padding: 0;
    overflow: hidden;
}
.cw-combined-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 22px;
}
.cw-combined-divider {
    width: 1px;
    height: 60px;
    background: rgba(212,175,55,.2);
    align-self: center;
}

.cw-detail-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,175,55,.1);
    border: 1px solid rgba(212,175,55,.25);
    color: #D4AF37;
    font-size: 14px;
    flex-shrink: 0;
}
.cw-detail-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: #1A1A1A;
    margin: 0 0 4px;
}
.cw-detail-info p,
.cw-detail-info a {
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    color: #6a5e54;
    line-height: 1.7;
    margin: 0;
    text-decoration: none;
}
.cw-detail-info a:hover { color: #4B0F1A; }
.cw-maps-link {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    margin-top: 6px !important;
    font-size: 11.5px !important;
    color: #D4AF37 !important;
    transition: color .3s ease;
}
.cw-maps-link:hover { color: #4B0F1A !important; }

/* Social */
.cw-social { margin-top: 28px; }
.cw-social h4 {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #4B0F1A;
    margin: 0 0 14px;
}
.cw-social-icons { display: flex; gap: 10px; }
.cw-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(75,15,26,.2);
    color: #6a5e54;
    font-size: 13px;
    text-decoration: none;
    transition: all .3s ease;
}
.cw-social-icons a:hover {
    background: #4B0F1A;
    border-color: #4B0F1A;
    color: #D4AF37;
}

/* ── FAQ ── */
.cw-faq {
    background: #fff;
    padding: 100px 0;
}
.cw-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.cw-faq-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 500;
    line-height: 1.18;
    color: #1A1A1A;
    margin: 0 0 12px;
}
.cw-faq-title em { font-style: italic; color: #D4AF37; }
.cw-faq-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #6a5e54;
    margin-bottom: 36px;
}
.cw-faq-item {
    border-bottom: 1px solid rgba(75,15,26,.1);
}
.cw-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 20px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: #1A1A1A;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: color .3s ease;
}
.cw-faq-question:hover { color: #4B0F1A; }
.cw-faq-icon {
    font-size: 12px;
    color: #D4AF37;
    flex-shrink: 0;
    transition: transform .35s ease;
}
.cw-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}
.cw-faq-answer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.85;
    color: #6a5e54;
    padding: 0 0 20px;
    margin: 0;
}

/* FAQ image */
.cw-faq-right { position: relative; }
.cw-faq-img-wrap {
    position: relative;
    border-top: 3px solid #D4AF37;
    overflow: hidden;
}
.cw-faq-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}
.cw-faq-img-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: rgba(30,6,13,.88);
    border: 1px solid rgba(212,175,55,.35);
    padding: 18px 24px;
    text-align: center;
}
.cw-faq-img-badge-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: #D4AF37;
    line-height: 1;
}
.cw-faq-img-badge-num sup { font-size: 22px; }
.cw-faq-img-badge-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #cbb89d;
    margin-top: 4px;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .cw-container { grid-template-columns: 1fr; gap: 48px; }
    .cw-faq-container { grid-template-columns: 1fr; gap: 48px; }
    .cw-faq-right { order: -1; }
    .cw-faq-img-wrap img { height: 340px; }
}
@media (max-width: 640px) {
    .cw-main { padding: 60px 0 70px; }
    .cw-container { padding: 0 20px; }
    .cw-form-wrap { padding: 36px 24px; }
    .cw-form__row { grid-template-columns: 1fr; }
    .cw-faq-container { padding: 0 20px; }
    .cw-faq { padding: 70px 0; }
    .cw-detail-card--combined { grid-template-columns: 1fr; }
    .cw-combined-divider { width: 100%; height: 1px; }
}


/* =========================================================
   SECTION: FAQ
   ========================================================= */
.refuge-faq {
    background: #F7F3ED;
    padding: 110px 0 40px;
}
.refuge-faq__inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ---- Head ---- */
.refuge-faq__head {
    text-align: center;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.refuge-faq__eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #A18B6B;
    margin-bottom: 18px;
}
.refuge-faq__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    font-size: clamp(30px, 3.6vw, 50px);
    line-height: 1.2;
    color: #1A1A1A;
    margin: 0;
}
.refuge-faq__title em { font-style: italic; color: #4B0F1A; }
.refuge-faq__divider {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 240px;
    margin: 26px 0;
}
.refuge-faq__divider .line { height: 1px; flex: 1; background: #D4AF37; }
.refuge-faq__divider .mark { color: #D4AF37; font-size: 14px; }
.refuge-faq__intro {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #4a4540;
    margin: 0;
}

/* ---- Accordion ---- */
.refuge-faq__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.refuge-faq__item {
    background: #fff;
    border: 1px solid rgba(161,139,107,.22);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .4s ease, box-shadow .4s ease;
}
.refuge-faq__item.is-open {
    border-color: rgba(212,175,55,.55);
    box-shadow: 0 18px 44px rgba(75,15,26,.10);
}
.refuge-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 26px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #1A1A1A;
    transition: color .3s ease;
}
.refuge-faq__item.is-open .refuge-faq__q { color: #4B0F1A; }
.refuge-faq__q:hover { color: #4B0F1A; }

/* Plus / minus icon */
.refuge-faq__icon {
    position: relative;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #D4AF37;
    transition: background .3s ease;
}
.refuge-faq__icon::before,
.refuge-faq__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #D4AF37;
    transition: transform .35s ease, background .3s ease;
}
.refuge-faq__icon::before { width: 13px; height: 1.6px; transform: translate(-50%, -50%); }
.refuge-faq__icon::after  { width: 1.6px; height: 13px; transform: translate(-50%, -50%); }
.refuge-faq__item.is-open .refuge-faq__icon { background: #D4AF37; }
.refuge-faq__item.is-open .refuge-faq__icon::before,
.refuge-faq__item.is-open .refuge-faq__icon::after { background: #4B0F1A; }
.refuge-faq__item.is-open .refuge-faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }

/* Answer */
.refuge-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
}
.refuge-faq__a p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.85;
    color: #5a544e;
    margin: 0;
    padding: 0 30px 28px;
}

/* ---- Responsive ---- */
@media (max-width: 900px){
    .refuge-faq { padding: 80px 0 40px; }
    .refuge-faq__q { font-size: 15.5px; padding: 22px 22px; }
    .refuge-faq__a p { padding: 0 22px 24px; }
}
/* /SECTION: FAQ */


/* =========================================================
   GLOBAL RESPONSIVE SYSTEM
   ========================================================= */

/* ── WhatsApp floating button ── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4B0F1A;
    border: 1px solid rgba(212,175,55,.5);
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(75,15,26,.5);
    transition: background .3s ease, box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}
.wa-float:hover {
    background: #6b1627;
    border-color: #D4AF37;
    box-shadow: 0 12px 48px rgba(75,15,26,.65);
    transform: scale(1.1);
}
.wa-float__icon {
    font-size: 24px;
    color: #D4AF37;
    line-height: 1;
}
.wa-float__label { display: none; }

@media (max-width: 640px) {
    .wa-float { bottom: 20px; right: 16px; width: 50px; height: 50px; }
}

/* ── Mobile nav ── */
.refuge-header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 8px;
    min-width: 44px;
    min-height: 44px;
    z-index: 201;
    flex-shrink: 0;
}
.refuge-header__hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #cbb89d;
    transition: transform .35s ease, opacity .35s ease, background .3s ease;
    transform-origin: center;
}
/* Hamburger → X */
.refuge-header__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.refuge-header__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.refuge-header__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.refuge-mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(14, 3, 7, 0.97);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .35s ease, visibility .35s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow-y: auto;
    padding: 80px 24px 40px;
}
.refuge-mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.refuge-mobile-nav__logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.refuge-mobile-nav__logo img {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
}

.refuge-mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: 1px solid rgba(203,184,157,.25);
    color: #cbb89d;
    font-size: 16px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: border-color .3s, color .3s, background .3s;
}
.refuge-mobile-nav__close:hover {
    border-color: #D4AF37;
    color: #D4AF37;
    background: rgba(212,175,55,.08);
}

.refuge-mobile-nav__links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}
.refuge-mobile-nav__links li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(203,184,157,.08);
}
.refuge-mobile-nav__links li:first-child { border-top: 1px solid rgba(203,184,157,.08); }
.refuge-mobile-nav__links a {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(22px, 5vw, 36px);
    letter-spacing: 3px;
    color: #f3ede4;
    text-decoration: none;
    padding: 14px 40px;
    transition: color .3s ease, background .3s ease;
}
.refuge-mobile-nav__links a:hover,
.refuge-mobile-nav__links a.active {
    color: #D4AF37;
    background: rgba(212,175,55,.05);
}

.refuge-mobile-nav__btn {
    display: inline-block;
    margin-top: 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D4AF37;
    border: 1px solid rgba(212,175,55,.5);
    padding: 14px 40px;
    text-decoration: none;
    transition: all .3s ease;
}
.refuge-mobile-nav__btn:hover {
    background: #D4AF37;
    color: #1e060d;
}

/* ── 1100px — tighten desktop nav ── */
@media (max-width: 1100px) {
    .refuge-header__inner { padding: 0 28px; }
    .refuge-header__nav ul { gap: 22px; }
    .refuge-header__nav a { font-size: 10.5px; letter-spacing: 1.5px; }
    .refuge-header__logo-img { height: 46px; }
}

/* ── 900px — tablet / nav collapse ── */
@media (max-width: 900px) {

    /* Header */
    .refuge-header__nav,
    .refuge-header__cta { display: none; }
    .refuge-header__hamburger { display: flex; }
    .refuge-mobile-nav { display: flex; }
    .refuge-header__inner { padding: 0 20px; }

    /* Why — remove viewport-locked height */
    .refuge-why { height: auto; min-height: 0; padding: 80px 0; }
    .refuge-why__inner { padding: 0 24px; }

    /* About — remove viewport-locked height */
    .refuge-about { height: auto; min-height: 0; padding: 80px 24px; }

    /* Stats inner padding */
    .refuge-stats__inner { padding: 0 24px; }

    /* Glimpse inner padding */
    .refuge-glimpse__inner { padding: 0 24px; }
    .refuge-glimpse__head { padding: 0 0 36px; }

    /* Inspo circles: wrap and center */
    .refuge-inspo__circles { flex-wrap: wrap; justify-content: center; gap: 24px; }

    /* Services */
    .refuge-services__inner { padding: 0 24px; }
    .refuge-services__head { margin-bottom: 36px; }

    /* Contact hero */
    .cw-hero { height: 46vh; min-height: 320px; }
    .cw-hero__inner { padding: 0 24px; }

    /* About — shrink decorative ring so it can't overflow */
    .refuge-about::before { width: 360px; height: 360px; }

    /* Story badge — flush to image edges on single-column layout */
    .ws-story-badge { right: 0; bottom: -14px; }

    /* Why head right paragraph — slightly smaller on tablet */
    .refuge-why__head-right p { font-size: 15px; }

    /* Wedding listing head padding */
    .wl-container { padding: 0 24px; }
    .wl-head { margin-bottom: 40px; }
}

/* ── 768px — small tablet ── */
@media (max-width: 768px) {

    /* About text */
    .refuge-about__text { font-size: 14px; }

    /* Stats: single column on mobile */
    .refuge-stats__card {
        grid-template-columns: 1fr 1fr;
        gap: 36px 0;
    }

    /* Glimpse title */
    .refuge-glimpse__title { font-size: clamp(22px, 5vw, 32px); }

    /* Inspo mandala: hide on small screens */
    .refuge-inspo__mandala { display: none; }

    /* Services head text */
    .refuge-services__title { font-size: clamp(24px, 4.5vw, 36px); }

    /* Footer: reduce section heading gap */
    .footer-container { padding: 50px 24px 0; }
}

/* =========================================================
   BLOG LISTING  (blog.php)
   ========================================================= */
.bl-listing {
    background: #F7F3ED;
    padding: 90px 0 110px;
}
.bl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Filter tabs */
.bl-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}
.bl-filter {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 22px;
    border: 1px solid rgba(75,15,26,.2);
    background: transparent;
    color: #6a5e54;
    cursor: pointer;
    transition: all .3s ease;
}
.bl-filter:hover,
.bl-filter.is-active {
    background: #4B0F1A;
    color: #D4AF37;
    border-color: #4B0F1A;
}

/* Grid */
.bl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

/* Card */
.bl-card {
    background: #fff;
    overflow: hidden;
    transition: box-shadow .4s ease, transform .4s ease;
    border-bottom: 3px solid transparent;
    display: flex;
    flex-direction: column;
}
.bl-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(75,15,26,.12);
    border-bottom-color: #D4AF37;
}
.bl-card__img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    text-decoration: none;
}
.bl-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform .6s ease;
}
.bl-card:hover .bl-card__img { transform: scale(1.05); }
.bl-card__category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(30,6,13,.78);
    border: 1px solid rgba(212,175,55,.4);
    color: #D4AF37;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 12px;
    backdrop-filter: blur(6px);
}
.bl-card__body { padding: 28px 32px 32px; display: flex; flex-direction: column; flex: 1; }
.bl-card__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.bl-card__date,
.bl-card__read {
    font-family: 'Montserrat', sans-serif;
    font-size: 10.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #A18B6B;
}
.bl-card__date::after {
    content: '◆';
    display: inline-block;
    margin-left: 14px;
    font-size: 5px;
    vertical-align: middle;
    color: rgba(212,175,55,.5);
}
.bl-card__title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 19px;
    line-height: 1.35;
    margin: 0 0 12px;
}
.bl-card__title a {
    color: #1A1A1A;
    text-decoration: none;
    transition: color .3s ease;
}
.bl-card__title a:hover { color: #4B0F1A; }
.bl-card__excerpt {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.8;
    color: #6a5e54;
    margin: 0 0 22px;
    flex: 1;
}
.bl-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #4B0F1A;
    text-decoration: none;
    border-bottom: 1px solid rgba(75,15,26,.25);
    padding-bottom: 3px;
    transition: color .3s ease, border-color .3s ease;
}
.bl-card__link:hover { color: #D4AF37; border-color: #D4AF37; }
.bl-card__link i { font-size: 9px; transition: transform .3s ease; }
.bl-card__link:hover i { transform: translateX(4px); }

@media (max-width: 960px) { .bl-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
    .bl-listing { padding: 60px 0 80px; }
    .bl-container { padding: 0 20px; }
    .bl-grid { grid-template-columns: 1fr; gap: 28px; }
}


/* =========================================================
   BLOG SINGLE  (blog-single.php)
   ========================================================= */
.bs-hero {
    position: relative;
    height: 81vh;
    min-height: 550px;
    overflow: hidden;
}
.bs-hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; }
.bs-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30,6,13,.88) 0%, rgba(30,6,13,.25) 55%, rgba(30,6,13,.08) 100%);
}
.bs-hero__content {
    position: absolute;
    bottom: 52px;
    left: 0; right: 0;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}
.bs-hero__category {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(212,175,55,.3);
    padding-bottom: 6px;
}
.bs-hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4.5vw, 54px);
    font-weight: 500;
    color: #F7F3ED;
    line-height: 1.15;
    margin: 0 0 16px;
}
.bs-hero__meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #cbb89d;
}
.bs-hero__meta span + span::before {
    content: ' ◆ ';
    color: rgba(212,175,55,.4);
    font-size: 6px;
    vertical-align: middle;
    margin: 0 8px;
}

/* Article */
.bs-article { background: #fff; padding: 80px 0 100px; }
.bs-article-inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 40px;
}
.bs-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.6;
    color: #2e2a28;
    font-style: italic;
    margin: 0 0 36px;
}
.bs-body p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: #4a4540;
    margin: 0 0 26px;
}
.bs-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 500;
    color: #1A1A1A;
    margin: 46px 0 18px;
}
.bs-body h2::before { content: '◆ '; color: #D4AF37; font-size: 10px; vertical-align: middle; margin-right: 4px; }
.bs-body blockquote {
    border-left: 3px solid #D4AF37;
    padding: 14px 28px;
    margin: 36px 0;
    background: rgba(212,175,55,.04);
}
.bs-body blockquote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(17px, 1.8vw, 22px);
    font-style: italic;
    color: #4B0F1A;
    line-height: 1.6;
    margin: 0;
}
.bs-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(16px, 1.7vw, 20px);
    font-weight: 500;
    color: #1A1A1A;
    margin: 34px 0 12px;
}
.bs-body h3::before { content: '— '; color: #D4AF37; }
.bs-body ul,
.bs-body ol {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}
.bs-body ul li,
.bs-body ol li {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.85;
    color: #4a4540;
    padding: 8px 0 8px 24px;
    position: relative;
    border-bottom: 1px solid rgba(212,175,55,.1);
}
.bs-body ul li:last-child,
.bs-body ol li:last-child { border-bottom: none; }
.bs-body ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 12px;
    color: #D4AF37;
    font-size: 6px;
}
.bs-body ol { counter-reset: bs-counter; }
.bs-body ol li::before {
    content: counter(bs-counter);
    counter-increment: bs-counter;
    position: absolute;
    left: 0;
    top: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 600;
    color: #A18B6B;
    line-height: 1;
}
.bs-body strong {
    font-weight: 600;
    color: #1A1A1A;
}
.bs-body a {
    color: #4B0F1A;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(212,175,55,.45);
    transition: color .2s ease, text-decoration-color .2s ease;
}
.bs-body a:hover {
    color: #D4AF37;
    text-decoration-color: rgba(212,175,55,.8);
}
/* Tables */
.bs-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
}
.bs-body thead tr { background: #4B0F1A !important; }
.bs-body thead th {
    padding: 12px 16px !important;
    text-align: left !important;
    color: #F7F3ED !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #D4AF37 !important;
}
.bs-body tbody tr { border-bottom: 1px solid rgba(212,175,55,.15) !important; }
.bs-body tbody tr:nth-child(even) { background: #faf8f5 !important; }
.bs-body tbody td {
    padding: 11px 16px !important;
    color: #4a4540 !important;
    vertical-align: top;
    border-bottom: 1px solid rgba(212,175,55,.1) !important;
}
.bs-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 48px 0;
}
.bs-divider .line { height: 1px; flex: 1; background: rgba(212,175,55,.3); }
.bs-divider .mark { color: #D4AF37; font-size: 10px; }

/* Office info card inside articles */
.bs-office-card {
    display: flex;
    gap: 0;
    border: 1px solid rgba(212,175,55,.25);
    margin: 28px 0 8px;
    overflow: hidden;
}
.bs-office-card__accent {
    width: 4px;
    background: #D4AF37;
    flex-shrink: 0;
}
.bs-office-card__body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #faf8f5;
    flex: 1;
}
.bs-office-card__row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}
.bs-office-card__row a {
    text-decoration: none;
    color: inherit;
}
.bs-office-card__icon {
    width: 30px;
    height: 30px;
    background: rgba(75,15,26,.07);
    border: 1px solid rgba(212,175,55,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.bs-office-card__icon i {
    font-size: 11px;
    color: #D4AF37;
}
.bs-office-card__label {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #A18B6B;
    display: block;
    margin-bottom: 3px;
}
.bs-office-card__value {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #4a4540;
    line-height: 1.6;
    display: block;
}

/* Wedding stories grid inside articles */
.bs-weddings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 28px 0 12px;
}
.bs-wedding-card {
    display: block;
    text-decoration: none;
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}
.bs-wedding-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.bs-wedding-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(8,1,4,.80) 100%);
}
.bs-wedding-card__info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 16px 16px 18px;
}
.bs-wedding-card__couple {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 500;
    color: #F7F3ED;
    line-height: 1.3;
    margin-bottom: 4px;
}
.bs-wedding-card__venue {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 9.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #D4AF37;
}
@media (max-width: 600px) {
    .bs-weddings-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .bs-wedding-card { aspect-ratio: 3/4; }
}

/* CTA strip */
.bs-cta-strip {
    background: #4B0F1A;
    padding: 90px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.bs-cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212,175,55,.07) 0%, transparent 70%);
    pointer-events: none;
}
.bs-cta-strip__inner {
    position: relative;
    max-width: 620px;
    margin: 0 auto;
}
.bs-cta-strip__ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
}
.bs-cta-strip__ornament span {
    display: block;
    width: 60px;
    height: 1px;
    background: rgba(212,175,55,.35);
}
.bs-cta-strip__ornament i {
    color: #D4AF37;
    font-size: 10px;
}
.bs-cta-strip h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 500;
    color: #F7F3ED;
    line-height: 1.2;
    white-space: nowrap;
    margin: 0 auto 14px;
}
.bs-cta-strip h3::before {
    content: '◆';
    display: block;
    color: #D4AF37;
    font-size: 10px;
    letter-spacing: 6px;
    margin-bottom: 16px;
    opacity: .7;
}
.bs-cta-strip p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.85;
    color: rgba(247,243,237,.65);
    margin: 0 auto 36px;
    max-width: 560px;
}
.bs-btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1A1A1A;
    background: #D4AF37;
    padding: 15px 44px;
    text-decoration: none;
    transition: background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.bs-btn:hover {
    background: #F7F3ED;
    color: #4B0F1A;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,.25);
}

/* Related */
.bs-related { background: #F7F3ED; padding: 80px 0 100px; }
.bs-related-inner { max-width: 860px; margin: 0 auto; padding: 0 40px; }
.bs-related-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #A18B6B;
    text-align: center;
    margin-bottom: 10px;
}
.bs-related-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 500;
    color: #1A1A1A;
    text-align: center;
    margin: 0 0 48px;
}
.bs-related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

@media (max-width: 768px) {
    .bs-hero__content { padding: 0 24px; bottom: 32px; }
    .bs-article-inner { padding: 0 24px; }
    .bs-related-inner { padding: 0 24px; }
    .bs-related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .bs-hero { height: 69vh; min-height: 425px; }
    .bs-article { padding: 56px 0 70px; }
    .bs-article-inner { padding: 0 20px; }
    .bs-related { padding: 56px 0 70px; }
    .bs-related-inner { padding: 0 20px; }
    .bs-cta-strip { padding: 48px 24px; }
}


/* =========================================================
   WEDDINGS LISTING  (weddings.php)
   ========================================================= */
.wl-listing { background: #F7F3ED; padding: 90px 0 60px; }
.wl-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

.wl-head { margin-bottom: 56px; }
.wl-head-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #A18B6B;
    margin-bottom: 12px;
}
.wl-head-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 500;
    color: #1A1A1A;
    line-height: 1.2;
    margin: 0 0 14px;
}
.wl-head-title em { font-style: italic; color: #4B0F1A; }
.wl-head-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #6a5e54;
    line-height: 1.7;
    max-width: 520px;
    margin: 0;
}

/* Grid */
.wl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Card */
.wl-card {
    position: relative;
    display: block;
    text-decoration: none;
    background: #1a0a0d;
    overflow: hidden;
}
.wl-card__img-wrap {
    overflow: hidden;
    aspect-ratio: 3/4;
    position: relative;
}
.wl-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s ease;
    filter: brightness(0.82);
}
.wl-card:hover .wl-card__img { transform: scale(1.06); filter: brightness(0.72); }
.wl-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30,6,13,.92) 0%, transparent 55%);
    transition: background .4s ease;
}
.wl-card:hover .wl-card__overlay {
    background: linear-gradient(to top, rgba(30,6,13,.96) 0%, rgba(30,6,13,.3) 65%, transparent 100%);
}
.wl-card__badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(30,6,13,.72);
    border: 1px solid rgba(212,175,55,.4);
    color: #D4AF37;
    font-family: 'Montserrat', sans-serif;
    font-size: 8.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 12px;
    backdrop-filter: blur(6px);
}
.wl-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 28px 32px;
}
.wl-card__loc {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 9.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 8px;
}
.wl-card__loc i { font-size: 9px; }
.wl-card__couple {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 2.8vw, 32px);
    font-weight: 500;
    color: #F7F3ED;
    line-height: 1.1;
    margin: 0 0 8px;
}
.wl-card__sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #cbb89d;
    margin: 0 0 16px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s ease .05s, transform .35s ease .05s;
}
.wl-card:hover .wl-card__sub { opacity: 1; transform: translateY(0); }
.wl-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 9.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37;
    border-bottom: 1px solid rgba(212,175,55,.4);
    padding-bottom: 2px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s ease .12s, transform .35s ease .12s;
}
.wl-card:hover .wl-card__cta { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) { .wl-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 600px) {
    .wl-listing { padding: 60px 0 80px; }
    .wl-container { padding: 0 20px; }
    .wl-grid { grid-template-columns: 1fr; gap: 24px; }
    .wl-card__img-wrap { aspect-ratio: 4/3; }
}


/* =========================================================
   WEDDING SINGLE  (wedding-single.php)
   ========================================================= */
.ws-hero {
    position: relative;
    height: 90vh;
    min-height: 540px;
    overflow: hidden;
}
.ws-hero__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ws-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30,6,13,.9) 0%, rgba(30,6,13,.12) 55%, rgba(30,6,13,.04) 100%);
}
.ws-hero__content {
    position: absolute;
    bottom: 64px;
    left: 0; right: 0;
    text-align: center;
    padding: 0 40px;
}
.ws-hero__eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 16px;
}
.ws-hero__couple {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 7vw, 88px);
    font-weight: 400;
    color: #F7F3ED;
    line-height: 1;
    margin: 0 0 18px;
}
.ws-hero__couple em { font-style: italic; color: #D4AF37; }
.ws-hero__date {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #cbb89d;
}

/* Details bar */
.ws-details-bar {
    background: #1e060d;
    border-bottom: 1px solid rgba(212,175,55,.15);
}
.ws-details-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.ws-detail-item {
    padding: 28px 30px;
    border-right: 1px solid rgba(212,175,55,.1);
}
.ws-detail-item:last-child { border-right: none; }
.ws-detail-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #5a4e44;
    margin-bottom: 6px;
}
.ws-detail-value {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    color: #F7F3ED;
}

/* Story */
.ws-story { background: #fff; padding: 90px 0 100px; }
.ws-story-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.ws-story-image { position: relative; margin-bottom: 24px; }
.ws-story-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
    border-top: 3px solid #D4AF37;
}
.ws-story-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: #4B0F1A;
    border: 2px solid rgba(212,175,55,.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.ws-story-badge-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    color: #D4AF37;
    line-height: 1;
}
.ws-story-badge-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 7.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #cbb89d;
    margin-top: 4px;
}
.ws-story-text { padding-top: 8px; }
.ws-story-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #A18B6B;
    margin-bottom: 14px;
}
.ws-story-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 500;
    line-height: 1.2;
    color: #1A1A1A;
    margin: 0 0 24px;
}
.ws-story-title em { font-style: italic; color: #4B0F1A; }
.ws-story-body p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14.5px;
    line-height: 1.9;
    color: #4a4540;
    margin: 0 0 20px;
}
.ws-story-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 28px 0;
    width: 160px;
}
.ws-story-divider .line { height: 1px; flex: 1; background: #D4AF37; }
.ws-story-divider .mark { color: #D4AF37; font-size: 8px; }
.ws-story-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(17px, 1.8vw, 21px);
    font-style: italic;
    color: #4B0F1A;
    border-left: 2px solid #D4AF37;
    padding-left: 20px;
    margin: 28px 0;
    line-height: 1.6;
}

/* Gallery */
.ws-gallery { background: #F7F3ED; padding: 90px 0; }
.ws-gallery-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.ws-gallery-head { text-align: center; margin-bottom: 48px; }
.ws-gallery-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #A18B6B;
    margin-bottom: 10px;
}
.ws-gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 500;
    color: #1A1A1A;
    margin: 0;
}
.ws-gallery-title em { font-style: italic; color: #4B0F1A; }
.ws-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 12px;
}
.ws-gallery-item { overflow: hidden; }
.ws-gallery-item:first-child { grid-row: 1 / 3; }
.ws-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
    filter: brightness(0.88);
}
.ws-gallery-item:hover img { transform: scale(1.04); filter: brightness(1); }

/* CTA */
.ws-cta { background: #4B0F1A; padding: 80px 40px; text-align: center; }
.ws-cta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 500;
    color: #F7F3ED;
    margin: 0 0 12px;
}
.ws-cta p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #cbb89d;
    margin: 0 0 30px;
}
.ws-cta-btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D4AF37;
    border: 1px solid rgba(212,175,55,.5);
    padding: 15px 40px;
    text-decoration: none;
    transition: all .3s ease;
}
.ws-cta-btn:hover { background: #D4AF37; color: #1e060d; }

/* Wedding single responsive */
@media (max-width: 960px) {
    .ws-details-inner { grid-template-columns: 1fr 1fr; }
    .ws-detail-item:nth-child(2) { border-right: none; }
    .ws-story-inner { grid-template-columns: 1fr; gap: 48px; }
    .ws-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .ws-gallery-item:first-child { grid-row: auto; }
    .ws-gallery-item { height: 260px; }
}
@media (max-width: 640px) {
    .ws-hero { height: 80vh; }
    .ws-hero__content { padding: 0 20px; bottom: 40px; }
    .ws-details-inner { grid-template-columns: 1fr 1fr; padding: 0 20px; }
    .ws-detail-item { padding: 20px 16px; }
    .ws-detail-value { font-size: 14px; }
    .ws-story-inner { padding: 0 20px; }
    .ws-story-image img { height: 320px; }
    .ws-story-badge { width: 76px; height: 76px; right: 16px; bottom: -12px; }
    .ws-gallery-inner { padding: 0 20px; }
    .ws-gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .ws-gallery-item { height: 240px; }
    .ws-cta { padding: 60px 24px; }
}


/* ── 640px — mobile ── */
@media (max-width: 640px) {

    /* Header */
    .refuge-header__inner { padding: 0 16px; }
    .refuge-header { padding: 16px 0; }
    .refuge-header__logo-img { height: 40px; }

    /* Hero */
    .refuge-hero { min-height: 100svh; }
    .refuge-hero__content { padding: 0 16px; }

    /* Why */
    .refuge-why { padding: 60px 0; }
    .refuge-why__inner { padding: 0 16px; }
    .refuge-why__card { min-height: 160px; }
    .refuge-why__card--feature { min-height: 300px; }

    /* About */
    .refuge-about { padding: 60px 16px; }
    .refuge-about__inner { padding: 0; }
    .refuge-about__text { font-size: 13.5px; }
    .refuge-about__btn { padding: 14px 28px; }

    /* Stats */
    .refuge-stats { padding: 60px 0; }
    .refuge-stats__inner { padding: 0 16px; }
    .refuge-stats__card {
        grid-template-columns: 1fr 1fr;
        padding: 32px 16px;
        gap: 32px 0;
    }

    /* Glimpse */
    .refuge-glimpse { padding: 60px 0; }
    .refuge-glimpse__inner { padding: 0 16px; }

    /* Inspo */
    .refuge-inspo { padding: 50px 16px; }
    .refuge-inspo__item,
    .refuge-inspo__ring { width: 100px; height: 100px; }
    .refuge-inspo__ring-inner { width: 86px; height: 86px; }
    .refuge-inspo__label { font-size: 10px; }

    /* Services */
    .refuge-services { padding: 60px 0; }
    .refuge-services__inner { padding: 0 16px; }

    /* Contact hero */
    .cw-hero { height: auto; min-height: 280px; padding: 80px 16px; }
    .cw-hero__sub { font-size: 12px; letter-spacing: 1px; }
    .cw-faq-img-wrap img { height: 260px; }
    .cw-faq-img-badge { padding: 14px 18px; }
    .cw-faq-img-badge-num { font-size: 32px; }
}


/* Service page styles moved to css/servicepages.css */


/* =========================================================
   MOBILE POLISH — additional fixes for small screens
   ========================================================= */

/* ── 480px ── */
@media (max-width: 480px) {

    /* About decorative ring */
    .refuge-about::before { width: 260px; height: 260px; }

    /* Why section right-col text */
    .refuge-why__head-right p { font-size: 14px; line-height: 1.75; }

    /* Hero couple name — prevent overflow on long names */
    .ws-hero__couple { font-size: clamp(34px, 9vw, 52px); }

    /* Details bar — tighten values */
    .ws-detail-item { padding: 14px 10px; }
    .ws-detail-label { font-size: 8px; letter-spacing: 2px; }
    .ws-detail-value { font-size: 13px; }

    /* Story image — let height flex naturally */
    .ws-story-image img { height: 280px; }
    .ws-story-badge { width: 68px; height: 68px; right: 12px; }
    .ws-story-badge-year { font-size: 20px; }
    .ws-story-badge-label { font-size: 6px; }

    /* Gallery items smaller */
    .ws-gallery-item { height: 210px; }

    /* Mosaic CTA content padding */
    .ws-cta-mosaic__content { padding: 1.2rem; }

    /* FAQ accordion tighter */
    .refuge-faq__q { font-size: 14.5px; padding: 18px 18px; gap: 12px; }
    .refuge-faq__a p { padding: 0 18px 20px; font-size: 14px; }
    .refuge-faq__icon { width: 28px; height: 28px; }
    .refuge-faq__inner { padding: 0 16px; }

    /* Stats number */
    .refuge-stats__num { font-size: clamp(24px, 7vw, 36px); }
    .refuge-stats__label { font-size: 10px; letter-spacing: 1.5px; }

    /* Blog card padding */
    .bl-card__body { padding: 20px 20px 24px; }
    .bl-card__title a { font-size: 17px; }

    /* Blog single hero */
    .bs-hero__content { bottom: 24px; padding: 0 18px; }

    /* Contact form inner padding */
    .cw-form-wrap { padding: 28px 18px; }
    .cw-faq-container { padding: 0 16px; }
    .cw-faq { padding: 56px 0; }

    /* Footer tagline — shorten lines */
    .footer-title-tagline { font-size: 12px; letter-spacing: 1px; }
    .footer-title-line { width: 36px; }
    .footer-title-divider { gap: 8px; }

    /* Touch target minimum on interactive elements */
    .refuge-faq__q,
    .cw-faq-question { min-height: 48px; }
}

/* ── 360px — very small phones ── */
@media (max-width: 360px) {

    /* Header logo */
    .refuge-header__logo a { font-size: 22px; letter-spacing: 2px; }
    .refuge-header__logo-img { height: 34px; max-width: 130px; }
    .refuge-mobile-nav__logo img { height: 36px; }

    /* Hero title lines */
    .refuge-hero__title-line   { font-size: clamp(28px, 9vw, 40px); }
    .refuge-hero__title-script { font-size: clamp(22px, 7vw, 32px); }
    .refuge-hero__subtitle     { font-size: 11px; letter-spacing: 2px; }

    /* About */
    .refuge-about::before { width: 200px; height: 200px; }
    .refuge-about__btn { padding: 12px 24px; font-size: 11px; }

    /* Wedding hero name */
    .ws-hero__couple { font-size: clamp(30px, 10vw, 44px); }
    .ws-hero__content { bottom: 28px; padding: 0 14px; }

    /* Story */
    .ws-story-inner  { padding: 0 14px; }
    .ws-story-image img { height: 240px; }
    .ws-story-badge  { width: 60px; height: 60px; right: 8px; bottom: -10px; }
    .ws-story-badge-year { font-size: 17px; }

    /* Gallery */
    .ws-gallery-inner { padding: 0 14px; }
    .ws-gallery-item  { height: 190px; }

    /* Mosaic */
    .ws-cta-mosaic__title { font-size: 1.7rem; }
    .ws-cta-mosaic__content { padding: 1rem; }

    /* FAQ */
    .refuge-faq__q  { font-size: 13.5px; }
    .refuge-faq__inner { padding: 0 14px; }

    /* Contact */
    .cw-form-wrap { padding: 24px 14px; }
    .cw-container { padding: 0 14px; }
    .cw-faq-container { padding: 0 14px; }

    /* Blog */
    .bl-container { padding: 0 14px; }
    .bl-card__body { padding: 18px 16px 20px; }
    .bs-article-inner { padding: 0 14px; }
    .bs-related-inner { padding: 0 14px; }

    /* Popup form — make it near full screen */
    .rf-pop__body { padding: 22px 16px 18px; }
    .rf-pop__title { font-size: 1.3rem; }

    /* About Us */
    .aw-container { padding: 0 20px; }
    .aw-hero__content { padding: 100px 20px 60px; }
    .aw-hero__btns { flex-direction: column; align-items: center; }
    .aw-believe__grid { grid-template-columns: 1fr; }
    .aw-believe__card { padding: 36px 24px; }
    .aw-journey__canvas { padding: 0 16px 40px 72px; }
    .aw-journey__path-col { left: 16px; }
    .aw-stats { padding: 64px 0; }
    .aw-stats__card { padding: 32px 20px; }
    .aw-stat__num { font-size: 1.6rem; }
    .aw-who { padding: 64px 0; }
    .aw-cta { padding: 70px 0; }
    .aw-journey { padding: 64px 0 32px; }
    .aw-section-head { margin-bottom: 40px; }
}

/* ============================================================
   ABOUT US PAGE  (aw-* prefix)
   Merged from css/about-weddings.css
============================================================ */

/* ── Container ─────────────────────────────────────────── */
.aw-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── Eyebrow ────────────────────────────────────────────── */
.aw-eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #A18B6B;
    margin-bottom: 18px;
}
.aw-eyebrow--light { color: #D4AF37; }

/* ── Section headline ───────────────────────────────────── */
.aw-h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    font-size: clamp(30px, 3.6vw, 50px);
    line-height: 1.2;
    color: #1A1A1A;
    margin: 0;
}
.aw-h2 em {
    font-style: italic;
    color: #4B0F1A;
}
.aw-stats .aw-h2,
.aw-cta .aw-h2   { color: #F7F3ED; }
.aw-cta .aw-h2 em { color: #D4AF37; }

/* ── Gold divider ───────────────────────────────────────── */
.aw-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 240px;
    margin: 20px auto;
}
.aw-divider .line { height: 1px; flex: 1; background: #D4AF37; }
.aw-divider .mark { color: #D4AF37; font-size: 14px; }

/* ── Section head block ─────────────────────────────────── */
.aw-section-head {
    max-width: 760px;
    margin: 0 auto 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ── Buttons ────────────────────────────────────────────── */
.aw-btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 40px;
    border-radius: 4px;
    text-decoration: none;
    transition: all .4s ease;
    cursor: pointer;
}
.aw-btn--gold {
    background: #D4AF37;
    color: #1A1A1A;
    border: 1px solid #D4AF37;
}
.aw-btn--gold:hover {
    background: #4B0F1A;
    color: #F7F3ED;
    border-color: #4B0F1A;
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(75,15,26,.28);
}
.aw-btn--ghost {
    background: transparent;
    color: #D4AF37;
    border: 1px solid rgba(212,175,55,.55);
}
.aw-btn--ghost:hover {
    background: #D4AF37;
    color: #1A1A1A;
}

/* ── Hero photo ─────────────────────────────────────────── */
.aw-hero__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ── Fade-up ─────────────────────────────────────────────── */
.aw-fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s ease, transform .75s ease;
}
.aw-fade-up.aw-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .aw-fade-up { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── Hero ────────────────────────────────────────────────── */
.aw-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #4B0F1A;
}
.aw-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.aw-hero__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.aw-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse at center,
        rgba(12,2,6,.82) 0%,
        rgba(40,8,18,.60) 40%,
        rgba(75,15,26,.28) 75%,
        rgba(75,15,26,.10) 100%
    );
}
.aw-hero__content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    padding: 120px 40px 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.aw-hero__label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 4px;
    color: #D4AF37;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.aw-hero__headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(34px, 5.5vw, 68px);
    font-weight: 500;
    color: #F7F3ED;
    line-height: 1.1;
    margin: 0 0 28px;
}
.aw-hero__headline em {
    font-style: italic;
    background: linear-gradient(90deg,
        #7d5c10 0%,
        #c9931a 12%,
        #f5d97a 26%,
        #fef0a0 38%,
        #e8c84a 50%,
        #fef0a0 62%,
        #f5d97a 74%,
        #c9931a 88%,
        #7d5c10 100%
    );
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: goldShimmer 4s linear infinite;
}
.aw-hero__subline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(13px, 1.4vw, 15px);
    font-weight: 300;
    color: rgba(247,243,237,.80);
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto 40px;
}
.aw-hero__btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Stats ───────────────────────────────────────────────── */
.aw-stats {
    position: relative;
    background: linear-gradient(135deg, rgba(75,15,26,.94) 0%, rgba(45,8,15,.97) 100%);
    padding: 70px 0;
}
.aw-stats__card {
    background: #4B0F1A;
    border: 1px solid rgba(212,175,55,.25);
    border-radius: 14px;
    padding: 40px 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.aw-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.aw-stat {
    position: relative;
    text-align: center;
    padding: 6px 20px;
}
.aw-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 70px;
    background: linear-gradient(180deg, transparent, rgba(212,175,55,.55), transparent);
}
.aw-stat__num {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1;
    color: #D4AF37;
    margin-bottom: 10px;
    letter-spacing: 2px;
}
.aw-stat__lbl {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #F7F3ED;
    opacity: .75;
}

/* ── Who We Are ─────────────────────────────────────────── */
.aw-who {
    padding: 110px 0;
    background: #F7F3ED;
}
.aw-who__body {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: start;
}
.aw-who__text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #4a4540;
    line-height: 1.85;
    margin: 0 0 22px;
}
.aw-who__text p:last-child { margin-bottom: 0; }
.aw-who__photo {
    width: 100%;
    aspect-ratio: 15 / 13;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(75,15,26,.12);
}

/* ── Journey ─────────────────────────────────────────────── */
.aw-journey {
    padding: 110px 0 60px;
    background: #fff;
    overflow: hidden;
}
.aw-journey__subline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: #7a6a60;
    margin: 0;
    line-height: 1.6;
}
.aw-journey__canvas {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px 40px;
}
.aw-journey__start-marker {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #D4AF37;
    padding: 16px 0 0;
    position: relative;
    z-index: 1;
}
.aw-journey__end-marker {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: #7a6a60;
    padding: 16px 0 32px;
    position: relative;
    z-index: 1;
}
.aw-journey__path-col {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.aw-path-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}
.aw-path-ghost {
    fill: none;
    stroke: #ece5da;
    stroke-width: 1.2;
    stroke-linecap: round;
}
.aw-path-drawn {
    fill: none;
    stroke: #D4AF37;
    stroke-width: 1.5;
    stroke-linecap: round;
    filter: drop-shadow(0 0 3px rgba(212,175,55,.45));
}
.aw-node {
    fill: #F7F3ED;
    stroke: #D4AF37;
    stroke-width: 0.8;
    opacity: 0.4;
    transition: opacity .4s, r .4s;
    r: 1.4;
}
.aw-node--bloomed {
    opacity: 1;
    r: 2.2;
    fill: #D4AF37;
}
.aw-branch {
    stroke: #D4AF37;
    stroke-width: 0.5;
    stroke-linecap: round;
    transition: stroke-dashoffset .5s ease;
}
.aw-traveller {
    fill: #D4AF37;
    filter: drop-shadow(0 0 4px rgba(212,175,55,.8));
}
.aw-traveller-pulse {
    fill: rgba(212,175,55,.2);
    animation: aw-pulse 1.8s ease-in-out infinite;
}
@keyframes aw-pulse {
    0%, 100% { opacity: .3; r: 2.5; }
    50%       { opacity: .7; r: 3.5; }
}
.aw-milestone {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: 160px;
    padding: 32px 0;
}
.aw-milestone__gap {
    flex: 0 0 calc(50% + 40px);
}
.aw-milestone__card {
    flex: 1 1 0;
    padding: 28px 28px 28px 32px;
    background: #F7F3ED;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(75,15,26,.08);
    opacity: 0;
    transition: opacity .7s ease, transform .7s ease;
    border-left: none;
    border-right: none;
}
.aw-milestone--left .aw-milestone__card {
    padding: 28px 32px 28px 28px;
    text-align: right;
    transform: translateX(-32px);
    border-right: 3px solid #D4AF37;
}
.aw-milestone--right .aw-milestone__card {
    transform: translateX(32px);
    border-left: 3px solid #D4AF37;
}
.aw-milestone--active .aw-milestone__card {
    opacity: 1;
    transform: translateX(0);
}
.aw-milestone__year {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 500;
    color: #4B0F1A;
    line-height: 1;
    margin-bottom: 6px;
}
.aw-milestone__label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #A18B6B;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.aw-milestone__desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #5a544e;
    line-height: 1.8;
    margin: 0;
}

/* ── What We Believe ─────────────────────────────────────── */
.aw-believe {
    padding: 110px 0;
    background: #F7F3ED;
}
.aw-believe__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.aw-believe__card {
    background: #fff;
    padding: 44px 32px 40px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 4px 28px rgba(75,15,26,.07);
    transition: transform .5s ease, box-shadow .5s ease;
}
.aw-believe__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(75,15,26,.14);
}
.aw-believe__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212,175,55,.10), rgba(75,15,26,.05));
    border: 1px solid rgba(212,175,55,.18);
    border-radius: 14px;
}
.aw-believe__icon svg { width: 36px; height: 36px; }
.aw-believe__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    color: #1A1A1A;
    line-height: 1.3;
    margin: 0 0 14px;
}
.aw-believe__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #5a544e;
    line-height: 1.85;
    margin: 0;
}

/* ── Services Ticker ─────────────────────────────────────── */
.aw-ticker {
    background: linear-gradient(135deg, #4B0F1A 0%, #390a14 100%);
    padding: 22px 0;
    overflow: hidden;
    border-top: 1px solid rgba(212,175,55,.2);
    border-bottom: 1px solid rgba(212,175,55,.2);
}
.aw-ticker__inner { overflow: hidden; }
.aw-ticker__track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: aw-ticker-scroll 28s linear infinite;
}
.aw-ticker:hover .aw-ticker__track { animation-play-state: paused; }
.aw-ticker__track span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(247,243,237,.88);
    padding: 0 24px;
    flex-shrink: 0;
}
.aw-ticker__sep {
    color: #D4AF37 !important;
    font-style: normal !important;
    font-size: 0.5rem !important;
    padding: 0 6px !important;
    opacity: .75;
}
@keyframes aw-ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .aw-ticker__track { animation: none; }
}

/* ── Closing CTA ─────────────────────────────────────────── */
.aw-cta {
    padding: 90px 0;
    background: #4B0F1A;
}
.aw-cta__inner {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.aw-cta .aw-eyebrow { color: #D4AF37; }
.aw-cta .aw-h2  { color: #F7F3ED; margin-bottom: 24px; }
.aw-cta .aw-h2 em { color: #D4AF37; }
.aw-cta .aw-divider .line { background: rgba(212,175,55,.5); }
.aw-cta .aw-divider .mark { color: rgba(212,175,55,.7); }
.aw-cta__subline {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #cbb89d;
    line-height: 1.9;
    margin: 0 auto 40px;
    max-width: 620px;
}

@media (max-width: 1100px) {
    .aw-container { padding: 0 28px; }
    .aw-journey__canvas { padding: 0 28px 40px; }
}

@media (max-width: 900px) {
    .aw-who { padding: 80px 0; }
    .aw-journey { padding: 80px 0 40px; }
    .aw-believe { padding: 80px 0; }
    .aw-cta { padding: 80px 0; }
    .aw-stats { padding: 80px 0; }

    .aw-who__body {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .aw-who__photo { aspect-ratio: 16 / 9; }

    .aw-believe__grid { grid-template-columns: 1fr 1fr; }

    .aw-stats__card {
        grid-template-columns: 1fr 1fr;
        gap: 44px 0;
        padding: 44px 24px;
    }
    .aw-stats__grid { grid-template-columns: 1fr 1fr; }
    .aw-stat::after { display: none !important; }

    .aw-journey__canvas { padding: 0 24px 40px 80px; }
    .aw-journey__path-col {
        left: 24px;
        transform: none;
        width: 44px;
    }
    .aw-milestone { display: block; min-height: auto; padding: 20px 0; }
    .aw-milestone__gap { display: none; }
    .aw-milestone__card {
        border-left: 3px solid #D4AF37 !important;
        border-right: none !important;
        text-align: left !important;
        padding: 20px 20px 20px 24px !important;
        transform: translateX(20px) !important;
    }
    .aw-milestone--active .aw-milestone__card { transform: translateX(0) !important; }
    .aw-milestone__year { font-size: 1.8rem; }
}
