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

:root {
    --terracotta: #C2704E;
    --terracotta-dark: #A85A3A;
    --sand: #F5F0EB;
    --sand-light: #FAF7F4;
    --sand-mid: #EDE8E2;
    --charcoal: #1A1A1A;
    --text: #2C2C2C;
    --text-light: #6B6B6B;
    --text-muted: #9A9A9A;
    --white: #FFFFFF;
    --line: rgba(26, 26, 26, 0.08);
    --line-strong: rgba(26, 26, 26, 0.15);
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text);
    background: var(--sand-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.line {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100vh;
    background: var(--line);
    pointer-events: none;
    z-index: 100;
}

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

/* ── Header ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(250, 247, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.4s var(--ease);
}

.header.scrolled {
    box-shadow: 0 1px 0 var(--line);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.logo svg {
    flex-shrink: 0;
}

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

.nav a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 400;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.nav a:hover {
    color: var(--charcoal);
    background: var(--sand);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--charcoal);
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.2s var(--ease);
}

.menu-toggle:hover {
    background: var(--sand);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8125rem 1.75rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--ease);
    letter-spacing: 0.01em;
}

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

.btn--primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(194, 112, 78, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

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

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(26, 26, 26, 0.72) 0%,
        rgba(26, 26, 26, 0.45) 55%,
        rgba(26, 26, 26, 0.15) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: 72px;
    width: 100%;
}

.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--white);
    max-width: 720px;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-headline em {
    font-style: italic;
    color: var(--sand);
}

.hero-sub {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

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

.hero-actions .btn--primary {
    background: var(--terracotta);
}

/* ── Strip ── */
.strip {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.strip-item {
    flex: 1;
    min-width: 200px;
    padding: 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.strip-divider {
    width: 1px;
    height: 32px;
    background: var(--line);
    flex-shrink: 0;
}

.strip-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.strip-value {
    font-size: 0.9375rem;
    color: var(--text);
    font-weight: 400;
}

.strip-link {
    font-size: 0.9375rem;
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s var(--ease);
}

.strip-link:hover {
    color: var(--terracotta-dark);
}

/* ── Section shared ── */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

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

/* ── Services ── */
.services {
    padding: 7rem 0;
    background: var(--sand-light);
}

.services .section-header {
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
}

.service-card {
    background: var(--sand-light);
    padding: 2.5rem 2rem;
    transition: background 0.35s var(--ease);
}

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

.service-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--sand);
    color: var(--terracotta);
    margin-bottom: 1.5rem;
    transition: background 0.3s var(--ease);
}

.service-card:hover .service-icon {
    background: var(--terracotta);
    color: var(--white);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
}

/* ── About ── */
.about {
    padding: 7rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-content .section-title {
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-weight: 300;
}

.about-values {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.value:first-child {
    border-top: 1px solid var(--line);
}

.value-label {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text);
}

.value-line {
    width: 40px;
    height: 1px;
    background: var(--terracotta);
}

/* ── Gallery ── */
.gallery {
    padding: 0 0 7rem;
    background: var(--sand-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--sand-mid);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
    filter: saturate(0.85);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: saturate(1);
}

/* ── Reviews ── */
.reviews {
    padding: 7rem 0;
    background: var(--sand-light);
}

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

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 2rem;
    transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.review-card:hover {
    box-shadow: 0 8px 32px rgba(26, 26, 26, 0.06);
    transform: translateY(-2px);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.review-name {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--charcoal);
}

.review-location {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ── CTA / Contact ── */
.cta {
    padding: 7rem 0;
    background: var(--charcoal);
    color: var(--white);
}

.cta .section-eyebrow {
    color: var(--terracotta);
}

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

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.cta-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 300;
    transition: color 0.2s var(--ease);
}

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

.cta-detail svg {
    flex-shrink: 0;
    color: var(--terracotta);
}

/* ── Form ── */
.cta-form-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.5;
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    background: rgba(255, 255, 255, 0.08);
}

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

.form-success {
    display: none;
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    background: rgba(194, 112, 78, 0.15);
    border: 1px solid rgba(194, 112, 78, 0.3);
    border-radius: 10px;
    color: var(--sand);
    font-size: 0.9375rem;
    text-align: center;
}

.form-success.visible {
    display: block;
}

/* ── Footer ── */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.5);
    padding: 4rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 300;
    transition: color 0.2s var(--ease);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 300;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s var(--ease);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 0;
}

.footer-bottom p {
    font-size: 0.8125rem;
    font-weight: 300;
}

/* ── Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* ── Mobile ── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .header-inner { padding: 0 1.25rem; }

    .menu-toggle { display: flex; align-items: center; justify-content: center; }

    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(250, 247, 244, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 2rem 1.25rem;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        z-index: 199;
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }

    .nav a {
        display: block;
        padding: 1rem;
        font-size: 1.125rem;
        border-radius: 12px;
    }

    .nav a:hover {
        background: var(--sand);
    }

    .nav .btn--primary {
        margin-top: 1rem;
        text-align: center;
        justify-content: center;
    }

    .hero-content { padding: 0 1.25rem; padding-top: 72px; }
    .hero-headline { font-size: clamp(2rem, 10vw, 3rem); }

    .strip-inner {
        flex-direction: column;
        gap: 0;
    }
    .strip-divider { display: none; }
    .strip-item { padding: 1rem 1.25rem; border-bottom: 1px solid var(--line); width: 100%; }

    .container { padding: 0 1.25rem; }
    .services, .about, .reviews, .cta { padding: 4rem 0; }
    .gallery { padding: 0 0 4rem; }

    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-image { aspect-ratio: 16/10; }
    .reviews-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .cta-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .cta-form-wrap { padding: 1.75rem; }

    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
}
