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

:root {
    --terracotta: #C1666B;
    --terracotta-dark: #A85258;
    --terracotta-light: #D4898D;
    --sand: #E8D5C4;
    --sand-light: #F2E8DF;
    --sand-lighter: #F9F4EF;
    --sand-dark: #C4A882;
    --charcoal: #2C2C2C;
    --charcoal-light: #4A4A4A;
    --grey: #8A8A8A;
    --white: #FFFFFF;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--charcoal);
    background: var(--sand-lighter);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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 2rem;
}

.container--narrow {
    max-width: 680px;
}

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

.section-heading {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

/* ── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
}

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

.btn--primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(193, 102, 107, 0.3);
}

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

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

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

/* ── Navigation ─────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(249, 244, 239, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.875rem 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.nav__logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--terracotta);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

.nav.scrolled .nav__logo-text {
    color: var(--charcoal);
}

.nav__logo-text {
    color: var(--white);
    transition: color 0.4s var(--ease-out);
}

.nav.scrolled .nav__logo-text {
    color: var(--charcoal);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav__link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.nav.scrolled .nav__link {
    color: var(--charcoal-light);
}

.nav.scrolled .nav__link:hover {
    color: var(--charcoal);
}

.nav__link--cta {
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.nav__link--cta:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--white) !important;
}

.nav.scrolled .nav__link--cta {
    border-color: var(--terracotta);
    color: var(--terracotta);
}

.nav__link--cta:hover {
    background: var(--terracotta);
    color: var(--white) !important;
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: 4px 0;
}

.nav__toggle-line {
    width: 100%;
    height: 1.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav.scrolled .nav__toggle-line {
    background: var(--charcoal);
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

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

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

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44, 44, 44, 0.45) 0%,
        rgba(44, 44, 44, 0.55) 50%,
        rgba(44, 44, 44, 0.7) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    padding: 0 2rem;
}

.hero__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero__headline-accent {
    font-style: italic;
    color: var(--sand);
}

.hero__sub {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── About ──────────────────────────────────────── */
.about {
    padding: 8rem 0;
    background: var(--sand-lighter);
}

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

.about__text p {
    font-size: 1rem;
    color: var(--charcoal-light);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about__image {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 6/7;
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.about__image:hover img {
    transform: scale(1.03);
}

/* ── What We Offer ──────────────────────────────── */
.offer {
    padding: 8rem 0;
    background: var(--white);
}

.offer__header {
    text-align: center;
    margin-bottom: 4rem;
}

.offer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.offer__card {
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--sand);
    transition: all 0.4s var(--ease-out);
}

.offer__card:hover {
    border-color: var(--terracotta-light);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(193, 102, 107, 0.08);
}

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

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

.offer__card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.offer__card p {
    font-size: 0.9375rem;
    color: var(--grey);
    line-height: 1.7;
}

/* ── Image Strip ────────────────────────────────── */
.strip {
    padding: 0;
    overflow: hidden;
    background: var(--sand-lighter);
}

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

.strip__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: opacity 0.4s ease;
    border-radius: 0;
}

.strip__img:hover {
    opacity: 0.85;
}

/* ── Visit ──────────────────────────────────────── */
.visit {
    padding: 8rem 0;
    background: var(--sand-lighter);
}

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

.visit__details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.visit__detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.visit__detail svg {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--terracotta);
}

.visit__detail span,
.visit__detail a {
    font-size: 1rem;
    color: var(--charcoal-light);
    line-height: 1.7;
}

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

.visit__map {
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* ── Contact ────────────────────────────────────── */
.contact {
    padding: 8rem 0;
    background: var(--white);
}

.contact__lead {
    font-size: 1.0625rem;
    color: var(--grey);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.contact__field label {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--charcoal);
}

.contact__field input,
.contact__field textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    padding: 0.875rem 1rem;
    border: 1px solid var(--sand);
    border-radius: 8px;
    background: var(--sand-lighter);
    color: var(--charcoal);
    transition: all 0.3s ease;
    outline: none;
    resize: vertical;
}

.contact__field input:focus,
.contact__field textarea:focus {
    border-color: var(--terracotta);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(193, 102, 107, 0.08);
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
    color: var(--sand-dark);
}

.contact__success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    background: var(--sand-lighter);
    border-radius: 12px;
    margin-top: 1.5rem;
}

.contact__success.visible {
    display: flex;
}

.contact__success svg {
    color: var(--terracotta);
}

.contact__success p {
    font-size: 1.0625rem;
    color: var(--charcoal-light);
}

/* ── Footer ─────────────────────────────────────── */
.footer {
    padding: 4rem 0 2rem;
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.6);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
}

.footer__logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--terracotta);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
}

.footer__logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
}

.footer__tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    max-width: 240px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    align-items: center;
}

.footer__links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s ease;
}

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

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: right;
    font-size: 0.875rem;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s ease;
}

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

.footer__bottom {
    padding-top: 2rem;
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ── Scroll Animations ──────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.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) {
    .offer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100dvh;
        background: var(--sand-lighter);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transition: right 0.4s var(--ease-out);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
    }

    .nav__menu.open {
        right: 0;
    }

    .nav__link {
        color: var(--charcoal) !important;
        font-size: 1rem;
    }

    .nav__link--cta {
        border-color: var(--terracotta) !important;
        color: var(--terracotta) !important;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__toggle.active .nav__toggle-line {
        background: var(--charcoal) !important;
    }

    .about__grid,
    .visit__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about__image {
        aspect-ratio: 4/3;
        order: -1;
    }

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

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

    .strip__img {
        height: 260px;
    }

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

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .footer__contact {
        text-align: center;
    }

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

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

    .nav__inner {
        padding: 0 1.25rem;
    }

    .about,
    .offer,
    .visit,
    .contact {
        padding: 5rem 0;
    }
}
