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

:root {
    --color-charcoal: #2C2C2C;
    --color-charcoal-deep: #1A1A1A;
    --color-charcoal-light: #3D3D3D;
    --color-coral: #E8734A;
    --color-coral-light: #F09572;
    --color-coral-pale: #FDF0EC;
    --color-cream: #FAF7F4;
    --color-cream-dark: #F0EBE5;
    --color-text: #1A1A1A;
    --color-text-muted: #6B6B6B;
    --color-text-light: #9A9A9A;
    --color-white: #FFFFFF;
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    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;
}

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

.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
}

.section-headline em {
    font-style: italic;
    color: var(--color-coral);
}

.section-headline--center {
    text-align: center;
}

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 244, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(44, 44, 44, 0.06);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(250, 247, 244, 0.97);
    box-shadow: 0 1px 20px rgba(44, 44, 44, 0.06);
}

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

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

.nav__logo-mark {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-coral);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--color-coral);
    border-radius: 4px;
}

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

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

.nav__link {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--color-text-muted);
    transition: var(--transition);
    position: relative;
}

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

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

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

.nav__link--cta {
    padding: 0.5rem 1.25rem;
    border: 1.5px solid var(--color-charcoal);
    border-radius: 4px;
    color: var(--color-charcoal);
    transition: var(--transition);
}

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

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

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

.nav__toggle-line {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--color-charcoal);
    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);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-charcoal);
    transition: var(--transition);
}

.mobile-menu__link:hover {
    color: var(--color-coral);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    border-radius: 4px;
    transition: var(--transition);
    text-decoration: none;
}

.btn--primary {
    background: var(--color-coral);
    color: var(--color-white);
    border: 1.5px solid var(--color-coral);
}

.btn--primary:hover {
    background: var(--color-coral-light);
    border-color: var(--color-coral-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(232, 115, 74, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--color-charcoal);
    border: 1.5px solid var(--color-charcoal);
}

.btn--ghost:hover {
    background: var(--color-charcoal);
    color: var(--color-white);
    transform: translateY(-1px);
}

/* ─── Hero ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 2rem 4rem;
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.hero__container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    flex: 1;
    padding-bottom: 4rem;
}

.hero__left {
    max-width: 580px;
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-coral);
    margin-bottom: 1.5rem;
    display: block;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
}

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

.hero__subheadline {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 460px;
}

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

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

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

.hero__image {
    position: absolute;
    overflow: hidden;
    border-radius: 6px;
}

.hero__image--main {
    width: 380px;
    height: 520px;
    top: 0;
    right: 0;
    box-shadow: 0 25px 60px rgba(44, 44, 44, 0.15);
}

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

.hero__image--accent {
    width: 260px;
    height: 195px;
    bottom: 60px;
    left: 0;
    box-shadow: 0 15px 40px rgba(44, 44, 44, 0.12);
    border: 4px solid var(--color-cream);
}

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

.hero__badge {
    position: absolute;
    bottom: 0;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-charcoal);
    color: var(--color-white);
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 24px rgba(44, 44, 44, 0.2);
}

.hero__badge svg {
    color: var(--color-coral);
}

/* Hero Scroll */
.hero__scroll {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    padding-bottom: 2rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.hero__scroll svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ─── Section Divider ─── */
.section-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.section-divider__line {
    flex: 1;
    height: 1px;
    background: var(--color-cream-dark);
}

.section-divider__mark {
    color: var(--color-coral);
    font-size: 0.75rem;
}

/* ─── About Section ─── */
.about {
    padding: 8rem 2rem;
    background: var(--color-white);
}

.about__container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.about__image-col {
    position: relative;
}

.about__image-main {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(44, 44, 44, 0.1);
}

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

.about__image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(44, 44, 44, 0.12);
    border: 4px solid var(--color-white);
}

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

.about__text-col {
    padding: 1rem 0;
}

.about__body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}

.about__stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--color-cream-dark);
}

.about__stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about__stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-coral);
    line-height: 1;
}

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

.about__stat-divider {
    width: 1px;
    height: 48px;
    background: var(--color-cream-dark);
}

/* ─── Products Section ─── */
.products {
    padding: 8rem 2rem;
    background: var(--color-cream);
}

.products__container {
    max-width: 1400px;
    margin: 0 auto;
}

.products__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.products__lead {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1.5rem;
}

.product-card {
    background: var(--color-white);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(44, 44, 44, 0.1);
}

.product-card--featured {
    grid-column: span 7;
}

.product-card:not(:first-child) {
    grid-column: span 5;
}

.product-card__image {
    overflow: hidden;
    aspect-ratio: 3/2;
}

.product-card--featured .product-card__image {
    aspect-ratio: 6/5;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-card__image img {
    transform: scale(1.04);
}

.product-card__content {
    padding: 1.75rem;
}

.product-card__category {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-coral);
    margin-bottom: 0.625rem;
    display: block;
}

.product-card__title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.625rem;
    line-height: 1.25;
}

.product-card__desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* ─── Experience Section ─── */
.experience {
    padding: 8rem 2rem;
    background: var(--color-charcoal-deep);
    color: var(--color-white);
    overflow: hidden;
}

.experience__container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

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

.experience__item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.experience__item--tall {
    grid-row: span 2;
}

.experience__item--tall,
.experience__item--medium {
    aspect-ratio: 3/4;
}

.experience__item--wide {
    aspect-ratio: 16/9;
}

.experience__item--short {
    aspect-ratio: 3/2;
}

.experience__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.experience__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.experience__item-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-coral);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.experience__item-overlay p {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

.experience__content {
    padding-top: 2rem;
}

.experience__content .section-eyebrow {
    color: var(--color-coral-light);
}

.experience__content .section-headline {
    color: var(--color-white);
}

.experience__body {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
}

.experience__pillars {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.pillar {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 1.25rem;
}

.pillar__number {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-coral);
    padding-top: 0.25rem;
}

.pillar__title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.375rem;
    line-height: 1.25;
}

.pillar__desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

/* ─── Visit Section ─── */
.visit {
    padding: 8rem 2rem;
    background: var(--color-cream);
}

.visit__container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.visit__details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

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

.visit__detail svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: var(--color-coral);
}

.visit__detail strong {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.375rem;
}

.visit__detail p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-charcoal);
}

.visit__detail a {
    color: var(--color-coral);
    transition: var(--transition);
}

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

.visit__map {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(44, 44, 44, 0.1);
}

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

.visit__map-btn {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-charcoal);
    color: var(--color-white);
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: var(--transition);
}

.visit__map-btn:hover {
    background: var(--color-coral);
    transform: translateY(-2px);
}

/* ─── Footer ─── */
.footer {
    background: var(--color-charcoal-deep);
    color: var(--color-white);
    padding: 4rem 2rem 2rem;
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer__brand .nav__logo-mark {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
}

.footer__brand-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
}

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

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

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

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

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

.footer__contact p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.footer__contact a {
    color: var(--color-coral-light);
    transition: var(--transition);
}

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

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    gap: 1rem;
}

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

/* ─── Scroll Reveal ─── */
.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.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero__container {
        gap: 2.5rem;
    }

    .hero__image-stack {
        height: 550px;
    }

    .hero__image--main {
        width: 300px;
        height: 420px;
    }

    .hero__image--accent {
        width: 200px;
        height: 150px;
    }

    .about__layout,
    .experience__container,
    .visit__layout {
        gap: 3rem;
    }

    .product-card--featured {
        grid-column: span 12;
    }

    .product-card:not(:first-child) {
        grid-column: span 6;
    }
}

@media (max-width: 900px) {
    .nav__links {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__left {
        max-width: 100%;
    }

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

    .hero__actions {
        justify-content: center;
    }

    .hero__right {
        display: none;
    }

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

    .about__image-col {
        max-width: 500px;
        margin: 0 auto;
    }

    .about__image-secondary {
        right: -20px;
        bottom: -20px;
    }

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

    .experience__masonry {
        max-width: 500px;
    }

    .visit__layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .visit__map {
        max-width: 600px;
    }

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

@media (max-width: 640px) {
    .hero {
        padding: 100px 1.25rem 3rem;
    }

    .hero__container {
        padding-bottom: 2rem;
    }

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

    .about,
    .products,
    .experience,
    .visit {
        padding: 5rem 1.25rem;
    }

    .about__stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .about__stat-divider {
        width: 48px;
        height: 1px;
    }

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

    .product-card--featured,
    .product-card:not(:first-child) {
        grid-column: span 1;
    }

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

    .experience__item--tall,
    .experience__item--medium {
        aspect-ratio: 4/3;
    }

    .experience__item--wide,
    .experience__item--short {
        aspect-ratio: 16/9;
    }

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

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.8125rem;
    }
}
