/* ============================================
   Hayashi — Design System CSS
   Finest Japanese Teppanyaki | Antwerpen
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Colors - Primary */
    --charcoal: #1a1a1a;
    --warm-black: #0d0d0d;

    /* Colors - Accent */
    --sakura-rose: #c4826e;
    --sakura-rose-dark: #a86b58;
    --gold: #b8956a;
    --deep-red: #8b2500;

    /* Colors - Surface */
    --ivory: #f5f0e8;
    --warm-gray: #e8e3db;
    --parchment: #faf7f2;

    /* Colors - Neutral */
    --stone: #6b6560;
    --ash: #9a9590;
    --mist: #d4cfc7;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;
    --space-9: 96px;
    --space-10: 128px;

    /* Layout */
    --max-width: 1200px;
    --nav-height: 72px;
    --nav-height-mobile: 60px;

    /* Elevation */
    --shadow-subtle: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-card: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-modal: 0 8px 32px rgba(0,0,0,0.12);

    /* Transitions */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-in-out: cubic-bezier(0.42, 0, 0.58, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-base: 0.3s var(--ease-out);
    --transition-slow: 0.6s var(--ease-out);
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--parchment);
    letter-spacing: 0.01em;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

ul, ol {
    list-style: none;
}

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

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/* --- Container --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-5);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-7);
    }
}

/* --- Section Labels & Titles --- */
.section-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--sakura-rose);
    margin-bottom: var(--space-4);
}

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--charcoal);
    margin-bottom: var(--space-5);
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
    transition: all var(--transition-base);
    cursor: pointer;
    text-align: center;
}

.btn--primary {
    background-color: var(--sakura-rose);
    color: #fff;
    border: 1px solid var(--sakura-rose);
}

.btn--primary:hover {
    background-color: var(--sakura-rose-dark);
    border-color: var(--sakura-rose-dark);
    transform: scale(0.98);
}

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

.btn--outline:hover {
    background-color: var(--sakura-rose);
    color: #fff;
}

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

.btn--small {
    padding: 10px 20px;
    font-size: 12px;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.nav.scrolled {
    background-color: var(--warm-black);
    box-shadow: var(--shadow-subtle);
}

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

.nav__logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--parchment);
    letter-spacing: 0.02em;
    transition: opacity var(--transition-fast);
}

.nav__logo:hover {
    opacity: 0.8;
}

.nav__links {
    display: none;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .nav__links {
        display: flex;
    }
}

.nav__links a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition-fast);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--sakura-rose);
    transition: width var(--transition-base);
}

.nav__links a:hover {
    color: #fff;
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__cta {
    display: none;
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    background-color: var(--sakura-rose);
    border-radius: 2px;
    transition: background-color var(--transition-fast);
}

.nav__cta:hover {
    background-color: var(--sakura-rose-dark);
}

@media (min-width: 768px) {
    .nav__cta {
        display: inline-flex;
    }
}

.nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 1001;
}

@media (min-width: 768px) {
    .nav__toggle {
        display: none;
    }
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background-color: var(--parchment);
    transition: all var(--transition-base);
    transform-origin: center;
}

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background-color: var(--warm-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__links {
    text-align: center;
}

.mobile-menu__links li {
    margin-bottom: var(--space-5);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.mobile-menu.active .mobile-menu__links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-menu__links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu__links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu__links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu__links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu__links li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-menu__links li:nth-child(6) { transition-delay: 0.35s; }

.mobile-menu__links a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--parchment);
    transition: color var(--transition-fast);
}

.mobile-menu__links a:hover {
    color: var(--sakura-rose);
}

.mobile-menu__cta {
    display: inline-block;
    margin-top: var(--space-5);
    padding: 14px 40px;
    background-color: var(--sakura-rose);
    color: #fff !important;
    font-family: var(--font-body) !important;
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mobile-menu__footer {
    margin-top: var(--space-8);
    text-align: center;
    color: var(--ash);
    font-size: 14px;
    line-height: 1.8;
}

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

.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        #1a1210 0%,
        #2a1f1a 25%,
        #1a1a15 50%,
        #1a1520 75%,
        #0d0d0d 100%
    );
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(196, 130, 110, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(184, 149, 106, 0.06) 0%, transparent 50%);
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 13, 13, 0.3) 0%,
        rgba(13, 13, 13, 0.1) 40%,
        rgba(13, 13, 13, 0.5) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-7);
}

.hero__label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: var(--space-5);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 300;
    color: var(--parchment);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: var(--space-3);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero__subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--sakura-rose);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-6);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero__divider {
    width: 60px;
    height: 1px;
    background-color: var(--gold);
    margin: 0 auto var(--space-6);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}

.hero__text {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: var(--space-7);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero__actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-7);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
}

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

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

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

/* --- About --- */
.about {
    padding: var(--space-10) 0;
    background-color: var(--parchment);
}

.about__grid {
    display: grid;
    gap: var(--space-8);
    align-items: center;
}

@media (min-width: 768px) {
    .about__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-9);
    }
}

.about__image {
    position: relative;
}

.about__image-inner {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(
        135deg,
        #2a1f1a 0%,
        #1a1a15 50%,
        #2a2018 100%
    );
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.about__image-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(196, 130, 110, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(184, 149, 106, 0.1) 0%, transparent 50%);
}

.about__image-inner::after {
    content: '🏯';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.3;
}

.about__content {
    max-width: 560px;
}

.about__text p {
    color: var(--stone);
    margin-bottom: var(--space-5);
    font-size: 16px;
}

.about__stats {
    display: flex;
    gap: var(--space-7);
    margin-top: var(--space-7);
    padding-top: var(--space-6);
    border-top: 1px solid var(--mist);
}

.about__stat {
    display: flex;
    flex-direction: column;
}

.about__stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--sakura-rose);
    line-height: 1.1;
}

.about__stat-label {
    font-size: 13px;
    color: var(--ash);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: var(--space-1);
}

/* --- Experience --- */
.experience {
    position: relative;
    padding: var(--space-10) 0;
    overflow: hidden;
}

.experience__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        #0d0d0d 0%,
        #1a1210 30%,
        #1a1520 70%,
        #0d0d0d 100%
    );
}

.experience__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(196, 130, 110, 0.06) 0%, transparent 50%);
}

.experience__grid {
    position: relative;
    z-index: 2;
}

.experience__content {
    max-width: 700px;
}

.experience__text {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: var(--space-7);
}

.experience__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.experience__feature {
    display: flex;
    gap: var(--space-5);
    align-items: flex-start;
}

.experience__feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.experience__feature h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--parchment);
    margin-bottom: var(--space-1);
}

.experience__feature p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* --- Menu --- */
.menu {
    padding: var(--space-10) 0;
    background-color: var(--parchment);
}

.menu__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-7);
}

.menu__intro {
    color: var(--stone);
    font-size: 16px;
}

.menu__categories {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-7);
    flex-wrap: wrap;
}

.menu__tab {
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ash);
    border: 1px solid transparent;
    border-radius: 2px;
    transition: all var(--transition-fast);
}

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

.menu__tab--active {
    color: var(--sakura-rose);
    border-color: var(--sakura-rose);
}

.menu__grid {
    max-width: 800px;
    margin: 0 auto;
}

.menu__item {
    padding: var(--space-5) 0;
    border-bottom: 1px solid var(--mist);
    transition: all var(--transition-fast);
}

.menu__item:hover {
    padding-left: var(--space-4);
}

.menu__item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--space-4);
    margin-bottom: var(--space-1);
}

.menu__item-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--charcoal);
}

.menu__item-jp {
    font-size: 0.875rem;
    color: var(--ash);
    margin-left: var(--space-2);
    font-style: normal;
}

.menu__item-price {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--gold);
    white-space: nowrap;
}

.menu__item-desc {
    font-size: 14px;
    color: var(--stone);
}

.menu__item--featured {
    padding: var(--space-6) var(--space-5);
    background-color: var(--ivory);
    border: 1px solid var(--mist);
    border-radius: 2px;
    margin-bottom: var(--space-4);
}

.menu__item--featured:hover {
    padding-left: calc(var(--space-5) + var(--space-4));
    border-color: var(--sakura-rose);
}

.menu__item-includes {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-3);
}

.menu__item-includes span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ash);
    background-color: var(--parchment);
    padding: 4px 12px;
    border-radius: 2px;
    border: 1px solid var(--mist);
}

.menu__footer {
    text-align: center;
    margin-top: var(--space-7);
}

.menu__note {
    font-size: 13px;
    color: var(--ash);
    line-height: 1.8;
}

/* --- Gallery Strip --- */
.gallery-strip {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.gallery-strip__track {
    display: flex;
    height: 100%;
    animation: galleryScroll 20s linear infinite;
}

.gallery-strip__item {
    flex: 0 0 33.333%;
    height: 100%;
    position: relative;
}

.gallery-strip__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
    opacity: 0.4;
}

.gallery-strip__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 13, 13, 0.4);
    z-index: 2;
}

.gallery-strip__text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--parchment);
    text-align: center;
    padding: 0 var(--space-5);
}

@keyframes galleryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

/* --- Reservation --- */
.reservation {
    padding: var(--space-10) 0;
    background-color: var(--ivory);
}

.reservation__grid {
    display: grid;
    gap: var(--space-8);
}

@media (min-width: 768px) {
    .reservation__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-9);
    }
}

.reservation__text {
    color: var(--stone);
    font-size: 16px;
    margin-bottom: var(--space-6);
    line-height: 1.8;
}

.reservation__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.reservation__detail {
    display: flex;
    flex-direction: column;
}

.reservation__detail-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ash);
    margin-bottom: var(--space-1);
}

.reservation__detail-value {
    font-size: 16px;
    color: var(--charcoal);
    font-weight: 500;
}

a.reservation__detail-value:hover {
    color: var(--sakura-rose);
}

/* Form */
.reservation__form {
    background-color: var(--parchment);
    padding: var(--space-6);
    border: 1px solid var(--mist);
    border-radius: 2px;
}

.form-group {
    margin-bottom: var(--space-5);
}

.form-row {
    display: grid;
    gap: var(--space-4);
}

@media (min-width: 480px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

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

.form-input {
    width: 100%;
    padding: 14px 16px;
    background-color: var(--parchment);
    border: 1px solid var(--mist);
    border-radius: 2px;
    font-size: 15px;
    color: var(--charcoal);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    -webkit-appearance: none;
    appearance: none;
}

.form-input::placeholder {
    color: var(--ash);
}

.form-input:focus {
    outline: none;
    border-color: var(--sakura-rose);
    box-shadow: 0 0 0 3px rgba(196, 130, 110, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

select.form-input {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%239a9590' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.reservation__form .btn {
    margin-top: var(--space-3);
}

.reservation__form-note {
    font-size: 13px;
    color: var(--ash);
    text-align: center;
    margin-top: var(--space-4);
}

/* --- Location --- */
.location {
    padding: var(--space-10) 0;
    background-color: var(--parchment);
}

.location__grid {
    display: grid;
    gap: var(--space-8);
}

@media (min-width: 768px) {
    .location__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-9);
    }
}

.location__address {
    margin-bottom: var(--space-6);
}

.location__street {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcoal);
}

.location__city {
    font-size: 16px;
    color: var(--stone);
}

.location__hours {
    margin-bottom: var(--space-6);
    padding: var(--space-5);
    background-color: var(--ivory);
    border: 1px solid var(--mist);
    border-radius: 2px;
}

.location__hours-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--mist);
    gap: var(--space-4);
}

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

.location__day {
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
}

.location__time {
    font-size: 14px;
    color: var(--stone);
    text-align: right;
}

.location__time--closed {
    color: var(--deep-red);
}

.location__time-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.location__contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.location__link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 15px;
    color: var(--charcoal);
    transition: color var(--transition-fast);
}

.location__link:hover {
    color: var(--sakura-rose);
}

.location__link-icon {
    font-size: 1rem;
}

.location__map {
    background-color: var(--warm-gray);
    border-radius: 2px;
    overflow: hidden;
    min-height: 350px;
}

.location__map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    background: linear-gradient(
        135deg,
        var(--warm-gray) 0%,
        var(--mist) 100%
    );
    text-align: center;
}

.location__map-pin {
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.location__map-placeholder p {
    font-size: 15px;
    color: var(--stone);
    line-height: 1.6;
}

/* --- Testimonials --- */
.testimonials {
    padding: var(--space-10) 0;
    background-color: var(--warm-black);
}

.testimonials__header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.testimonials__grid {
    display: grid;
    gap: var(--space-5);
}

@media (min-width: 768px) {
    .testimonials__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-6);
    }
}

.testimonial {
    padding: var(--space-6);
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2px;
    transition: border-color var(--transition-base);
}

.testimonial:hover {
    border-color: var(--sakura-rose);
}

.testimonial__stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: var(--space-4);
}

.testimonial__text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: var(--space-5);
}

.testimonial__author {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sakura-rose);
}

/* --- Contact --- */
.contact {
    padding: var(--space-10) 0;
    background-color: var(--parchment);
}

.contact__grid {
    max-width: 700px;
}

.contact__items {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact__item {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.contact__item-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact__item-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ash);
    margin-bottom: var(--space-1);
}

.contact__item-value {
    font-size: 16px;
    color: var(--charcoal);
    line-height: 1.6;
}

a.contact__item-value:hover {
    color: var(--sakura-rose);
}

.contact__item-note {
    font-size: 13px;
    color: var(--ash);
    margin-top: var(--space-1);
}

/* --- Footer --- */
.footer {
    padding: var(--space-8) 0 var(--space-6);
    background-color: var(--warm-black);
    color: rgba(255,255,255,0.6);
}

.footer__grid {
    display: grid;
    gap: var(--space-7);
    margin-bottom: var(--space-7);
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: var(--space-6);
    }
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--parchment);
    margin-bottom: var(--space-2);
}

.footer__tagline {
    font-size: 14px;
    font-style: italic;
    color: var(--sakura-rose);
    margin-bottom: var(--space-3);
}

.footer__address {
    font-size: 14px;
    line-height: 1.6;
}

.footer__heading {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--parchment);
    margin-bottom: var(--space-4);
}

.footer__nav ul li,
.footer__hours ul li,
.footer__connect ul li {
    margin-bottom: var(--space-2);
}

.footer__nav a,
.footer__connect a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition-fast);
}

.footer__nav a:hover,
.footer__connect a:hover {
    color: var(--sakura-rose);
}

.footer__hours ul li {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer__bottom {
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

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

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }

/* --- Mobile Adjustments --- */
@media (max-width: 767px) {
    .about__stats {
        gap: var(--space-5);
    }

    .about__stat-number {
        font-size: 2rem;
    }

    .reservation__form {
        padding: var(--space-5);
    }

    .gallery-strip {
        height: 200px;
    }

    .hero__title {
        font-size: clamp(3rem, 12vw, 5rem);
    }
}

/* --- Utility --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
