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

:root {
    --terracotta: #B85D3F;
    --terracotta-dark: #9A4B30;
    --terracotta-light: #D4845E;
    --sand: #F5E6D3;
    --sand-light: #FBF5ED;
    --sand-dark: #E8D5C0;
    --black: #1A1A1A;
    --black-soft: #2D2D2D;
    --gray: #6B6B6B;
    --gray-light: #9A9A9A;
    --white: #FFFFFF;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--black);
    background-color: var(--sand-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===== GEOMETRIC SHAPES ===== */
.geo-shape {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
}

.geo-shape--triangle {
    top: 15%;
    right: -60px;
    width: 300px;
    height: 300px;
    background: var(--terracotta);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: floatShape 20s ease-in-out infinite;
}

.geo-shape--circle {
    bottom: 20%;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--terracotta);
    animation: floatShape 25s ease-in-out infinite reverse;
}

.geo-shape--rect {
    top: 45%;
    left: 5%;
    width: 120px;
    height: 120px;
    background: var(--sand-dark);
    transform: rotate(45deg);
    opacity: 0.1;
    animation: floatShape 18s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(251, 245, 237, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(184, 93, 63, 0.1);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(26, 26, 26, 0.08);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-sm);
    padding-bottom: var(--space-sm);
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 1001;
}

.logo__mark {
    width: 44px;
    height: 44px;
    background: var(--terracotta);
    color: var(--sand-light);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo__line1 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
}

.logo__amp {
    font-style: italic;
    color: var(--terracotta);
}

.logo__line2 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ===== NAV ===== */
.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(--black);
    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);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--black-soft);
    position: relative;
    transition: color var(--transition);
}

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

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

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--terracotta);
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-weight: 600;
    transition: background var(--transition), transform var(--transition);
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--terracotta-dark);
    transform: translateY(-1px);
    color: var(--white) !important;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    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(184, 93, 63, 0.3);
}

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

.btn--outline:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn--white:hover {
    background: var(--sand);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.btn--ghost-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

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

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--sand) 50%, var(--sand-dark) 100%);
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--terracotta);
    margin-bottom: var(--space-md);
}

.hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--terracotta);
    border-radius: 50%;
    display: inline-block;
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: var(--space-md);
    max-width: 560px;
}

.hero__headline em {
    color: var(--terracotta);
    font-style: italic;
}

.hero__sub {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--terracotta);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.3rem;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--sand-dark);
}

/* Hero Image Stack */
.hero__right {
    position: relative;
}

.hero__image-stack {
    position: relative;
    height: 580px;
}

.hero__img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(26, 26, 26, 0.15);
}

.hero__img--main {
    width: 380px;
    height: 480px;
    top: 0;
    right: 0;
}

.hero__img--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__img--accent {
    width: 260px;
    height: 200px;
    bottom: 40px;
    left: 0;
    border: 6px solid var(--sand-light);
}

.hero__img--accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__badge {
    position: absolute;
    bottom: 270px;
    left: 40px;
    background: var(--terracotta);
    color: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(184, 93, 63, 0.3);
    z-index: 2;
}

/* Hero Stripe */
.hero__stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--sand-light);
    overflow: hidden;
}

.hero__stripe svg {
    width: 200%;
    height: 100%;
    color: var(--sand-dark);
    opacity: 0.5;
}

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

.section-label__dot {
    width: 8px;
    height: 8px;
    background: var(--terracotta);
    border-radius: 50%;
    display: inline-block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: var(--space-sm);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 560px;
}

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

.services__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.services__header .section-desc {
    margin: 0 auto;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(184, 93, 63, 0.08);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(26, 26, 26, 0.1);
}

.service-card--featured {
    background: var(--terracotta);
    color: var(--white);
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card--featured .service-card__icon {
    color: rgba(255, 255, 255, 0.8);
}

.service-card--featured .service-card__title {
    color: var(--white);
    font-size: 1.8rem;
}

.service-card--featured .service-card__desc {
    color: rgba(255, 255, 255, 0.85);
}

.service-card--featured .service-card__list li {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card__accent {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: var(--sand);
    border-radius: 50%;
    opacity: 0.3;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: var(--sand);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    margin-bottom: var(--space-md);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-sm);
}

.service-card__desc {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.service-card__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-card__list li {
    font-size: 0.9rem;
    color: var(--black-soft);
    padding-left: 1.2rem;
    position: relative;
    border-bottom: 1px solid var(--sand);
    padding-bottom: 0.5rem;
}

.service-card__list li:last-child {
    border-bottom: none;
}

.service-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    background: var(--terracotta);
    border-radius: 50%;
}

/* ===== ABOUT ===== */
.about {
    padding: var(--space-2xl) 0;
    background: var(--sand);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about__visual {
    position: relative;
    height: 600px;
}

.about__img-main {
    width: 100%;
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(26, 26, 26, 0.12);
}

.about__img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__img-float {
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 260px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 6px solid var(--sand);
    box-shadow: 0 15px 40px rgba(26, 26, 26, 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: 1rem 1.4rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 10px 30px rgba(184, 93, 63, 0.3);
}

.about__badge-year {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.about__badge-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
}

.about__content {
    padding: var(--space-md) 0;
}

.about__body {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.about__value {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.about__value-icon {
    width: 40px;
    height: 40px;
    background: var(--terracotta);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about__value strong {
    display: block;
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 0.2rem;
}

.about__value span {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ===== GALLERY ===== */
.gallery {
    padding: var(--space-2xl) 0;
    background: var(--sand-light);
    position: relative;
    z-index: 1;
}

.gallery__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-md);
}

.gallery__item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.6) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-tag {
    background: var(--white);
    color: var(--black);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

.gallery__item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
    height: 400px;
}

.gallery__item:nth-child(2) {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
    height: 400px;
}

.gallery__item:nth-child(3) {
    grid-column: 1 / 5;
    grid-row: 2 / 3;
    height: 300px;
}

.gallery__item:nth-child(4) {
    grid-column: 5 / 9;
    grid-row: 2 / 3;
    height: 300px;
}

.gallery__item--wide {
    grid-column: 9 / 13;
    grid-row: 2 / 3;
    height: 300px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: var(--space-2xl) 0;
    background: var(--black);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--terracotta);
    border-radius: 50%;
    opacity: 0.05;
}

.testimonials__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

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

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    position: relative;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: transform var(--transition), background var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
}

.testimonial-card__stars {
    display: flex;
    gap: 0.3rem;
    color: var(--terracotta-light);
    margin-bottom: var(--space-md);
}

.testimonial-card__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    background: var(--terracotta);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-card__name {
    display: block;
    font-size: 0.95rem;
    color: var(--white);
}

.testimonial-card__location {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: var(--space-2xl) 0;
    background: var(--terracotta);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 50%;
}

.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.cta-banner__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    max-width: 600px;
}

.cta-banner__desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 480px;
    margin-top: var(--space-sm);
}

.cta-banner__actions {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
    flex-wrap: wrap;
}

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

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact__info {
    padding: var(--space-lg) 0;
}

.contact__desc {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact__detail {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.contact__detail-icon {
    width: 44px;
    height: 44px;
    background: var(--sand);
    color: var(--terracotta);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__detail strong {
    display: block;
    font-size: 0.95rem;
    color: var(--black);
    margin-bottom: 0.2rem;
}

.contact__detail span,
.contact__detail a {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

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

/* Form */
.contact__form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: 0 15px 50px rgba(26, 26, 26, 0.08);
    border: 1px solid rgba(184, 93, 63, 0.08);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.4rem;
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--sand-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--black);
    background: var(--sand-light);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(184, 93, 63, 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='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3H11L6 8Z' fill='%236B6B6B'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: var(--space-sm);
    padding: 1rem;
    background: rgba(184, 93, 63, 0.1);
    color: var(--terracotta-dark);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-2xl) 0 var(--space-md);
    position: relative;
    z-index: 1;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
    max-width: 300px;
}

.footer__brand .logo__mark {
    background: var(--terracotta);
}

.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: var(--space-sm);
    color: rgba(255, 255, 255, 0.5);
}

.footer__links strong,
.footer__contact strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.footer__links ul,
.footer__contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__links a,
.footer__contact a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__left {
        order: 1;
    }

    .hero__right {
        order: 0;
        display: flex;
        justify-content: center;
    }

    .hero__headline {
        max-width: 100%;
    }

    .hero__sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__image-stack {
        height: 400px;
        width: 100%;
        max-width: 500px;
    }

    .hero__img--main {
        width: 280px;
        height: 360px;
    }

    .hero__img--accent {
        width: 180px;
        height: 140px;
    }

    .hero__badge {
        bottom: 200px;
        left: 20px;
    }

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

    .service-card--featured {
        grid-column: auto;
        grid-row: auto;
    }

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

    .about__visual {
        height: 400px;
        order: -1;
    }

    .about__img-float {
        right: -10px;
        width: 200px;
    }

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

    .gallery__item--large,
    .gallery__item:nth-child(2),
    .gallery__item:nth-child(3),
    .gallery__item:nth-child(4),
    .gallery__item--wide {
        grid-column: auto;
        grid-row: auto;
        height: 250px;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

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

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

    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }
}

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

    .nav__menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(251, 245, 237, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-md);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition), visibility var(--transition);
    }

    .nav__menu.open {
        opacity: 1;
        visibility: visible;
    }

    .nav__link {
        font-size: 1.2rem;
    }

    .nav__link--cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: var(--space-xl);
    }

    .hero__image-stack {
        height: 320px;
    }

    .hero__img--main {
        width: 220px;
        height: 280px;
    }

    .hero__img--accent {
        width: 150px;
        height: 110px;
    }

    .hero__badge {
        display: none;
    }

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

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

    .gallery__item,
    .gallery__item:nth-child(2),
    .gallery__item:nth-child(3),
    .gallery__item:nth-child(4),
    .gallery__item--wide {
        grid-column: auto;
        height: 250px;
    }

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

    .geo-shape {
        display: none;
    }
}

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

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

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

    .hero__stats {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .hero__stat-divider {
        width: 40px;
        height: 1px;
    }

    .about__visual {
        height: 300px;
    }

    .about__img-main {
        height: 300px;
    }

    .about__img-float {
        width: 160px;
        right: -5px;
    }

    .contact__form-wrap {
        padding: var(--space-md);
    }
}
