/* ==========================================================================
   Med Spa Myrtle Beach — Shared Stylesheet
   ========================================================================== */

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

:root {
    --gold: #c9a96e;
    --gold-light: #dfc9a0;
    --gold-dark: #b8954f;
    --dark: #1a1a1a;
    --cream: #faf7f2;
    --cream-dark: #f3ede3;
    --white: #ffffff;
    --text: #3d3d3d;
    --text-light: #6b6b6b;
    --border: rgba(201, 169, 110, 0.2);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cream);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--gold-dark); }

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

/* Background decoration */
.bg-accent {
    position: fixed;
    top: -30%;
    right: -15%;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.bg-accent-2 {
    position: fixed;
    bottom: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

nav.primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.4rem 2rem;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
}

.logo:hover { color: var(--gold-dark); }

.logo span { display: block; font-size: 0.65rem; letter-spacing: 0.4em; color: var(--text-light); margin-top: 0.2rem; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    padding: 0.4rem 0;
}

.nav-links a:hover { color: var(--gold); }

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
}

.nav-cta {
    display: inline-block;
    padding: 0.75rem 1.4rem;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.2em !important;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--white) !important;
}

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 0.8rem 0;
    box-shadow: 0 12px 40px rgba(26, 26, 26, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    list-style: none;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown li { padding: 0; }

.dropdown a {
    display: block;
    padding: 0.6rem 1.4rem;
    font-size: 0.72rem !important;
    letter-spacing: 0.12em !important;
    color: var(--text-light) !important;
    border-left: 2px solid transparent;
}

.dropdown a:hover {
    background: var(--cream);
    color: var(--gold) !important;
    border-left-color: var(--gold);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    width: 28px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--text);
    transition: all 0.3s ease;
}

/* ==========================================================================
   Page Hero
   ========================================================================== */
.page-hero {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 5rem 2rem 4rem;
    max-width: 820px;
    margin: 0 auto;
}

.page-hero .divider {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 2rem;
}

.page-hero .eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.4rem;
}

.page-hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.page-hero p {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 620px;
    margin: 0 auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.btn-dark:hover {
    background: transparent;
    color: var(--dark);
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
    position: relative;
    z-index: 10;
    padding: 6rem 2rem;
}

.section-tight { padding: 4rem 2rem; }

.section-dark {
    background: var(--dark);
    color: var(--cream);
}

.section-cream-dark {
    background: var(--cream-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.container-narrow {
    max-width: 820px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1.2rem;
}

.section-header h2 em {
    font-style: italic;
    color: var(--gold);
}

.section-dark .section-header h2 { color: var(--cream); }

.section-header p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-light);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-dark .section-header p { color: rgba(250, 247, 242, 0.7); }

/* ==========================================================================
   Hero (Homepage)
   ========================================================================== */
.hero {
    position: relative;
    z-index: 10;
    min-height: 78vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text .divider {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 2rem;
}

.hero-text .eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.hero-text h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-text p {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.4rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 4px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05)),
        url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=900&q=80') center/cover;
    box-shadow: 0 20px 60px rgba(26, 26, 26, 0.12);
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin: 1rem;
    pointer-events: none;
}

/* ==========================================================================
   Service Cards Grid
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 2.2rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(201, 169, 110, 0.15);
    border-color: var(--gold);
    color: var(--text);
}

.service-card .icon-wrap {
    width: 64px;
    height: 64px;
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    transition: all 0.4s ease;
}

.service-card:hover .icon-wrap {
    background: var(--gold);
    border-color: var(--gold);
}

.service-card .icon-wrap svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    transition: stroke 0.4s ease;
}

.service-card:hover .icon-wrap svg { stroke: var(--white); }

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.8rem;
}

.service-card p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.4rem;
}

.service-card .learn-more {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: auto;
}

/* Category section (services overview page) */
.service-category {
    margin-bottom: 5rem;
}

.service-category:last-child { margin-bottom: 0; }

.category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--dark);
    text-align: center;
    margin-bottom: 0.6rem;
}

.category-title em {
    font-style: italic;
    color: var(--gold);
}

.category-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 2.5rem;
}

/* ==========================================================================
   Service Detail Page
   ========================================================================== */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.service-detail-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.service-detail-text h2 em { font-style: italic; color: var(--gold); }

.service-detail-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--dark);
    margin: 2rem 0 0.8rem;
}

.service-detail-text p {
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 1.2rem;
}

.service-detail-text ul {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0;
}

.service-detail-text ul li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.service-detail-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 12px;
    height: 1px;
    background: var(--gold);
}

.service-detail-image {
    position: sticky;
    top: 110px;
    aspect-ratio: 4 / 5;
    border-radius: 4px;
    overflow: hidden;
    background: var(--cream-dark);
    box-shadow: 0 16px 40px rgba(26, 26, 26, 0.1);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin: 1rem;
    pointer-events: none;
}

/* Info Cards (within detail pages) */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
    margin: 2rem 0;
}

.info-card {
    background: var(--cream);
    border: 1px solid var(--border);
    padding: 1.6rem 1.4rem;
    border-radius: 3px;
}

.info-card .label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

.info-card .value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--dark);
}

/* ==========================================================================
   Before / After Slider
   ========================================================================== */
.before-after {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 26, 26, 0.18);
    user-select: none;
    cursor: ew-resize;
    background: var(--cream-dark);
}

.before-after img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}

.before-after .ba-after {
    filter: contrast(1.05) saturate(1.05);
}

.before-after .ba-before-wrap {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
}

.before-after .ba-before {
    width: 100vw;
    max-width: 640px;
    filter: contrast(1.18) saturate(1.1) brightness(0.97);
}

.before-after .ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--white);
    transform: translateX(-50%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 0 20px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.before-after .ba-grip {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    transform: translate(-50%, -50%);
    background: var(--white);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(26, 26, 26, 0.18);
    color: var(--gold);
    font-size: 1rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.before-after.dragging .ba-grip {
    transform: translate(-50%, -50%) scale(1.08);
    background: var(--gold);
    color: var(--white);
}

.before-after .ba-grip svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.before-after .ba-label {
    position: absolute;
    top: 1.2rem;
    padding: 0.5rem 1rem;
    background: rgba(26, 26, 26, 0.7);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border-radius: 2px;
    pointer-events: none;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.before-after .ba-label-before { left: 1.2rem; }
.before-after .ba-label-after { right: 1.2rem; }

.before-after-caption {
    text-align: center;
    margin-top: 1.4rem;
    font-size: 0.78rem;
    color: var(--text-light);
    font-style: italic;
}

/* ==========================================================================
   Stats / Trust Bar
   ========================================================================== */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat .number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.6rem;
    display: block;
}

.stat .label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-light);
}

.section-dark .stat .label { color: rgba(250, 247, 242, 0.7); }

/* ==========================================================================
   About / Two-column with image
   ========================================================================== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.two-col-image {
    aspect-ratio: 4 / 5;
    border-radius: 4px;
    overflow: hidden;
    background: var(--cream-dark);
    position: relative;
    box-shadow: 0 16px 40px rgba(26, 26, 26, 0.1);
}

.two-col-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.two-col-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin: 1rem;
    pointer-events: none;
}

.two-col-text .divider {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 2rem;
}

.two-col-text .eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.two-col-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1.4rem;
}

.two-col-text h2 em { font-style: italic; color: var(--gold); }

.two-col-text p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 1.2rem;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-banner {
    text-align: center;
    padding: 6rem 2rem;
    background: var(--dark);
    color: var(--cream);
    position: relative;
    z-index: 10;
}

.cta-banner .eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.cta-banner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 1.2rem;
}

.cta-banner h2 em { font-style: italic; color: var(--gold); }

.cta-banner p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(250, 247, 242, 0.7);
    max-width: 540px;
    margin: 0 auto 2.4rem;
}

/* ==========================================================================
   Contact / Map
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact-info-block {
    margin-bottom: 2rem;
}

.contact-info-block .label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

.contact-info-block .value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.5;
}

.contact-info-block a { color: var(--dark); }
.contact-info-block a:hover { color: var(--gold); }

.map-wrap {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(26, 26, 26, 0.08);
    aspect-ratio: 4 / 3;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Form */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .full { grid-column: 1 / -1; }

.contact-form label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    position: relative;
    z-index: 10;
    background: var(--dark);
    color: var(--cream);
    padding: 5rem 2rem 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.footer-brand .logo {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(250, 247, 242, 0.65);
    max-width: 320px;
}

.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.4rem;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(250, 247, 242, 0.7);
    letter-spacing: 0.04em;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.72rem;
    color: rgba(250, 247, 242, 0.5);
    letter-spacing: 0.12em;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.footer-social a svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
    transition: fill 0.3s ease;
}

.footer-social a:hover svg { fill: var(--white); }

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.05s; }
.fade-in:nth-child(2) { animation-delay: 0.15s; }
.fade-in:nth-child(3) { animation-delay: 0.25s; }
.fade-in:nth-child(4) { animation-delay: 0.35s; }
.fade-in:nth-child(5) { animation-delay: 0.45s; }
.fade-in:nth-child(6) { animation-delay: 0.55s; }
.fade-in:nth-child(7) { animation-delay: 0.65s; }
.fade-in:nth-child(8) { animation-delay: 0.75s; }

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-content,
    .two-col,
    .service-detail,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-detail-image { position: static; max-width: 520px; margin: 0 auto; width: 100%; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .nav-links.open {
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
    }

    .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 0 0 0.5rem;
        background: transparent;
        min-width: 0;
        text-align: center;
    }

    .has-dropdown:hover .dropdown,
    .has-dropdown:focus-within .dropdown {
        transform: none;
    }

    .dropdown a { padding: 0.5rem 1rem; }

    .nav-cta {
        margin: 1rem auto;
        display: inline-block !important;
        width: auto !important;
    }

    .section { padding: 4rem 1.5rem; }

    .cta-banner { padding: 4rem 1.5rem; }

    .page-hero { padding: 3.5rem 1.5rem 2.5rem; }

    .hero { padding: 3rem 1.5rem; min-height: auto; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand p { margin: 0 auto; }

    .contact-form { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .stats { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
}
