/* ========================================
   Salt N Cocoa — Custom Styles
   Teal + Slate Grey · Minimalist
   ======================================== */

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

:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #080d17;

    --font-serif: 'Instrument Serif', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--slate-800);
    background: var(--slate-50);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

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

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

/* ── Typography ───────────────────────── */
.section-eyebrow {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 16px;
}

.section-heading {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.15;
    color: var(--slate-900);
    margin-bottom: 28px;
}

.section-heading em {
    font-style: italic;
    color: var(--teal-700);
}

/* ── Buttons ──────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--teal-600);
    color: #fff;
}

.btn--primary:hover {
    background: var(--teal-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.25);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

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

.btn--outline:hover {
    background: var(--teal-600);
    color: #fff;
    transform: translateY(-2px);
}

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

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

.nav.scrolled {
    background: rgba(248, 250, 252, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--slate-200);
}

.nav.scrolled .nav__logo,
.nav.scrolled .nav__link {
    color: var(--slate-800);
}

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

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.02em;
    color: #fff;
    transition: color 0.4s var(--ease-out);
}

.nav__logo-icon {
    display: flex;
    align-items: center;
    color: var(--teal-400);
}

.nav__link {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s var(--ease-out);
    padding: 8px 0;
    position: relative;
}

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

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

.nav__link:hover {
    color: #fff;
}

.nav__link--cta {
    padding: 10px 22px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    margin-left: 12px;
    transition: all 0.4s var(--ease-out);
}

.nav__link--cta:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

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

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #fff;
    transition: all 0.4s var(--ease-out);
    transform-origin: center;
}

.nav.scrolled .nav__toggle span {
    background: var(--slate-700);
}

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

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

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

/* ── 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;
}

.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(8, 13, 23, 0.82) 0%,
        rgba(15, 23, 42, 0.65) 50%,
        rgba(13, 148, 136, 0.3) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    padding: 120px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero__text {
    max-width: 640px;
}

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

.hero__headline {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.05;
    color: #fff;
    margin-bottom: 28px;
}

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

.hero__subheadline {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin-bottom: 40px;
    font-weight: 300;
}

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

/* Floating Stat Cards */
.hero__stats {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 24px 28px;
    min-width: 200px;
    animation: float 6s ease-in-out infinite;
}

.stat-card--1 { animation-delay: 0s; }
.stat-card--2 { animation-delay: -2s; }
.stat-card--3 { animation-delay: -4s; }

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

.stat-card__number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--teal-300);
    margin-bottom: 6px;
    line-height: 1;
}

.stat-card__label {
    font-size: 12px;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.hero__scroll span {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── About ────────────────────────────── */
.about {
    padding: 140px 0;
}

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

.about__image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about__image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.8s var(--ease-out);
}

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

.about__image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(13, 148, 136, 0.15);
    pointer-events: none;
}

.about__content {
    padding: 20px 0;
}

.about__text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--slate-600);
    margin-bottom: 20px;
    font-weight: 300;
}

.about__details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--slate-700);
    font-weight: 400;
}

.detail-item__icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--slate-200);
    border-radius: 50%;
    color: var(--teal-600);
    flex-shrink: 0;
}

/* ── Divider ──────────────────────────── */
.divider {
    padding: 0;
}

.divider__line {
    height: 1px;
    background: var(--slate-200);
}

/* ── Menu ─────────────────────────────── */
.menu {
    padding: 120px 0;
    background: #fff;
}

.menu__header {
    text-align: center;
    margin-bottom: 56px;
}

.menu__tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.menu__tab {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.06em;
    padding: 10px 28px;
    border: 1px solid var(--slate-200);
    border-radius: 100px;
    background: transparent;
    color: var(--slate-500);
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
}

.menu__tab:hover {
    border-color: var(--teal-400);
    color: var(--teal-600);
}

.menu__tab.active {
    background: var(--teal-600);
    border-color: var(--teal-600);
    color: #fff;
}

.menu__panel {
    display: none;
    animation: fadeUp 0.5s var(--ease-out);
}

.menu__panel.active {
    display: block;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.menu__item {
    padding: 24px 0;
    border-bottom: 1px solid var(--slate-100);
}

.menu__item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
}

.menu__item-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--slate-900);
    font-weight: 400;
}

.menu__item-desc {
    font-size: 13px;
    color: var(--slate-400);
    font-weight: 300;
    white-space: nowrap;
}

.menu__note {
    text-align: center;
    font-size: 13px;
    color: var(--slate-400);
    margin-top: 32px;
    font-style: italic;
}

/* ── Gallery ──────────────────────────── */
.gallery {
    padding: 120px 0 80px;
}

.gallery__header {
    margin-bottom: 56px;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
}

.gallery__item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

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

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

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 13, 23, 0);
    transition: background 0.4s var(--ease-out);
    border-radius: 12px;
}

.gallery__item:hover::after {
    background: rgba(8, 13, 23, 0.1);
}

.gallery__item--wide {
    grid-column: span 6;
}

.gallery__item:not(.gallery__item--wide) {
    grid-column: span 3;
}

/* ── Visit ────────────────────────────── */
.visit {
    padding: 120px 0;
    background: #fff;
}

.visit__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.visit__details {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.visit-detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.visit-detail__label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal-600);
    font-weight: 500;
}

.visit-detail__value {
    font-size: 1.05rem;
    color: var(--slate-700);
    line-height: 1.7;
    font-weight: 300;
}

.visit-detail__link {
    color: var(--slate-700);
    transition: color 0.3s var(--ease-out);
}

.visit-detail__link:hover {
    color: var(--teal-600);
}

.visit__map {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--slate-200);
}

.visit__map-placeholder {
    padding: 60px 40px;
    text-align: center;
    background: var(--slate-50);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-height: 300px;
    justify-content: center;
}

.visit__map-placeholder svg {
    color: var(--teal-500);
}

.visit__map-placeholder p {
    font-size: 1rem;
    color: var(--slate-500);
    font-weight: 300;
}

/* ── Contact ──────────────────────────── */
.contact {
    padding: 120px 0;
    background: var(--slate-900);
    color: #fff;
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact .section-heading {
    color: #fff;
}

.contact .section-heading em {
    color: var(--teal-400);
}

.contact__text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--slate-400);
    margin-bottom: 40px;
    font-weight: 300;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__email,
.contact__phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--slate-300);
    transition: color 0.3s var(--ease-out);
    font-weight: 300;
}

.contact__email:hover,
.contact__phone:hover {
    color: var(--teal-400);
}

.contact__email svg,
.contact__phone svg {
    color: var(--teal-500);
    flex-shrink: 0;
}

/* Form */
.contact__form-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
}

.form__group {
    margin-bottom: 24px;
}

.form__label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--slate-400);
    margin-bottom: 10px;
    font-weight: 500;
}

.form__input,
.form__textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    transition: all 0.3s var(--ease-out);
    outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--slate-600);
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--teal-500);
    background: rgba(13, 148, 136, 0.08);
}

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

.form__success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(13, 148, 136, 0.15);
    border: 1px solid rgba(13, 148, 136, 0.3);
    border-radius: 10px;
    color: var(--teal-300);
    font-size: 14px;
    margin-top: 16px;
    animation: fadeUp 0.4s var(--ease-out);
}

.form__success.show {
    display: flex;
}

.form__success svg {
    color: var(--teal-400);
    flex-shrink: 0;
}

/* ── Footer ───────────────────────────── */
.footer {
    padding: 60px 0 40px;
    background: var(--slate-950);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    transition: color 0.3s var(--ease-out);
}

.footer__logo:hover {
    color: var(--teal-400);
}

.footer__logo-icon {
    color: var(--teal-500);
}

.footer__tagline {
    font-size: 14px;
    color: var(--slate-500);
    font-weight: 300;
    margin-top: 4px;
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.footer__nav a {
    font-size: 13px;
    color: var(--slate-500);
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: color 0.3s var(--ease-out);
}

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

.footer__legal {
    font-size: 12px;
    color: var(--slate-600);
    font-weight: 300;
    line-height: 1.8;
}

/* ── Mobile Menu ──────────────────────── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(8, 13, 23, 0.97);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-out);
}

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

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

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s var(--ease-out);
}

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

.mobile-menu__link--cta {
    font-family: var(--font-sans);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 16px;
    padding: 14px 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    color: var(--teal-400);
}

/* ── 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; }

/* ── Responsive ───────────────────────── */
@media (max-width: 1024px) {
    .hero__stats {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 60px;
        max-width: 640px;
    }

    .stat-card {
        flex: 1;
        min-width: 140px;
    }

    .hero__content {
        padding-top: 140px;
    }

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

    .about__image-wrap img {
        height: 400px;
    }
}

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

    .nav__toggle {
        display: flex;
    }

    .hero__headline {
        font-size: clamp(2.4rem, 10vw, 3.6rem);
    }

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

    .stat-card {
        min-width: auto;
        width: 100%;
    }

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

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
    }

    .gallery__item--wide {
        grid-column: span 2;
    }

    .gallery__item:not(.gallery__item--wide) {
        grid-column: span 1;
    }

    .contact__form-wrap {
        padding: 28px;
    }

    .footer__nav {
        gap: 20px;
    }
}

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

    .hero__actions {
        flex-direction: column;
    }

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

    .gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px);
    }

    .gallery__item--wide {
        grid-column: span 1;
    }

    .menu__tabs {
        gap: 6px;
    }

    .menu__tab {
        padding: 8px 18px;
        font-size: 12px;
    }
}
