/* ============================================================
   Glowe Aesthetics by The Finishing Touch
   Static recreation
============================================================ */

:root {
    --black: #0f0d0a;
    --dark: #1a1612;
    --cream: #f6ecd6;
    --cream-soft: #faf3e2;
    --gold: #c9a14b;
    --gold-light: #e3c47a;
    --gold-dark: #a98635;
    --text: #2a1f12;
    --text-muted: #5b4c38;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--cream-soft);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nanum Myeongjo', serif;
    font-weight: 400;
    color: var(--text);
    line-height: 1.25;
}

h1 { font-size: clamp(2.6rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.6rem, 2.6vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.15rem; }

p { margin-bottom: 1em; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
    position: relative;
}

.section--cream { background: var(--cream); color: var(--text); }
.section--cream-soft { background: var(--cream-soft); color: var(--text); }
.section--dark { background: var(--black); color: var(--cream); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4, .section--dark h5 { color: var(--cream); }
.section--gold { background: var(--gold); color: var(--white); }
.section--gold h1, .section--gold h2, .section--gold h3, .section--gold h4, .section--gold h5 { color: var(--white); }

/* ============ HEADER / NAV ============ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--black);
    border-bottom: 1px solid rgba(201, 161, 75, 0.25);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    gap: 1.5rem;
}
.site-header__logo img {
    height: 80px;
    width: auto;
    display: block;
}
.site-nav ul {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    align-items: center;
}
.site-nav a {
    color: var(--cream);
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    font-weight: 400;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.2s ease;
}
.site-nav a:hover,
.site-nav a.is-active {
    color: var(--gold-light);
}
.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 1px;
    background: var(--gold-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: var(--cream);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
}

@media (max-width: 980px) {
    .nav-toggle { display: block; }
    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-top: 1px solid rgba(201, 161, 75, 0.25);
    }
    .site-nav.is-open { max-height: 600px; }
    .site-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }
    .site-nav li {
        width: 100%;
        text-align: center;
    }
    .site-nav a {
        display: block;
        padding: 0.85rem 1rem;
    }
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
    background-size: cover;
    background-position: center;
    color: var(--cream);
    text-align: center;
    padding: 6rem 1.5rem 8rem;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.5));
    z-index: 1;
}
.hero__inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
}
.hero h1 {
    color: var(--cream);
    font-style: italic;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 18px rgba(0,0,0,0.4);
}
.hero__sub {
    font-family: 'Nanum Myeongjo', serif;
    font-style: italic;
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    color: var(--cream);
    opacity: 0.95;
    letter-spacing: 0.02em;
}

.hero--home {
    background-image: url('../images/hero-home.jpg');
    min-height: 80vh;
}
.hero--home::before { display: none; }

.hero--page {
    min-height: 45vh;
    padding: 5rem 1.5rem 7rem;
}
.hero--about {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), url('../images/10076.jpg');
}
.hero--services {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), url('../images/Nimue-Branded-Image3-1024x768-1.jpg');
}
.hero--gallery {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), url('../images/2149871278.jpg');
}
.hero--promotions {
    background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.55)), url('../images/feature-vitamin-c_700x.jpg');
}
.hero--reviews {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), url('../images/13992.jpg');
}
.hero--contact {
    background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.55)), url('../images/pexels-cottonbro-3993449.jpg');
}
.hero--massage {
    background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.55)), url('../images/male-massage.jpg');
}
.hero--facials {
    background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.55)), url('../images/men-facial.jpg');
}
.hero--massage-sub {
    background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.55)), url('../images/male-massage.jpg');
}
.hero--hydra-facial {
    background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.55)), url('../images/feature-vitamin-c_700x.jpg');
}
.hero--botox {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('../images/glutathione-injection-side-effects.jpg');
}
.hero--microneedling-page {
    background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.55)), url('../images/microneedling.png');
}
.hero--pregnancy-massage {
    background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.55)), url('../images/pexels-elly-fairytale-3865567.jpg');
}

/* Hub page service tiles - image-led category cards */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
@media (max-width: 980px) { .hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .hub-grid { grid-template-columns: 1fr; } }
.hub-tile {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: var(--cream);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.hub-tile:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15); }
.hub-tile__media {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--cream);
}
.hub-tile__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.hub-tile:hover .hub-tile__media img { transform: scale(1.05); }
.hub-tile__body {
    padding: 1.5rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.hub-tile__eyebrow {
    font-family: 'Nanum Myeongjo', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
    letter-spacing: 0.03em;
}
.hub-tile h3 {
    font-family: 'Nanum Myeongjo', serif;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1.45rem;
}
.hub-tile p {
    color: var(--text-muted);
    font-size: 0.94rem;
    flex-grow: 1;
    margin-bottom: 1rem;
}
.hub-tile__price {
    font-family: 'Nanum Myeongjo', serif;
    color: var(--gold-dark);
    font-size: 1rem;
    margin-bottom: 0.85rem;
}
.hub-tile__price::before {
    content: "from ";
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.hub-tile__cta {
    color: var(--gold-dark);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    align-self: flex-start;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}
.hub-tile:hover .hub-tile__cta {
    color: var(--gold);
    border-color: var(--gold-dark);
}

/* ============ FAQ / DETAILS ACCORDION ============ */
.faq {
    max-width: 820px;
    margin: 2rem auto 0;
}
.faq-item {
    border-bottom: 1px solid rgba(201, 161, 75, 0.3);
}
.faq-item summary {
    padding: 1.25rem 2.25rem 1.25rem 0;
    cursor: pointer;
    font-family: 'Nanum Myeongjo', serif;
    font-size: 1.1rem;
    color: var(--text);
    list-style: none;
    position: relative;
    transition: color 0.2s ease;
}
.faq-item summary:hover { color: var(--gold-dark); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ""; }
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--gold);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    transition: transform 0.2s ease;
    line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-answer {
    padding: 0 0 1.5rem 0;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.98rem;
}
.faq-item .faq-answer p { margin-bottom: 0.75rem; }
.faq-item .faq-answer p:last-child { margin-bottom: 0; }

/* Wave shape divider below hero */
.shape-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 2;
}
.shape-divider svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-block;
    padding: 0.85rem 1.85rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    background: var(--gold);
    color: var(--white);
    cursor: pointer;
    transition: all 0.25s ease;
    border-radius: 2px;
}
.btn:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}
.btn--secondary {
    background: transparent;
    color: var(--gold);
}
.btn--secondary:hover {
    background: var(--gold);
    color: var(--white);
}
.btn--light {
    background: var(--cream);
    color: var(--text);
    border-color: var(--cream);
}
.btn--light:hover {
    background: var(--white);
    border-color: var(--white);
}
.btn--small { padding: 0.55rem 1.1rem; font-size: 0.78rem; }

/* ============ INTRO / TWO-COLUMN ============ */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
@media (max-width: 880px) {
    .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
    .two-col--reverse > :first-child { order: 2; }
}
.two-col img { border-radius: 4px; box-shadow: var(--shadow); }

.section-eyebrow {
    font-family: 'Nanum Myeongjo', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    display: block;
}
.section-title {
    margin-bottom: 1.25rem;
}
.text-center { text-align: center; }
.lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 760px;
    margin: 0 auto 2rem;
}

/* ============ SERVICE CARDS GRID ============ */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
@media (max-width: 1024px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .service-grid { grid-template-columns: 1fr; } }
.service-card {
    background: var(--cream-soft);
    padding: 1rem;
    border: 1px solid rgba(201, 161, 75, 0.25);
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card img { aspect-ratio: 4/3; object-fit: cover; border-radius: 2px; margin-bottom: 1rem; }
.service-card h4 { margin-bottom: 0.5rem; }
.service-card p { font-size: 0.92rem; color: var(--text-muted); flex-grow: 1; }
.service-card .btn { margin-top: 1rem; align-self: flex-start; }

/* ============ DARK CTA / EXPERTISE SECTION ============ */
.expertise {
    background: var(--black) url('../images/Luxe-Line-Beauty-22.png') center / cover no-repeat;
    background-blend-mode: overlay;
    color: var(--cream);
    text-align: center;
    padding: 5rem 1.5rem;
    position: relative;
}
.expertise::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 13, 10, 0.85);
}
.expertise > * { position: relative; z-index: 1; }
.expertise h2 { color: var(--cream); margin-bottom: 1.25rem; }
.expertise p { max-width: 780px; margin: 0 auto 1.5rem; color: rgba(246, 236, 214, 0.85); }

/* ============ CTA BAND (split) ============ */
.cta-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 880px) { .cta-split { grid-template-columns: 1fr; } }
.cta-split__pane {
    padding: 4rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}
.cta-split__pane--cream { background: var(--cream); color: var(--text); }
.cta-split__pane--gold { background: var(--gold); color: var(--white); }
.cta-split__pane h2 { margin-bottom: 0.5rem; font-size: 1.85rem; }
.cta-split__pane--gold h2 { color: var(--white); }
.cta-split__pane p { font-size: 1rem; margin-bottom: 1.5rem; }
.cta-split__icon {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

/* ============ PACKAGES / PROMOTIONS ============ */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 980px) { .packages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .packages-grid { grid-template-columns: 1fr; } }
.package-card {
    background: var(--cream-soft);
    padding: 2rem;
    border: 1px solid rgba(201, 161, 75, 0.3);
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.package-card h4 {
    color: var(--gold-dark);
    margin-bottom: 0.85rem;
    min-height: 3.3em;
}
.package-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.package-card .btn { align-self: flex-start; }

/* ============ TEAM ============ */
.poorni-block {
    background: var(--cream);
    padding: 4rem 0;
}
.poorni-block .two-col { align-items: start; }
.poorni-block img { border-radius: 4px; }

.team-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
@media (max-width: 880px) {
    .team-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.team-card { text-align: center; }
.team-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}
.team-card h3 { margin-bottom: 0.3rem; }
.team-card p { font-size: 0.95rem; color: var(--text-muted); }

/* ============ SERVICES LONG PAGE ============ */
.svc-section { padding: 4rem 0; }
.svc-section:nth-child(even) { background: var(--cream); }
.svc-section:nth-child(odd)  { background: var(--cream-soft); }
.svc-section h2 { margin-bottom: 0.75rem; }
.svc-section h2 .eyebrow {
    display: block;
    font-size: 0.85rem;
    font-style: italic;
    font-family: 'Nanum Myeongjo', serif;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.svc-section ul {
    margin: 1rem 0 1.5rem 1.25rem;
    color: var(--text-muted);
}
.svc-section ul li {
    margin-bottom: 0.35rem;
}

/* Pricing list — service name on left, price on right, dotted leader */
.price-list {
    list-style: none !important;
    margin: 0.5rem 0 1.5rem 0 !important;
    padding: 0;
}
.price-list li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.55rem 0;
    border-bottom: 1px dotted rgba(201, 161, 75, 0.35);
    color: var(--text);
}
.price-list li:last-child { border-bottom: 0; }
.price-list .svc-name {
    flex: 1 1 auto;
    color: var(--text);
    font-size: 0.95rem;
}
.price-list .svc-price {
    flex: 0 0 auto;
    color: var(--gold-dark);
    font-weight: 600;
    font-family: 'Nanum Myeongjo', serif;
    font-size: 1.05rem;
    white-space: nowrap;
}
.price-list .svc-price.is-from::before {
    content: "from ";
    font-style: italic;
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.85rem;
    margin-right: 2px;
}
.price-list .svc-price.no-price {
    color: var(--text-muted);
    font-style: italic;
    font-weight: 400;
    font-size: 0.85rem;
}
.price-group-title {
    font-family: 'Nanum Myeongjo', serif;
    color: var(--gold-dark);
    font-size: 1.15rem;
    margin: 1.5rem 0 0.5rem 0;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid rgba(201, 161, 75, 0.4);
}
.svc-section strong { color: var(--gold-dark); font-family: 'Nanum Myeongjo', serif; font-size: 1.1rem; font-weight: normal; display: block; margin-top: 1.25rem; margin-bottom: 0.25rem; }
.svc-section .desc { margin-bottom: 1rem; color: var(--text-muted); }
.svc-section img {
    border-radius: 4px;
    box-shadow: var(--shadow);
    margin: 1rem 0;
}
.svc-divider {
    border: 0;
    border-top: 1px solid rgba(201, 161, 75, 0.4);
    margin: 0;
}

/* ============ GALLERY ============ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}
@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 4px;
    background: var(--cream);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    cursor: pointer;
}
.gallery-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox img {
    max-width: 95%;
    max-height: 95vh;
    border-radius: 4px;
}
.lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: var(--white);
    font-size: 2.5rem;
    background: transparent;
    border: 0;
    cursor: pointer;
    line-height: 1;
}

/* ============ TESTIMONIALS ============ */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}
@media (max-width: 880px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial {
    background: var(--cream-soft);
    padding: 2rem;
    border-left: 3px solid var(--gold);
    border-radius: 2px;
}
.testimonial blockquote {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.98rem;
}
.testimonial blockquote::before {
    content: '"';
    font-family: 'Nanum Myeongjo', serif;
    color: var(--gold);
    font-size: 2.5rem;
    line-height: 0;
    vertical-align: -0.5rem;
    margin-right: 0.25rem;
}
.testimonial__author {
    font-family: 'Nanum Myeongjo', serif;
    font-size: 1.05rem;
    color: var(--text);
    letter-spacing: 0.05em;
}
.testimonial__role {
    font-size: 0.82rem;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.25rem;
}

/* ============ CONTACT ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.contact-info ul { list-style: none; margin: 1.5rem 0; }
.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
    color: var(--text);
}
.contact-info li svg, .contact-info li .icon {
    color: var(--gold);
    width: 20px;
    flex-shrink: 0;
    margin-top: 4px;
}
.contact-info a:hover { color: var(--gold-dark); }
.social-row { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-row a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.social-row a:hover { background: var(--gold-dark); }

.contact-form {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 4px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; }
.form-field label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}
.form-field input,
.form-field textarea {
    padding: 0.7rem 0.85rem;
    border: 1px solid rgba(42, 31, 18, 0.2);
    border-radius: 2px;
    background: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus { outline: 1px solid var(--gold); border-color: var(--gold); }

.map-wrap {
    margin-top: 3rem;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ============ FOOTER ============ */
.site-footer {
    background: var(--cream);
    color: var(--text);
    padding: 4rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(201, 161, 75, 0.3);
    position: relative;
}
.site-footer::before {
    content: "";
    display: block;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    width: 60%;
    margin: -4rem auto 3rem;
    position: relative;
}
.site-footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 3rem;
    align-items: center;
}
@media (max-width: 760px) { .site-footer__inner { grid-template-columns: 1fr; text-align: center; } }
.site-footer__logo img { max-width: 240px; margin: 0 auto; display: block; }
.site-footer h5 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.site-footer ul { list-style: none; margin: 1.25rem 0; }
.site-footer li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}
@media (max-width: 760px) { .site-footer li { justify-content: center; } }
.site-footer li .icon { color: var(--gold); width: 18px; }
.site-footer__links {
    margin-top: 1.25rem;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}
.site-footer__links a {
    color: var(--text-muted);
    transition: color 0.2s;
}
.site-footer__links a:hover { color: var(--gold-dark); }
.site-footer__credit {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 161, 75, 0.25);
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============ UTILITY ============ */
/* Visually-hidden text for screen readers and SEO crawlers */
.sr-only {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; } .mb-3 { margin-bottom: 3rem; }
.no-mb { margin-bottom: 0; }
.divider-gold {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 3rem auto;
    width: 50%;
}
