/* tori.css */

/* =========================================
   1. CSS Variables & Design Tokens
   ========================================= */
:root {
    /* Premium Dark Palette */
    --color-black: #050505;
    --color-ink: #0a0a0a;
    --color-charcoal: #111111;
    --color-panel: #0f0f0f;
    --color-border: rgba(255, 255, 255, 0.10);
    --color-border-strong: rgba(255, 255, 255, 0.18);

    /* Typography Colors */
    --color-cream: #e8e1d8;
    --color-muted: #b8b0a8;
    --color-dim: #817a73;

    /* Accent Colors */
    --color-red: #8f1d1d;
    --color-red-dark: #651313;
    --color-red-bright: #a72828;
    
    /* Font Families */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --container: 1180px;

    /* Fluid Typography (Scales automatically) */
    --text-h1: clamp(48px, 7vw, 104px);
    --text-h2: clamp(34px, 4vw, 40px);
    
    /* Fluid Vertical Rhythm */
    --section-y: clamp(56px, 8vw, 96px);
}

/* =========================================
   2. Resets & Global Styles
   ========================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { 
    background: var(--color-black); 
    color: var(--color-cream); 
    font-family: var(--font-display); 
    font-size: 19px; 
    line-height: 1.45; 
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { 
    width: min(100% - 48px, var(--container)); 
    margin-inline: auto; 
}

section { 
    padding-block: var(--section-y); 
    border-top: 1px solid var(--color-border); 
}

/* =========================================
   3. Typography & UI Elements
   ========================================= */
h1, h2, h3 { 
    font-family: var(--font-display); 
    font-weight: 400; 
    color: var(--color-cream); 
}
h1 { 
    font-size: var(--text-h1); 
    line-height: 1; 
    letter-spacing: 0.04em; 
}
h2 { 
    font-size: var(--text-h2); 
    margin-bottom: 24px; 
}
.eyebrow { 
    display: block; 
    font-family: var(--font-body); 
    font-size: 12px; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 0.28em; 
    color: var(--color-red-bright); 
    margin-bottom: 16px; 
}

/* Buttons */
.btn { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    min-height: 54px; 
    padding: 0 34px; 
    background: var(--color-red); 
    color: #fff; 
    border: 1px solid var(--color-red); 
    font-family: var(--font-body); 
    font-size: 12px; 
    font-weight: 700; 
    letter-spacing: 0.18em; 
    text-transform: uppercase; 
    transition: all 180ms ease; 
}
.btn:hover { 
    background: var(--color-red-bright); 
    border-color: var(--color-red-bright); 
    transform: translateY(-1px); 
}
.text-link { 
    display: inline-flex; 
    gap: 12px; 
    align-items: center; 
    color: var(--color-cream); 
    font-family: var(--font-body); 
    font-size: 12px; 
    letter-spacing: 0.18em; 
    text-transform: uppercase; 
    transition: color 250ms ease; 
}
.text-link:hover { color: #fff; }

/* =========================================
   4. Header & Navigation (Desktop Default)
   ========================================= */
.site-header {
    position: absolute; 
    top: 0;
    left: 0;
    width: 50vw; 
    height: 136px; 
    padding-top: 20px;
    padding-left: 156px;
    z-index: 100;
    background: transparent;
    border: none;
    pointer-events: none; 
}

.site-header__inner {
    position: relative;
    width: 100%;
    height: 100%;
    pointer-events: auto; 
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.site-header__wordmark {
    width: 88px;
    height: 88px;
    margin-right: 35px; 
}

.site-header__wordmark a {
    display: block;
    width: 100%;
    height: 100%;
}

.site-header__wordmark img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    display: block;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 45px; 
}

.site-header__item {
    position: relative;
    display: block;
    font-family: var(--font-body);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--color-cream);
    transition: color 250ms ease;
    white-space: nowrap;
    
    padding: 14px 16px;
    margin: -14px -16px; 
}

.site-header__item:hover {
    color: #fff;
}

/* =========================================
   5. Animations
   ========================================= */
.reveal-up { 
    opacity: 0; 
    transform: translateY(24px); 
    transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1), transform 800ms cubic-bezier(0.22, 1, 0.36, 1); 
}
.reveal-up.is-revealed { 
    opacity: 1; 
    transform: translateY(0); 
}

/* =========================================
   6. Page Sections
   ========================================= */

/* Hero */
.hero { 
    position: relative; 
    min-height: 100vh; 
    overflow: hidden;
    display: block; 
    padding-top: 0; 
    border-top: none; 
}
.hero-bg { 
    position: absolute; 
    inset: 0; 
    background-size: cover; 
    background-position: center right; 
    background-image: var(--bg-desktop);
}
.hero-bg::after { 
    content: ""; 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(90deg, #050505 0%, rgba(5,5,5,0.88) 35%, rgba(5,5,5,0.2) 65%, transparent 100%),
                linear-gradient(0deg, #050505 0%, rgba(5,5,5,0) 15%);
}
.hero-content { 
    position: absolute; 
    top: 25%;
    left: 12%;
    z-index: 2; 
    width: 100%; 
    max-width: 460px; 
}
.hero-eyebrow {
    margin-bottom: 22px;
}
.hero-title {
    margin-bottom: 32px;
}
.hero-subtitle { 
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1.4;
    color: var(--color-muted); 
    margin: 0 0 38px; 
    max-width: 430px;
}
.hero-cta {
    width: 232px;
    min-height: 52px;
    padding: 0;
    border-radius: 2px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.3);
}

/* Structural Desktop Grids */
@media (min-width: 1024px) {
    .location-grid { display: grid; grid-template-columns: 38% 62%; gap: 64px; }
}

/* Restaurant Feature Section */
.restaurant-feature {
    position: relative;
    overflow: hidden;
    background-color: #000000;
    color: #ffffff;
    padding: 70px 0;
    width: 100%;
}

.restaurant-feature__inner {
    position: relative;
    z-index: 2;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 5vw;
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) minmax(320px, 0.7fr);
    align-items: center;
    column-gap: clamp(64px, 7vw, 130px);
}

.restaurant-feature__image-wrap {
    width: 100%;
    aspect-ratio: 2.2 / 1;
    height: clamp(360px, 35vw, 520px);
    overflow: hidden;
    margin-left: max(0px, calc((100vw - 1700px) / 2 + 185px - 5vw));
}

.restaurant-feature__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.restaurant-feature__text {
    max-width: 400px;
    line-height: 1.8;
    letter-spacing: 0.03em;
    font-size: 1rem;
}

.restaurant-feature__text p {
    margin: 0;
}

.restaurant-feature__ornament {
    position: absolute;
    background-color: #000000;
    border-radius: 999px;
    z-index: 1;
}

.restaurant-feature__ornament--left {
    width: 200px; 
    height: 120px;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
}

.restaurant-feature__ornament--center {
    width: 180px;
    height: 250px;
    top: 45%;
    left: 65%;
    transform: translate(-50%, -50%);
}

/* Chef Profile Section */
.chef-profile-section {
    position: relative;
    width: 100%;
    background-color: var(--color-black);
    padding: clamp(95px, 8vw, 110px) 0;
    border-top: 1px solid var(--color-border);
}

.chef-profile-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(64px, 6vw, 90px);
}

.chef-profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(360px, 0.6fr);
    align-items: center;
    column-gap: clamp(80px, 8vw, 150px);
}

.chef-profile-media {
    width: 100%;
    height: clamp(520px, 42vw, 720px);
    overflow: hidden;
}

.chef-profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 45% center;
    display: block;
    border-radius: 0;
}

.chef-profile-copy {
    max-width: 460px;
    font-family: var(--font-body);
    font-size: clamp(16px, 1vw, 18px);
    line-height: 2;
    color: var(--color-muted);
    letter-spacing: 0.02em;
}

.chef-profile-copy p {
    margin: 0;
}

/* Omakase Panel Block */
.omakase-section {
    position: relative;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
    background-color: var(--color-black);
}

.omakase-section__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.omakase-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.4) 50%, rgba(5,5,5,0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

.omakase-section__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    max-width: 1500px;
    margin: 0 auto;
    padding: 85px 95px;
}

.omakase-section__intro {
    flex: 0 0 38%;
    padding-right: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.omakase-section__eyebrow {
    margin: 0 0 32px;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-red-bright);
}

.omakase-section__heading {
    max-width: 440px;
    margin: 0 0 32px;
    font-size: clamp(40px, 3.5vw, 56px);
    line-height: 1.12;
    font-weight: 400;
    font-family: var(--font-display);
    color: var(--color-cream);
}

.omakase-section__description {
    
    color: var(--color-muted);
}


.omakase-section__pricing {
    flex: 1;
    display: flex;
    align-items: stretch;
}

.omakase-tier {
    flex: 1;
    border-left: 1px solid var(--color-border-strong);
    padding: 24px 30px 24px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.omakase-tier__badge {
    position: absolute;
    top: 24px;
    right: 30px;
    display: inline-block;
    background: var(--color-red);
    color: #fff;
    padding: 6px 14px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 2px;
}

.omakase-tier__name {
    margin: 0 0 40px;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: var(--font-body);
    color: var(--color-muted);
}

.omakase-tier__price {
    margin: 0;
    font-size: clamp(44px, 4vw, 52px);
    line-height: 1;
    font-weight: 400;
    font-family: var(--font-display);
    color: var(--color-cream);
}

.omakase-tier__rule {
    width: 140px;
    height: 1px;
    background-color: var(--color-border-strong);
    margin: 28px 0;
}

.omakase-tier__courses {
    margin: 0;
    font-size: 17px;
    line-height: 1.4;
    font-family: var(--font-body);
    color: var(--color-dim);
}

/* Accordion */
.accordion { border-top: 1px solid var(--color-border); }
.accordion-item { 
    border-bottom: 1px solid var(--color-border); 
    transition: border-color 300ms ease; 
}
.accordion-item:hover { border-color: var(--color-border-strong); }
.accordion-header { 
    width: 100%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 24px 0; 
    background: none; 
    border: none; 
    color: var(--color-cream); 
    font-family: var(--font-body); 
    font-size: 14px; 
    text-transform: uppercase; 
    letter-spacing: 0.1em; 
    cursor: pointer; 
}

.accordion-header:focus-visible {
    outline: 2px solid var(--color-red);
    outline-offset: 4px;
    border-radius: 2px;
}

.icon-plus::before { 
    content: '+'; 
    font-size: 20px; 
    transition: transform 300ms ease; 
    display: inline-block; 
}
.accordion-header[aria-expanded="true"] .icon-plus::before { 
    transform: rotate(45deg); 
}
.accordion-content { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.4s cubic-bezier(0.33, 1, 0.68, 1); 
}
.accordion-content ul { 
    padding-bottom: 24px; 
    color: var(--color-muted); 
    font-size: 18px; 
}
.accordion-content li { 
    display: flex; 
    justify-content: space-between; 
    align-items: baseline; 
    border-bottom: 1px solid rgba(255,255,255,0.03); 
    padding: 12px 0; 
}
.accordion-content li span:last-child { 
    font-family: var(--font-display); 
    font-size: 20px; 
    color: var(--color-cream); 
}

/* Location Section (Map Band) */
.location-section {
    position: relative;
    max-width: 1600px;
    margin-inline: auto;
    min-height: 374px;
    overflow: hidden;
    padding: 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background-color: var(--color-black);
}

/* New Iframe Wrapper */
.location-section__map-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.location-section__map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    /* Force dark mode on Google Maps iframe using CSS filters */
    filter: invert(100%) hue-rotate(180deg) contrast(90%) brightness(85%);
}

/* Gradient setup to preserve text readability over the iframe */
.location-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(5, 5, 5, 0.95) 0%, 
        rgba(5, 5, 5, 0.8) 40%, 
        transparent 80%);
    z-index: 1;
    pointer-events: none; /* Allows mouse interactions to pass through to the map */
}

.location-section__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 320px;
    margin-left: clamp(32px, 6.5vw, 140px);
    padding-top: 36px;
    padding-bottom: 40px;
}

.location-section__eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--color-red-bright);
    margin-bottom: 30px;
}

.location-section__address {
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1.4;
    color: var(--color-cream);
    margin-bottom: 26px;
}

.location-section__address p {
    margin: 0;
}

.location-section__divider {
    width: 90px;
    height: 2px;
    background-color: var(--color-red-dark); /* Subtle thematic line */
    margin-bottom: 28px;
}

.location-section__hours {

    margin-bottom: 36px;
}

.location-section__hours p {
    margin: 0;
}

/* Explicit targeting for the first hour line as required by brief */
.location-section__hours p:first-child {
    color: var(--color-cream);
}

.location-section__directions {
    display: inline-flex;
    align-items: center;
    gap: 26px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--color-cream);
    transition: color 250ms ease;
}

.location-section__directions:hover {
    color: #ffffff;
}

.location-section__directions svg {
    width: 22px;
    height: auto;
    stroke: var(--color-red-bright);
}

.location-section__directions:hover svg {
    stroke: #ffffff;
}


/* Contact Section */
.contact-section__eyebrow {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--color-red-bright);
    margin-bottom: 22px;
}
.contact-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--color-black);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 0;
}

.contact-section__bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, rgba(255,255,255,0.01) 1px, transparent 1px) 0 0 / 20px 100%,
        rgba(5, 5, 5, 1);
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}

.contact-section__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(360px, 480px) minmax(480px, 650px);
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: clamp(40px, 5vw, 75px) clamp(32px, 6.5vw, 0px) clamp(40px, 5vw, 60px) clamp(32px, 6.5vw, 140px);
    min-height: 600px;
}

.contact-section__content {
    width: 100%;
    max-width: 500px;
}

.contact-section__list {
    display: flex;
    flex-direction: column;
    gap: 25px; 
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-section__item {
    display: grid;
    grid-template-columns: 34px auto; 
    gap: 38px; 
    align-items: start;
}

.contact-section__icon {
    color: var(--color-muted);
    display: flex;
    justify-content: flex-start;
    padding-top: 4px;
}

.contact-section__icon svg {
    width: 30px; 
    height: auto;
    stroke: currentColor;
}

.contact-section__text a {
    transition: color 300ms ease;
    display: inline-block;
}

.contact-section__text a:hover {
    color: var(--color-cream);
}

.contact-section__text address {
    font-style: normal;
    display: block;
}

.contact-section__image-wrap {
    width: 100%;
    height: 520px;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.contact-section__image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 15, 5, 0.15); 
    box-shadow: inset 0 0 20px rgba(0,0,0,0.4);
    pointer-events: none;
}

.contact-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85) contrast(1.15) saturate(0.9);
}

/* Reservation CTA */
.reservation-cta { 
    position: relative; 
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    min-height: 390px; 
    display: flex; 
    align-items: center; 
    border: none; 
    overflow: hidden; 
    padding: 0;
    isolation: isolate;
}

.res-bg { 
    position: absolute; 
    inset: 0; 
    background-size: cover; 
    background-position: center right; 
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1); 
    z-index: -2;
}

.reservation-cta::before { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: rgba(5, 5, 5, 0.4); 
    z-index: -1;
}

.reservation-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(5, 5, 5, 0.95) 0%, 
        rgba(5, 5, 5, 0.8) 30%, 
        rgba(5, 5, 5, 0) 70%);
    z-index: -1;
}

.reservation-cta:hover .res-bg { 
    transform: scale(1.03); 
}

.res-content { 
    position: relative; 
    z-index: 2; 
    width: 100%;
    max-width: 460px; 
    margin-left: clamp(32px, 6.5vw, 140px);
    padding: 60px 0;
}

.res-content h2.display-heading {
    font-size: clamp(38px, 4.5vw, 46px);
    line-height: 1.1;
    margin-bottom: 18px; 
    color: var(--color-cream);
}

.res-content .body-copy {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--color-muted);
    margin-bottom: 38px; 
}

.res-content .btn {
    min-width: 278px;
    height: 55px;
    border-radius: 0;
    letter-spacing: 0.12em;
    font-weight: 700;
}

/* Footer */
.site-footer { 
    padding: 20px 0 20px; 
    text-align: center; 
    background: var(--color-ink); 
    border-top: 1px solid var(--color-border); 
}
.footer-center p { 
    margin: 20px 0; 
    color: var(--color-muted); 
}
.footer-legal { 
    display: flex; 
    justify-content: center; 
    gap: 24px; 
    font-family: var(--font-body); 
    font-size: 11px; 
    text-transform: uppercase; 
    letter-spacing: 0.1em; 
    color: var(--color-dim); 
    border-top: 1px solid var(--color-border); 
    padding-top: 24px; 
}

/* =========================================
   7. Accessibility / Reduced Motion
   ========================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { 
      animation-duration: 0.01ms !important; 
      transition-duration: 0.01ms !important; 
      scroll-behavior: auto !important; 
  }
}

/* =========================================
   8. Tablet Breakpoint (Max 1024px)
   ========================================= */
@media (max-width: 1024px) {
    .hero-content { left: 8%; max-width: 420px; }
    .hero-bg { background-position: 75% center; }
    .omakase-section__inner { flex-direction: column; padding: 70px 48px; }
    .omakase-section__intro { flex: auto; padding-right: 0; margin-bottom: 64px; max-width: 600px; }
    .omakase-section__description { max-width: 100%; }
    .omakase-section__pricing { display: grid; grid-template-columns: repeat(3, 1fr); }
    .omakase-tier:first-child { border-left: none; padding-left: 0; }
    .restaurant-feature__inner { grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr); column-gap: 40px; }
    .restaurant-feature__image-wrap { margin-left: 0; aspect-ratio: 1.8 / 1; }
    .restaurant-feature__ornament--center { display: none; }
    
    /* Chef Profile tablet overrides */
    .chef-profile-grid { grid-template-columns: minmax(0, 1.3fr) minmax(300px, 1fr); column-gap: 56px; }
    .chef-profile-container { padding: 0 48px; }
    .chef-profile-media { height: 500px; }


    .contact-section__inner { grid-template-columns: 48% 45%; padding-left: clamp(32px, 5vw, 60px); padding-right: clamp(32px, 5vw, 60px); }
    .res-content { margin-left: 40px; }
}

/* =========================================
   9. Mobile Breakpoint (Max 767px)
   ========================================= */
@media (max-width: 767px) {
    /* Hide Header on Mobile entirely */
    .site-header { display: none; }
    
    body { padding-bottom: 84px; }
    .container { width: min(100% - 32px, 1180px); }
    
    /* Hamburger Toggle Button (Preserved for separate mobile nav) */
    .mobile-menu-toggle { 
        display: block; 
        background: none; 
        border: none; 
        width: 32px; 
        height: 32px; 
        cursor: pointer; 
        position: relative; 
        z-index: 101;
    }
    .hamburger, .hamburger::before, .hamburger::after { 
        display: block; 
        width: 24px; 
        height: 2px; 
        background: var(--color-cream); 
        position: absolute; 
        transition: transform 0.3s ease, background 0.3s ease; 
    }
    .hamburger { top: 50%; left: 4px; transform: translateY(-50%); }
    .hamburger::before { content: ''; top: -8px; left: 0; }
    .hamburger::after { content: ''; bottom: -8px; left: 0; }
    .mobile-menu-toggle[aria-expanded="true"] .hamburger { background: transparent; }
    .mobile-menu-toggle[aria-expanded="true"] .hamburger::before { transform: translateY(8px) rotate(45deg); }
    .mobile-menu-toggle[aria-expanded="true"] .hamburger::after { transform: translateY(-8px) rotate(-45deg); }

    .hero { min-height: 100vh; display: flex; align-items: flex-start; }
    .hero-bg { background-image: var(--bg-mobile, var(--bg-desktop)); background-position: 65% 25%; height: 50vh; bottom: auto; }
    .hero-bg::after { background: linear-gradient(180deg, rgba(5,5,5,0) 60%, rgba(5,5,5,0.85) 85%, #050505 100%); }
    .hero-content { position: relative; top: auto; left: auto; max-width: 100%; padding: 0 36px; margin-top: calc(50vh + 16px); display: flex; flex-direction: column; align-items: center; text-align: center; }
    .hero-eyebrow { margin-bottom: 42px; }
    .hero-title { font-size: clamp(72px, 22vw, 86px); line-height: 1; letter-spacing: 0.1em; width: 100%; max-width: 320px; margin-bottom: 38px; }
    .hero-subtitle { font-size: 13px; line-height: 1.6; letter-spacing: 0.15em; margin-bottom: 48px; max-width: 340px; }
    .hero-cta { width: 250px; min-height: 60px; margin-bottom: 90px; }
    
    .location-grid, .contact-blocks { grid-template-columns: 1fr; flex-direction: column; gap: 32px; }

    .omakase-section { padding: 16px; background-color: var(--color-black); }
    .omakase-section__inner { padding: 28px 28px 24px; border: 1px solid var(--color-border); background: var(--color-panel); }
    .omakase-section__intro { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--color-border); max-width: 100%; }
    .omakase-section__eyebrow { margin-bottom: 10px; }
    .omakase-section__heading { line-height: 1; margin-bottom: 0; max-width: 320px; }
    .omakase-section__description { margin-top: 14px; max-width: 340px; }
    .omakase-section__pricing { display: flex; flex-direction: column; }
    .omakase-tier { display: grid; grid-template-columns: auto auto 1fr; grid-template-areas: "name name courses" "price badge courses"; align-items: center; column-gap: 12px; row-gap: 4px; border-left: none; border-top: none; border-bottom: 1px solid var(--color-border); padding: 16px 0; min-height: 52px; }
    .omakase-tier:first-child { padding-top: 0; }
    .omakase-tier__name { grid-area: name; margin: 0; }
    .omakase-tier__price { grid-area: price; margin: 0; font-size: 24px; }
    .omakase-tier__badge { grid-area: badge; position: static; padding: 4px 8px; border-radius: 2px; width: fit-content; }
    .omakase-tier__courses { grid-area: courses; margin: 0; justify-self: end; text-align: right; font-size: 14px; }
    .omakase-tier__rule { display: none; }
    
    .reservation-cta { display: none; }
    .accordion-content li { flex-direction: row; gap: 16px; }
    .accordion-content li span:first-child { flex: 1; line-height: 1.3; }

    .restaurant-feature { padding: 48px 0; }
    .restaurant-feature__inner { grid-template-columns: 1fr; row-gap: 40px; }
    .restaurant-feature__image-wrap { aspect-ratio: 1.5 / 1; height: auto; }
    .restaurant-feature__content { display: flex; justify-content: center; }
    .restaurant-feature__text { max-width: 100%; }
    .restaurant-feature__ornament--left { display: none; }

    /* Chef Profile mobile overrides */
    .chef-profile-section { padding: 56px 0; }
    .chef-profile-container { padding: 0 24px; }
    .chef-profile-grid { grid-template-columns: 1fr; row-gap: 40px; }
    .chef-profile-media { height: auto; aspect-ratio: 4 / 3; }
    .chef-profile-copy { max-width: 520px; margin: 0 auto; font-size: 16px; line-height: 1.8; letter-spacing: normal; }

    /* Location section mobile overrides */
    .location-section__map-wrapper,
    .location-section::after { 
        display: none; 
    }

    .contact-section__inner { grid-template-columns: 1fr; padding: 56px 32px; gap: 48px; min-height: auto; }
    .contact-section__item { gap: 22px; }
    .contact-section__image-wrap { display: none; }
    
    .res-content { margin: 0 auto; padding: 0 24px; max-width: 100%; display: flex; flex-direction: column; align-items: center; }
    .res-content .btn { width: 100%; max-width: 300px; }
}