/* ── Reset & Base ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #2C2420;
    background: #FDF8F4;
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Color Tokens ────────────────────────────────── */
:root {
    --terracotta: #C0593A;
    --terracotta-dark: #A04828;
    --terracotta-light: #D4785A;
    --sand: #E8D5C0;
    --sand-light: #F5EDE4;
    --sand-dark: #C4A882;
    --cream: #FDF8F4;
    --dark: #2C2420;
    --dark-soft: #4A3F38;
    --white: #FFFFFF;
    --accent-green: #2D6A4F;
}

/* ── Decorative Background Shapes ────────────────── */
.bg-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.shape { position: absolute; opacity: 0.04; }
.shape--circle-1 {
    width: 600px; height: 600px;
    border-radius: 50%;
    background: var(--terracotta);
    top: -150px; right: -100px;
}
.shape--circle-2 {
    width: 400px; height: 400px;
    border-radius: 50%;
    background: var(--sand-dark);
    bottom: 20%; left: -80px;
}
.shape--rect-1 {
    width: 200px; height: 200px;
    background: var(--terracotta);
    top: 50%; right: 5%;
    transform: rotate(45deg);
    opacity: 0.03;
}
.shape--rect-2 {
    width: 140px; height: 140px;
    background: var(--sand-dark);
    top: 70%; left: 8%;
    transform: rotate(20deg);
    opacity: 0.03;
}

/* ── Typography ──────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; line-height: 1.2; }
.text-accent { color: var(--terracotta); }

/* ── Section Tags ────────────────────────────────── */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 12px;
}
.section-tag::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--terracotta);
    display: inline-block;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    margin-bottom: 16px;
}
.section-desc {
    font-size: 1.1rem;
    color: var(--dark-soft);
    max-width: 560px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn--primary {
    background: var(--terracotta);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(192, 89, 58, 0.35);
}
.btn--primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(192, 89, 58, 0.45);
}
.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn--ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}
.btn--white {
    background: var(--white);
    color: var(--terracotta);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
.btn--outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}
.btn--full { width: 100%; justify-content: center; }

/* ── Navigation ──────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(253, 248, 244, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(192, 89, 58, 0.08);
    transition: box-shadow 0.3s ease;
}
.nav.scrolled {
    box-shadow: 0 4px 30px rgba(44, 36, 32, 0.08);
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: var(--dark);
}
.nav__logo-mark {
    width: 36px; height: 36px;
    background: var(--terracotta);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}
.nav__logo-sub { color: var(--terracotta); }
.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav__links a:not(.nav__cta) {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-soft);
    transition: color 0.2s;
    position: relative;
}
.nav__links a:not(.nav__cta):hover { color: var(--terracotta); }
.nav__links a:not(.nav__cta)::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--terracotta);
    transition: width 0.3s;
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--terracotta);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}
.nav__cta:hover {
    background: var(--terracotta-dark);
    transform: translateY(-1px);
}
.nav__cta::after { display: none !important; }

/* Mobile toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav__toggle-bar {
    width: 24px; height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s;
}
.nav__toggle.active .nav__toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle.active .nav__toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--sand-light) 50%, var(--sand) 100%);
}
.hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 20px;
}
.hero__eyebrow-dot {
    width: 8px; height: 8px;
    background: var(--terracotta);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.hero__headline {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 24px;
}
.hero__highlight {
    color: var(--terracotta);
    position: relative;
}
.hero__highlight::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0;
    width: 100%; height: 8px;
    background: var(--sand);
    z-index: -1;
    border-radius: 4px;
}
.hero__sub {
    font-size: 1.15rem;
    color: var(--dark-soft);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero__stats {
    display: flex;
    gap: 24px;
    align-items: center;
}
.hero__stat-num {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--terracotta);
    line-height: 1;
}
.hero__stat-label {
    font-size: 0.8rem;
    color: var(--dark-soft);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.hero__stat-divider {
    width: 1px; height: 40px;
    background: var(--sand-dark);
    opacity: 0.5;
}

/* Hero image stack */
.hero__visual { position: relative; }
.hero__image-stack {
    position: relative;
    height: 560px;
}
.hero__img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 36, 32, 0.15);
}
.hero__img--main {
    width: 100%;
    height: 560px;
}
.hero__img--main img, .hero__img--accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__img--accent {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 260px;
    border: 6px solid var(--cream);
    z-index: 3;
}
.hero__img-card {
    position: absolute;
    top: 40px;
    right: -20px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(44, 36, 32, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    font-size: 0.85rem;
    color: var(--dark-soft);
    line-height: 1.4;
}
.hero__img-card svg { color: var(--terracotta); flex-shrink: 0; }

/* Hero decorative shapes */
.hero__shape {
    position: absolute;
    z-index: 1;
}
.hero__shape--bl {
    width: 300px; height: 300px;
    background: var(--terracotta);
    border-radius: 50%;
    bottom: -80px; left: -80px;
    opacity: 0.06;
}
.hero__shape--tr {
    width: 200px; height: 200px;
    background: var(--sand-dark);
    top: 10%; right: -40px;
    transform: rotate(30deg);
    opacity: 0.08;
}

/* ── Services ────────────────────────────────────── */
.services {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: var(--white);
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--sand-dark);
    transition: background 0.3s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(44, 36, 32, 0.1);
    border-color: rgba(192, 89, 58, 0.15);
}
.service-card:hover::before { background: var(--terracotta); }
.service-card--accent {
    background: var(--terracotta);
    color: var(--white);
}
.service-card--accent::before { background: var(--sand); }
.service-card--accent:hover { border-color: rgba(255,255,255,0.2); }
.service-card__icon-wrap {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.service-card:not(.service-card--accent) .service-card__icon-wrap {
    background: rgba(192, 89, 58, 0.1);
    color: var(--terracotta);
}
.service-card--accent .service-card__icon-wrap {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}
.service-card__icon { display: flex; }
.service-card__title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: inherit;
}
.service-card__desc {
    font-size: 0.95rem;
    color: var(--dark-soft);
    margin-bottom: 20px;
    line-height: 1.7;
}
.service-card--accent .service-card__desc { color: rgba(255,255,255,0.85); }
.service-card__list {
    list-style: none;
    margin-bottom: 24px;
}
.service-card__list li {
    position: relative;
    padding-left: 18px;
    font-size: 0.9rem;
    color: var(--dark-soft);
    margin-bottom: 8px;
}
.service-card:not(.service-card--accent) .service-card__list li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 6px; height: 6px;
    background: var(--terracotta);
    border-radius: 50%;
}
.service-card--accent .service-card__list li { color: rgba(255,255,255,0.9); }
.service-card--accent .service-card__list li::before { background: var(--sand); }
.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--terracotta);
    transition: gap 0.3s;
}
.service-card--accent .service-card__link { color: var(--white); }
.service-card__link:hover { gap: 12px; }

/* ── About ───────────────────────────────────────── */
.about {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}
.about__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about__visual { position: relative; height: 560px; }
.about__img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 36, 32, 0.12);
    width: 85%;
    height: 480px;
}
.about__img-main img { width: 100%; height: 100%; object-fit: cover; }
.about__img-float {
    position: absolute;
    bottom: 0; right: 0;
    width: 55%;
    border-radius: 16px;
    overflow: hidden;
    border: 6px solid var(--cream);
    box-shadow: 0 12px 40px rgba(44, 36, 32, 0.12);
}
.about__img-float img { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
    position: absolute;
    top: 20px;
    right: 40px;
    background: var(--terracotta);
    color: var(--white);
    padding: 20px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(192, 89, 58, 0.35);
}
.about__badge-num {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 2.4rem;
    line-height: 1;
}
.about__badge-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
}
.about__content .section-title { margin-bottom: 24px; }
.about__body {
    font-size: 1.05rem;
    color: var(--dark-soft);
    margin-bottom: 16px;
    line-height: 1.75;
}
.about__values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}
.about__value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.about__value-icon {
    width: 44px; height: 44px;
    min-width: 44px;
    background: rgba(192, 89, 58, 0.1);
    color: var(--terracotta);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about__value strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 2px;
}
.about__value span {
    font-size: 0.9rem;
    color: var(--dark-soft);
}
.about__shape {
    position: absolute;
    width: 400px; height: 400px;
    background: var(--sand);
    border-radius: 50%;
    right: -100px; top: -100px;
    opacity: 0.3;
    z-index: 1;
}

/* ── Why Us ──────────────────────────────────────── */
.why {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 2;
}
.why__header { text-align: center; margin-bottom: 64px; }
.why__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}
.why__card {
    background: var(--cream);
    border-radius: 20px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid transparent;
}
.why__card:hover {
    border-color: rgba(192, 89, 58, 0.15);
    box-shadow: 0 12px 40px rgba(44, 36, 32, 0.08);
}
.why__card-num {
    font-family: 'DM Serif Display', serif;
    font-size: 3.5rem;
    color: var(--sand-dark);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}
.why__card-title {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}
.why__card-desc {
    font-size: 0.95rem;
    color: var(--dark-soft);
    line-height: 1.7;
}

/* ── CTA Banner ──────────────────────────────────── */
.cta-banner {
    padding: 100px 0;
    background: var(--terracotta);
    position: relative;
    overflow: hidden;
}
.cta-banner__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-shape {
    position: absolute;
    border-radius: 50%;
}
.cta-shape--1 {
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.05);
    top: -100px; left: -100px;
}
.cta-shape--2 {
    width: 250px; height: 250px;
    background: rgba(255,255,255,0.06);
    bottom: -60px; right: 10%;
}
.cta-shape--3 {
    width: 120px; height: 120px;
    background: rgba(255,255,255,0.08);
    top: 20%; right: 5%;
}
.cta-banner__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.cta-banner__title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 16px;
}
.cta-banner__text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    line-height: 1.7;
}
.cta-banner__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Contact ─────────────────────────────────────── */
.contact {
    padding: 100px 0;
    background: var(--sand-light);
    position: relative;
    z-index: 2;
}
.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact__info .section-title { margin-bottom: 16px; }
.contact__desc {
    font-size: 1.05rem;
    color: var(--dark-soft);
    margin-bottom: 36px;
    line-height: 1.7;
}
.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}
.contact__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact__detail-icon {
    width: 48px; height: 48px;
    min-width: 48px;
    background: var(--terracotta);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact__detail strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 4px;
}
.contact__detail span,
.contact__detail a {
    font-size: 0.9rem;
    color: var(--dark-soft);
    line-height: 1.6;
}
.contact__detail a:hover { color: var(--terracotta); }
.contact__map { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 30px rgba(44,36,32,0.1); }

/* Form */
.contact__form-wrap { }
.contact__form-card {
    background: var(--white);
    border-radius: 24px;
    padding: 44px;
    box-shadow: 0 12px 40px rgba(44, 36, 32, 0.08);
}
.contact__form-title {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 8px;
}
.contact__form-sub {
    font-size: 0.95rem;
    color: var(--dark-soft);
    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.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--sand);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--cream);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 4px rgba(192, 89, 58, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--sand-dark); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* Success state */
.contact__success {
    text-align: center;
    padding: 40px 20px;
}
.contact__success h4 {
    font-size: 1.5rem;
    color: var(--dark);
    margin: 16px 0 8px;
}
.contact__success p {
    color: var(--dark-soft);
    font-size: 0.95rem;
}

/* ── Footer ──────────────────────────────────────── */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    position: relative;
    z-index: 2;
}
.footer__inner {
    padding: 64px 24px 48px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}
.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 12px;
}
.footer__logo-mark {
    width: 36px; height: 36px;
    background: var(--terracotta);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}
.footer__logo span { color: var(--sand); }
.footer__tagline {
    font-size: 0.9rem;
    max-width: 280px;
    line-height: 1.7;
}
.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col strong {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}
.footer__col a, .footer__col span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.footer__col a:hover { color: var(--terracotta-light); }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px;
}
.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}
.footer__bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--terracotta-light); }

/* ── Mobile Menu Overlay ─────────────────────────── */
.nav__mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(253, 248, 244, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.nav__mobile-overlay.active { display: flex; }
.nav__mobile-overlay a {
    font-size: 1.4rem;
    font-family: 'DM Serif Display', serif;
    color: var(--dark);
    transition: color 0.2s;
}
.nav__mobile-overlay a:hover { color: var(--terracotta); }
.nav__mobile-cta {
    margin-top: 16px;
    background: var(--terracotta);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

/* ── Scroll Animations ───────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
    .hero__grid { grid-template-columns: 1fr; gap: 40px; }
    .hero__visual { order: -1; max-width: 500px; margin: 0 auto; }
    .hero__image-stack { height: 400px; }
    .hero__img--main { height: 400px; }
    .hero__img--accent { width: 200px; left: -20px; }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .about__inner { grid-template-columns: 1fr; gap: 40px; }
    .about__visual { height: 400px; }
    .about__img-main { height: 360px; }
    .contact__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__toggle { display: flex; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero__headline { font-size: clamp(2rem, 8vw, 2.8rem); }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { justify-content: center; }
    .hero__image-stack { height: 320px; }
    .hero__img--main { height: 320px; }
    .hero__img--accent { width: 160px; left: -10px; bottom: -20px; }
    .hero__img-card { right: -10px; top: 20px; font-size: 0.78rem; padding: 12px 14px; }
    .hero__stats { flex-wrap: wrap; gap: 16px; }
    .services__grid { grid-template-columns: 1fr; }
    .why__grid { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr; gap: 32px; }
    .footer__links { grid-template-columns: repeat(3, 1fr); }
    .contact__form-card { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .section-header { margin-bottom: 48px; }
    .about__badge { right: 10px; top: 10px; padding: 14px 16px; }
    .about__badge-num { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero__image-stack { height: 260px; }
    .hero__img--main { height: 260px; }
    .hero__img--accent { display: none; }
    .footer__links { grid-template-columns: 1fr; gap: 20px; }
    .footer__bottom-inner { flex-direction: column; text-align: center; }
}
