/*
Theme Name: Refuge Child
Theme URI: https://refugeevents.example/
Description: Classic child theme of Twenty Twenty-One for the Refuge blog templates (listing + single).
Author: Refuge
Template: twentytwentyone
Version: 1.0.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: 4/5;
    text-decoration: none;
}
.bl-card__img {
    width: 100% !important;
    height: 100% !important;
    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: '\25C6';
    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; }
    .bl-card__img-wrap { aspect-ratio: 4/3; }
}


/* =========================================================
   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: ' \25C6 ';
    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: '\25C6 '; 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: '\2014 '; 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: '\25C6';
    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: 52px 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: '\25C6';
    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; }
}


/* =========================================================
   JOURNAL HERO  (cw-hero — from main site, verbatim)
   ========================================================= */
@keyframes goldShimmer {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}
.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-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;
}


/* =========================================================
   SITE HEADER (refuge-header) — from main site, verbatim
   ========================================================= */
/* font-display overrides: must appear before CDN @font-face rules load */
@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:optional;src:url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2") format("woff2")}
@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:optional;src:url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.woff2") format("woff2")}
@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:optional;src:url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.woff2") format("woff2")}
@font-face{font-family:"tabler-icons";font-style:normal;font-weight:400;font-display:optional;src:url("https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@3.10.0/dist/fonts/tabler-icons.woff2") format("woff2")}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
body{margin:0;overflow-x:hidden}
html{-webkit-text-size-adjust:100%}
.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,.78);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);padding:10px 0;box-shadow:0 2px 20px rgba(0,0,0,.30);border-bottom:1px solid rgba(201,169,110,.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:73px;width:auto;max-width:260px;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}
.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}
.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,.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}
@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:60px}}
@media(max-width:900px){.refuge-header__nav,.refuge-header__cta{display:none}.refuge-header__hamburger{display:flex}.refuge-mobile-nav{display:flex}.refuge-header__inner{padding:0 20px}}
@media(max-width:640px){.refuge-hero__dots{right:18px}.refuge-header__inner{padding:0 16px}.refuge-header{padding:16px 0}.refuge-header__logo-img{height:34px}.refuge-hero{min-height:100svh}.refuge-hero__content{padding:0 16px}}
@media(max-width:360px){.refuge-header__logo-img{height:30px;max-width:120px}.refuge-mobile-nav__logo img{height:36px}.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}}

/* Offset so fixed header doesn't overlap content on non-hero pages */
.single .refuge-header { background: rgba(11,2,5,.92); }

/* =========================================================
   SITE FOOTER (footer) — from main site, verbatim
   ========================================================= */
.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: '\25C6';
    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; }
}
/* --- wa-float --- */
.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; }
}