/* ==========================================================================
   Αργοφαγείο — style.css
   Derived from DESIGN.md (10 sections) — palette from photo forensic analysis
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --canvas: #F4ECD6;
  --surface-2: #D2CDA5;
  --pistachio: #B8C39A;
  --olive: #7C8C4A;
  --walnut: #3D2417;
  --ochre: #C9912E;
  --brick: #8C3624;
  --ink: #2A1E12;
  --ink-muted: #6B5A45;
  --border: #D8CCB0;

  /* spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* shadows */
  --shadow-xs: 0 0 0 3px rgba(201,145,46,0.18);
  --shadow-sm: 0 12px 32px -28px rgba(61,36,23,0.4);
  --shadow-md: 0 14px 32px -22px rgba(61,36,23,0.22);
  --shadow-lg: 0 24px 48px -24px rgba(61,36,23,0.34);

  /* motion */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --t-fast: 200ms;
  --t-med: 260ms;
  --t-slow: 360ms;

  /* type */
  --display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset / base (mobile safety) ---------- */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

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

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, iframe, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button { font: inherit; cursor: pointer; }

.skip-link {
  position: absolute; left: -9999px; top: auto;
  background: var(--walnut); color: var(--canvas);
  padding: .75rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: min(1240px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ---------- Typography ---------- */
.display-xl,
.display-lg,
.display-md,
h1, h2, h3 { font-family: var(--display); font-weight: 500; color: var(--ink); margin: 0 0 .75em; }

.display-xl {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.display-lg {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.005em;
}
.display-md {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.15;
  font-weight: 600;
}
h3 { font-size: 1.125rem; line-height: 1.3; letter-spacing: 0.01em; font-weight: 600; }

p { margin: 0 0 1em; max-width: 64ch; }

/* Italic discipline — soul-words only, in display headlines */
.display-xl em,
.display-lg em,
.display-md em,
.menu-kava__title em,
.about__flag em {
  font-style: italic;
  font-family: var(--display);
  color: var(--ochre);
  font-weight: 600;
}

/* Eyebrow */
.eyebrow {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0 0 1.25rem;
}
.eyebrow__line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--olive);
}

.caption {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-right: 0.5rem;
}

/* ---------- Tags / pills ---------- */
.tag {
  display: inline-block;
  padding: 0.125rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  border: 1px solid var(--olive);
  border-radius: 2px;
  background: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.875rem 1.875rem;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 44px;
  transition: background-color var(--t-med) var(--ease),
              color var(--t-med) var(--ease),
              transform var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease);
}

.btn-primary {
  background: var(--ochre);
  color: var(--canvas);
  border-color: var(--ochre);
}
.btn-primary:hover {
  background: var(--brick);
  border-color: var(--brick);
  color: var(--canvas);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px -12px rgba(140,54,36,0.5);
}
.btn-primary:focus-visible {
  outline: 2px solid var(--walnut);
  outline-offset: 3px;
}
.btn-primary:active {
  transform: translateY(0);
  background: var(--walnut);
  border-color: var(--walnut);
}
.btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background: transparent;
  color: var(--walnut);
  border-color: var(--walnut);
}
.btn-secondary:hover {
  background: var(--walnut);
  color: var(--canvas);
}
.btn-secondary:focus-visible {
  outline: 2px solid var(--walnut);
  outline-offset: 3px;
}
.btn-secondary:active {
  background: var(--ink);
  color: var(--canvas);
}
.btn-secondary:disabled {
  opacity: 0.45;
  border-color: var(--ink-muted);
  color: var(--ink-muted);
  cursor: not-allowed;
}

.btn-ghost {
  background: none;
  border: 0;
  color: var(--walnut);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  min-height: 32px;
  transition: border-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
}
.btn-ghost:hover {
  color: var(--ochre);
  border-bottom-color: var(--ochre);
}
.btn-ghost:focus-visible {
  outline: 2px solid var(--walnut);
  outline-offset: 2px;
}

/* ---------- Cards ---------- */
.card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  transition: transform var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
}
.card--elevated {
  background: var(--surface-2);
  border: 0;
  box-shadow: var(--shadow-md);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.card--walnut {
  background: var(--walnut);
  color: var(--canvas);
  border: 0;
  border-bottom: 3px solid var(--brick);
  border-radius: 3px;
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.card--walnut a { color: var(--canvas); }
.card--walnut a:hover { color: var(--ochre); }

/* ---------- Inputs ---------- */
.input {
  width: 100%;
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.875rem 1rem;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  min-height: 44px;
  transition: border-color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
}
.input:hover { border-color: var(--ink-muted); }
.input:focus,
.input:focus-visible {
  outline: 0;
  border-color: var(--ochre);
  box-shadow: var(--shadow-xs);
}
.input:active { border-color: var(--ochre); }
.input:disabled {
  background: var(--surface-2);
  opacity: 0.6;
  cursor: not-allowed;
}
.select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B5A45' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ==========================================================================
   NAV (sticky, blur, mobile drawer)
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(244, 236, 214, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 1rem clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: box-shadow var(--t-fast) var(--ease);
}
.nav--scrolled { box-shadow: var(--shadow-sm); }

.nav__brand {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--walnut);
  letter-spacing: -0.01em;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
}
.nav__link {
  font-family: var(--body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--walnut);
  padding: 0.5rem 0;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--ochre);
  transition: width var(--t-med) var(--ease);
}
.nav__link:hover { color: var(--ochre); }
.nav__link:hover::after { width: 100%; }
.nav__link:focus-visible { outline: 2px solid var(--walnut); outline-offset: 4px; }
.nav__link.is-active { color: var(--ochre); }
.nav__link.is-active::after { width: 100%; }

.nav__cta { display: inline-flex; }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  padding: 0;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--walnut);
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__drawer {
  position: fixed;
  inset: 0;
  z-index: 25;
  background: var(--canvas);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  padding: 6rem clamp(24px, 6vw, 48px) 2rem;
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease);
  visibility: hidden;
}
.nav__drawer.is-open { transform: translateX(0); visibility: visible; }
.nav__drawer .nav__link {
  font-family: var(--display);
  font-size: 1.75rem;
  text-transform: none;
  letter-spacing: -0.005em;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}
.nav__drawer .nav__link::after { display: none; }
.nav__drawer .btn { margin-top: 1.5rem; }

/* ==========================================================================
   HERO (Pattern B — full-bleed photo + bottom-left floating card)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  display: flex;
  align-items: flex-end;       /* anchor card to bottom */
  justify-content: flex-start; /* anchor card to left */
  padding: clamp(96px, 12vh, 160px) clamp(20px, 6vw, 96px) clamp(48px, 8vh, 128px);
  isolation: isolate;
  margin-top: -73px; /* hero sits behind nav */
}
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 45%,
    rgba(0, 0, 0, 0.30) 75%,
    rgba(0, 0, 0, 0.50) 100%
  );
}

.hero__card {
  position: relative; /* establish stacking context above hero__photo (-2) + hero__scrim (-1) */
  max-width: min(520px, 42vw);
  background: rgba(244, 236, 214, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  border-radius: 3px;
  box-shadow: var(--shadow-lg);
}
.hero__card .display-xl { margin-bottom: 1rem; }
.hero__lead {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink-muted);
  margin-bottom: 1.75rem;
  max-width: 48ch;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  right: clamp(24px, 5vw, 64px);
  bottom: clamp(32px, 6vh, 72px);
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  color: var(--canvas);
  opacity: 0.7;
  margin: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ==========================================================================
   SECTION shared
   ========================================================================== */
.section {
  padding-top: clamp(64px, 9vh, 128px);
  padding-bottom: clamp(64px, 9vh, 128px);
  width: 100%;
  max-width: 100%;
  scroll-margin-top: 80px;
}

/* ==========================================================================
   ABOUT (sticky-aside 5/7)
   ========================================================================== */
.about { background: var(--surface-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.about__aside {
  position: sticky;
  top: 100px;
}
.about__photo {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.about__photo:hover img { transform: scale(1.02); }
.about__photo figcaption {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  padding: 0.875rem 0 0;
  letter-spacing: 0.01em;
}
.about__body .display-lg { margin-bottom: 1.25rem; }
.about__lead {
  font-size: 1.1875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.about__flag {
  margin-top: 2.25rem;
  margin-bottom: 0.85rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  color: var(--walnut);
  line-height: 1.25;
}
.about__pills {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* ==========================================================================
   MENU (bento + numerator + dark walnut κάβα card)
   ========================================================================== */
.menu { background: var(--canvas); }
.menu__intro {
  max-width: 56ch;
  margin-bottom: clamp(3rem, 5vw, 5rem);
  padding-left: clamp(1rem, 1.5vw, 1.5rem);
  border-left: 3px solid var(--pistachio);
}
.menu__lead { color: var(--ink-muted); font-size: 1.0625rem; }

.menu__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
  margin-bottom: clamp(2.5rem, 4vw, 4.5rem);
}
.menu-category {
  grid-column: span 4;
  padding: 1.5rem 1.5rem 1.75rem;
  border-top: 1px solid var(--border);
}
.menu-category--wide { grid-column: span 6; }
.menu-category__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.menu-category__num {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  line-height: 1;
  color: var(--ochre);
  letter-spacing: -0.02em;
}
.menu-category__num--inverted { color: var(--ochre); }
.menu-category__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--walnut);
  margin: 0;
}
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px dotted var(--border);
  font-size: 1rem;
}
.menu-list li:last-child { border-bottom: 0; }
.menu-list__name { color: var(--ink); flex: 1 1 auto; }
.menu-list__price {
  color: var(--ochre);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.menu-list--inverted li { border-bottom-color: rgba(244,236,214,0.18); }
.menu-list--inverted .menu-list__name { color: var(--canvas); }
.menu-list--inverted .menu-list__price { color: var(--ochre); }

/* κάβα walnut signature card */
.menu-kava { margin-top: 2rem; }
.menu-kava__head {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.menu-kava__title {
  color: var(--canvas);
  font-family: var(--display);
  font-weight: 500;
  margin: 0;
}
.menu-kava__title em {
  color: var(--ochre);
  font-style: italic;
  font-weight: 600;
}
.menu-kava__lead {
  color: rgba(244,236,214,0.78);
  max-width: 62ch;
  margin-bottom: 1.75rem;
}
.menu-kava__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
}
.menu__note {
  margin-top: 2rem;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  max-width: 70ch;
  font-style: normal;
}

/* ==========================================================================
   ATMOSPHERE (bento mosaic)
   ========================================================================== */
.atmosphere { background: var(--canvas); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.atmosphere__intro { max-width: 56ch; margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.atmosphere__lead { color: var(--ink-muted); }

.atmosphere__mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: clamp(1rem, 2vw, 1.5rem);
}
.mosaic__tile {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--walnut);
}
.mosaic__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.mosaic__tile:hover img { transform: scale(1.025); }
.mosaic__tile figcaption {
  position: absolute;
  left: 1rem;
  bottom: 0.85rem;
  background: rgba(61,36,23,0.75);
  color: var(--canvas);
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

.mosaic__tile--tall {
  grid-column: 1 / span 1;
  grid-row: 1 / span 2;
}
.mosaic__tile--square {
  grid-column: 2 / span 1;
  grid-row: 1 / span 2;
}
.mosaic__tile--wide {
  grid-column: 3 / span 1;
  grid-row: 1 / span 2;
}

/* ==========================================================================
   LOCATION (split: iframe + address card)
   ========================================================================== */
.location { background: var(--surface-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.location__intro {
  grid-column: 1 / span 2;
  max-width: 64ch;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}
.location__lead { color: var(--ink-muted); }

.location__map {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.92);
}

.location__card {
  background: var(--canvas);
  border: 1px solid var(--border);
}
.location__card-eyebrow { margin-bottom: 0.75rem; }
.location__address {
  font-family: var(--display);
  font-size: 1.375rem;
  line-height: 1.45;
  color: var(--walnut);
  margin-bottom: 1.5rem;
}
.location__address strong { font-weight: 600; }
.location__landmarks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.location__landmarks li {
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  color: var(--ink);
  border-bottom: 1px dotted var(--border);
}
.location__landmarks li:last-child { border-bottom: 0; }
.location__contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.location__hours {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--ink-muted);
  margin: 0;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { background: var(--canvas); }
.contact__wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.contact__intro {
  grid-column: 1 / span 2;
  margin-bottom: clamp(1.5rem, 3vw, 3rem);
  max-width: 56ch;
}
.contact__form {
  display: grid;
  gap: 1.25rem;
}
.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.contact__label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.contact__label--full { grid-column: 1 / -1; }
.contact__submit { justify-self: start; margin-top: 0.5rem; }

.contact__inset {
  border-left: 1px solid var(--border);
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
}
.contact__inset-line {
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 1rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--walnut);
  color: var(--canvas);
  padding: clamp(48px, 6vw, 80px) 0 1.75rem;
}
.footer a { color: var(--canvas); }
.footer a:hover { color: var(--ochre); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(244,236,214,0.16);
}
.footer__logo {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.footer__tag {
  font-family: var(--display);
  font-style: normal;
  font-size: 1.0625rem;
  color: rgba(244,236,214,0.72);
  max-width: 40ch;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer__contact {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.85;
}
.footer__legal {
  margin: 1.75rem 0 0;
  font-size: 0.75rem;
  color: rgba(244,236,214,0.55);
  text-align: center;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   REVEAL animation (gated by html.js to keep no-JS readable)
   ========================================================================== */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .about__aside { position: relative; top: 0; }
}

@media (max-width: 768px) {
  .nav { padding: 0.875rem clamp(16px, 5vw, 24px); }
  .nav__brand { font-size: 1.3rem; }

  .hero { min-height: 92vh; min-height: 92dvh; }
  .hero__photo img { object-position: center 40%; }
  .hero__card {
    left: clamp(12px, 4vw, 24px);
    right: clamp(12px, 4vw, 24px);
    bottom: clamp(24px, 5vh, 64px);
    max-width: none;
    width: min(540px, calc(100vw - 32px));
    padding: clamp(1.25rem, 4vw, 1.75rem);
  }
  .hero__lead { font-size: 1rem; margin-bottom: 1.25rem; }
  .hero__cta { gap: 1rem; }
  .hero__cta .btn { font-size: 0.75rem; padding: 0.75rem 1.25rem; }
  .hero__scroll { display: none; }

  .about__grid { grid-template-columns: 1fr; gap: 2rem; }
  .about__aside { position: relative; }
  .about__photo img { aspect-ratio: 4/3; }

  .menu__grid { grid-template-columns: 1fr; gap: 2rem; }
  .menu-category,
  .menu-category--wide { grid-column: 1 / -1; padding: 1.25rem 0 1.5rem; }
  .menu-kava__grid { grid-template-columns: 1fr; }

  .atmosphere__mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }
  .mosaic__tile,
  .mosaic__tile--tall,
  .mosaic__tile--square,
  .mosaic__tile--wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4/3;
  }

  .location__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .location__intro { grid-column: 1 / -1; }
  .location__map { aspect-ratio: 4/3; }

  .contact__wrap { grid-template-columns: 1fr; gap: 2rem; }
  .contact__intro { grid-column: 1 / -1; }
  .contact__row { grid-template-columns: 1fr; gap: 1rem; }
  .contact__inset {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 1.75rem;
  }

  .footer__grid { grid-template-columns: 1fr; gap: 1.75rem; }
}

@media (max-width: 480px) {
  .display-xl { font-size: clamp(2.25rem, 8vw, 3rem); }
  .menu-category__head { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .menu-category__num { font-size: 2.5rem; }
  .menu-kava__head { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .hero__card { left: 12px; right: 12px; bottom: 20px; padding: 1.25rem; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { width: 100%; }
}

/* Prefers 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; }
}
