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

:root {
    --bg-primary: #1A0F0A;
    --bg-secondary: #231510;
    --bg-card: #2A1A12;
    --bg-elevated: #332018;
    --terracotta: #C4623A;
    --terracotta-light: #D4845E;
    --terracotta-dark: #A04E2E;
    --sand: #D4B896;
    --sand-light: #E8D5BC;
    --sand-dark: #B89B78;
    --gold: #C8956C;
    --gold-light: #D4A574;
    --gold-metallic: #B8864E;
    --text-primary: #F5EDE4;
    --text-secondary: #C4B5A4;
    --text-muted: #8A7A6A;
    --border: rgba(200, 149, 108, 0.15);
    --border-light: rgba(200, 149, 108, 0.08);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(26, 15, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.nav__logo-mark {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 15px;
    line-height: 1.2;
    color: var(--text-primary);
}

.nav__logo-text em {
    font-style: italic;
    color: var(--gold);
    font-size: 13px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav__link {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

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

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

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

.nav__cta {
    padding: 10px 22px;
    border: 1px solid var(--gold);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gold);
    transition: var(--transition);
    letter-spacing: 0.03em;
}

.nav__cta:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    z-index: 1001;
}

.nav__toggle-line {
    width: 100%;
    height: 1.5px;
    background: var(--text-primary);
    transition: var(--transition);
    transform-origin: center;
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

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

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(196, 98, 58, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 30%, rgba(200, 149, 108, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 28px;
}

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

.hero__body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 40px;
}

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

.hero__stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--sand);
}

.hero__stat-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

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

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-metallic) 100%);
    color: var(--bg-primary);
    border: none;
}

.btn--gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 149, 108, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

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

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

/* ─── HERO VISUAL ─── */
.hero__visual {
    position: relative;
}

.hero__image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero__image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    pointer-events: none;
}

.hero__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 600/750;
}

.hero__badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--sand);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.hero__badge svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* ─── HERO SCROLL ─── */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    animation: float 2s ease-in-out infinite;
}

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

/* ─── SECTION COMMON ─── */
.section__eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section__eyebrow--center {
    text-align: center;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.section__title em {
    font-style: italic;
    color: var(--terracotta-light);
    font-weight: 400;
}

.section__title--center {
    text-align: center;
}

/* ─── ABOUT ─── */
.about {
    padding: 120px 24px;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.about__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__media {
    position: relative;
}

.about__media img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about__accent-bar {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--terracotta), var(--gold));
    border-radius: 2px;
}

.about__content {
    padding: 20px 0;
}

.about__body {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
}

.highlight svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* ─── OFFERINGS ─── */
.offerings {
    padding: 120px 24px;
    background: var(--bg-secondary);
    position: relative;
}

.offerings::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 50% at 50% 0%, rgba(196, 98, 58, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.offerings .container {
    position: relative;
    z-index: 1;
}

.offerings__grid {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.offering {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.offering:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.offering__img {
    overflow: hidden;
    aspect-ratio: 480/360;
}

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

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

.offering__body {
    padding: 28px 28px 32px;
}

.offering__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.offering__desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ─── PHILOSOPHY ─── */
.philosophy {
    padding: 120px 24px;
    position: relative;
}

.philosophy__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy__body {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.philosophy__visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.philosophy__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    pointer-events: none;
}

.philosophy__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 500/600;
}

/* ─── VISIT ─── */
.visit {
    padding: 120px 24px;
    background: var(--bg-secondary);
    position: relative;
}

.visit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 50% at 80% 50%, rgba(200, 149, 108, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.visit .container {
    position: relative;
    z-index: 1;
}

.visit__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.visit__detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

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

.visit__detail-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.visit__detail-value {
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.6;
}

.visit__link {
    color: var(--gold);
    transition: var(--transition);
}

.visit__link:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.visit__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
    border: 1px solid var(--border);
}

.visit__map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ─── FOOTER ─── */
.footer {
    padding: 80px 24px 40px;
    border-top: 1px solid var(--border);
}

.footer__top {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 48px;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 280px;
}

.footer__logo-mark {
    width: 48px;
    height: 48px;
    border: 1.5px solid var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
}

.footer__logo-text {
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.2;
    color: var(--text-primary);
}

.footer__logo-text em {
    font-style: italic;
    color: var(--gold);
    font-size: 14px;
}

.footer__tagline {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 4px;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__nav a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer__nav a:hover {
    color: var(--gold);
}

.footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ─── MOBILE NAV ─── */
@media (max-width: 900px) {
    .nav__toggle {
        display: flex;
    }

    .nav__links {
        position: fixed;
        inset: 0;
        background: rgba(26, 15, 10, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

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

    .nav__link {
        font-size: 20px;
    }

    .nav__cta {
        font-size: 15px;
        padding: 14px 32px;
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero__visual {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero__badge {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero__stats {
        flex-wrap: wrap;
        gap: 16px;
    }

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

    .about__accent-bar {
        display: none;
    }

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

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

    .footer__top {
        flex-direction: column;
        gap: 36px;
    }

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

    .hero__scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 20px 60px;
    }

    .hero__actions {
        flex-direction: column;
    }

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

    .about,
    .offerings,
    .philosophy,
    .visit {
        padding: 80px 20px;
    }
}

/* ─── ANIMATIONS ─── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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