/* ============================================
   Bubbles Distillery & Brewery — style.css
   Static site theme. Plain CSS, no dependencies.
   ============================================ */

:root {
  /* === BRAND === */
  --color-primary: #0D4A35;       /* green */
  --color-secondary: #082E22;     /* green-deep */
  --color-accent: #B5793C;        /* copper */
  --color-bg: #F7F2E6;            /* parchment */
  --color-bg-alt: #F2E8C9;        /* cream-soft */
  --color-text: #16231C;          /* ink */
  --color-text-muted: #4C5A50;    /* ink-soft */
  --color-border: rgba(13, 74, 53, 0.12);

  --font-heading: 'Instrument Serif', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --max-width: 1180px;
  --section-padding: 140px 32px;
  --border-radius: 3px;

  /* === Bubbles-specific extras === */
  --green: #0D4A35;
  --green-deep: #082E22;
  --cream: #E8D49E;
  --cream-soft: #F2E8C9;
  --parchment: #F7F2E6;
  --copper: #B5793C;
  --copper-deep: #8C5A28;
  --copper-glow: rgba(181, 121, 60, 0.18);
  --ink: #16231C;
  --ink-soft: #4C5A50;
  --line: rgba(232, 212, 158, 0.18);
  --line-dark: rgba(13, 74, 53, 0.12);
  --serif: var(--font-heading);
  --sans: var(--font-body);

  /* === ANIMATION TOKENS === */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease: var(--ease-out);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.6s;
  --stagger-delay: 0.08s;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  scrollbar-width: thin; scrollbar-color: var(--copper) var(--green-deep);
}
html::-webkit-scrollbar { width: 5px; }
html::-webkit-scrollbar-track { background: var(--green-deep); }
html::-webkit-scrollbar-thumb { background: var(--copper); border-radius: 10px; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* === GRAIN OVERLAY === */
body::after {
  content: '';
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none; z-index: 999; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* === SCROLL PROGRESS BAR === */
#scrollBar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--copper), var(--cream));
  transition: width .08s linear;
  pointer-events: none;
}

/* === TYPOGRAPHY === */
.eyebrow {
  font-family: var(--font-body); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
}
h1, h2, h3 { font-family: var(--font-heading); font-weight: 400; letter-spacing: -0.01em; }
h1 { font-size: clamp(36px, 5.5vw, 72px); line-height: 1.08; }
h2 { font-size: clamp(30px, 4vw, 46px); line-height: 1.14; }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); line-height: 1.3; }
p  { font-size: clamp(0.9375rem, 1.5vw, 1.0625rem); max-width: 65ch; }

/* === LAYOUT UTILITIES === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
.section { padding: var(--section-padding); }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 13.5px;
  letter-spacing: 0.02em; border-radius: 2px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .3s var(--ease-out), background .25s ease, color .25s ease,
             border-color .25s ease, box-shadow .3s ease;
  position: relative; overflow: hidden; padding: 13px 26px;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255, 255, 255, 0.07);
  opacity: 0; transition: opacity .25s ease;
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--cream); color: var(--green-deep); box-shadow: 0 2px 16px rgba(232, 212, 158, 0.15); }
.btn-primary:hover { background: #fff; box-shadow: 0 6px 24px rgba(232, 212, 158, 0.28); }
.btn-outline { border-color: rgba(232, 212, 158, 0.45); color: var(--cream); }
.btn-outline:hover { border-color: var(--cream); background: rgba(232, 212, 158, 0.08); }
.btn-dark { border-color: var(--green); color: var(--green); }
.btn-dark:hover { background: var(--green); color: var(--cream-soft); }
.btn:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; }

/* === REVEAL ANIMATION === */
.reveal { transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.pre { opacity: 0; transform: translateY(24px); }
.reveal-left.pre { opacity: 0; transform: translateX(-24px); }
.reveal-right.pre { opacity: 0; transform: translateX(24px); }
.reveal-stagger > .reveal:nth-child(1) { transition-delay: calc(var(--stagger-delay) * 1); }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: calc(var(--stagger-delay) * 2); }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: calc(var(--stagger-delay) * 3); }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: calc(var(--stagger-delay) * 4); }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: calc(var(--stagger-delay) * 5); }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: calc(var(--stagger-delay) * 6); }

/* === REDUCED MOTION (non-negotiable) === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal.pre, .reveal-left.pre, .reveal-right.pre { opacity: 1 !important; transform: none !important; }
}

/* === LOADER === */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  transition: opacity var(--duration-slow) var(--ease-out),
              visibility 0s linear var(--duration-slow);
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader img { opacity: 0.9; }

/* === HEADER === */
header#siteHeader {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 22px 0;
  transition: background .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
header#siteHeader.scrolled {
  background: rgba(8, 46, 34, 0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.2);
  padding: 14px 0;
}
.header-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; transition: opacity .2s ease; }
.logo:hover { opacity: 0.85; }
.logo-mark { flex-shrink: 0; }
.logo span { font-family: var(--font-heading); font-size: 21px; color: var(--cream); letter-spacing: 0.03em; }

nav[aria-label="Main navigation"] { display: contents; }
.nav-links { display: flex; gap: 36px; align-items: center; }
ul.nav-links a {
  position: relative; padding-bottom: 2px;
  font-size: 13px; font-weight: 500; color: var(--cream-soft); opacity: 0.8;
  letter-spacing: 0.03em; transition: opacity .2s ease;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 100%;
  height: 1px; background: var(--copper);
  transition: right .3s var(--ease-out);
}
ul.nav-links a:hover { opacity: 1; }
ul.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
ul.nav-links a.active { opacity: 1; }
.nav-links-cta { margin-top: 8px; padding: 14px 32px; border-radius: 2px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5.5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 51;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .2s ease, width .3s ease; transform-origin: center; }
.nav-toggle span:nth-child(3) { width: 66%; }
header#siteHeader.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
header#siteHeader.nav-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
header#siteHeader.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); width: 100%; }
.nav-cta { display: flex; align-items: center; }

/* === HERO === */
.hero { position: relative; min-height: 100vh; overflow: hidden; display: flex; align-items: center; background: #061e15; }
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.pexels.com/photos/1579739/pexels-photo-1579739.jpeg?auto=compress&cs=tinysrgb&w=1800') center 40%/cover no-repeat;
  will-change: transform; transform: scale(1.06);
}
.hero-wash {
  position: absolute; inset: 0;
  background: linear-gradient(165deg, rgba(6, 30, 21, 0.88) 0%, rgba(8, 46, 34, 0.70) 40%, rgba(6, 24, 16, 0.90) 100%);
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, transparent 30%, rgba(0, 0, 0, 0.45) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 160px 32px 110px; width: 100%; max-width: var(--max-width); margin: 0 auto; text-align: center; }
.hero-eyebrow { color: var(--copper); margin-bottom: 24px; display: block; }
.hero-eyebrow-line { display: inline-block; width: 26px; height: 1px; }
.hero h1 { color: var(--cream-soft); text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3); max-width: 720px; margin: 0 auto 28px; word-break: break-word; overflow-wrap: break-word; }
.hero h1 em { font-style: italic; color: var(--cream); }
.hero .lede { color: rgba(242, 232, 201, 0.80); font-size: 18px; line-height: 1.7; max-width: 500px; margin: 0 auto 44px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(232, 212, 158, 0.5); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  animation: bobScroll 2.4s ease-in-out infinite;
  background: none; border: none; transition: color .2s ease; cursor: pointer;
}
.hero-scroll:hover { color: rgba(232, 212, 158, 0.9); }
.hero-scroll svg { stroke: currentColor; fill: none; stroke-width: 1.5; width: 16px; height: 16px; }
@keyframes bobScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* === ABOUT === */
.about { background: var(--parchment); padding: 140px 0; }
.about-grid { display: grid; grid-template-columns: 0.88fr 1fr; gap: 72px; align-items: center; }
.about-img { position: relative; margin: 0; }
.about-img-frame { position: absolute; top: 20px; left: -20px; right: 20px; bottom: -20px; z-index: -1; border: 1px solid var(--copper); border-radius: 3px; transition: transform .4s var(--ease-out); }
.about-img:hover .about-img-frame { transform: translate(-4px, 4px); }
.about-img img { border-radius: 3px; box-shadow: 0 20px 60px rgba(13, 74, 53, 0.12); }
.about-eyebrow { color: var(--copper-deep); margin-bottom: 20px; }
.about h2 { color: var(--green-deep); margin-bottom: 26px; }
.about p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.72; max-width: 480px; margin-bottom: 20px; }
.value-list { display: flex; gap: 30px; margin-top: 38px; flex-wrap: wrap; }
.value-item .v-mark { width: 8px; height: 8px; margin-bottom: 10px; border-radius: 50%; background: var(--copper); }
.value-item p { margin: 0; max-width: none; }

/* === LAB === */
.lab { background: var(--green-deep); color: var(--cream-soft); padding: 140px 0; position: relative; overflow: hidden; }
.lab-glow { position: absolute; top: -120px; left: -80px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(181, 121, 60, 0.09), transparent 70%); pointer-events: none; z-index: -1; }
.lab-head { max-width: 680px; margin-bottom: 70px; }
.lab-eyebrow { color: var(--copper); margin-bottom: 20px; }
.lab h2 { font-size: clamp(30px, 4vw, 50px); color: var(--cream-soft); line-height: 1.12; margin-bottom: 22px; }
.lab-head p { color: rgba(242, 232, 201, 0.75); font-size: 17px; line-height: 1.7; max-width: 540px; }
.lab-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 68px; align-items: flex-start; margin-bottom: 72px; }
.lab-img-stack { position: relative; margin: 0; }
.lab-img-stack img.primary { width: 100%; border-radius: 3px; box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4); transition: transform .5s var(--ease-out); }
.lab-img-stack:hover img.primary { transform: scale(1.015); }
.lab-img-stack img.secondary {
  position: absolute; width: 46%; bottom: -42px; right: -32px;
  border: 5px solid var(--green-deep); border-radius: 3px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  transition: transform .5s var(--ease-out);
}
.lab-img-stack:hover img.secondary { transform: translate(4px, 4px); }
.lab-steps { padding: 0; }
.lab-step { display: flex; gap: 20px; padding: 24px 0; cursor: default; border-top: 1px solid var(--line); }
.lab-step:hover .lab-step-num { color: var(--cream); }
.lab-step-num { width: 36px; flex-shrink: 0; font-family: var(--font-heading); font-style: italic; font-size: 23px; color: var(--copper); transition: color .2s ease; }
.lab-step h3 { margin-bottom: 6px; font-size: 17px; color: var(--cream-soft); font-weight: 400; }
.lab-step p { max-width: 380px; font-size: 14.5px; color: rgba(242, 232, 201, 0.68); line-height: 1.6; }
.lab-info-card {
  padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  background: rgba(232, 212, 158, 0.05);
  border: 1px solid var(--line); border-radius: 4px;
  backdrop-filter: blur(8px);
}
.lic-label { margin-bottom: 8px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--copper); }
.lic-value { font-family: var(--font-heading); font-size: 22px; color: var(--cream-soft); }
.lic-foot { margin-top: 6px; font-size: 13px; color: rgba(242, 232, 201, 0.55); }
.lic-foot-row { grid-column: 1/-1; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; padding-top: 8px; border-top: 1px solid var(--line); }
.lic-foot-text { max-width: 420px; color: rgba(242, 232, 201, 0.75); font-size: 14.5px; line-height: 1.6; }

/* === MENU === */
.menu { background: var(--parchment); padding: 140px 0; }
.menu-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 60px; flex-wrap: wrap; }
.menu-eyebrow { color: var(--copper-deep); margin-bottom: 20px; }
.menu-head-row h2 { max-width: 560px; color: var(--green-deep); }
.menu-head { max-width: 340px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; }
.dish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.dish-card { overflow: hidden; background: #fff; border: 1px solid var(--line-dark); border-radius: 4px; transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out); }
.dish-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(13, 74, 53, 0.12); }
.dish-img { aspect-ratio: 4/3; overflow: hidden; position: relative; margin: 0; }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.dish-card:hover .dish-img img { transform: scale(1.06); }
.dish-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(8, 46, 34, 0.35) 100%); opacity: 0; transition: opacity .4s ease; }
.dish-card:hover .dish-img-overlay { opacity: 1; }
.dish-tag {
  position: absolute; top: 14px; left: 14px; padding: 5px 10px;
  background: var(--green-deep); color: var(--cream);
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 2px; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.dish-body { padding: 24px 24px 28px; }
.dish-body h3 { margin-bottom: 8px; font-size: 19px; color: var(--green-deep); font-weight: 400; }
.dish-body p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }
.menu-foot-row { display: flex; align-items: center; justify-content: space-between; margin-top: 52px; flex-wrap: wrap; gap: 20px; }
.menu-foot-row p { color: var(--ink-soft); font-size: 14px; }

/* === BREWERY === */
.brewery { background: var(--cream-soft); padding: 140px 0; }
.brewery-grid { display: grid; grid-template-columns: 1fr 0.88fr; gap: 72px; align-items: center; }
.brewery-eyebrow { color: var(--copper-deep); margin-bottom: 20px; }
.brewery h2 { color: var(--green-deep); margin-bottom: 24px; }
.brewery .lede { color: var(--ink-soft); font-size: 16.5px; line-height: 1.72; max-width: 460px; margin-bottom: 36px; }
.bw-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.bw-col { padding-top: 18px; border-top: 2px solid var(--copper); transition: padding .2s ease, border-top-width .2s ease; }
.bw-col:hover { border-top-width: 6px; }
.bw-col h3 { margin-bottom: 8px; font-family: var(--font-heading); font-size: 18px; color: var(--green-deep); font-weight: 400; }
.bw-col p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }
.brewery-img { position: relative; margin: 0; }
.brewery-img img { border-radius: 3px; box-shadow: 0 20px 60px rgba(13, 74, 53, 0.1); transition: transform .5s var(--ease-out); }
.brewery-img:hover img { transform: scale(1.01); }

/* === FOOTER === */
footer { background: var(--green-deep); color: var(--cream-soft); padding: 120px 0 44px; }
.footer-main { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 80px; }
.visit-eyebrow { color: var(--copper); margin-bottom: 20px; }
footer h2 { font-size: clamp(32px, 5vw, 54px); color: var(--cream-soft); line-height: 1.08; max-width: 560px; margin-bottom: 32px; }
.footer-visit-details { display: flex; gap: 56px; flex-wrap: wrap; }
.vd-block .lic-label { color: var(--copper); margin-bottom: 8px; }
.vd-block p { font-size: 15px; color: rgba(242, 232, 201, 0.82); line-height: 1.6; }
.vd-block a p { transition: color .2s ease; }
.footer-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; justify-content: flex-end; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 50%; color: var(--cream);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.footer-social a:hover { background: rgba(232, 212, 158, 0.12); border-color: rgba(232, 212, 158, 0.6); transform: translateY(-2px); }
.footer-social a svg { fill: currentColor; width: 16px; height: 16px; }
.foot-bottom { padding-top: 28px; display: flex; align-items: center; flex-wrap: wrap; gap: 24px; justify-content: space-between; border-top: 1px solid var(--line); }
.foot-logo { display: flex; align-items: center; gap: 9px; }
.foot-logo span { font-family: var(--font-heading); font-size: 15px; color: var(--cream); }
.foot-legal { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-left: auto; }
.foot-legal p { font-size: 12px; color: rgba(242, 232, 201, 0.45); }
.foot-legal span { color: rgba(242, 232, 201, 0.25); font-size: 11px; }
.foot-link { font-size: 12px; color: rgba(242, 232, 201, 0.45); transition: color .2s ease; }
.foot-link:hover { color: var(--cream); }

/* === COOKIE CONSENT BANNER === */
#cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: rgba(8, 46, 34, 0.97);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 18px 24px;
}
.cookie-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cookie-inner p { font-size: 13px; color: rgba(242, 232, 201, 0.85); max-width: 560px; }
.cookie-inner a { color: var(--cream); text-decoration: underline; text-underline-offset: 2px; }
.btn-sm { padding: 10px 22px; font-size: 12.5px; }

/* === SIMPLE PAGE (privacy policy) === */
.simple-page-hero {
  background: var(--green-deep); color: var(--cream-soft);
  padding: 200px 32px 90px; position: relative; overflow: hidden;
}
.simple-page-hero .eyebrow { color: var(--copper); margin-bottom: 20px; }
.simple-page-hero h1 { font-size: clamp(34px, 5vw, 56px); color: var(--cream-soft); max-width: 700px; }
.legal-content { background: var(--parchment); padding: 90px 0 140px; }
.legal-content .container { max-width: 760px; }
.legal-content h2 { color: var(--green-deep); font-size: clamp(22px, 2.6vw, 28px); margin-top: 52px; margin-bottom: 16px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { color: var(--ink-soft); font-size: 16px; line-height: 1.75; max-width: none; margin-bottom: 16px; }
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal-content ul li { color: var(--ink-soft); font-size: 16px; line-height: 1.75; margin-bottom: 8px; }
.legal-content a { color: var(--copper-deep); text-decoration: underline; text-underline-offset: 2px; transition: color .2s ease; }
.legal-content a:hover { color: var(--green-deep); }
.legal-meta { color: var(--ink-soft); opacity: 0.7; font-size: 14px; margin-bottom: 48px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 36px; font-size: 13px; font-weight: 600; letter-spacing: 0.03em; color: var(--copper-deep); }
.back-link:hover { color: var(--green-deep); }

/* === RESPONSIVE === */
@media (max-width: 860px) {
  .nav-toggle, .nav-links { display: none; }
  .header-inner { justify-content: space-between; }
  .nav-cta .btn { padding: 8px 16px; font-size: 12px; }
  .lab-img-stack img.secondary { display: none; }

  .about-grid, .brewery-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .about-img { order: 2; }
  .lab-grid { grid-template-columns: 1fr !important; }
  .lab-info-card { grid-template-columns: 1fr !important; }
  .brewery-grid { grid-template-columns: 1fr !important; }

  .about, .lab, .menu, .brewery { padding: 100px 0 !important; }
  footer { padding: 100px 0 36px !important; }

  .dish-grid { grid-template-columns: 1fr !important; gap: 24px !important; }

  .hero-inner { padding-top: 136px !important; padding-bottom: 80px !important; }
  .simple-page-hero { padding: 160px 32px 70px !important; }

  .footer-main { flex-direction: column; align-items: center; text-align: center; gap: 40px !important; margin-bottom: 60px !important; }
  .footer-visit-details { flex-direction: column; gap: 28px !important; align-items: center; }
  .footer-actions {
    flex-direction: column !important;
    align-items: center !important;
  }
  .footer-visit-details .vd-block:first-child,
  .footer-visit-details .vd-block:last-child {
    display: none;
  }
  .foot-bottom { justify-content: center; }
  .foot-legal { margin-left: 0; }
}
@media (max-width: 480px) {
  .hero-inner { padding-top: 118px !important; padding-bottom: 64px !important; }
  .hero-eyebrow { font-size: 11px !important; }
  .hero-actions { flex-direction: column !important; align-items: stretch !important; }
  .hero-actions .btn { justify-content: center; }
  .about, .menu, .brewery, .lab { padding: 80px 0 !important; }
  footer { padding: 80px 0 30px !important; }
  .simple-page-hero { padding: 140px 24px 60px !important; }
}
