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

:root {
    --terracotta: #C2704E;
    --terracotta-dark: #A85A3A;
    --terracotta-light: #D4916F;
    --sand: #F5E6D3;
    --sand-light: #FAF3EB;
    --sand-dark: #E8D5C0;
    --cream: #FDF8F3;
    --dark: #2C1810;
    --dark-soft: #4A3228;
    --gray: #7A6558;
    --gray-light: #A89285;
    --white: #FFFFFF;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.06);
    --shadow-md: 0 8px 30px rgba(44, 24, 16, 0.10);
    --shadow-lg: 0 20px 60px rgba(44, 24, 16, 0.14);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--dark);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* ===== BACKGROUND SHAPES ===== */
.bg-shape {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.bg-shape--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--sand) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.bg-shape--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(194, 112, 78, 0.08) 0%, transparent 70%);
    top: 50%;
    left: -100px;
    border-radius: 50%;
}

.bg-shape--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--sand-dark) 0%, transparent 70%);
    bottom: 10%;
    right: 5%;
    border-radius: 50%;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 243, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(194, 112, 78, 0.1);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
}

.logo__mark {
    width: 40px;
    height: 40px;
    background: var(--terracotta);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.logo__text {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
    transition: color var(--transition);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width var(--transition);
}

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

.nav a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle__line {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

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

.btn--primary:hover {
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(194, 112, 78, 0.35);
}

.btn--ghost {
    background: transparent;
    color: var(--dark);
    border-color: var(--sand-dark);
}

.btn--ghost:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
    transform: translateY(-2px);
}

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

.btn--light:hover {
    background: var(--sand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

/* ===== SECTION LABELS ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--terracotta);
    margin-bottom: 16px;
}

.section-label--light {
    color: var(--sand);
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--terracotta);
    border-radius: 2px;
}

.section-label--light::before {
    background: var(--sand);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 24px;
}

.section-title--light {
    color: var(--white);
}

.text-terracotta {
    color: var(--terracotta);
}

.text-sand {
    color: var(--sand);
}

/* ===== HERO ===== */
.hero {
    padding: 120px 0 80px;
    position: relative;
    z-index: 1;
}

.hero__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 56px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero__card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: var(--sand);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}

.hero__card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: var(--terracotta);
    border-radius: 50%;
    opacity: 0.06;
    z-index: 0;
}

.hero__content {
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray);
    margin-bottom: 24px;
}

.hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--terracotta);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 700;
    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;
    right: 0;
    height: 8px;
    background: var(--sand);
    z-index: -1;
    border-radius: 4px;
}

.hero__subheadline {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__image-wrap {
    position: relative;
    z-index: 1;
}

.hero__image {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.hero__image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100px;
    height: 100px;
    background: var(--terracotta);
    border-radius: var(--radius);
    opacity: 0.15;
    z-index: -1;
}

/* ===== STAT CARDS ===== */
.hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--sand-dark);
    border-radius: 3px 3px 0 0;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-card--terracotta::before {
    background: var(--terracotta);
}

.stat-card--sand::before {
    background: var(--sand-dark);
}

.stat-card__number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--terracotta);
    margin-bottom: 6px;
}

.stat-card--sand .stat-card__number {
    color: var(--dark);
}

.stat-card__label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.about__grid {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 64px;
    align-items: start;
}

.about__image-col {
    position: relative;
}

.about__image-block {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image-block img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--terracotta);
    border-radius: var(--radius);
    opacity: 0.12;
    z-index: -1;
}

.about__text-col {
    padding-top: 16px;
}

.about__text-col p {
    color: var(--gray);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.about__credentials {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-soft);
}

.credential__icon {
    width: 20px;
    height: 20px;
    color: var(--terracotta);
    flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    background: var(--sand-light);
}

.services__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.services__header .section-title {
    color: var(--dark);
}

.services__subtitle {
    color: var(--gray);
    font-size: 1.05rem;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--sand-dark);
    transition: background var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(194, 112, 78, 0.15);
}

.service-card:hover::before {
    background: var(--terracotta);
}

.service-card--highlight {
    background: var(--terracotta);
    border-color: var(--terracotta);
}

.service-card--highlight::before {
    background: var(--sand);
}

.service-card--highlight .service-card__title,
.service-card--highlight .service-card__desc {
    color: var(--white);
}

.service-card--highlight .service-card__icon {
    color: var(--sand);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    color: var(--terracotta);
    margin-bottom: 24px;
}

.service-card__icon svg {
    width: 100%;
    height: 100%;
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== APPROACH ===== */
.approach {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

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

.approach__visual {
    position: relative;
}

.approach__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.approach__image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.approach__shape {
    position: absolute;
}

.approach__shape--circle {
    width: 200px;
    height: 200px;
    background: var(--terracotta);
    border-radius: 50%;
    opacity: 0.08;
    top: -40px;
    left: -40px;
    z-index: 0;
}

.approach__shape--square {
    width: 120px;
    height: 120px;
    background: var(--sand);
    border-radius: var(--radius);
    bottom: -30px;
    right: -30px;
    z-index: 0;
    transform: rotate(15deg);
}

.approach__text p {
    color: var(--gray);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.approach__list {
    list-style: none;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.approach__list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--dark-soft);
}

.approach__list-dot {
    width: 10px;
    height: 10px;
    background: var(--terracotta);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    background: var(--sand-light);
}

.faq__header {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 64px;
}

.faq__header .section-title {
    color: var(--dark);
}

.faq__grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid transparent;
    transition: all var(--transition);
}

.faq__item:hover {
    border-color: rgba(194, 112, 78, 0.2);
}

.faq__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq__btn-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.faq__btn-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--terracotta);
    transition: transform var(--transition);
}

.faq__btn[aria-expanded="true"] .faq__btn-icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer p {
    padding: 0 28px 22px;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq__item.active .faq__answer {
    max-height: 200px;
}

/* ===== CTA ===== */
.cta {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.cta__card {
    background: var(--terracotta);
    border-radius: var(--radius-xl);
    padding: 80px 64px;
    position: relative;
    overflow: hidden;
}

.cta__geometric {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta__circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.cta__circle--1 {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -60px;
}

.cta__circle--2 {
    width: 180px;
    height: 180px;
    bottom: -40px;
    left: 10%;
}

.cta__square {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    top: 20%;
    left: 5%;
    transform: rotate(30deg);
}

.cta__triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(255, 255, 255, 0.05);
    bottom: 15%;
    right: 10%;
    transform: rotate(-15deg);
}

.cta__content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.cta__headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.cta__body {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 36px;
}

.cta__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    background: var(--sand-light);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact__info p {
    color: var(--gray);
    font-size: 1.02rem;
    margin-bottom: 32px;
}

.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: 24px;
    height: 24px;
    color: var(--terracotta);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact__detail strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact__detail span,
.contact__detail a {
    font-size: 0.95rem;
    color: var(--gray);
}

.contact__detail a:hover {
    color: var(--terracotta);
}

.contact__map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* ===== FORM ===== */
.contact__form-col {
    position: relative;
}

.contact__form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact__form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--terracotta), var(--terracotta-light), var(--sand));
}

.contact__form-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 28px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-soft);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form__input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--sand-dark);
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--sand-light);
    transition: all var(--transition);
    outline: none;
}

.form__input:focus {
    border-color: var(--terracotta);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(194, 112, 78, 0.1);
}

.form__input::placeholder {
    color: var(--gray-light);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6558' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__privacy {
    font-size: 0.8rem;
    color: var(--gray-light);
    text-align: center;
    margin-top: 16px;
}

.form__success {
    text-align: center;
    padding: 40px 20px;
}

.form__success svg {
    width: 56px;
    height: 56px;
    color: var(--terracotta);
    margin: 0 auto 16px;
}

.form__success p {
    color: var(--dark-soft);
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact__form.hidden {
    display: none;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--sand);
    padding: 64px 0 32px;
    position: relative;
    z-index: 1;
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(245, 230, 211, 0.1);
    margin-bottom: 32px;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__brand .logo__mark {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
}

.footer__brand .logo__text {
    color: var(--sand);
}

.footer__links {
    display: flex;
    gap: 28px;
}

.footer__links a {
    font-size: 0.9rem;
    color: var(--gray-light);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--terracotta-light);
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__bottom p {
    font-size: 0.85rem;
    color: var(--gray);
}

.footer__disclaimer {
    font-size: 0.78rem !important;
    color: var(--gray) !important;
    opacity: 0.7;
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__card {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .hero__image-wrap {
        max-width: 480px;
    }

    .hero__image {
        height: 400px;
    }

    .hero__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__image-col {
        max-width: 480px;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach__split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .approach__visual {
        max-width: 560px;
    }

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

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

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition);
        z-index: 1000;
    }

    .nav.open {
        right: 0;
    }

    .nav a {
        font-size: 1.1rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero__card {
        padding: 28px;
    }

    .hero__headline {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-card {
        padding: 20px 16px;
    }

    .stat-card__number {
        font-size: 1.4rem;
    }

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

    .service-card--highlight {
        order: -1;
    }

    .cta__card {
        padding: 48px 28px;
    }

    .cta__actions {
        flex-direction: column;
    }

    .cta__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .contact__form-card {
        padding: 32px 24px;
    }

    .footer__top {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__card {
        padding: 24px;
    }

    .hero__image {
        height: 300px;
    }

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

    .about__image-block img {
        height: 400px;
    }

    .approach__image img {
        height: 300px;
    }
}
