/* -------------------------------------
   Base + Fonts (keeps same HTML)
------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:wght@700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Playfair+Display:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&display=swap');

:root {

    /* === NEW COLORS ===*/
    --nav-pill: #b77970;
    --bg: #FFFBF6;
    --bg-alt: #F7F1EB;
    --surface: #FFFFFF;

    --text: #2B2A28;
    --brand: #3E2A3D;

    --accent: #b77970;      /* pill/primary */
    --accent-hover: #a1685f;/* darker for hover + AA with white */
    --accent-100: #c99a93;  /* soft tint */
    --comp: #457A77;        /* complement (links/small accents) */

    --sage-200: #DCE6E2;    /* icon chips */
    --border-new: #E9E1D8;





    /* === Colors === */
    --mint: #cfe7dc;              /* header/band mint */
    --mint-nav: #FAF8F4;          /* navbar background */
    --mint-deeper: #c6e1d5;
    --mint-extradeep: #14734c;
    --mint-dark: #b6d5c7;

    --cream: #f7f5eb;             /* page background */
    --cream-strip: #efe9d6;       /* divider feel under banner */

    --teal-text: #234a46;         /* big heading color */
    --nav-text: #243b38;          /* logo + links */
    --nav-text-dim: #2c4a45;

    --btn: #2c5e56;               /* dark teal button */
    --btn-hover: #234e47;

    --button-taupe: #b5946a;      /* taupe button */
    --charcoal-text: #3A3A3A;

    --opal: #a8c4b7;
    --ink: #243b38;

    --teal: #b5946a;              /* gold/teal accent */
    --teal-d: #234e47;

    --footer-bg: #FBF6EE;         /* footer background */
    --footer-text: #2F4E48;       /* footer text */
    --footer-muted: #6F7C78;      /* footer muted */
    --footer-gold: #C2A468;       /* footer accent */
    --footer-gold-ink: #8C7848;   /* footer darker gold */
    --footer-line: #E6D9BD;       /* footer divider */

    /* === New colours ===*/
    --pink-pill: #edd0cf;
    --lotus-pink: #b77970;

    /* ===== Layout ===== */

    /* Back-compat aliases so old rules keep working */
    --maxw: var(--maxw-global);
    /* === Layout === */
    --maxw-global: 1500px;        /* sitewide max-width (header/footer) */
    --maxw-content: 1100px;       /* narrower sections (services, contact) */

    /* === Borders/Shadows === */
    --card-border: #e6e1d2;
    --border: #e6e1d2;

    --shadow: 0 2px 10px rgba(0,0,0,.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,.08);

    /* pick a fixed height (or swap for clamp() later) */
    --nav-h: 76px;
    --nav-pad-x: 24px;
    --nav-pill-pad-y: 6px;   /* <-- this one */
    --nav-logo-gap: 24px;
}

*{ box-sizing:border-box; margin:0; padding:0; }

html,body{
    height:100%;
}

body{
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #213330;
    background: var(--mint-nav);
    line-height: 1.45;
}

/* -------------------------------------
   Navbar (same HTML classes)
------------------------------------- */

.nav-menu a.active {
    background: var(--nav-pill);    /* teal background */
    color: #fff;                /* white text */
    padding: 6px 12px;          /* so background looks like a pill */
    border-radius: 6px;
}


.nav-menu a.active:hover {
    color: var(--nav-pill);
    border: 2px solid rgba(183, 121, 112, 0.6);
    border-radius: 6px;
    padding: 4px 8px;
    transition: 0.1s ease;
    background: var(--mint-nav);

}

.nav-menu a:hover {
    /*color: #b77970;*/
    border: 2px solid rgba(183, 121, 112, 0.6);
    border-radius: 6px;
    padding: 4px 8px;
    transition: 0.125s ease;
}

.site-header{
    background: var(--mint-nav);
    border-bottom: 2px solid rgba(183, 121, 112, 0.6); /* 60% opacity *//*#ead3ae;*/

}
.nav-container{
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 8px 8px;                 /* generous top spacing */
    display:flex; align-items:center; justify-content:space-between;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    font-size: 20px;
    color: #C7A347;   /* gold */
    font-family: "Cinzel", serif;           /* your gold */
}

.logo-img {
    height: 100%;   /* full height of the nav */
    max-height: 60px; /* safety limit so it doesn’t get oversized */
    width: auto;    /* keep aspect ratio */
}
.nav-menu ul{
    list-style:none; display:flex; gap:32px;
}
.nav-menu a,
.nav-button {
    text-decoration:none;
    color: var(--nav-text);
    font-weight:600;
    font-size:14px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    opacity:.95;
}
.nav-menu a:hover,
.nav-button:hover{
    color: var(--nav-text-dim);
}

footer{
    border-top: 1px solid rgba(0,0,0,.06);
    background: var(--mint);
    padding: 0px 0px;
    color: var(--nav-text);
}
footer .inner{
    max-width: var(--maxw);
    margin: 0 auto;
    display:flex; gap:24px; justify-content:center; flex-wrap:wrap;
}
footer a
{ color: var(--nav-text);
    text-decoration:none;
}
footer a:hover {
    text-decoration: underline;
}

@media (max-width: 900px){
    .nav-container{ padding: 18px 16px; }
    .nav-menu ul{ gap: 22px; }
    .banner{ padding: 42px 16px 34px; }
    .image-row{ gap:16px; }
    .image-row img{ max-width: 32%; }
}
@media (max-width: 680px){
    .image-row{ flex-direction: column; align-items:center; }
    .image-row img{ max-width: 520px; width: 100%; }
}

/* ===== Footer Styles ===== */


.site-footer{
    background: var(--footer-bg);
    color: var(--footer-text);
    border-top: 1px solid var(--footer-line);
}

.site-footer a{ color: var(--footer-text); text-decoration: none; }
.site-footer a:hover{ color: var(--footer-gold-ink); }

.footer-container{
    max-width: 1200px;            /* match your content width */
    margin: 0 auto;
    padding: 56px 24px 32px;
    display: grid;
    grid-template-columns:  minmax(260px, 300px) 1.1fr 1.1fr 1.1fr; /* brand / links / socials */
    gap: 100px;
    align-items: start;
}

.footer-brand .footer-logo{
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.footer-brand svg{
    width: 44px; height: 44px;
    fill: var(--footer-gold);
}

.brand-text{ line-height: 1; }
.brand-title{
    display:block;
    font-weight: 800;
    letter-spacing: 0.18em;
    font-size: 22px;
    color: var(--footer-gold-ink);
}
.brand-sub{
    display:block;
    margin-top: 2px;
    letter-spacing: 0.2em;
    font-size: 12px;
    color: var(--footer-gold);
}

.footer-contact{
    font-style: normal;
    margin-top: 8px;
    color: var(--footer-text);
}
.footer-contact a{ border-bottom: 1px solid transparent; }
.footer-contact a:hover{ border-color: var(--footer-gold); }


.footer-container h4{
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--footer-muted);
    margin: 6px 0 14px;
}

.footer-links ul{
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: grid;
    gap: 10px;
}

.footer-social .social-list{
    display:flex;
    gap: 16px;
    padding:0; margin: 0;
    list-style:none;
}
.footer-social svg{
    width:26px; height:26px;
    fill: var(--footer-text);
    transition: fill .2s ease, transform .08s ease;
}
.footer-social a:hover svg{
    fill: var(--footer-gold);
    transform: translateY(-1px);
}

/* Divider + copyright */
.footer-bottom{
    border-top: 1px solid var(--footer-line);
    margin-top: 32px;
    padding: 16px 24px 32px;
    text-align: center;
    color: var(--footer-muted);
    font-size: 14px;
}

/* ===== Responsive ===== */
@media (max-width: 980px){
    .footer-container{
        grid-template-columns: 1fr 1fr;
    }
    .footer-social{ order: 3; grid-column: 1 / -1; }
}

@media (max-width: 640px){
    .footer-container{
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 40px 20px 24px;
    }
    .brand-title{ font-size: 20px; }
    .footer-social .social-list{ gap: 14px; }
}

.footer-brand{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-logo{            /* keep text close to the logo if you show it */
    gap: 12px;
    margin-bottom: 0;      /* remove extra space below */
}

.footer-logo img.brand-img {
    width: 300px;     /* adjust size as needed */
    height: auto;    /* keeps proportions */
    display: block;
}



.btn-gold{
    display:inline-block;
    padding: 10px 18px;
    border-radius: 10px;
    background: var(--footer-gold);
    color: #fff;
    font-weight: 700;
    letter-spacing: .06em;
    transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
    box-shadow: 0 2px 0 rgba(0,0,0,.08);
}
.btn-gold:hover{
    transform: translateY(-1px);
    background: #b79755;
}

.logo-text{
    color:#b77970;
    font-family: "Cinzel", serif;
    font-weight: 580;
    line-height: 1.15;
    letter-spacing: .2px;
    margin: 0;
}


/* ===== NAVBAR RESPONSIVE STYLES ===== */

/* Scale down root font size on smaller screens */
@media (max-width: 1100px) {
    html {
        font-size: 15px; /* Slightly smaller base */
    }

    .nav-container {
        padding: 0.5rem 1rem;
    }

    .nav-menu ul {
        gap: 1.25rem;
    }

    .nav-menu a,
    .nav-button {
        font-size: 0.8125rem;
        letter-spacing: 0.0625rem;
    }

    .logo-text {
        font-size: 1.75rem !important; /* 28px at 16px base */
    }

    .logo-text:last-child {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 980px) {
    html {
        font-size: 14px;
    }

    .nav-menu ul {
        gap: 1rem;
    }

    .nav-menu a,
    .nav-button {
        font-size: 0.857rem; /* 12px */
        letter-spacing: 0.057rem;
    }

    .logo-text {
        font-size: 1.714rem !important; /* 24px */
    }

    .logo-text:last-child {
        font-size: 1.429rem !important; /* 20px */
    }
}

@media (max-width: 850px) {
    .nav-menu ul {
        gap: 0.857rem;
    }

    .nav-menu a,
    .nav-button {
        font-size: 0.786rem; /* 11px */
        padding: 0.286rem 0.571rem;
    }

    .nav-menu a.active {
        padding: 0.286rem 0.571rem;
    }
}

@media (max-width: 720px) {
    html {
        font-size: 13px;
    }

    h1 {
        font-size: clamp(1.385rem, 6vw, 2rem);
    }

    h2 {
        font-size: clamp(1.154rem, 5vw, 1.75rem);
    }

    h3 {
        font-size: clamp(1rem, 4vw, 1.375rem);
    }

    p {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .nav-menu {
        width: 100%;
        order: 3;
    }

    .nav-menu ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .nav-menu li {
        flex: 0 0 auto;
    }

    .nav-menu a,
    .nav-button {
        font-size: 0.846rem; /* 11px */
        padding: 0.462rem 0.769rem;
        display: block;
    }

    .logo-text {
        font-size: 1.538rem !important; /* 20px */
    }

    .logo-text:last-child {
        font-size: 1.385rem !important; /* 18px */
    }

    .logo-img {
        max-height: 3.462rem; /* 45px */
    }
}

@media (max-width: 480px) {
    html {
        font-size: 12px; /* Smallest base size */
    }

    h1 {
        font-size: clamp(1.333rem, 7vw, 1.833rem);
    }

    h2 {
        font-size: clamp(1.083rem, 6vw, 1.583rem);
    }

    h3 {
        font-size: clamp(0.917rem, 5vw, 1.25rem);
    }

    p {
        font-size: 0.833rem;
        line-height: 1.5;
    }

    .nav-container > div:first-child {
        gap: 0.333rem;
    }

    .logo-text {
        font-size: 1.5rem !important; /* 18px */
    }

    .logo-text:last-child {
        font-size: 1.333rem !important; /* 16px */
        padding-left: 0.417rem !important;
    }

    .logo-img {
        max-height: 3.333rem; /* 40px */
    }

    .nav-menu ul {
        gap: 0.5rem;
    }

    .nav-menu a,
    .nav-button {
        font-size: 0.833rem; /* 10px */
        padding: 0.417rem 0.667rem;
        letter-spacing: 0.042rem;
    }
}

@media (max-width: 900px){
    .nav-container{ padding: 1.125rem 1rem; }
    .banner{ padding: 2.625rem 1rem 2.125rem; }
    .image-row{ gap: 1rem; }
    .image-row img{ max-width: 32%; }
}

@media (max-width: 680px){
    .image-row{ flex-direction: column; align-items:center; }
    .image-row img{ max-width: 32.5rem; width: 100%; }
}

/* ===== Footer Styles ===== */

.site-footer{
    background: var(--footer-bg);
    color: var(--footer-text);
    border-top: 1px solid var(--footer-line);
}

.site-footer a{
    color: var(--footer-text);
    text-decoration: none;
}

.site-footer a:hover{
    color: var(--footer-gold-ink);
}

.footer-container{
    max-width: 75rem; /* 1200px */
    margin: 0 auto;
    padding: 3.5rem 1.5rem 2rem;
    display: grid;
    grid-template-columns: minmax(16.25rem, 18.75rem) 1.1fr 1.1fr 1.1fr;
    gap: 6.25rem;
    align-items: start;
}

.footer-brand .footer-logo{
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 0.875rem;
}

.footer-brand svg{
    width: 2.75rem;
    height: 2.75rem;
    fill: var(--footer-gold);
}

.brand-text{ line-height: 1; }

.brand-title{
    display:block;
    font-weight: 800;
    letter-spacing: 0.18em;
    font-size: 1.375rem;
    color: var(--footer-gold-ink);
}

.brand-sub{
    display:block;
    margin-top: 0.125rem;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--footer-gold);
}

.footer-contact{
    font-style: normal;
    margin-top: 0.5rem;
    color: var(--footer-text);
}

.footer-contact a{
    border-bottom: 1px solid transparent;
}

.footer-contact a:hover{
    border-color: var(--footer-gold);
}

.footer-container h4{
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--footer-muted);
    margin: 0.375rem 0 0.875rem;
}

.footer-links ul{
    list-style: none;
    margin: 0 0 1.125rem;
    padding: 0;
    display: grid;
    gap: 0.625rem;
}

.footer-links ul li a,
.footer-links ul li {
    font-size: clamp(0.8125rem, 1.3vw, 0.9375rem);
}

.footer-social .social-list{
    display:flex;
    gap: 1rem;
    padding:0;
    margin: 0;
    list-style:none;
}

.footer-social svg{
    width: 1.625rem;
    height: 1.625rem;
    fill: var(--footer-text);
    transition: fill .2s ease, transform .08s ease;
}

.footer-social a:hover svg{
    fill: var(--footer-gold);
    transform: translateY(-0.0625rem);
}

.footer-bottom{
    border-top: 1px solid var(--footer-line);
    margin-top: 2rem;
    padding: 1rem 1.5rem 2rem;
    text-align: center;
    color: var(--footer-muted);
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
}

@media (max-width: 980px){
    .footer-container{
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .footer-social{ order: 3; grid-column: 1 / -1; }
}

@media (max-width: 640px){
    .footer-container{
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 2.5rem 1.25rem 1.5rem;
    }

    .brand-title{ font-size: 1.125rem; }
    .footer-social .social-list{ gap: 0.875rem; }

    .footer-links ul li a,
    .footer-links ul li {
        font-size: 0.8125rem;
    }
}

.footer-brand{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-logo{
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.brand-img {
    width: 100%;
    max-width: 15rem; /* 240px */
    height: auto;
}

.footer-logo-large {
    padding-right: 1.25rem;
}

.abn {
    color: var(--footer-muted);
    font-size: clamp(0.6875rem, 1.2vw, 0.8125rem);
}
