/* ==========================================================================
   June BYOB — 2026 rebuild
   Palette drawn from the restaurant's own mark: script blue + sunflower gold,
   set on warm ivory paper with deep navy ink.
   ========================================================================== */

:root {
  --paper:      #fbf8f3;
  --paper-warm: #f4efe6;
  --white:      #ffffff;
  --ink:        #10202c;
  --ink-soft:   #4d5c68;
  --ink-mute:   #8b96a0;
  --blue:       #0173bb;
  --blue-deep:  #0a5687;
  --gold:       #c69a34;
  --gold-soft:  #e8d5a6;
  --night:      #0b1720;
  --night-2:    #132532;
  --rule:       rgba(16, 32, 44, 0.14);

  --display: "Cormorant Garamond", "Iowan Old Style", Garamond, "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --shell: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------- reset + base */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}

body.is-locked { overflow: hidden; }

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

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

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

::selection { background: var(--gold-soft); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* --------------------------------------------------------- shared bits */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.shell--narrow { max-width: 880px; }

section { position: relative; }

.band { padding-block: clamp(4.5rem, 10vw, 9rem); }
.band--tight { padding-block: clamp(3.5rem, 7vw, 6rem); }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.eyebrow::after {
  content: "";
  flex: 0 0 auto;
  width: clamp(1.75rem, 6vw, 3.5rem);
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before {
  content: "";
  width: clamp(1.75rem, 6vw, 3.5rem);
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.headline {
  font-size: clamp(2.35rem, 5.6vw, 4.15rem);
  margin-bottom: 1.5rem;
}
.headline em {
  font-style: italic;
  color: var(--blue-deep);
}

.lede {
  font-size: clamp(1.02rem, 1.45vw, 1.16rem);
  line-height: 1.85;
  color: var(--ink-soft);
  max-width: 62ch;
}

.rule-mark {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin: 2.25rem 0;
}
.rule-mark--center { margin-inline: auto; }

/* buttons */

.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  --btn-line: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.05rem 2.15rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-line);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-line: var(--rule);
}
.btn--light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  --btn-line: rgba(255, 255, 255, 0.45);
}
.btn--light:hover { background: #fff; color: var(--night); border-color: #fff; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.5rem;
}

.link-quiet {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--blue-deep);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--gold-soft);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.link-quiet:hover { color: var(--blue); border-color: var(--blue); }
.link-quiet .arrow { transition: transform 0.3s var(--ease); }
.link-quiet:hover .arrow { transform: translateX(4px); }

/* ------------------------------------------------------------ site head */

.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  padding-block: clamp(0.9rem, 2vw, 1.5rem);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease),
              box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-head__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { display: block; line-height: 0; }
.brand img {
  width: auto;
  height: clamp(38px, 5vw, 54px);
  transition: height 0.4s var(--ease), filter 0.4s var(--ease);
}
.site-head--onDark .brand img {
  filter: brightness(0) invert(1);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.3vw, 2.1rem);
}
.nav a {
  font-size: 0.72rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  padding-block: 0.35rem;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav a.is-active { color: var(--blue); }

.site-head--onDark .nav a { color: rgba(255, 255, 255, 0.88); }
.site-head--onDark .nav a.is-active { color: #fff; }

.nav__cta {
  padding: 0.8rem 1.5rem !important;
  border: 1px solid var(--rule);
  letter-spacing: 0.2em !important;
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--ink); color: var(--paper) !important; border-color: var(--ink); }
.site-head--onDark .nav__cta { border-color: rgba(255, 255, 255, 0.4); }
.site-head--onDark .nav__cta:hover { background: #fff; color: var(--night) !important; border-color: #fff; }

.site-head--pinned {
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--rule);
  padding-block: 0.7rem;
}
.site-head--pinned .brand img { height: clamp(34px, 4vw, 42px); }

/* mobile toggle + drawer */

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.site-head--onDark .nav-toggle { color: #fff; }
.nav-toggle[aria-expanded="true"] { color: var(--paper); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--night);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  padding: 6rem var(--gutter) 3rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1.5rem);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.drawer[hidden] { display: none; }
.drawer a {
  font-family: var(--display);
  font-size: clamp(1.9rem, 8vw, 2.6rem);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding-block: 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.drawer a:last-child { border-bottom: 0; }
.drawer a:hover { color: var(--gold-soft); }

/* ----------------------------------------------------------------- hero */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 55%;
  transform: scale(1.06);
  animation: heroDrift 22s var(--ease) forwards;
}
@keyframes heroDrift { to { transform: scale(1); } }

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(11, 23, 32, 0.80) 0%, rgba(11, 23, 32, 0.55) 32%, rgba(11, 23, 32, 0.12) 66%, rgba(11, 23, 32, 0.05) 100%),
    linear-gradient(180deg, rgba(11, 23, 32, 0.55) 0%, rgba(11, 23, 32, 0.10) 30%, rgba(11, 23, 32, 0.42) 66%, rgba(11, 23, 32, 0.85) 100%);
}

.hero__inner {
  width: 100%;
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
}

.hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 1.4rem;
}

.hero h1 {
  font-size: clamp(2.9rem, 8.2vw, 6.6rem);
  line-height: 0.98;
  margin: 0 0 1.5rem;
  max-width: 16ch;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; }

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 46ch;
  margin-bottom: 2.5rem;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.6rem;
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.hero__facts span { display: inline-flex; align-items: center; gap: 0.8rem; }
.hero__facts span:not(:last-child)::after {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.8;
}
.hero__facts a { text-decoration: none; }
.hero__facts a:hover { color: #fff; }

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(3.5rem, 9vw, 6.5rem);
  writing-mode: vertical-rl;
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 54px;
  background: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0));
}

/* ------------------------------------------------------------ accolades */

.accolades {
  background: var(--night);
  color: rgba(255, 255, 255, 0.86);
  padding-block: clamp(2.5rem, 5vw, 3.75rem);
}
.accolades__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.75rem, 4vw, 3.5rem);
  text-align: center;
}
.accolade__name {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-style: italic;
  color: #fff;
  margin-bottom: 0.5rem;
}
.accolade__years {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-soft);
  opacity: 0.85;
}

/* --------------------------------------------------------------- about */

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.about__figure { position: relative; }
.about__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 22%;
}
.about__figure figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(50%);
  background: var(--paper);
  padding: 1.1rem 1.6rem 1.1rem 0;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.about__figure figcaption strong {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.pull {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  margin: 2.25rem 0;
  padding-left: 1.6rem;
  border-left: 1px solid var(--gold);
}

/* ---------------------------------------------------------------- menu */

.menu { background: var(--paper-warm); }

.menu__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 3rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.menu__note {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--ink-mute);
  max-width: 34ch;
}

.menu__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

.course__title {
  font-family: var(--display);
  font-size: 1.65rem;
  font-style: italic;
  margin-bottom: 1.75rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.course__title span {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-style: normal;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.dish {
  display: block;
  padding-block: 1.15rem;
  border-bottom: 1px solid rgba(16, 32, 44, 0.07);
}
.dish:last-child { border-bottom: 0; }

.dish__line {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}
.dish__name {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  flex: 0 1 auto;
}
.dish__dots {
  flex: 1 1 auto;
  height: 1px;
  min-width: 1.5rem;
  background-image: radial-gradient(circle, var(--ink-mute) 1px, transparent 1px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  opacity: 0.55;
  transform: translateY(-3px);
}
.dish__price {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--blue-deep);
  flex: 0 0 auto;
}
.dish__desc {
  font-size: 0.925rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 52ch;
}
.tag {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  border-radius: 2px;
  padding: 0.1rem 0.4rem;
  vertical-align: 0.15em;
}

.menu__foot {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  font-size: 0.76rem;
  color: var(--ink-mute);
}

.tasting-card {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--white);
  border: 1px solid var(--rule);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
}
.tasting-card h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-style: italic;
  margin-bottom: 0.5rem;
}
.tasting-card p { color: var(--ink-soft); font-size: 0.95rem; max-width: 46ch; }
.tasting-card__price {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: var(--blue-deep);
  line-height: 1;
}

/* ------------------------------------------------------------- signature */

.signature {
  background: var(--night);
  color: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}
.signature__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.signature .eyebrow { color: var(--gold-soft); }
.signature h2 { color: #fff; }
.signature h2 em { color: var(--gold-soft); }
.signature .lede { color: rgba(255, 255, 255, 0.72); }
.signature .rule-mark { background: var(--gold); }

.courses {
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.35rem;
}
.courses li {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1.1rem;
  align-items: baseline;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.courses li:last-child { border-bottom: 0; padding-bottom: 0; }
.courses dt, .courses .c-label {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  white-space: nowrap;
}
.courses .c-body { font-size: 0.95rem; line-height: 1.7; }
.courses .c-body strong {
  display: block;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.15rem;
}

.signature__media { position: relative; }
.signature__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.signature__badge {
  position: absolute;
  top: clamp(1rem, 3vw, 1.75rem);
  right: clamp(1rem, 3vw, 1.75rem);
  background: rgba(11, 23, 32, 0.82);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(232, 213, 166, 0.35);
  padding: 0.9rem 1.25rem;
  text-align: center;
}
.signature__badge span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.signature__badge strong {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 400;
  color: #fff;
}

.reserve-note {
  margin-top: 2.25rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}
.reserve-note strong { color: var(--gold-soft); font-weight: 400; }
.reserve-note a { color: #fff; }

/* -------------------------------------------------------------- gallery */

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.6rem, 1.4vw, 1.1rem);
}
.gallery__grid figure { margin: 0; overflow: hidden; }
.gallery__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.gallery__grid figure:hover img { transform: scale(1.045); }

/* Row one is pinned to one shared height so the two unequal columns line up;
   row two is three equal squares, so aspect-ratio is enough there. */
.g-a, .g-b { height: clamp(320px, 38vw, 540px); }
.g-a { grid-column: span 5; }
.g-b { grid-column: span 7; }
.g-c { grid-column: span 4; aspect-ratio: 1 / 1; }
.g-d { grid-column: span 4; aspect-ratio: 1 / 1; }
.g-e { grid-column: span 4; aspect-ratio: 1 / 1; }

/* --------------------------------------------------------------- visit */

.visit { background: var(--paper-warm); }
.visit__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

.hours {
  display: grid;
  gap: 0;
}
.hours__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 1.5rem;
  align-items: baseline;
  padding-block: 1.35rem;
  border-bottom: 1px solid var(--rule);
}
.hours__row:first-child { padding-top: 0; }
.hours__day {
  font-family: var(--display);
  font-size: 1.3rem;
}
.hours__time {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-deep);
  white-space: nowrap;
}
.hours__detail {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 0.3rem;
}

.hours__row--feature {
  background: var(--white);
  border: 1px solid var(--gold-soft);
  border-bottom-color: var(--gold-soft);
  padding: 1.35rem 1.5rem;
  margin-top: 1.5rem;
}
.hours__row--feature .hours__day { font-style: italic; }

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.75rem;
}
.contact-list dt, .contact-list .k {
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.5rem;
}
.contact-list .v {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.4;
}
.contact-list .v a { text-decoration: none; border-bottom: 1px solid var(--gold-soft); }
.contact-list .v a:hover { color: var(--blue); border-color: var(--blue); }

/* -------------------------------------------------------------- closing */

.closing {
  background: var(--night);
  color: #fff;
  text-align: center;
}
.closing .lede { color: rgba(255, 255, 255, 0.72); margin-inline: auto; }
.closing h2 { color: #fff; }
.closing .btn-row { justify-content: center; }

/* --------------------------------------------------------------- footer */

.site-foot {
  background: var(--night-2);
  color: rgba(255, 255, 255, 0.62);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: 0.85rem;
}
.foot__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem 3rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.foot__brand img { height: 52px; width: auto; filter: brightness(0) invert(1); opacity: 0.92; }
.foot__brand p { margin-top: 1.25rem; max-width: 30ch; font-size: 0.85rem; }

.foot__title {
  font-size: 0.64rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.1rem;
}
.foot__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.foot__list a { text-decoration: none; transition: color 0.3s var(--ease); }
.foot__list a:hover { color: #fff; }

.foot__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-top: 1.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
}
.foot__social { display: flex; gap: 1.25rem; }
.foot__social a {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.foot__social a:hover { color: #fff; transform: translateY(-2px); }
.foot__social svg { width: 18px; height: 18px; fill: currentColor; }

/* ------------------------------------------------------- scroll reveal */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------------------------------------------------------- responsive */

@media (max-width: 960px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__figure { max-width: 460px; }
  .about__figure figcaption { position: static; transform: none; padding: 1.1rem 0 0; }
  .g-a, .g-b { grid-column: span 12; height: clamp(260px, 58vw, 430px); }
  .g-c, .g-d, .g-e { grid-column: span 4; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  .hero__scroll { display: none; }
}

@media (max-width: 620px) {
  .g-c, .g-d, .g-e { grid-column: span 12; aspect-ratio: 4 / 3; }
  .hero__facts { flex-direction: column; align-items: flex-start; gap: 0.55rem; }
  .hero__facts span:not(:last-child)::after { display: none; }
  .tasting-card { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
}

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

@media print {
  .site-head, .drawer, .hero__scroll, .btn-row, .closing { display: none !important; }
  body { background: #fff; }
  [data-reveal] { opacity: 1; transform: none; }
}
