/* ==========================================================================
   Farallon Restaurant — design system
   Palette drawn from the room itself: the 1925 Elks pool vault at night,
   brass jellyfish chandeliers, and the navy-and-gold paddlefish caviar tin.
   ========================================================================== */

:root {
  /* ---- colour ---- */
  --abyss:        #07172a;
  --abyss-deep:   #04101e;
  --deep:         #0d2439;
  --tide:         #14344f;
  --marble:       #2f6285;
  --brass:        #c79a51;
  --brass-lite:   #e2c48f;
  --brass-dim:    #8a6a34;
  --shell:        #f5f0e5;
  --shell-2:      #ebe3d3;
  --shell-3:      #ddd2bc;
  --ink:          #1b1714;
  --ink-soft:     #4b4239;
  --on-dark:      #eef3f7;
  --on-dark-soft: #a3b8c8;
  --line-dark:    rgba(199,154,81,.26);
  --line-light:   rgba(27,23,20,.16);

  /* ---- type ---- */
  --f-display: "Italiana", "Didot", Georgia, serif;
  --f-body:    "EB Garamond", Georgia, "Times New Roman", serif;
  --f-util:    "Jost", "Helvetica Neue", Arial, sans-serif;

  --fs-eyebrow: .72rem;
  --fs-small:   .9rem;
  --fs-body:    1.125rem;
  --fs-lede:    1.35rem;
  --fs-h3:      clamp(1.35rem, 1.05rem + .9vw, 1.8rem);
  --fs-h2:      clamp(1.9rem, 1.25rem + 2.3vw, 3.1rem);
  --fs-h1:      clamp(2.5rem, 1.3rem + 5vw, 5.4rem);

  /* ---- space & shape ---- */
  --gutter:  clamp(1.15rem, .6rem + 2.4vw, 3rem);
  --measure: 68ch;
  --wide:    1220px;
  --narrow:  760px;
  --sec-y:   clamp(3.75rem, 2.2rem + 5.5vw, 7.5rem);
  --r-sm: 2px;
  --r-md: 4px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ==========================================================================
   Reset / base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

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

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

body {
  margin: 0;
  background: var(--abyss);
  color: var(--on-dark);
  font-family: var(--f-body);
  font-size: var(--fs-body);
  line-height: 1.68;
  font-feature-settings: "liga" 1, "kern" 1;
  overflow-x: hidden;
}

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

a { color: inherit; }

h1, h2, h3, h4 { margin: 0; font-weight: 400; line-height: 1.08; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

hr { border: 0; border-top: 1px solid var(--line-dark); margin: 2.5rem 0; }

::selection { background: var(--brass); color: var(--abyss-deep); }

:focus-visible {
  outline: 2px solid var(--brass-lite);
  outline-offset: 3px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--brass); color: var(--abyss-deep);
  padding: .8rem 1.2rem; font-family: var(--f-util); font-size: .85rem;
  letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
}
.skip:focus { left: .75rem; top: .75rem; }

.vh {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.wrap { width: min(100% - (var(--gutter) * 2), var(--wide)); margin-inline: auto; }
.wrap--narrow { width: min(100% - (var(--gutter) * 2), var(--narrow)); margin-inline: auto; }

.section { padding-block: var(--sec-y); position: relative; }
.section--tight { padding-block: calc(var(--sec-y) * .62); }

.section--dark  { background: var(--abyss); color: var(--on-dark); }
.section--deep  { background: var(--deep);  color: var(--on-dark); }
.section--tide  { background: var(--tide);  color: var(--on-dark); }
.section--light { background: var(--shell); color: var(--ink); }
.section--light-2 { background: var(--shell-2); color: var(--ink); }

/* ==========================================================================
   Type helpers
   ========================================================================== */

.eyebrow {
  font-family: var(--f-util);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 1.15rem;
  display: block;
}
.section--light .eyebrow, .section--light-2 .eyebrow { color: var(--brass-dim); }

.display   { font-family: var(--f-display); letter-spacing: .02em; }
.h1        { font-family: var(--f-display); font-size: var(--fs-h1); letter-spacing: .04em; line-height: 1.02; }
.h2        { font-family: var(--f-display); font-size: var(--fs-h2); letter-spacing: .045em; }
.h3        { font-family: var(--f-display); font-size: var(--fs-h3); letter-spacing: .05em; }

.lede {
  font-size: var(--fs-lede);
  line-height: 1.55;
  color: var(--on-dark-soft);
  max-width: 56ch;
}
.section--light .lede, .section--light-2 .lede { color: var(--ink-soft); }

.prose { max-width: var(--measure); }
.prose > * + * { margin-top: 1.1em; }
.prose a { color: var(--brass-lite); text-underline-offset: .22em; text-decoration-thickness: 1px; }
.section--light .prose a, .section--light-2 .prose a { color: #8f6a25; }

.rule {
  width: 68px; height: 1px; background: var(--brass); opacity: .6;
  margin: 1.6rem 0; border: 0;
}
.rule--center { margin-inline: auto; }

.prosegrid { display: grid; gap: clamp(1.6rem, 1rem + 2.6vw, 3.6rem); }
@media (min-width: 980px) {
  .prosegrid { grid-template-columns: 5fr 7fr; align-items: start; }
  .prosegrid__head { position: sticky; top: 108px; }
  .prosegrid__head .rule { margin-bottom: 0; }
}
.prosegrid__head .h2 { max-width: 16ch; }
.prosegrid__body .prose { max-width: 64ch; }

.btn-row--center { justify-content: center; }

/* ==========================================================================
   Signature: the caviar-tin medallion
   The three private rooms are named for caviar grades (Sevruga / Osetra /
   Beluga), so the tin lid doubles as this site's section marker.
   ========================================================================== */

.tin {
  --tin-size: 74px;
  width: var(--tin-size); height: var(--tin-size);
  border-radius: 50%;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 32% 26%, #1d4265 0%, #0d2439 46%, #071628 100%);
  border: 1px solid var(--brass);
  box-shadow:
    inset 0 0 0 4px rgba(7,23,42,.9),
    inset 0 0 0 5px rgba(199,154,81,.55),
    0 6px 26px rgba(0,0,0,.4);
  flex: none;
  position: relative;
}
.tin span {
  font-family: var(--f-util);
  font-size: .52rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass-lite);
  text-align: center;
  line-height: 1.25;
  padding: 0 6px;
}
.tin--sm { --tin-size: 68px; }
.tin--sm span { font-size: .5rem; letter-spacing: .16em; }

.tin-head {
  display: flex; align-items: center; gap: 1.35rem;
  margin-bottom: 1.5rem;
}
.tin-head .eyebrow { margin: 0; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--f-util);
  font-size: .78rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none;
  padding: .95rem 1.7rem;
  border: 1px solid var(--brass);
  color: var(--brass-lite);
  background: transparent;
  border-radius: var(--r-sm);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  cursor: pointer;
}
.btn:hover, .btn:focus-visible { background: var(--brass); color: var(--abyss-deep); }

.btn--solid { background: var(--brass); color: var(--abyss-deep); border-color: var(--brass); }
.btn--solid:hover, .btn--solid:focus-visible { background: var(--brass-lite); border-color: var(--brass-lite); }

.btn--ghost-light { border-color: rgba(27,23,20,.35); color: var(--ink); }
.btn--ghost-light:hover, .btn--ghost-light:focus-visible { background: var(--ink); color: var(--shell); border-color: var(--ink); }

.btn--sm { padding: .7rem 1.2rem; font-size: .7rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
  border-bottom: 1px solid transparent;
  padding-block: .85rem;
}
.header.is-stuck,
.header.is-open {
  background: rgba(4,16,30,.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-dark);
}
body.no-hero .header { background: rgba(4,16,30,.94); border-bottom-color: var(--line-dark); }

.header__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  min-width: 0;
}

.brand {
  display: flex; flex-direction: column; gap: .18rem;
  text-decoration: none; color: var(--on-dark);
  flex: 0 1 auto; min-width: 0;
}
.brand__name {
  font-family: var(--f-display);
  font-size: clamp(1.35rem, 1.1rem + .8vw, 1.8rem);
  letter-spacing: .3em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand__sub {
  font-family: var(--f-util);
  font-size: .53rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--brass); line-height: 1; white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav__list { display: flex; align-items: center; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.nav__link {
  font-family: var(--f-util);
  font-size: .72rem; font-weight: 400;
  letter-spacing: .17em; text-transform: uppercase;
  text-decoration: none; color: var(--on-dark);
  padding: .4rem 0; position: relative; white-space: nowrap;
  transition: color .25s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--brass);
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav__link:hover, .nav__link:focus-visible { color: var(--brass-lite); }
.nav__link:hover::after, .nav__link:focus-visible::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--brass-lite); }

/* dropdown */
.nav__item--has-menu { position: relative; }
.nav__toggle {
  font-family: var(--f-util); font-size: .72rem; letter-spacing: .17em;
  text-transform: uppercase; color: var(--on-dark);
  background: none; border: 0; padding: .4rem 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: .4rem;
}
.nav__toggle svg { transition: transform .3s var(--ease); }
.nav__item--has-menu.is-open .nav__toggle { color: var(--brass-lite); }
.nav__item--has-menu.is-open .nav__toggle svg { transform: rotate(180deg); }
.nav__menu {
  position: absolute; top: calc(100% + .9rem); left: 50%; transform: translateX(-50%) translateY(-6px);
  min-width: 232px; list-style: none; margin: 0; padding: .6rem 0;
  background: rgba(4,16,30,.98);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid var(--line-dark); border-radius: var(--r-md);
  opacity: 0; visibility: hidden; transition: all .28s var(--ease);
  box-shadow: 0 22px 48px rgba(0,0,0,.5);
}
.nav__item--has-menu.is-open .nav__menu,
.nav__item--has-menu:hover .nav__menu,
.nav__item--has-menu:focus-within .nav__menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__item--has-menu:hover .nav__toggle svg,
.nav__item--has-menu:focus-within .nav__toggle svg { transform: rotate(180deg); }
.nav__menu a {
  display: block; padding: .6rem 1.25rem;
  font-family: var(--f-util); font-size: .72rem; letter-spacing: .13em;
  text-transform: uppercase; text-decoration: none; color: var(--on-dark-soft);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__menu a:hover, .nav__menu a:focus-visible { color: var(--brass-lite); background: rgba(199,154,81,.09); }

.header__cta { display: flex; align-items: center; gap: .75rem; flex: none; }
.header__tel {
  font-family: var(--f-util); font-size: .72rem; letter-spacing: .13em;
  text-decoration: none; color: var(--on-dark-soft); white-space: nowrap;
}
.header__tel:hover { color: var(--brass-lite); }

.burger {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-dark);
  background: transparent; border-radius: var(--r-sm); cursor: pointer;
  padding: 0; place-items: center; flex: none;
}
.burger span { display: block; width: 19px; height: 1px; background: var(--on-dark); position: relative; transition: background .2s; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 1px; background: var(--on-dark);
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.header.is-open .burger span { background: transparent; }
.header.is-open .burger span::before { top: 0; transform: rotate(45deg); }
.header.is-open .burger span::after  { top: 0; transform: rotate(-45deg); }

/* mobile drawer */
.drawer {
  display: none;
  border-top: 1px solid var(--line-dark);
  margin-top: .85rem;
  max-height: min(76svh, 640px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1.6rem 0 2.2rem;
}
.header.is-open {
  background: rgba(4,16,30,.985);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line-dark);
}
body.drawer-open { overflow: hidden; }
body.drawer-open::after {
  content: ""; position: fixed; inset: 0;
  background: rgba(4,16,30,.78);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  z-index: 90; pointer-events: none;
}
.header.is-open .drawer { display: block; }
.drawer__group + .drawer__group { margin-top: 1.9rem; }
.drawer__label {
  font-family: var(--f-util); font-size: .6rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--brass); margin: 0 0 .85rem;
}
.drawer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .1rem; }
.drawer__list a {
  display: block; padding: .55rem 0; text-decoration: none;
  font-family: var(--f-display); font-size: 1.28rem; letter-spacing: .06em;
  color: var(--on-dark); border-bottom: 1px solid rgba(199,154,81,.12);
}
.drawer__list a:hover, .drawer__list a[aria-current="page"] { color: var(--brass-lite); }

@media (max-width: 1080px) {
  .nav, .header__tel { display: none; }
  .burger { display: grid; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: clamp(520px, 82vh, 860px);
  display: grid; align-items: end;
  isolation: isolate;
  overflow: hidden;
}
.hero--compact { min-height: clamp(400px, 56vh, 560px); }

.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(4,16,30,.9) 0%, rgba(4,16,30,.55) 26%, rgba(4,16,30,.82) 62%, var(--abyss) 100%),
    linear-gradient(90deg, rgba(4,16,30,.78) 0%, rgba(4,16,30,.34) 52%, rgba(4,16,30,.12) 100%),
    radial-gradient(130% 80% at 50% 108%, rgba(7,23,42,.95) 0%, rgba(7,23,42,0) 68%);
}

.hero__inner { padding-block: clamp(4.5rem, 3rem + 8vw, 8rem) clamp(3rem, 2rem + 4vw, 5rem); }
.hero__title { margin-bottom: 1.4rem; max-width: 18ch; }
.hero__lede { max-width: 52ch; color: #cfdde8; }

.hero__meta {
  display: flex; flex-wrap: wrap; gap: 1.6rem 2.6rem;
  margin-top: 2.6rem; padding-top: 1.8rem;
  border-top: 1px solid var(--line-dark);
}
.hero__meta div { min-width: 0; }
.hero__meta dt {
  font-family: var(--f-util); font-size: .6rem; letter-spacing: .26em;
  text-transform: uppercase; color: var(--brass); margin-bottom: .4rem;
}
.hero__meta dd { margin: 0; font-size: .98rem; color: var(--on-dark-soft); }

/* breadcrumb */
.crumbs {
  font-family: var(--f-util); font-size: .66rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--on-dark-soft);
  margin-bottom: 1.5rem;
}
.crumbs a { color: var(--brass); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { opacity: .5; margin: 0 .5rem; }

/* ==========================================================================
   Split (image + text)
   ========================================================================== */

.split {
  display: grid; gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--flip .split__media { order: 2; }
  .split--wide-text { grid-template-columns: 5fr 6fr; }
}
.split__media { position: relative; margin: 0; }
.split__media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: 0 26px 60px rgba(0,0,0,.42);
}
.split__media--tall img { aspect-ratio: 3 / 4; }
.split__media figcaption {
  font-family: var(--f-util); font-size: .64rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--brass-dim); margin-top: .9rem;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.cards { display: grid; gap: clamp(1.25rem, .8rem + 1.6vw, 2rem); }
.cards--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.cards--3 { grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); }
.cards--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: rgba(255,255,255,.032);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  padding: clamp(1.4rem, 1rem + 1.2vw, 2.15rem);
  display: flex; flex-direction: column; gap: .85rem;
  transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.card:hover { border-color: rgba(199,154,81,.55); transform: translateY(-3px); background: rgba(255,255,255,.055); }
.card__num {
  font-family: var(--f-util); font-size: .62rem; letter-spacing: .26em;
  text-transform: uppercase; color: var(--brass);
}
.card__title { font-family: var(--f-display); font-size: 1.42rem; letter-spacing: .05em; }
.card__body { font-size: 1rem; color: var(--on-dark-soft); line-height: 1.62; }
.card__body p { margin-bottom: .8em; }
.card__link {
  margin-top: auto; padding-top: .5rem;
  font-family: var(--f-util); font-size: .68rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--brass-lite); text-decoration: none;
  display: inline-flex; align-items: center; gap: .5rem;
}
.card__link:hover { color: var(--brass); }
.card__link::after { content: "→"; transition: transform .25s var(--ease); }
.card__link:hover::after { transform: translateX(4px); }

.card--light { background: rgba(27,23,20,.035); border-color: var(--line-light); }
.card--light:hover { background: rgba(27,23,20,.06); border-color: rgba(27,23,20,.3); }
.card--light .card__body { color: var(--ink-soft); }
.card--light .card__num { color: var(--brass-dim); }
.card--light .card__link { color: #8f6a25; }

.card__media { margin: calc(-1 * clamp(1.4rem, 1rem + 1.2vw, 2.15rem)); margin-bottom: .35rem; }
.card__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--r-md) var(--r-md) 0 0; }

.card__port { width: 132px; height: 132px; }
.card__port img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; box-shadow: 0 0 0 1px rgba(199,154,81,.34), 0 12px 26px rgba(2,9,18,.45); }

/* ==========================================================================
   Facts / stat strip
   ========================================================================== */

.facts { display: grid; gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--r-md); overflow: hidden; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.fact { background: var(--abyss); padding: 1.7rem clamp(1.1rem, .8rem + .8vw, 1.8rem); }
.section--deep .fact { background: var(--deep); }
.section--tide .fact { background: var(--tide); }
.fact dt { font-family: var(--f-util); font-size: .6rem; letter-spacing: .26em; text-transform: uppercase; color: var(--brass); margin-bottom: .55rem; }
.fact dd { margin: 0; font-family: var(--f-display); font-size: 1.5rem; letter-spacing: .04em; line-height: 1.2; }
.fact dd small { display: block; font-family: var(--f-body); font-size: .92rem; letter-spacing: 0; color: var(--on-dark-soft); margin-top: .3rem; line-height: 1.5; }

/* ==========================================================================
   Menu blocks — printed card on the page
   ========================================================================== */

.menucard {
  background: var(--shell);
  color: var(--ink);
  border-radius: var(--r-md);
  padding: clamp(1.7rem, 1.1rem + 3vw, 4rem);
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
  border: 1px solid var(--shell-3);
}
.menucard + .menucard { margin-top: clamp(1.5rem, 1rem + 2vw, 2.75rem); }

.menucard__head { text-align: center; margin-bottom: 2.5rem; }
.menucard__head .eyebrow { color: var(--brass-dim); }
.menucard__head h2, .menucard__head h3 { font-family: var(--f-display); letter-spacing: .16em; text-transform: uppercase; }
.menucard__note { font-size: .98rem; color: var(--ink-soft); font-style: italic; margin-top: .8rem; }

.menugroup + .menugroup { margin-top: 2.75rem; padding-top: 2.25rem; border-top: 1px solid var(--line-light); }
.menugroup__title {
  font-family: var(--f-util); font-size: .68rem; font-weight: 500;
  letter-spacing: .38em; text-transform: uppercase; color: var(--brass-dim);
  text-align: center; margin: 0 0 1.9rem;
}
.menugroup__intro { text-align: center; font-size: 1rem; color: var(--ink-soft); margin: -1.2rem auto 2rem; max-width: 58ch; font-style: italic; }

.menulist { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.6rem; }
@media (min-width: 820px) { .menulist--2 { grid-template-columns: 1fr 1fr; gap: 1.7rem 3rem; } }

.menuitem__top { display: flex; align-items: baseline; gap: .7rem; min-width: 0; }
.menuitem__name {
  min-width: 0; overflow-wrap: anywhere;
  font-family: var(--f-util); font-size: .82rem; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase; color: var(--ink);
  flex: 0 1 auto; max-width: 100%;
}
.menuitem__dots { flex: 1 1 auto; border-bottom: 1px dotted rgba(27,23,20,.3); transform: translateY(-.25rem); min-width: 1.5rem; }
.menuitem__price { font-family: var(--f-util); font-size: .82rem; letter-spacing: .07em; color: var(--brass-dim); flex: none; white-space: nowrap; }
.menuitem__desc { font-size: 1.02rem; color: var(--ink-soft); line-height: 1.5; margin-top: .3rem; }

.oysterlist { display: flex; flex-wrap: wrap; gap: .5rem .9rem; justify-content: center; list-style: none; margin: 0 0 1.2rem; padding: 0; }
.oysterlist li { font-family: var(--f-body); font-size: 1.02rem; color: var(--ink-soft); }
.oysterlist li::after { content: "·"; margin-left: .9rem; color: var(--brass-dim); }
.oysterlist li:last-child::after { content: ""; }

.menucard__foot {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-light);
  text-align: center; font-family: var(--f-util); font-size: .68rem;
  letter-spacing: .13em; text-transform: uppercase; color: var(--ink-soft); line-height: 1.9;
}

/* ==========================================================================
   Quote
   ========================================================================== */

.quote { max-width: 46ch; margin-inline: auto; text-align: center; }
.quote blockquote {
  margin: 0; font-family: var(--f-display);
  font-size: clamp(1.35rem, 1.05rem + 1.15vw, 2.15rem);
  line-height: 1.32; letter-spacing: .03em;
}
.quote blockquote::before { content: "“"; font-family: var(--f-body); color: var(--brass); display: block; font-size: 2.4em; line-height: .48; margin-bottom: .1em; }
.quote cite {
  display: block; margin-top: 1.6rem; font-style: normal;
  font-family: var(--f-util); font-size: .68rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--brass);
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery { display: grid; gap: .7rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px)  { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1020px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery--wide { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--r-md); background: var(--deep); }
.gallery img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4;
  transition: transform .7s var(--ease), filter .7s var(--ease);
  filter: saturate(.94);
}
.gallery figure:hover img { transform: scale(1.045); filter: saturate(1.05); }
.gallery--wide img { aspect-ratio: 4 / 3; }
@media (min-width: 1020px) { .gallery--wide { grid-template-columns: repeat(3, 1fr); } }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq { display: grid; gap: 0; border-top: 1px solid var(--line-dark); }
.section--light .faq, .section--light-2 .faq { border-top-color: var(--line-light); }

.faq details { border-bottom: 1px solid var(--line-dark); }
.section--light .faq details, .section--light-2 .faq details { border-bottom-color: var(--line-light); }

.faq summary {
  list-style: none; cursor: pointer;
  padding: 1.5rem 3rem 1.5rem 0; position: relative;
  font-family: var(--f-display); font-size: clamp(1.12rem, 1rem + .45vw, 1.42rem);
  letter-spacing: .035em; line-height: 1.32;
  transition: color .25s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brass-lite); }
.section--light .faq summary:hover, .section--light-2 .faq summary:hover { color: #8f6a25; }

.faq summary::after {
  content: ""; position: absolute; right: .3rem; top: 50%; width: 15px; height: 15px;
  transform: translateY(-50%);
  background:
    linear-gradient(var(--brass), var(--brass)) center / 15px 1px no-repeat,
    linear-gradient(var(--brass), var(--brass)) center / 1px 15px no-repeat;
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details[open] summary { color: var(--brass-lite); }
.section--light .faq details[open] summary, .section--light-2 .faq details[open] summary { color: #8f6a25; }

.faq__body { padding: 0 3rem 1.75rem 0; max-width: 76ch; color: var(--on-dark-soft); font-size: 1.05rem; }
.section--light .faq__body, .section--light-2 .faq__body { color: var(--ink-soft); }
.faq__body p { margin-bottom: .85em; }
.faq__body a { color: var(--brass-lite); }
.section--light .faq__body a, .section--light-2 .faq__body a { color: #8f6a25; }

/* ==========================================================================
   Link list (press, downloads)
   ========================================================================== */

.linklist { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-dark); }
.section--light .linklist, .section--light-2 .linklist { border-top-color: var(--line-light); }
.linklist li { border-bottom: 1px solid var(--line-dark); }
.section--light .linklist li, .section--light-2 .linklist li { border-bottom-color: var(--line-light); }
.linklist a {
  display: grid; gap: .25rem .5rem; padding: 1.35rem 2.2rem 1.35rem 0;
  text-decoration: none; position: relative;
  transition: padding-left .3s var(--ease), color .25s var(--ease);
}
@media (min-width: 760px) {
  .linklist a { grid-template-columns: 1fr auto; align-items: baseline; }
}
.linklist a:hover { padding-left: .7rem; color: var(--brass-lite); }
.linklist a::after {
  content: "↗"; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%);
  color: var(--brass); font-size: .9rem; opacity: .55; transition: opacity .25s;
}
.linklist a:hover::after { opacity: 1; }
.linklist__title { font-family: var(--f-display); font-size: 1.22rem; letter-spacing: .035em; line-height: 1.35; }
.linklist__meta { font-family: var(--f-util); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--brass); }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta {
  background: linear-gradient(140deg, var(--tide) 0%, var(--deep) 55%, var(--abyss-deep) 100%);
  border-block: 1px solid var(--line-dark);
  text-align: center;
}
.cta .h2 { max-width: 20ch; margin-inline: auto; }
.cta .lede { margin-inline: auto; margin-top: 1.2rem; }
.cta .btn-row { justify-content: center; }

/* ==========================================================================
   Contact block
   ========================================================================== */

.contact { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.contact__item dt { font-family: var(--f-util); font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--brass); margin-bottom: .6rem; }
.contact__item dd { margin: 0; font-size: 1.02rem; line-height: 1.75; }
.contact__item a { color: inherit; text-decoration-color: rgba(199,154,81,.5); text-underline-offset: .2em; }
.contact__item a:hover { color: var(--brass-lite); }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer { background: var(--abyss-deep); border-top: 1px solid var(--line-dark); padding-block: clamp(3rem, 2rem + 3.5vw, 5rem) 2rem; }
.footer__grid { display: grid; gap: clamp(2rem, 1.2rem + 3vw, 3.5rem); grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.footer__brand { grid-column: 1 / -1; }
@media (min-width: 900px) { .footer__brand { grid-column: auto; } }
.footer__logo { max-width: 210px; margin-bottom: 1.2rem; }
.footer__blurb { font-size: .98rem; color: var(--on-dark-soft); max-width: 34ch; }
.footer__label { font-family: var(--f-util); font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--brass); margin: 0 0 1.1rem; }
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer__list a { font-size: .96rem; color: var(--on-dark-soft); text-decoration: none; transition: color .2s var(--ease); }
.footer__list a:hover { color: var(--brass-lite); }
.footer__hours { font-size: .95rem; color: var(--on-dark-soft); line-height: 1.55; }
.footer__hours dt { color: var(--on-dark); font-family: var(--f-util); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; margin-top: 1rem; }
.footer__hours dt:first-child { margin-top: 0; }
.footer__hours dd { margin: .3rem 0 0; }

.footer__social { display: flex; gap: .75rem; margin-top: 1.5rem; }
.footer__social a {
  width: 38px; height: 38px; border: 1px solid var(--line-dark); border-radius: 50%;
  display: grid; place-items: center; color: var(--on-dark-soft);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.footer__social a:hover { color: var(--brass-lite); border-color: var(--brass); }
.footer__social svg { width: 15px; height: 15px; fill: currentColor; }

.footer__bottom {
  margin-top: clamp(2.5rem, 1.6rem + 3vw, 4rem); padding-top: 1.6rem;
  border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; justify-content: space-between;
  font-family: var(--f-util); font-size: .66rem; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(163,184,200,.7);
}
.footer__bottom a { text-decoration: none; }
.footer__bottom a:hover { color: var(--brass-lite); }

/* newsletter */
.subscribe { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem; }
.subscribe input {
  flex: 1 1 165px; min-width: 0;
  background: rgba(255,255,255,.05); border: 1px solid var(--line-dark);
  color: var(--on-dark); padding: .8rem 1rem; border-radius: var(--r-sm);
  font-family: var(--f-util); font-size: .8rem; letter-spacing: .06em;
}
.subscribe input::placeholder { color: rgba(163,184,200,.6); }
.subscribe input:focus { outline: none; border-color: var(--brass); }

/* ==========================================================================
   Awards strip
   ========================================================================== */

.awards { display: flex; flex-wrap: wrap; gap: 1.4rem 2.6rem; align-items: center; justify-content: center; }
.award {
  font-family: var(--f-util); font-size: .66rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--on-dark-soft); text-align: center;
}
.award strong { display: block; font-family: var(--f-display); font-size: 1.5rem; letter-spacing: .06em; color: var(--brass-lite); font-weight: 400; margin-bottom: .3rem; text-transform: none; }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ==========================================================================
   Utilities
   ========================================================================== */

.center { text-align: center; }
.center .lede, .center .prose { margin-inline: auto; }
.center .rule { margin-inline: auto; }
.mt-lg { margin-top: clamp(2rem, 1.3rem + 2.4vw, 3.4rem); }
.mt-md { margin-top: clamp(1.4rem, 1rem + 1.4vw, 2.2rem); }
.stack > * + * { margin-top: 1.15rem; }


/* ==========================================================================
   Narrow-viewport hardening
   ========================================================================== */
html, body { overflow-x: hidden; }

@media (max-width: 560px) {
  .header__bar { gap: .6rem; }
  .brand__name { font-size: 1.18rem; letter-spacing: .22em; }
  .brand__sub  { font-size: .46rem; letter-spacing: .2em; }
  .header__cta { gap: .45rem; }
  .header__cta .btn {
    padding: .58rem .85rem;
    font-size: .62rem; letter-spacing: .13em;
  }
  .hero { min-height: 78svh; }
  .hero--compact { min-height: 58svh; }
  .hero__meta { gap: 1.1rem 1.6rem; }
  .menucard { padding: 1.6rem 1.15rem 1.9rem; }
  .menuitem__name { font-size: .74rem; letter-spacing: .07em; }
  .menuitem__price { font-size: .76rem; }
  .menuitem__desc { font-size: .95rem; }
  .menuitem__dots { min-width: .9rem; }
  .menuitem__top { flex-wrap: wrap; }
  .menuitem__price { margin-left: auto; }
}

@media (max-width: 400px) {
  .brand__sub { display: none; }
}
