/* ============================================
   KAMAKURA JAPANESE CUISINE
   Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Colors */
    --red: #C45B4A;
    --red-dark: #a84a3b;
    --red-light: #d4796b;
    --black: #0a0a0a;
    --black-soft: #1a1a1a;
    --black-card: #141414;
    --gray-dark: #2a2a2a;
    --gray: #666666;
    --gray-light: #999999;
    --cream: #f5f0eb;
    --cream-dark: #e8e0d8;
    --white: #ffffff;
    --white-off: #fafafa;

    /* Typography */
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-accent: 'Caveat', cursive;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;
    --gap: 24px;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

    /* Header */
    --header-height: 72px;

    /* Hero scroll indicator footer slot */
    --hero-scroll-offset: 32px;
    --hero-scroll-gap: 8px;
    --hero-scroll-line: 40px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--black);
    background-color: var(--white);
    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;
    transition: color 0.3s var(--ease);
}

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

::selection {
    background-color: var(--red);
    color: var(--white);
}

:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

button:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

a:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
    border-radius: 2px;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--gap);
}

.section {
    padding: var(--section-padding) 0;
}

/* ---------- Typography ---------- */
.section-label {
    display: block;
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--red);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.section-label--light {
    color: var(--red-light);
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.section-title--light {
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

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

.btn--primary:hover {
    background-color: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(196, 91, 74, 0.3);
}

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

.btn--outline:hover {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn--dark {
    color: var(--black);
    border-color: var(--black);
}

.btn--dark:hover {
    background-color: var(--black);
    color: var(--white);
}

.btn--large {
    padding: 18px 44px;
    font-size: 0.9rem;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: all 0.4s var(--ease);
}

.site-header.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--gap);
}

.header-logo-img {
    height: 44px;
    width: auto;
    transition: opacity 0.3s var(--ease);
}

.header-logo:hover .header-logo-img {
    opacity: 0.8;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s var(--ease);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--red);
    transition: width 0.3s var(--ease);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-link--phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    background-color: var(--red);
    border: 1px solid var(--red);
    padding: 9px 18px;
    border-radius: 2px;
    font-weight: 500;
    transition: all 0.3s var(--ease);
}

.nav-link--phone:hover {
    color: var(--white);
    background-color: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(196, 91, 74, 0.35);
}

.nav-link--phone::after {
    display: none;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background-color: var(--white);
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

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

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* ============================================
   MOBILE SIDEBAR
   ============================================ */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background-color: var(--black-soft);
    z-index: 1200;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-sidebar.active {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sidebar-logo {
    height: 40px;
    width: auto;
}

.sidebar-close {
    color: rgba(255,255,255,0.5);
    padding: 4px;
    transition: color 0.3s var(--ease);
}

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

.sidebar-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    gap: 0;
}

.sidebar-link {
    display: block;
    padding: 16px 0;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all 0.3s var(--ease);
}

.sidebar-link:hover,
.sidebar-link:active {
    color: var(--white);
    padding-left: 8px;
}

.sidebar-footer {
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.sidebar-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--red-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
    transition: color 0.3s var(--ease);
}

.sidebar-phone:hover {
    color: var(--red);
}

.sidebar-address {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

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

.hero-bg picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 55% at 50% 55%, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 60%, transparent 90%),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.35) 40%,
            rgba(0, 0, 0, 0.6) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 0;
    text-align: center;
    padding: 0 var(--gap);
    animation: heroFadeIn 1.2s var(--ease-out) both;
    animation-delay: 0.3s;
}

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

.hero-logo {
    width: min(340px, 60vw);
    max-height: clamp(140px, 32vh, 340px);
    height: auto;
    object-fit: contain;
    margin: 0 auto 24px;
    filter: drop-shadow(0 4px 30px rgba(0,0,0,0.3));
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.96);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 14px;
    text-shadow: 0 1px 24px rgba(0, 0, 0, 0.55);
}

.hero-location {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.5);
}

.hero-location::before,
.hero-location::after {
    content: '';
    display: inline-block;
    width: clamp(28px, 6vw, 44px);
    height: 1px;
    background-color: rgba(245, 240, 235, 0.55);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator: flex footer slot, always below hero content */
.scroll-indicator {
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--hero-scroll-gap);
    margin-bottom: max(var(--hero-scroll-offset), env(safe-area-inset-bottom, 0px));
    z-index: 2;
    animation: scrollIndicatorFadeIn 1.2s var(--ease-out) both;
    animation-delay: 1.5s;
}

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

.scroll-indicator-text {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.scroll-indicator-line {
    width: 1px;
    height: var(--hero-scroll-line);
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    background-color: var(--cream);
}

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

.about-description {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--gray);
    margin-bottom: 24px;
}

.about-description:last-of-type {
    margin-bottom: 36px;
}

.about-image {
    position: relative;
    border-radius: 4px;
}

.about-image picture {
    display: block;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.8s var(--ease);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-image::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--red);
    opacity: 0.2;
    border-radius: 2px;
    pointer-events: none;
    z-index: 1;
}

/* ============================================
   GALLERY / SLIDESHOW
   ============================================ */
.gallery {
    background-color: var(--white);
    padding-bottom: 80px;
}

.gallery-slideshow {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slideshow-track {
    display: flex;
    transition: transform 0.6s var(--ease-out);
    will-change: transform;
}

.slide {
    flex: 0 0 calc(100% / 3);
    padding: 0 8px;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.5s var(--ease);
}

.slide img:hover {
    transform: scale(1.02);
}

.slideshow-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.slideshow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-dark);
    transition: all 0.3s var(--ease);
}

.slideshow-btn:hover {
    background-color: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.slideshow-dots {
    display: flex;
    gap: 8px;
}

.slideshow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--cream-dark);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    padding: 0;
}

.slideshow-dot.active {
    background-color: var(--red);
    transform: scale(1.2);
}

/* ============================================
   MENU CTA
   ============================================ */
.menu-cta {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.menu-cta-bg {
    position: absolute;
    inset: 0;
}

.menu-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.menu-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.8), rgba(10,10,10,0.6));
}

.menu-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
}

.menu-cta-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    margin-bottom: 40px;
}

/* ============================================
   HOURS
   ============================================ */
.hours {
    position: relative;
    background-color: var(--cream);
    overflow: hidden;
    isolation: isolate;
}

.hours-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 50% at 15% 30%, rgba(196, 91, 74, 0.05), transparent 70%),
        radial-gradient(ellipse 50% 40% at 90% 90%, rgba(0, 0, 0, 0.025), transparent 70%);
}

.hours-bg::before,
.hours-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(196, 91, 74, 0.08);
}

.hours-bg::before {
    width: 520px;
    height: 520px;
    top: -180px;
    right: -180px;
    border-color: rgba(196, 91, 74, 0.1);
}

.hours-bg::after {
    width: 320px;
    height: 320px;
    bottom: -120px;
    left: -120px;
    border-style: dashed;
    opacity: 0.4;
}

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

.hours-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(380px, 480px);
    justify-content: center;
    align-items: center;
    gap: clamp(56px, 8vw, 112px);
}

.hours-info {
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hours-info .section-label {
    margin-bottom: 14px;
}

.hours-info .section-title {
    margin-bottom: 22px;
}

.hours-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px 7px 12px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.025);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--black);
    margin-bottom: 26px;
    transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.hours-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--gray-light);
    flex-shrink: 0;
    position: relative;
}

.hours-status[data-state="open"] .hours-status-dot {
    background-color: #4ca36a;
    box-shadow: 0 0 0 0 rgba(76, 163, 106, 0.55);
    animation: status-pulse 2.4s ease-out infinite;
}

.hours-status[data-state="open"] {
    border-color: rgba(76, 163, 106, 0.25);
    background-color: rgba(76, 163, 106, 0.08);
}

.hours-status[data-state="closed"] .hours-status-dot {
    background-color: var(--red);
}

.hours-status[data-state="closed"] {
    border-color: rgba(196, 91, 74, 0.2);
    background-color: rgba(196, 91, 74, 0.06);
}

@keyframes status-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 163, 106, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 163, 106, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 163, 106, 0);
    }
}

.hours-description {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 340px;
}

.hours-info .btn {
    align-self: flex-start;
}

.hours-ornament {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
    opacity: 0.7;
}

.hours-ornament-line {
    display: block;
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0.55;
}

.hours-ornament-line:first-child {
    background: linear-gradient(90deg, transparent, var(--red));
}

.hours-ornament-line:last-child {
    background: linear-gradient(90deg, var(--red), transparent);
}

.hours-ornament-seal {
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--red);
    box-shadow: 0 0 0 3px var(--cream), 0 0 0 4px rgba(196, 91, 74, 0.25);
}

.hours-table {
    width: min(100%, 480px);
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.025),
        0 20px 60px -12px rgba(20, 10, 5, 0.12);
    position: relative;
}

.hours-table::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--red-light), var(--red));
    z-index: 2;
}

.hours-table-header,
.hours-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px 30px;
}

.hours-table-header {
    padding-top: 18px;
    padding-bottom: 18px;
    background-color: var(--black-soft);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.hours-table-header span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
}

.hours-table-header-day {
    visibility: hidden;
}

.hours-row {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: background-color 0.4s var(--ease);
    position: relative;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row:hover:not(.hours-row--closed):not(.hours-row--today) {
    background-color: rgba(196, 91, 74, 0.035);
}

.hours-row--today {
    background-color: rgba(196, 91, 74, 0.06);
}

.hours-row--today::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 2px;
    background-color: var(--red);
    border-radius: 0 2px 2px 0;
}

.hours-row--today .hours-day {
    color: var(--red-dark);
}

.hours-day {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 0.005em;
}

.hours-slot {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray);
    text-align: center;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.03em;
}

.hours-row--closed {
    grid-template-columns: 1.4fr 2fr;
}

.hours-row--closed .hours-day {
    color: var(--gray-light);
    font-style: italic;
}

.hours-row--closed .hours-slot--closed {
    text-align: center;
    color: var(--red);
    font-family: var(--font-accent);
    font-size: 1.15rem;
    letter-spacing: 0.02em;
}

/* ============================================
   LOCATION
   ============================================ */
.location {
    position: relative;
    background-color: var(--white);
    overflow: hidden;
    isolation: isolate;
}

.location-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 45% at 85% 20%, rgba(196, 91, 74, 0.045), transparent 70%),
        radial-gradient(ellipse 45% 35% at 10% 80%, rgba(10, 10, 10, 0.02), transparent 70%);
}

.location-bg::before,
.location-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(196, 91, 74, 0.1);
}

.location-bg::before {
    width: 480px;
    height: 480px;
    top: -160px;
    left: -160px;
    border-style: dashed;
    opacity: 0.45;
}

.location-bg::after {
    width: 360px;
    height: 360px;
    bottom: -140px;
    right: -140px;
    border-color: rgba(196, 91, 74, 0.12);
}

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

.section-header--align-left {
    text-align: left;
    max-width: 560px;
}

.location-intro {
    margin-top: 4px;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray);
    max-width: 480px;
}

.location-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 1fr);
    gap: clamp(40px, 5vw, 64px);
    align-items: stretch;
}

/* ---- Map frame ---- */
.location-map {
    position: relative;
    display: flex;
}

.location-map-frame {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.025),
        0 24px 70px -18px rgba(20, 10, 5, 0.18);
}

.location-map-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--red-light), var(--red));
    z-index: 3;
}

.location-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 460px;
    filter: saturate(0.94) contrast(1.02);
}

.location-map-tag {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px 10px 12px;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 6px;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.06),
        0 10px 30px -8px rgba(20, 10, 5, 0.18);
    pointer-events: none;
}

.location-map-tag-pin {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--red);
    box-shadow: 0 0 0 4px rgba(196, 91, 74, 0.18);
    flex-shrink: 0;
}

.location-map-tag-pin::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: var(--red);
    opacity: 0.6;
    animation: map-pin-pulse 2.4s ease-out infinite;
}

@keyframes map-pin-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(2.6);
        opacity: 0;
    }
}

.location-map-tag-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.location-map-tag-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 0.005em;
}

.location-map-tag-area {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 3px;
}

/* ---- Info card ---- */
.location-details {
    display: flex;
}

.location-card {
    width: 100%;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 36px 34px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.02),
        0 16px 50px -16px rgba(20, 10, 5, 0.1);
    position: relative;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 22px;
    right: 22px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--red);
    box-shadow: 0 0 0 3px var(--white), 0 0 0 4px rgba(196, 91, 74, 0.25);
}

.location-card-header {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.location-card-eyebrow {
    display: block;
    font-family: var(--font-accent);
    font-size: 1.05rem;
    color: var(--red);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.location-card-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.15;
    color: var(--black);
    letter-spacing: -0.005em;
}

.location-row {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.location-row:last-of-type {
    border-bottom: none;
}

.location-row-icon {
    color: var(--red);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(196, 91, 74, 0.08);
    margin-top: 2px;
}

.location-row-body {
    min-width: 0;
}

.location-row-label {
    display: block;
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 6px;
}

.location-row-value {
    font-size: 0.94rem;
    line-height: 1.65;
    color: var(--black);
}

.location-row-value a {
    color: var(--black);
    border-bottom: 1px solid rgba(196, 91, 74, 0.4);
    padding-bottom: 1px;
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.location-row-value a:hover {
    color: var(--red);
    border-bottom-color: var(--red);
}

.location-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 26px;
}

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

.btn--dark.location-action {
    background-color: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}

.btn--dark.location-action:hover {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links a {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    padding: 4px 0;
    transition: color 0.3s var(--ease);
}

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

.footer-contact a {
    display: block;
    font-size: 0.85rem;
    color: var(--red-light);
    margin-bottom: 12px;
}

.footer-contact a:hover {
    color: var(--red);
}

.footer-contact p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
}

.footer-credit a {
    color: rgba(255,255,255,0.35);
    transition: color 0.3s var(--ease);
}

.footer-credit a:hover {
    color: var(--red);
}

/* ============================================
   ANIMATIONS (scroll-triggered)
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-delay="200"] {
    transition-delay: 0.2s;
}

[data-delay="400"] {
    transition-delay: 0.4s;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .about-grid {
        gap: 48px;
    }

    .hours-grid {
        grid-template-columns: minmax(280px, 1fr) minmax(360px, 460px);
        gap: clamp(40px, 6vw, 72px);
    }

    .slide {
        flex: 0 0 50%;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .location-map-frame iframe {
        min-height: 380px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
        --header-height: 64px;
        --gap: 20px;
    }

    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-logo {
        width: min(260px, 65vw);
    }

    .hero-tagline {
        font-size: 0.95rem;
        letter-spacing: 0.16em;
        margin-bottom: 12px;
    }

    .hero-location {
        font-size: 0.7rem;
        letter-spacing: 0.18em;
        gap: 10px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas .btn {
        width: 200px;
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-image img {
        height: 320px;
    }

    .about-image::after {
        display: none;
    }

    .slide {
        flex: 0 0 85%;
    }

    .slide img {
        height: 280px;
    }

    .hours-grid {
        grid-template-columns: 1fr;
        justify-content: stretch;
        gap: 40px;
    }

    .hours-info {
        max-width: none;
        text-align: center;
        align-items: center;
    }

    .hours-description {
        text-align: center;
    }

    .hours-info .btn {
        align-self: center;
    }

    .hours-ornament {
        margin-top: 32px;
    }

    .hours-table {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }

    .hours-table-header,
    .hours-row {
        padding: 14px 22px;
        gap: 10px;
    }

    .location-map-frame iframe {
        min-height: 320px;
    }

    .section-header--align-left {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .location-intro {
        margin-left: auto;
        margin-right: auto;
    }

    .location-card {
        padding: 30px 26px;
    }

    .location-map-tag {
        top: 14px;
        left: 14px;
        padding: 8px 14px 8px 10px;
    }

    .location-map-tag-name {
        font-size: 0.98rem;
    }

    .location-map-tag-area {
        font-size: 0.62rem;
        letter-spacing: 0.12em;
    }

    .location-actions {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    :root {
        --hero-scroll-offset: 20px;
    }

    .section-title {
        margin-bottom: 24px;
    }
}

/* Small phones */
@media (max-width: 420px) {
    :root {
        --section-padding: 52px;
    }

    .hero-logo {
        width: min(220px, 70vw);
    }

    .slide {
        flex: 0 0 92%;
    }

    .slide img {
        height: 240px;
    }

    .hours-day {
        font-size: 0.98rem;
    }

    .hours-slot {
        font-size: 0.78rem;
        letter-spacing: 0.01em;
    }

    .hours-table-header span {
        font-size: 0.62rem;
        letter-spacing: 0.16em;
    }

    .hours-table-header,
    .hours-row {
        padding: 13px 18px;
        gap: 8px;
    }

    .hours-row--closed .hours-slot--closed {
        font-size: 1rem;
    }

    .hours-status {
        font-size: 0.74rem;
        padding: 6px 12px 6px 10px;
    }

    .btn--large {
        padding: 14px 32px;
        font-size: 0.82rem;
    }
}

/* Short viewports: tighten hero so content + scroll indicator always fit */
@media (max-height: 820px) {
    .hero-logo {
        width: min(300px, 55vw);
        max-height: clamp(120px, 26vh, 300px);
        margin-bottom: 20px;
    }

    .hero-location {
        margin-bottom: 28px;
    }
}

@media (max-height: 720px) {
    .hero-logo {
        width: min(260px, 50vw);
        max-height: clamp(100px, 24vh, 260px);
        margin-bottom: 16px;
    }

    .hero-tagline {
        font-size: clamp(0.85rem, 2vw, 1rem);
    }

    .hero-location {
        margin-bottom: 20px;
    }
}

@media (max-height: 640px) {
    :root {
        --hero-scroll-offset: 16px;
        --hero-scroll-line: 28px;
    }

    .hero-logo {
        width: min(200px, 45vw);
        max-height: clamp(80px, 20vh, 200px);
        margin-bottom: 12px;
    }

    .hero-tagline {
        font-size: 0.82rem;
        margin-bottom: 4px;
    }

    .hero-location {
        margin-bottom: 16px;
        font-size: 0.8rem;
    }

    .hero-ctas {
        gap: 12px;
    }

    .hero-ctas .btn {
        padding: 12px 24px;
    }
}

/* Tall phones for hero section */
@media (max-height: 700px) and (max-width: 768px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-logo {
        width: min(200px, 50vw);
        margin-bottom: 16px;
    }

    .hero-tagline {
        font-size: 0.85rem;
    }
}

/* ============================================
   RESERVATION MODAL
   ============================================ */
.reservation-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--gap);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.reservation-overlay.active {
    opacity: 1;
    visibility: visible;
}

.reservation-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.reservation-modal {
    position: relative;
    width: min(420px, 100%);
    background-color: var(--white);
    border-radius: 4px;
    padding: 40px 32px 32px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    transform: translateY(20px) scale(0.98);
    transition: transform 0.4s var(--ease-out);
}

.reservation-overlay.active .reservation-modal {
    transform: translateY(0) scale(1);
}

.reservation-close {
    position: absolute;
    top: 16px;
    right: 16px;
    color: var(--gray-light);
    padding: 4px;
    transition: color 0.3s var(--ease);
}

.reservation-close:hover {
    color: var(--black);
}

.reservation-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 8px;
    text-align: center;
}

.reservation-text {
    font-size: 0.95rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 28px;
}

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

.reservation-action {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 4px;
    border: 1px solid var(--cream-dark);
    transition: all 0.3s var(--ease);
}

.reservation-action:hover {
    border-color: var(--red);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(196, 91, 74, 0.12);
}

.reservation-action-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reservation-action--call .reservation-action-icon {
    background-color: var(--cream);
    color: var(--red);
}

.reservation-action--whatsapp .reservation-action-icon {
    background-color: #25D366;
    color: var(--white);
}

.reservation-action-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reservation-action-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--black);
}

.reservation-action-subtitle {
    font-size: 0.82rem;
    color: var(--gray);
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero-bg-img {
        animation: none;
        transform: none;
    }
}
