/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --green:       #84AF94;
    --green-dark:  #5E8C72;
    --green-deep:  #3D6B52;
    --green-light: #B2CEBA;
    --green-pale:  #EAF1EC;
    --cream:       #F7F5F0;
    --warm-white:  #FDFCFB;
    --charcoal:    #2C2C2C;
    --mid:         #5A5A5A;
    --muted:       #8A8A8A;
    --border:      #E4E0D8;
    --gold:        #C9A84C;
    --radius:      14px;
    --radius-sm:   8px;
    --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
    --shadow:      0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg:   0 8px 40px rgba(0,0,0,0.10);
    --t:           0.22s ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    color: var(--charcoal);
    background: var(--warm-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
a { text-decoration: none; color: inherit; }

/* === Buttons === */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--green);
    transition: all var(--t);
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(132,175,148,0.35);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all var(--t);
    backdrop-filter: blur(4px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--green-deep);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--green);
    transition: all var(--t);
}
.btn-outline:hover {
    background: var(--green-pale);
    transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* === Top Bar === */
.topbar {
    background: var(--green-deep);
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    padding: 8px 0;
}
.topbar-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.topbar-divider { opacity: 0.4; }
.topbar-link { color: var(--green-light); transition: color var(--t); }
.topbar-link:hover { color: #fff; }

/* === Header === */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(253,252,251,0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--t);
}
.header.scrolled { box-shadow: var(--shadow); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px;
}

.logo { display: flex; align-items: center; }
.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}
.logo-name { font-weight: 700; font-size: 1rem; color: var(--charcoal); line-height: 1.2; }
.logo-sub { font-size: 0.72rem; color: var(--muted); font-weight: 400; letter-spacing: 0.5px; }

.nav { display: flex; gap: 28px; }
.nav a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--mid);
    transition: color var(--t);
    position: relative;
    padding-bottom: 2px;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t);
    border-radius: 2px;
}
.nav a:hover { color: var(--green-dark); }
.nav a:hover::after { transform: scaleX(1); }

.header-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    border: 1.5px solid var(--green-light);
    border-radius: 50px;
    transition: all var(--t);
    background: var(--green-pale);
}
.header-phone:hover {
    background: var(--green);
    border-color: var(--green);
    color: white;
}
.phone-icon {
    width: 32px; height: 32px;
    background: var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: background var(--t);
}
.header-phone:hover .phone-icon { background: rgba(255,255,255,0.2); }
.phone-label { font-size: 0.7rem; color: var(--muted); line-height: 1; margin-bottom: 2px; transition: color var(--t); }
.header-phone:hover .phone-label { color: rgba(255,255,255,0.75); }
.phone-number { font-size: 0.9rem; font-weight: 700; color: var(--charcoal); transition: color var(--t); }
.header-phone:hover .phone-number { color: white; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all var(--t);
}

/* === Hero === */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--green-deep) 0%, #4A7A5E 40%, var(--green) 100%);
    padding-top: 80px;
    overflow: hidden;
    min-height: 88vh;
    display: flex;
    flex-direction: column;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 40%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    flex: 1;
    padding-top: 60px;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}
.tag-dot {
    width: 8px; height: 8px;
    background: var(--green-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-left h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 600;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-left h1 em {
    font-style: italic;
    color: var(--green-light);
}

.hero-left p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.82);
    max-width: 440px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.badge {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
}

/* Hero right */
.hero-photo-wrap {
    position: relative;
    height: 460px;
}

.hero-facility-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    image-orientation: from-image;
}

.photo-placeholder {
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    gap: 12px;
    font-size: 0.85rem;
    backdrop-filter: blur(4px);
}

.hero-float-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
}
.hero-float-card strong { display: block; font-size: 0.88rem; color: var(--charcoal); }
.hero-float-card span { font-size: 0.75rem; color: var(--muted); }
.float-icon { font-size: 1.4rem; }

.card-1 { bottom: 32px; left: -20px; animation: float1 4s ease-in-out infinite; }
.card-2 { top: 32px; right: -20px; animation: float2 4s ease-in-out infinite 1s; }

@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes float2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.hero-wave {
    position: relative;
    z-index: 2;
    margin-top: auto;
    line-height: 0;
}
.hero-wave svg { width: 100%; display: block; }

/* === Stats Bar === */
.stats-bar {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
}
.stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 0;
    gap: 0;
}
.stat-item {
    text-align: center;
    padding: 0 48px;
    flex: 1;
}
.stat-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-lbl {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.3px;
}
.stat-sep {
    width: 1px;
    height: 48px;
    background: var(--border);
    flex-shrink: 0;
}

/* === About === */
.about { padding: 110px 0; background: var(--warm-white); }

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-media { position: relative; }

.about-photo {
    border-radius: 20px;
}
.main-photo {
    aspect-ratio: 4/5;
    background: var(--green-pale);
    border: 2px solid var(--green-light);
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-orientation: from-image;
}
.accent-photo {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 48%;
    aspect-ratio: 1;
    background: white;
    border: 4px solid var(--warm-white);
    box-shadow: var(--shadow-lg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    overflow: visible;
}
.accent-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.photo-placeholder.small { gap: 8px; font-size: 0.75rem; color: var(--muted); }

.about-quote-badge {
    position: absolute;
    top: 32px;
    right: -32px;
    background: var(--green);
    color: white;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    max-width: 180px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.4;
    box-shadow: var(--shadow);
    z-index: 2;
}

.section-eyebrow {
    display: inline-block;
    color: var(--green-dark);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.about-text h2, .why-us-left h2, .contact-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 16px;
}

.about-text .lead {
    font-size: 1.1rem;
    color: var(--green-deep);
    font-weight: 500;
    margin-bottom: 14px;
}

.about-text p { color: var(--mid); margin-bottom: 14px; font-size: 0.97rem; }

/* === Services === */
.services { padding: 110px 0; background: var(--cream); }

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}
.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 14px;
    line-height: 1.2;
}
.section-header p { color: var(--mid); font-size: 1rem; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.svc-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    transition: all var(--t);
    overflow: hidden;
}
.svc-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t);
}
.svc-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--green-light);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--green-pale);
    line-height: 1;
    margin-bottom: -8px;
}
.svc-icon {
    width: 52px; height: 52px;
    background: var(--green-pale);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--green-dark);
    margin-bottom: 16px;
    transition: all var(--t);
}
.svc-card:hover .svc-icon {
    background: var(--green);
    color: white;
}
.svc-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.svc-card p { font-size: 0.9rem; color: var(--mid); line-height: 1.6; }

/* === Why Us === */
.why-us { padding: 110px 0; background: var(--warm-white); }

.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.why-us-left p { color: var(--mid); margin-bottom: 8px; font-size: 0.97rem; }
.why-us-left h2 { margin-bottom: 16px; }

.why-us-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.why-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: all var(--t);
}
.why-card:hover {
    border-color: var(--green-light);
    box-shadow: var(--shadow);
    background: var(--warm-white);
}
.why-icon {
    width: 44px; height: 44px;
    background: var(--green-pale);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--green-dark);
    flex-shrink: 0;
}
.why-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.why-card p { font-size: 0.85rem; color: var(--mid); line-height: 1.5; }

/* === Testimonials === */
.testimonials { padding: 110px 0; background: var(--green-deep); }

.testimonials .section-eyebrow { color: var(--green-light); }
.testimonials .section-header h2 { color: white; }
.testimonials .section-header p { color: rgba(255,255,255,0.65); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.testi-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--t);
    backdrop-filter: blur(4px);
}
.testi-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}
.testi-card.featured {
    background: rgba(255,255,255,0.12);
    border-color: rgba(178,206,186,0.3);
    transform: translateY(-8px);
}

.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }

.testi-card blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.08rem;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.65;
    margin-bottom: 24px;
}

.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.88rem;
    flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.88rem; color: white; }
.testi-author span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* === CTA Section === */
.cta-section {
    padding: 100px 0;
    background: var(--cream);
}

.cta-inner {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.cta-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 100%;
    background: var(--green);
}

.cta-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.2;
}
.cta-text p { color: var(--mid); font-size: 1rem; }

.cta-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* === Contact === */
.contact { padding: 110px 0; background: var(--warm-white); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
}

.contact-left h2 { margin-bottom: 12px; }
.contact-left > p { color: var(--mid); margin-bottom: 36px; }

.contact-items { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }

.contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--t);
    border: 1px solid transparent;
}
.contact-row:not(.no-hover):hover {
    background: var(--green-pale);
    border-color: var(--green-light);
}
.contact-icon {
    width: 44px; height: 44px;
    background: var(--green-pale);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--green-dark);
    flex-shrink: 0;
}
.contact-label {
    display: block;
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.contact-value {
    display: block;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--charcoal);
}
.contact-arrow { color: var(--green); margin-left: auto; flex-shrink: 0; }

.social-row { display: flex; gap: 10px; }
.social-btn {
    width: 42px; height: 42px;
    border-radius: var(--radius-sm);
    background: var(--cream);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--mid);
    transition: all var(--t);
}
.social-btn:hover { background: var(--green); color: white; border-color: var(--green); }

/* === Contact Form === */
.contact-right {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 44px;
}

.contact-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.form-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.93rem;
    font-family: inherit;
    background: white;
    color: var(--charcoal);
    transition: border-color var(--t), box-shadow var(--t);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(132,175,148,0.15);
}
.form-group textarea { resize: vertical; }

.btn-submit {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-sm);
    padding: 16px;
    font-size: 1rem;
    margin-top: 4px;
}

/* === Footer === */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.7); }

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding: 60px 0 48px;
}

.footer-left .footer-logo {
    margin-bottom: 14px;
}
.footer-logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.footer-left p { font-size: 0.88rem; line-height: 1.6; }

.footer-center, .footer-right {
    display: flex; flex-direction: column; gap: 8px;
}
.footer-center strong, .footer-right strong {
    color: white;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.footer-center a, .footer-center span,
.footer-right span {
    font-size: 0.88rem;
    transition: color var(--t);
}
.footer-center a:hover { color: var(--green-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
}
.footer-bottom .container {
    display: flex; align-items: center; justify-content: center;
}
.footer-bottom span { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* === Mobile Sticky CTA === */
.mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 12px 16px;
    background: white;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
    z-index: 999;
}
.mobile-sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--green);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: background var(--t);
}
.mobile-sticky-btn:hover { background: var(--green-dark); }

/* === Responsive === */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .testi-card.featured { transform: none; }
    .why-us-inner { grid-template-columns: 1fr; gap: 40px; }
    .why-us-right { grid-template-columns: repeat(2, 1fr); }
    .cta-inner { flex-direction: column; text-align: center; padding: 48px; }
    .about-grid { gap: 48px; }
}

@media (max-width: 768px) {
    .topbar { display: none; }

    .nav {
        display: none;
        position: absolute;
        top: 76px; left: 0; right: 0;
        background: var(--warm-white);
        flex-direction: column;
        padding: 20px 28px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        gap: 16px;
        z-index: 99;
    }
    .nav.active { display: flex; }
    .mobile-toggle { display: flex; }
    .header-phone { display: none; }

    .hero-container { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left h1 { font-size: 2.4rem; }

    .stats-inner { flex-wrap: wrap; }
    .stat-sep { display: none; }
    .stat-item { width: 50%; padding: 16px; }

    .about-grid { grid-template-columns: 1fr; }
    .about-quote-badge { display: none; }
    .accent-photo { display: none; }
    .main-photo { aspect-ratio: 16/9; }

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

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

    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-right { padding: 28px; }

    .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 0 32px; }

    .mobile-sticky { display: block; }
    body { padding-bottom: 72px; }

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

    .why-us-right { grid-template-columns: 1fr; }
    .cta-inner { padding: 32px 24px; }
}

@media (max-width: 480px) {
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn-primary,
    .hero-ctas .btn-ghost { text-align: center; justify-content: center; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn-primary,
    .cta-actions .btn-outline { justify-content: center; }
}

/* === Gallery === */
.gallery { padding: 110px 0; background: var(--cream); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item.gallery-wide {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-orientation: from-image;
    transition: transform 0.4s ease;
    display: block;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.55));
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    opacity: 0;
    transition: opacity var(--t);
}

.gallery-item:hover .gallery-label { opacity: 1; }

/* === Pricing === */
.pricing { padding: 110px 0; background: var(--warm-white); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--t);
    position: relative;
}
.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.pricing-featured {
    border-color: var(--green);
    background: white;
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.pricing-featured:hover { transform: translateY(-12px); }

.pricing-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--green);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 50px;
    z-index: 2;
}

.pricing-photo {
    height: 180px;
    overflow: hidden;
}
.pricing-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-orientation: from-image;
}

.pricing-body { padding: 24px; }
.pricing-body h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.pricing-body > p { font-size: 0.88rem; color: var(--mid); margin-bottom: 16px; line-height: 1.5; }

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 20px;
}
.pricing-features li {
    font-size: 0.85rem;
    color: var(--mid);
    display: flex;
    align-items: center;
    gap: 8px;
}
.pricing-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.pricing-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--green-deep);
    line-height: 1;
}
.price span { font-size: 0.9rem; color: var(--muted); font-family: 'DM Sans', sans-serif; }

.pricing-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 32px;
    font-style: italic;
}

/* === Video Section === */
.video-section { padding: 110px 0; background: var(--cream); }

.video-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: center;
}

.video-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
}
.video-text p { color: var(--mid); margin-bottom: 28px; font-size: 0.97rem; line-height: 1.65; }

.video-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.video-frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/9;
    background: #000;
    position: relative;
    display: block;
}

.video-thumb {
    cursor: pointer;
    text-decoration: none;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-thumb:hover img {
    transform: scale(1.03);
    opacity: 0.85;
}

.yt-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: #FF0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding-left: 4px;
}

.video-thumb:hover .yt-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.yt-label {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.65);
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    white-space: nowrap;
    backdrop-filter: blur(4px);
}

.square-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.9rem;
    padding: 12px 22px;
    border-radius: 50px;
}

/* === Responsive additions === */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .pricing-featured { transform: none; }
    .pricing-featured:hover { transform: translateY(-4px); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.gallery-wide { grid-column: span 2; }
    .video-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.gallery-wide { grid-column: span 1; aspect-ratio: 4/3; }
    .pricing-grid { max-width: 100%; }
    .pricing-footer { flex-direction: column; align-items: flex-start; }
    .pricing-footer .btn-primary { width: 100%; justify-content: center; }
}

/* === Scroll Animations === */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
