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

:root {
    --clay: #c8a97e;
    --clay-dark: #a0784f;
    --forest: #2c3b2a;
    --cream: #f5efe6;
    --cream-dark: #e8ddd0;
    --charcoal: #1a1a18;
    --warm-white: #faf7f2;
    --accent: #d4603a;
    --text-secondary: #555;
    --footer-bg: #111110;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--charcoal);
    color: var(--cream);
    overflow-x: hidden;
}

/* ── CUSTOM FONTS ── */
@font-face {
    font-family: 'Baro Plain';
    src: url('./font/baro-plain.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s, backdrop-filter 0.4s;
}

nav.scrolled {
    background: rgba(26, 26, 24, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 169, 126, 0.15);
}

/* ── LOGO (Generic for nav and footer) ── */
.nav-logo,
.footer-logo {
    font-family: 'Baro Plain', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--clay);
    letter-spacing: 0.15em;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo {
    /* nav-specific overrides if needed */
}

.footer-logo {
    justify-content: center;
}

.nav-logo span,
.footer-logo span {
    font-size: 1.1rem;
    color: var(--clay);
    font-weight: 400;
    font-style: normal;
    display: block;
}

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

.nav-links a {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--clay);
}

.nav-cta {
    background: var(--clay);
    color: var(--charcoal) !important;
    padding: 0.55rem 1.3rem;
    border-radius: 2px;
    font-weight: 500 !important;
}

.nav-cta:hover {
    background: var(--clay-dark);
    color: var(--cream) !important;
}

/* burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s;
}

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

.burger.open span:nth-child(2) {
    opacity: 0;
}

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

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(26, 26, 24, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--cream);
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--clay);
}

.mm-link-cta {
    color: var(--clay);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    will-change: transform;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 0;
    animation: carouselFade 20s infinite;
    will-change: opacity, transform;
}

/* evenly distribute delays */
.carousel-slide:nth-child(1) {
    animation-delay: 0s;
}

.carousel-slide:nth-child(2) {
    animation-delay: 5s;
}

.carousel-slide:nth-child(3) {
    animation-delay: 10s;
}

.carousel-slide:nth-child(4) {
    animation-delay: 15s;
}

@keyframes carouselFade {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }

    5% {
        opacity: 1;
        transform: scale(1);
    }

    25% {
        opacity: 1;
        transform: scale(1);
    }

    30% {
        opacity: 0;
        transform: scale(1.02);
    }

    100% {
        opacity: 0;
        transform: scale(1.05);
    }
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(26, 26, 24, 0.7) 30%, rgba(44, 59, 42, 0.4) 100%);
    pointer-events: none;
    z-index: 2;
}
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at bottom, rgba(200, 169, 126, 0.12) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 0 1.5rem;
    animation: fadeUp 1.2s ease both;
    z-index: 3;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 1.2rem;
}

.hero-title {
    font-family: 'Baro Plain', serif;
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 500;
    line-height: 0.92;
    color: var(--warm-white);
    margin-bottom: 0.3rem;
    letter-spacing: 1.5rem;
}

.hero-title em {
    font-style: normal;
    color: var(--clay);
    display: block;
    letter-spacing: 0.1rem;
}

.hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-style: italic;
    color: var(--cream-dark);
    margin-top: 1.4rem;
    margin-bottom: 2.8rem;
    font-weight: 300;
}

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

.btn-primary {
    background: var(--clay);
    color: var(--charcoal);
    padding: 0.9rem 2.4rem;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-block;
}

.btn-sm {
    font-size: 0.75rem !important;
}

.btn-primary:hover {
    background: var(--clay-dark);
    color: var(--cream);
}

.btn-outline {
    border: 1px solid rgba(200, 169, 126, 0.5);
    color: var(--cream);
    padding: 0.9rem 2.4rem;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--clay);
    color: var(--clay);
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    animation: fadeUp 1.8s 0.5s ease both;
    z-index: 3;
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--clay);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 0.5;
    }

    50% {
        transform: scaleY(0.4);
        opacity: 1;
    }
}

/* ── SECTION COMMON ── */
section {
    padding: 7rem 0;
}

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

.section-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--warm-white);
}

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

/* ── ABOUT STRIP ── */
.about-strip {
    background: var(--forest);
    padding: 5rem 0;
}

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

.about-img-wrap {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-img-wrap:hover img {
    transform: scale(1.04);
}

.about-img-wrap::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 60%;
    height: 60%;
    border: 2px solid var(--clay);
    z-index: -1;
}

.about-text {
    padding: 1rem 0;
}

.about-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    line-height: 1.75;
    color: var(--cream-dark);
    margin-top: 1.5rem;
}

.about-text p+p {
    margin-top: 1rem;
}

.stat-row {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(200, 169, 126, 0.2);
}

.stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--clay);
}

.stat span {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cream-dark);
    opacity: 0.7;
}

/* ── SPLASH GRID ── */
.splash {
    background: var(--charcoal);
    padding: 0;
}

.splash-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 400px 300px;
    gap: 4px;
}

.splash-cell {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.splash-cell:first-child {
    grid-row: 1 / 3;
}

.splash-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.4s;
    filter: brightness(0.85);
}

.splash-cell:hover img {
    transform: scale(1.07);
    filter: brightness(1);
}

.splash-caption {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--cream);
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.3s;
}

.splash-cell:hover .splash-caption {
    opacity: 1;
    transform: translateY(0);
}

/* ── MENU HIGHLIGHTS ── */
.menu-section {
    background: var(--warm-white);
    color: var(--charcoal);
}

.menu-section .section-title {
    color: var(--charcoal);
}

.menu-section .section-label {
    color: var(--clay-dark);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.menu-header-label {
    color: var(--clay-dark);
}

.menu-header-title {
    color: var(--charcoal);
}

.menu-header-title em {
    color: var(--accent);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(0, 0, 0, 0.08);
}

.menu-card {
    background: var(--warm-white);
    padding: 2rem;
    transition: background 0.25s;
    cursor: default;
}

.menu-card:hover {
    background: var(--cream-dark);
}

.menu-card-tag {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clay-dark);
    margin-bottom: 0.6rem;
}

.menu-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    color: var(--charcoal);
}

.menu-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.menu-card-price {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--accent);
}

/* ── EXPERIENCE / AMBIANCE SPLASH ── */
.experience {
    position: relative;
    height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.experience-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(26, 26, 24, 0.9) 40%, rgba(26, 26, 24, 0.2) 100%),
        url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80') center/cover no-repeat;
}

.experience-content {
    position: relative;
    max-width: 560px;
    margin-left: 10%;
    padding: 2rem;
}

.experience-content blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-style: italic;
    line-height: 1.4;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.experience-content cite {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clay);
}

/* ── VISIT ── */
.visit {
    background: var(--forest);
}

.visit-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.visit-info {
    padding-top: 0.5rem;
}

.visit-info p {
    margin-top: 1.5rem;
    line-height: 1.8;
    color: var(--cream-dark);
    font-size: 0.95rem;
}

.info-block {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.info-row {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.info-icon {
    width: 36px;
    height: 36px;
    background: rgba(200, 169, 126, 0.1);
    border: 1px solid rgba(200, 169, 126, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.info-text strong {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 0.2rem;
}

.info-text span {
    font-size: 0.9rem;
    color: var(--cream-dark);
    line-height: 1.5;
}

.map-placeholder {
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 169, 126, 0.15);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-placeholder::before {
    content: 'Sequoia Hotel, Mother Ignacia Ave. cor. Timog Ave., Quezon City';
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(26, 26, 24, 0.85);
    padding: 0.6rem 0.8rem;
    font-size: 0.78rem;
    color: var(--cream-dark);
    z-index: 1;
}

/* ── SOCIAL / CTA ── */
.cta-banner {
    background: var(--clay);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: 'OMBU';
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 20vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.08);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
}

.cta-banner h2 {
    position: relative;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.cta-banner p {
    position: relative;
    color: rgba(26, 26, 24, 0.7);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.cta-actions {
    position: relative;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-dark {
    background: var(--charcoal);
    color: var(--cream);
    padding: 0.9rem 2.4rem;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-block;
}

.btn-dark:hover {
    background: var(--forest);
}

.btn-ghost {
    border: 2px solid var(--charcoal);
    color: var(--charcoal);
    padding: 0.9rem 2.4rem;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-block;
}

.btn-ghost:hover {
    background: var(--charcoal);
    color: var(--cream);
}

/* ── FOOTER ── */
footer {
    background: var(--footer-bg);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(200, 169, 126, 0.1);
}

.footer-logo {
    /* Styling handled in generic logo styles above */
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cream-dark);
    text-decoration: none;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}

footer p {
    font-size: 0.75rem;
    color: var(--cream-dark);
    opacity: 0.3;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .nav-links {
        display: none !important;
    }

    .burger {
        display: flex !important;
    }

    .mobile-menu {
        z-index: 99;
    }

    .about-inner,
    .visit-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-img-wrap {
        aspect-ratio: 16/9;
    }

    .about-img-wrap::after {
        display: none;
    }

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

    .splash-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 250px 250px 250px;
    }

    .splash-cell:first-child {
        grid-row: auto;
    }

    .experience-content {
        margin-left: 5%;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none !important;
    }

    .burger {
        display: flex !important;
    }

    nav {
        padding: 1rem 1.2rem;
    }

    section {
        padding: 4.5rem 0;
    }

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

    .splash-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 240px);
    }

    .experience {
        height: auto;
        padding: 4rem 1.5rem;
    }

    .experience-bg {
        background-position: right center;
    }

    .experience-content {
        margin: 0;
    }

    .stat-row {
        gap: 1.5rem;
    }
}