/* =========================================================
   Betül — Design Tokens
   THE TILED NARRATIVE WALL: hand-painted tile panels in a
   hunger-forward chili-red + saffron-gold glaze on warm
   ceramic white. Grout-seam grid is real structure.
   See DESIGN.md for the full system contract.
   ========================================================= */
:root {
    --chili: #A83820;
    --chili-deep: #6B2113;
    --saffron: #C88A2E;
    --saffron-deep: #9C6A1E;
    --glaze: #F5F0E6;
    --glaze-dim: #ECE4D3;
    --ink: #241811;
    --ink-deep: #170F09;
    --ink-soft: rgba(36, 24, 17, 0.66);

    --grout: #C9BEA9;
    --grout-dark: #120B06;
    --grout-sm: 3px;
    --grout-md: 6px;

    --font-display: "Besley", Georgia, serif;
    --font-body: "Archivo", -apple-system, BlinkMacSystemFont, sans-serif;

    --radius: 2px;
    --ease: cubic-bezier(.4, 0, .2, 1);
}

/* =========================================================
   Reset & Base
   ========================================================= */
* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

@media (min-width: 768px) {
    html { scroll-padding-top: 132px; }
}

body {
    margin: 0;
    background: var(--glaze);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--ink);
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.01em;
    font-weight: 700;
}

p { margin: 0; max-width: 68ch; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
input, textarea { font-family: inherit; font-size: 1rem; }

.wrap {
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 18px;
}

@media (min-width: 768px) {
    .wrap { padding-inline: 32px; }
}

.section { padding-block: clamp(48px, 8vw, 96px); }
.section--tight { padding-block: clamp(32px, 5vw, 56px); }
.section--ink { background: var(--ink); color: var(--glaze); }
.section--dim { background: var(--glaze-dim); }

.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--glaze); }

/* =========================================================
   Typography helpers
   ========================================================= */
.label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 10px;
}

.section--ink .kicker { color: var(--saffron); }

.kicker::before {
    content: "";
    width: 22px;
    height: 2px;
    background: currentColor;
}

.panel-title {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    margin-bottom: 12px;
}

.numeral {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.section-head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-sub { color: var(--ink-soft); font-size: 1.02rem; }
.section--ink .section-sub { color: rgba(245, 240, 230, 0.72); }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* =========================================================
   Buttons — rectangular tile plates. Never pills.
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    border: 1.5px solid transparent;
    transition: background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}

.btn--primary { background: var(--saffron); color: var(--glaze); }
.btn--primary:hover { background: var(--saffron-deep); transform: translateY(-2px); }

.btn--chili { background: var(--chili); color: var(--glaze); }
.btn--chili:hover { background: var(--chili-deep); transform: translateY(-2px); }

.btn--ghost-light { border-color: rgba(245, 240, 230, 0.5); color: var(--glaze); }
.btn--ghost-light:hover { background: var(--glaze); color: var(--chili); border-color: var(--glaze); transform: translateY(-2px); }

.btn--ghost-dark { border-color: rgba(36, 24, 17, 0.3); color: var(--ink); }
.btn--ghost-dark:hover { background: var(--ink); color: var(--glaze); border-color: var(--ink); transform: translateY(-2px); }

.btn--sm { padding: 11px 20px; font-size: 0.74rem; }
.btn--block { width: 100%; }

/* =========================================================
   Toasts
   ========================================================= */
.toast-stack {
    position: fixed;
    top: 108px;
    right: 16px;
    left: 16px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

@media (min-width: 640px) { .toast-stack { left: auto; width: 380px; } }

.toast-msg {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--glaze);
    color: var(--ink);
    padding: 14px 16px;
    border-radius: var(--radius);
    border: 1.5px solid var(--saffron);
    font-size: 0.9rem;
    animation: toast-in .4s var(--ease);
}

.toast-msg--success { border-color: #3E7A4F; }
.toast-msg--success i { color: #3E7A4F; }
.toast-msg--error, .toast-msg--warning { border-color: var(--chili); }
.toast-msg--error i, .toast-msg--warning i { color: var(--chili); }
.toast-msg span { flex: 1; }
.toast-msg__close { font-size: 1.2rem; line-height: 1; color: var(--ink-soft); }

@keyframes toast-in {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   Navbar — solid espresso bar at all times
   ========================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: var(--ink);
    border-bottom: 3px solid var(--saffron);
}

.navbar__inner {
    max-width: 1320px;
    margin-inline: auto;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

@media (min-width: 768px) { .navbar__inner { padding: 12px 32px; } }

.navbar__brand { display: inline-flex; align-items: center; }
.navbar__logo { height: 68px; width: auto; }

@media (min-width: 768px) { .navbar__logo { height: 104px; } }

.navbar__links {
    display: none;
    align-items: center;
    gap: clamp(16px, 2vw, 28px);
}

@media (min-width: 1024px) { .navbar__links { display: flex; } }

.navbar__links a {
    position: relative;
    padding-block: 6px;
    color: var(--glaze);
    font-family: "Urbanist", var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.navbar__links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--saffron);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s var(--ease);
}

.navbar__links a:hover::after { transform: scaleX(1); }

.navbar__actions { display: flex; align-items: center; gap: 12px; }
.navbar__call { background: var(--saffron); color: var(--glaze); }
.navbar__call:hover { background: var(--saffron-deep); }
.navbar__call span { display: none; }
@media (min-width: 460px) { .navbar__call span { display: inline; } }

.navbar__burger {
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--ink-deep);
}

@media (min-width: 1024px) { .navbar__burger { display: none; } }

.navbar__burger span { width: 18px; height: 2px; background: var(--glaze); border-radius: 1px; }

/* Mobile drawer — full cobalt panel */
.nav-drawer { position: fixed; inset: 0; z-index: 999; visibility: hidden; pointer-events: none; }
.nav-drawer.is-open { visibility: visible; pointer-events: auto; }

.nav-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 13, 9, 0.6);
    opacity: 0;
    transition: opacity .35s var(--ease);
}

.nav-drawer.is-open .nav-drawer__overlay { opacity: 1; }

.nav-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(88vw, 380px);
    background: var(--ink);
    border-top: 3px solid var(--saffron);
    display: flex;
    flex-direction: column;
    padding: 22px 22px 28px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
}

.nav-drawer.is-open .nav-drawer__panel { transform: translateX(0); }

.nav-drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.nav-drawer__logo { height: 60px; }
.nav-drawer__close { font-size: 1.8rem; color: var(--glaze); line-height: 1; }

.nav-drawer__links { display: flex; flex-direction: column; gap: 2px; flex: 1; }

.nav-drawer__links a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 8px;
    border-bottom: 1px solid var(--ink-deep);
    font-family: "Urbanist", var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--glaze);
}

.nav-drawer__links a i { width: 20px; color: var(--saffron); font-size: 1rem; }

.nav-drawer__foot { margin-top: 20px; display: flex; flex-direction: column; gap: 16px; }
.nav-drawer__social { display: flex; gap: 10px; justify-content: center; }

.nav-drawer__social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ink-deep);
    color: var(--glaze);
}

body.drawer-open { overflow: hidden; }

/* Floating call plate */
.floating-cta {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 400;
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: var(--saffron);
    color: var(--glaze);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    border: 1px solid rgba(245, 240, 230, 0.4);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
    position: relative;
    height: 100svh;
    min-height: 560px;
    overflow: hidden;
    background: var(--ink);
}

.hero .swiper, .hero .swiper-slide { height: 100%; }

.hero-slide { position: relative; height: 100%; display: flex; align-items: flex-end; }

.hero-slide__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.05);
}

.hero-slide__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(20, 13, 9, 0.9) 0%, rgba(20, 13, 9, 0.35) 48%, rgba(20, 13, 9, 0.05) 100%);
}

.hero-slide__numeral {
    position: absolute;
    top: clamp(70px, 12vh, 130px);
    right: clamp(-10px, 2vw, 20px);
    z-index: 1;
    font-size: clamp(6rem, 22vw, 16rem);
    color: rgba(245, 240, 230, 0.1);
    user-select: none;
    pointer-events: none;
}

.hero-slide__content {
    position: relative;
    z-index: 2;
    color: var(--glaze);
    max-width: 760px;
    padding-bottom: clamp(48px, 8vh, 96px);
}

.hero-slide__cartouche {
    display: inline-block;
    background: var(--saffron);
    color: var(--glaze);
    padding: 6px 14px;
    margin-bottom: 18px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-slide__title {
    font-size: clamp(2.4rem, 6.5vw, 5rem);
    color: var(--glaze);
    margin-bottom: 20px;
}

.hero-slide__subtitle {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: rgba(245, 240, 230, 0.82);
    max-width: 54ch;
    margin-bottom: 30px;
}

.hero-slide__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero .swiper-pagination-bullet {
    background: var(--glaze);
    opacity: .5;
    border-radius: 1px;
    width: 22px;
    height: 3px;
}

.hero .swiper-pagination-bullet-active { opacity: 1; background: var(--saffron); }

.hero-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(245, 240, 230, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    letter-spacing: .16em;
    text-transform: uppercase;
}

/* =========================================================
   Grout grids — the structural device
   ========================================================= */
.tile-grid {
    display: grid;
    gap: var(--grout-sm);
    background: var(--grout);
    padding: var(--grout-sm);
}

@media (min-width: 768px) { .tile-grid { gap: var(--grout-md); padding: var(--grout-md); } }

.tile-grid--dark { background: var(--grout-dark); }
.tile-grid--dark .tile { background: var(--ink-deep); }
.tile-grid--dark .tile h3, .tile-grid--dark .tile h4 { color: var(--glaze); }
.tile-grid--dark .tile p { color: rgba(245, 240, 230, 0.72); }

.tile {
    background: var(--glaze);
    padding: clamp(20px, 4vw, 40px);
}

.tile--dim { background: var(--glaze-dim); }
.tile--flush { padding: 0; }

.tile-empty {
    background: repeating-linear-gradient(135deg, var(--glaze-dim), var(--glaze-dim) 10px, var(--glaze) 10px, var(--glaze) 20px);
    border: 1.5px dashed rgba(36, 24, 17, 0.25);
    padding: 40px 24px;
    text-align: center;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

/* =========================================================
   Story / about-teaser panel (home)
   ========================================================= */
.story-panel {
    grid-template-columns: 1fr;
}

@media (min-width: 960px) {
    .story-panel { grid-template-columns: 1.05fr 0.95fr; }
}

.story-panel__media { position: relative; }
.story-panel__media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }

.story-panel__body { display: flex; flex-direction: column; justify-content: center; }
.story-panel__body p { color: var(--ink-soft); margin-bottom: 16px; }
.story-panel__body p:last-of-type { margin-bottom: 26px; }

.plaque-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--grout);
    margin-bottom: 26px;
}

.plaque-row__item {
    background: var(--glaze);
    padding: 16px 14px 14px;
    border-top: 3px solid var(--saffron);
}

.plaque-row__item .numeral { font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--chili); display: block; }
.plaque-row__item .label { color: var(--ink-soft); }

.plaque-row--on-dark { background: rgba(245, 240, 230, 0.18); }
.plaque-row--on-dark .plaque-row__item { background: var(--ink-deep); border-top-color: var(--saffron); }
.plaque-row--on-dark .plaque-row__item .numeral { color: var(--glaze); }
.plaque-row--on-dark .plaque-row__item .label { color: rgba(245, 240, 230, 0.65); }

/* =========================================================
   Facts strip (replaces icon-badge feature cards)
   ========================================================= */
.facts-strip {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 720px) { .facts-strip { grid-template-columns: repeat(4, 1fr); } }

.facts-strip .tile { text-align: left; }
.facts-strip .tile .label { color: var(--saffron); display: block; margin-bottom: 10px; }
.facts-strip .tile h3 { font-size: 1.15rem; margin-bottom: 8px; }
.facts-strip .tile p { font-size: 0.9rem; color: var(--ink-soft); }

.facts-strip.tile-grid--dark .tile .label { color: var(--saffron); }
.facts-strip.tile-grid--dark .tile h3 { color: var(--glaze); }
.facts-strip.tile-grid--dark .tile p { color: rgba(245, 240, 230, 0.72); }

/* =========================================================
   Branch tile plates
   ========================================================= */
.branch-grid { grid-template-columns: 1fr; }

@media (min-width: 720px) { .branch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .branch-grid { grid-template-columns: repeat(3, 1fr); } }

.branch-tile { display: flex; flex-direction: column; }

.branch-tile__media { aspect-ratio: 16/11; overflow: hidden; }
.branch-tile__media img { width: 100%; height: 100%; object-fit: cover; }

.branch-tile__caption {
    background: var(--saffron);
    color: var(--glaze);
    padding: 12px 18px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
}

.branch-tile__body { padding: clamp(18px, 3vw, 26px); display: flex; flex-direction: column; gap: 14px; flex: 1; }

.branch-tile__address { color: var(--ink-soft); font-size: 0.92rem; display: flex; gap: 10px; }
.branch-tile__address i { color: var(--chili); margin-top: 3px; }

.branch-tile__meta { display: flex; flex-direction: column; gap: 8px; font-size: 0.92rem; }
.branch-tile__meta a { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.branch-tile__meta a:hover { color: var(--saffron); }
.branch-tile__meta i { width: 16px; color: var(--chili); }

.branch-tile__cta { margin-top: auto; padding-top: 6px; }

/* =========================================================
   Gallery — grout mosaic
   ========================================================= */
.gallery-grid { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item { position: relative; display: block; aspect-ratio: 1/1; overflow: hidden; }
.gallery-grid .gallery-item:nth-child(5n+1) { grid-row: span 2; aspect-ratio: auto; }

.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.94); transition: filter .3s var(--ease); }
.gallery-item:hover img { filter: saturate(1.1) brightness(1.04); }

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(20, 13, 9, 0.5) 0%, transparent 45%);
    opacity: 0;
    transition: opacity .3s var(--ease);
}

.gallery-item:hover::after { opacity: 1; }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band { position: relative; text-align: center; padding-block: clamp(56px, 9vw, 100px); }

.cta-band__inner { position: relative; max-width: 640px; margin-inline: auto; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { color: rgba(245, 240, 230, 0.78); margin-inline: auto; margin-bottom: 30px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--ink); color: rgba(245, 240, 230, 0.78); }
.site-footer__top { padding: clamp(40px, 6vw, 64px) 0 clamp(32px, 5vw, 48px); }

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

@media (min-width: 720px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
@media (min-width: 1080px) { .footer-grid { grid-template-columns: 1.3fr 0.8fr 1fr 1fr; gap: 32px; } }

.footer-col { border-top: 2px solid rgba(245, 240, 230, 0.14); padding-top: 22px; }
.footer-col--brand { border-top-color: var(--saffron); }

.footer-logo { height: 88px; margin-bottom: 16px; }
.footer-col--brand p { font-size: 0.92rem; max-width: 32ch; margin-bottom: 20px; }

.footer-social { display: flex; gap: 8px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: var(--radius);
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(245, 240, 230, 0.08); color: var(--glaze);
}
.footer-social a:hover { background: var(--saffron); }

.footer-col h4 {
    color: var(--glaze); font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 11px; font-size: 0.92rem; }
.footer-col ul a:hover { color: var(--saffron); }

.footer-branches li, .footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer-branches i, .footer-contact i { color: var(--saffron); margin-top: 3px; width: 16px; }

.site-footer__bottom { border-top: 1px solid rgba(245, 240, 230, 0.12); padding-block: 20px; font-size: 0.8rem; }
.site-footer__bottom-inner { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; }
.site-footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.site-footer__legal a:hover { color: var(--saffron); }

/* =========================================================
   Page hero (inner pages)
   ========================================================= */
.page-hero {
    position: relative;
    padding: clamp(140px, 20vw, 200px) 0 clamp(56px, 7vw, 80px);
    background: var(--ink);
    color: var(--glaze);
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.28;
    mix-blend-mode: luminosity;
}

.page-hero.has-image::before { background-image: var(--hero-img); }

.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--glaze); font-size: clamp(2.1rem, 5vw, 3.2rem); margin-bottom: 10px; }
.page-hero .kicker { color: var(--saffron); }
.breadcrumb { font-size: 0.82rem; color: rgba(245, 240, 230, 0.7); }
.breadcrumb a:hover { color: var(--saffron); }

/* =========================================================
   Narrative Panel Wall — About page signature component
   ========================================================= */
.narrative-wall { grid-template-columns: 1fr; max-width: 1000px; margin-inline: auto; }

.narrative-panel { display: grid; grid-template-columns: 1fr; }

@media (min-width: 800px) {
    .narrative-panel { grid-template-columns: 0.9fr 1.1fr; }
    .narrative-panel:nth-child(even) { grid-template-columns: 1.1fr 0.9fr; }
    .narrative-panel:nth-child(even) .narrative-panel__media { order: 2; }
}

.narrative-panel__media { position: relative; min-height: 260px; }
.narrative-panel__media img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }

.narrative-panel__year {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--saffron);
    color: var(--glaze);
    padding: 10px 20px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.4rem, 3vw, 2rem);
}

.narrative-panel__body { padding: clamp(24px, 4vw, 40px); display: flex; flex-direction: column; justify-content: center; }
.narrative-panel__body h3 { margin-bottom: 14px; font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.narrative-panel__body p { color: var(--ink-soft); }

/* =========================================================
   Contact page
   ========================================================= */
.contact-layout { grid-template-columns: 1fr; }

@media (min-width: 960px) { .contact-layout { grid-template-columns: 1fr 1fr; } }

.contact-info-list { display: flex; flex-direction: column; }
.contact-info-list .tile { border-top: 2px solid var(--saffron); }

.contact-info-row { display: flex; gap: 16px; align-items: flex-start; padding-block: 14px; border-bottom: 1px solid rgba(36, 24, 17, 0.1); }
.contact-info-row:last-child { border-bottom: 0; }
.contact-info-row i { width: 20px; margin-top: 3px; color: var(--chili); font-size: 1.05rem; }
.contact-info-row h4 { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 4px; font-family: var(--font-body); font-weight: 700; }
.contact-info-row p, .contact-info-row a { font-size: 0.96rem; }
.contact-info-row a:hover { color: var(--saffron); }

.map-frame { aspect-ratio: 16/10; }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15) contrast(1.05); }

.contact-form h3 { margin-bottom: 8px; }
.contact-form > p { color: var(--ink-soft); margin-bottom: 24px; }

.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; color: var(--ink-soft); }

.form-row input, .form-row textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(36, 24, 17, 0.2);
    border-radius: var(--radius);
    background: var(--glaze-dim);
    transition: border-color .2s var(--ease);
}

.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--chili); background: var(--glaze); }
.form-row textarea { min-height: 130px; resize: vertical; }
.form-errors { color: var(--saffron); font-size: 0.78rem; margin-top: 6px; }

/* =========================================================
   Career / simple pages
   ========================================================= */
.simple-page { max-width: 820px; margin-inline: auto; }
.simple-page h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 16px; }
.simple-page h3 { font-size: 1.1rem; margin: 26px 0 10px; }
.simple-page p { color: var(--ink-soft); margin-bottom: 14px; }
.simple-page ul { margin-bottom: 14px; }
.simple-page li { color: var(--ink-soft); padding-left: 20px; position: relative; margin-bottom: 8px; }
.simple-page li::before { content: "—"; position: absolute; left: 0; color: var(--saffron); }

.plaque-list { grid-template-columns: 1fr; margin: 28px 0 32px; }

@media (min-width: 640px) { .plaque-list { grid-template-columns: repeat(3, 1fr); } }

.plaque-list .tile { border-top: 3px solid var(--saffron); }
.plaque-list .tile h4 { font-size: 0.98rem; margin-bottom: 6px; }
.plaque-list .tile p { font-size: 0.88rem; }

/* =========================================================
   Menu page
   ========================================================= */
.menu-nav {
    position: sticky;
    top: 88px;
    z-index: 100;
    background: var(--glaze);
    padding-block: 10px;
    border-bottom: 2px solid var(--grout);
}

@media (min-width: 768px) { .menu-nav { top: 128px; } }

.menu-nav__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    background: var(--glaze-dim);
    border: 1.5px solid var(--grout);
    color: var(--ink);
    font-family: "Urbanist", var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}

.menu-nav__trigger:hover { border-color: var(--chili); }

.menu-nav__trigger[aria-expanded="true"] {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--glaze);
}

.menu-nav__trigger-text { display: flex; align-items: center; gap: 12px; }
.menu-nav__trigger-text i { color: var(--chili); font-size: 0.95rem; }
.menu-nav__trigger[aria-expanded="true"] .menu-nav__trigger-text i { color: var(--saffron); }

.menu-nav__trigger-chevron { color: var(--chili); transition: transform .3s var(--ease), color .25s var(--ease); }
.menu-nav__trigger[aria-expanded="true"] .menu-nav__trigger-chevron { color: var(--saffron); transform: rotate(180deg); }

.menu-nav__panel {
    max-height: 0;
    overflow: hidden;
    background: var(--grout);
    transition: max-height .35s var(--ease);
}

.menu-nav__panel-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    padding-top: 2px;
}

@media (min-width: 560px) { .menu-nav__panel-inner { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .menu-nav__panel-inner { grid-template-columns: repeat(4, 1fr); } }

.menu-nav__panel .menu-nav__pill {
    flex-shrink: initial;
    width: 100%;
    border-radius: 0;
}

.menu-nav__pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--glaze-dim);
    color: var(--ink-soft);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background-color .2s var(--ease), color .2s var(--ease);
}

.menu-nav__pill:hover { background: var(--chili); color: var(--glaze); }
.menu-nav__pill.is-active { background: var(--saffron); color: var(--glaze); }

.menu-category { padding-block: clamp(36px, 5vw, 56px); scroll-margin-top: 210px; }
.menu-category:not(:last-child) { border-bottom: 1px solid var(--grout); }

.menu-category__head { display: flex; align-items: baseline; gap: 14px; margin-bottom: clamp(20px, 3vw, 32px); }
.menu-category__head .numeral { font-size: 1rem; color: var(--saffron); }

.menu-list { columns: 1; column-gap: 44px; }
@media (min-width: 760px) { .menu-list { columns: 2; } }

.menu-item { break-inside: avoid; padding-block: 14px; border-bottom: 1px solid var(--grout); }
.menu-item__name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.menu-item__desc { margin-top: 6px; font-size: 0.87rem; color: var(--ink-soft); line-height: 1.55; }

/* =========================================================
   Reveal animation helper
   ========================================================= */
[data-aos] { will-change: transform, opacity; }
