/* ==========================================================================
   BROUGH BROTHERS — v7 "Gallery Minimal"
   Museum-catalog restraint. Vast white space, hairline rules,
   near-black type, one whisper of amber.
   ========================================================================== */

:root {
  --bg: #fcfcfa;
  --bg-soft: #f7f6f2;
  --ink: #171613;
  --ink-soft: #55524a;
  --mute: #97948b;
  --amber: #a8722e;
  --line: #e8e6df;
  --line-dark: #d9d6cd;
  --serif: 'Marcellus', 'Times New Roman', serif;
  --sans: 'Jost', 'Helvetica Neue', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.85;
  letter-spacing: 0.015em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--amber); color: var(--bg); }

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

/* ---------- Type ---------- */

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.6rem, 6.5vw, 5.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: 1.35rem; }

p { color: var(--ink-soft); max-width: 60ch; }

a { color: inherit; text-decoration: none; }

.label {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--amber);
}

.index-no {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--mute);
}

.lede {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.75;
  color: var(--ink-soft);
}

/* Underline-on-hover text link */
.tlink {
  display: inline-block;
  position: relative;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 0.45rem;
  transition: color 0.5s var(--ease);
}
.tlink::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--line-dark);
}
.tlink::before {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--amber);
  transition: width 0.7s var(--ease);
  z-index: 1;
}
.tlink:hover { color: var(--amber); }
.tlink:hover::before { width: 100%; }

/* Bordered button — used sparingly */
.btn {
  display: inline-block;
  border: 1px solid var(--ink);
  padding: 1rem 3rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background 0.6s var(--ease), color 0.6s var(--ease), border-color 0.6s var(--ease);
}
.btn:hover { background: var(--ink); color: var(--bg); }

/* ---------- Layout ---------- */

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1.4rem, 5vw, 4rem);
}
.narrow { max-width: 760px; }

section { padding: clamp(5rem, 11vw, 9.5rem) 0; }

.rule {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}
.rule-center {
  width: 56px;
  border: none;
  border-top: 1px solid var(--amber);
  margin: 2.2rem auto;
}

.section-head { margin-bottom: clamp(3rem, 7vw, 5.5rem); }
.section-head.center { text-align: center; }
.section-head h2 { margin-top: 1.4rem; }
.section-head .index-no { margin-bottom: 0.6rem; }

/* ---------- Navigation ---------- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 252, 250, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.6s var(--ease);
}
.site-nav.scrolled { border-bottom-color: var(--line); }

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.5rem clamp(1.4rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.02rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.wordmark small {
  display: block;
  font-family: var(--sans);
  font-size: 0.56rem;
  font-weight: 300;
  letter-spacing: 0.38em;
  color: var(--mute);
  margin-top: 0.35rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.6vw, 2.4rem);
  list-style: none;
}
.nav-links a {
  position: relative;
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-bottom: 0.35rem;
  transition: color 0.45s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--amber);
  transition: width 0.6s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Hamburger */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 34px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 210;
}
.menu-btn span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transition: transform 0.55s var(--ease), opacity 0.4s;
}
.menu-btn.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), color 0.4s;
}
.mobile-menu.open a { opacity: 1; transform: none; }
.mobile-menu a:hover { color: var(--amber); }
.mobile-menu .mm-est {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 1.5rem;
}

/* ---------- Hero (home) ---------- */

.hero {
  padding: clamp(6rem, 13vw, 11rem) 0 clamp(4rem, 9vw, 7rem);
  text-align: center;
}
.hero h1 {
  text-transform: uppercase;
  letter-spacing: clamp(0.1em, 2vw, 0.22em);
  margin: 2rem 0 0;
}
.hero .lede {
  max-width: 46ch;
  margin: 2.4rem auto 0;
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3.2rem;
  flex-wrap: wrap;
}

/* Object on a plinth */
.plinth {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2.4rem;
}
.plinth svg { color: var(--ink); }
.plinth::after {
  content: "";
  display: block;
  width: 170px;
  height: 1px;
  background: var(--line-dark);
  margin-top: 2.2rem;
}
.plinth .plinth-caption {
  margin-top: 1.4rem;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mute);
}
.hero .plinth { margin-top: clamp(3rem, 7vw, 5rem); }

/* ---------- Page header (interior pages) ---------- */

.page-head {
  padding: clamp(5rem, 11vw, 8.5rem) 0 clamp(3.5rem, 7vw, 6rem);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-head h1 { margin-top: 1.6rem; letter-spacing: 0.08em; }
.page-head .lede { max-width: 52ch; margin: 2rem auto 0; }

/* ---------- Editorial two-column ---------- */

.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}
.editorial .ed-text h2 { margin: 1.4rem 0 1.8rem; }
.editorial .ed-text p + p { margin-top: 1.4rem; }
.editorial .ed-text .tlink { margin-top: 2.4rem; }

/* ---------- Collection / products ---------- */

.collection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.product {
  padding: clamp(3rem, 5vw, 4.5rem) clamp(1.5rem, 3vw, 3rem);
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background 0.7s var(--ease);
}
.product:last-child { border-right: none; }
.product:hover { background: var(--bg-soft); }
.product .index-no { margin-bottom: 2.6rem; }
.product .plinth { margin: 0 auto; }
.product .plinth svg {
  transition: transform 0.9s var(--ease);
}
.product:hover .plinth svg { transform: translateY(-6px); }
.product h3 { margin-top: 2.2rem; letter-spacing: 0.14em; text-transform: uppercase; font-size: 1.05rem; }
.product .proof {
  margin-top: 0.7rem;
  font-size: 0.62rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--mute);
}
.product p.desc {
  font-size: 0.9rem;
  margin: 1.4rem auto 0;
  max-width: 26ch;
}
.product .price {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
  margin: 1.8rem 0 1.6rem;
}
.product .price::before {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background: var(--amber);
  margin: 0 auto 1.6rem;
}

/* ---------- Awards index (hairline table) ---------- */

.award-list { border-top: 1px solid var(--line); }
.award-row {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  align-items: baseline;
  gap: 2rem;
  padding: 1.9rem 0.4rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.6s var(--ease), padding-left 0.6s var(--ease);
}
.award-row:hover { background: var(--bg-soft); padding-left: 1.2rem; }
.award-row .index-no { font-size: 0.62rem; }
.award-row .a-name {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  letter-spacing: 0.05em;
}
.award-row .a-org {
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute);
  text-align: right;
}

/* ---------- Quote ---------- */

.quote {
  text-align: center;
  padding: clamp(5rem, 11vw, 9rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  line-height: 1.5;
  color: var(--ink);
  max-width: 24ch;
  margin: 0 auto;
}
.quote blockquote em { font-style: normal; color: var(--amber); }
.quote cite {
  display: block;
  margin-top: 2.4rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.64rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ---------- Spec grid (mash bill) ---------- */

.specs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.spec {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.6rem 1rem;
  text-align: center;
  transition: background 0.6s var(--ease);
}
.spec:hover { background: var(--bg-soft); }
.spec .num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  color: var(--ink);
  line-height: 1;
}
.spec .lbl {
  display: block;
  margin-top: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ---------- Tasting notes index ---------- */

.tasting {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}
.note-list { border-top: 1px solid var(--line); }
.note-item {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  align-items: baseline;
  gap: 1.4rem;
  padding: 1.15rem 0.4rem;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.5s var(--ease), padding-left 0.5s var(--ease);
}
.note-item .index-no { font-size: 0.6rem; }
.note-item .n-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  transition: color 0.4s;
}
.note-item:hover, .note-item.active { background: var(--bg-soft); padding-left: 1rem; }
.note-item.active .n-name { color: var(--amber); }
.tasting-detail { position: sticky; top: 7.5rem; }
.tasting-detail h2 { margin: 1.4rem 0 2.6rem; }
.tasting-detail .note-name {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--amber);
}
.tasting-detail .note-desc { margin-top: 1.2rem; max-width: 44ch; }

/* ---------- Numbered steps / timeline ---------- */

.steps { border-top: 1px solid var(--line); }
.step {
  display: grid;
  grid-template-columns: 7rem 16rem 1fr;
  gap: 2rem;
  padding: 2.6rem 0.4rem;
  border-bottom: 1px solid var(--line);
}
.step .index-no { padding-top: 0.5rem; }
.step h3 { letter-spacing: 0.05em; }
.step p { font-size: 0.94rem; }

/* ---------- Portraits ---------- */

.portraits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
}
.portrait { text-align: center; }
.portrait .monogram {
  width: 132px;
  height: 132px;
  margin: 0 auto;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--ink);
  transition: border-color 0.6s var(--ease), color 0.6s var(--ease);
}
.portrait:hover .monogram { border-color: var(--amber); color: var(--amber); }
.portrait .role {
  margin-top: 2rem;
  font-size: 0.6rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--amber);
}
.portrait h3 {
  margin-top: 0.9rem;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}
.portrait .surname {
  font-size: 0.66rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 0.4rem;
}
.portrait p { font-size: 0.92rem; margin: 1.4rem auto 0; max-width: 30ch; }

/* ---------- Cocktails ---------- */

.cocktails {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.cocktail {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(2.6rem, 4.5vw, 4.2rem);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(1.8rem, 3.5vw, 3rem);
  align-items: start;
  transition: background 0.7s var(--ease);
}
.cocktail:hover { background: var(--bg-soft); }
.cocktail .glass { color: var(--ink); }
.cocktail .index-no { margin-bottom: 1rem; }
.cocktail h3 { letter-spacing: 0.1em; text-transform: uppercase; font-size: 1.05rem; }
.cocktail h4 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 1.6rem 0 0.7rem;
}
.cocktail ul { list-style: none; }
.cocktail ul li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
}
.cocktail ul li:last-child { border-bottom: none; }
.cocktail .method { font-size: 0.92rem; }

/* ---------- Tours ---------- */

.tours {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tour {
  padding: clamp(2.8rem, 4.5vw, 4.2rem) clamp(1.6rem, 3vw, 3rem);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: background 0.7s var(--ease);
}
.tour:last-child { border-right: none; }
.tour:hover { background: var(--bg-soft); }
.tour .index-no { margin-bottom: 1.6rem; }
.tour h3 { letter-spacing: 0.08em; }
.tour .duration {
  margin-top: 0.8rem;
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--amber);
}
.tour p { font-size: 0.93rem; margin-top: 1.6rem; }
.tour .price {
  font-family: var(--serif);
  font-size: 1.9rem;
  margin: 2.2rem 0 0.3rem;
}
.tour .price small {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 0.6rem;
}
.tour .tlink { margin-top: auto; padding-top: 2.2rem; align-self: flex-start; }

/* ---------- Info rows (contact / hours) ---------- */

.info-rows { border-top: 1px solid var(--line); }
.info-row {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 2rem;
  padding: 1.7rem 0.4rem;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.info-row .lbl {
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--mute);
}
.info-row .val {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
}
.info-row .val small {
  display: block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ink-soft);
  margin-top: 0.35rem;
}

/* ---------- Split (info + form) ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}
.split h2 { margin: 1.4rem 0 2.6rem; }

/* ---------- Forms ---------- */

.form { display: grid; gap: 2rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.fld { display: grid; gap: 0.55rem; }
.fld label {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--mute);
}
.fld input,
.fld select,
.fld textarea {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.98rem;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-dark);
  padding: 0.65rem 0;
  border-radius: 0;
  outline: none;
  transition: border-color 0.5s var(--ease);
}
.fld input:focus,
.fld select:focus,
.fld textarea:focus { border-bottom-color: var(--amber); }
.fld textarea { min-height: 110px; resize: vertical; }
.fld select { appearance: none; cursor: pointer; }
.form .btn { justify-self: start; margin-top: 0.6rem; }

/* ---------- CTA band ---------- */

.cta {
  text-align: center;
  border-top: 1px solid var(--line);
}
.cta h2 { margin-top: 1.4rem; }
.cta p { margin: 1.8rem auto 0; max-width: 46ch; }
.cta .btn, .cta .tlink { margin-top: 2.8rem; }

/* ---------- Map ---------- */

.map-frame {
  border: 1px solid var(--line);
  background: var(--bg);
}
.map-frame svg { width: 100%; height: auto; color: var(--ink); }

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--line);
  padding: clamp(4rem, 8vw, 6.5rem) 0 0;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1.4rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}
.f-word {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.f-word small {
  display: block;
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.38em;
  color: var(--mute);
  margin-top: 0.5rem;
}
.f-brand p {
  font-size: 0.88rem;
  margin-top: 1.6rem;
  max-width: 34ch;
}
.f-col h4 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.4rem;
}
.f-col a, .f-col span {
  display: block;
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 0.32rem 0;
  transition: color 0.4s;
}
.f-col a:hover { color: var(--amber); }
.footer-base {
  margin-top: clamp(3.5rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
}
.footer-base .fb-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.6rem clamp(1.4rem, 5vw, 4rem);
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.d3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .collection, .tours { grid-template-columns: 1fr; }
  .product, .tour { border-right: none; border-bottom: 1px solid var(--line); }
  .product:last-child, .tour:last-child { border-bottom: none; }
  .specs { grid-template-columns: repeat(3, 1fr); }
  .editorial, .tasting, .split { grid-template-columns: 1fr; }
  .tasting-detail { position: static; }
  .cocktails { grid-template-columns: 1fr; }
  .portraits { grid-template-columns: 1fr; gap: 4rem; }
  .step { grid-template-columns: 5rem 1fr; }
  .step p { grid-column: 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .specs { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .award-row { grid-template-columns: 3rem 1fr; }
  .award-row .a-org { grid-column: 2; text-align: left; }
  .info-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .cocktail { grid-template-columns: 1fr; }
  .cocktail .glass { margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-ctas { gap: 1.8rem; flex-direction: column; align-items: center; }
}

/* Nav booking CTA */
.nav-links .nav-cta {
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 0.55rem 1.1rem;
  transition: background 0.45s var(--ease), color 0.45s var(--ease);
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--ink); color: var(--bg); }
