:root {
  --bg: #faf8f2;
  --surface: #ffffff;
  --cream: #f4efe6;
  --ink: #1d2428;
  --muted: #5b6a6f;
  --brand: #5B9583;
  --brand-2: #24343c;
  --gold: #c6a756;
  --line: rgba(29, 36, 40, 0.12);
  --radius: 20px;
  --shadow: 0 16px 36px rgba(20, 31, 36, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 80% 0%, #f2ecde 0%, var(--bg) 48%, #f7f3ea 100%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0 0 0.7rem;
  line-height: 1.15;
  font-family: "Cormorant Garamond", serif;
  color: var(--brand-2);
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.section {
  padding: 5.25rem 0;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
  background: var(--brand);
  color: #fff;
  padding: 0.6rem 0.85rem;
  border-radius: 10px;
  z-index: 120;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(12px);
  background: rgba(250, 248, 242, 0.86);
  border-bottom: 1px solid var(--line);
}

.header-bar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand img {
  width: 88px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 600;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  border-color: var(--gold);
  color: var(--brand);
}

.site-nav .nav-shop-link {
  border: 1px solid rgba(91, 149, 131, 0.28);
  border-radius: 999px;
  padding: 0.42rem 0.85rem;
  background: rgba(91, 149, 131, 0.06);
  color: var(--brand);
}

.site-nav .nav-shop-link:hover,
.site-nav .nav-shop-link:focus-visible {
  border-color: rgba(91, 149, 131, 0.5);
  background: rgba(91, 149, 131, 0.11);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  font: inherit;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 6.2rem;
  padding-bottom: 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.12)),
    url("rsc/bieres_cascade.jpg") center/cover no-repeat;
}

.hero-content {
  position: relative;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5.2vw, 4.5rem);
  max-width: 11ch;
  margin-bottom: 1rem;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.4);
}

.lede {
  max-width: 58ch;
  font-size: clamp(1rem, 2.1vw, 1.2rem);
}

.eyebrow {
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--gold);
}

.hero .eyebrow {
  color: #fde09f;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions .btn--primary {
  background: rgba(91, 149, 131, 0.86);
  border-color: rgba(253, 224, 159, 0.38);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn--primary {
  background: var(--brand);
  color: #fff;
}

.btn--outline {
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--light {
  background: #fff;
  color: var(--brand-2);
}

.btn--outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
  background: transparent;
}

.social-link {
  justify-content: flex-start;
}

.social-link svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.social-link--facebook {
  color: #fff;
}

.social-link--instagram {
  color: #314b43;
  border-color: rgba(49, 75, 67, 0.4);
}

.value-strip {
  background: linear-gradient(180deg, #f8f3e8, #f4efe6);
}

.value-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.value-card h2 {
  font-size: 1.55rem;
}

.value-card .btn {
  width: 100%;
  margin-top: auto;
}

.value-action {
  margin-top: 1rem;
}

.btn--values {
  width: 100%;
  justify-content: center;
  padding-block: 0.95rem;
  font-size: 1rem;
}

.futs-action {
  margin-top: 1rem;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.5rem;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
}

.beer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.beer-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.beer-card img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  background: var(--cream);
}

.beer-card h3 {
  margin-top: 0.9rem;
  margin-bottom: 0.3rem;
  font-size: 1.45rem;
}

.beer-toggle {
  margin-top: 0.25rem;
  width: 100%;
  border: 1px solid var(--line);
  background: #f8f4ea;
  color: var(--brand);
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.beer-toggle:hover,
.beer-toggle:focus-visible {
  border-color: rgba(91, 149, 131, 0.42);
}

.beer-description {
  margin-top: 0.65rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.section-actions {
  margin-top: 1.2rem;
}

.section--cream {
  background: var(--cream);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.3rem;
  align-items: center;
}

.brew-action {
  margin-top: 1rem;
}

.reverse {
  grid-template-columns: 1fr 1.1fr;
}

.photo-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.photo-collage img,
.production-visual img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(29, 36, 40, 0.15);
}

.photo-collage img:first-child {
  grid-column: 1 / span 2;
}

.check-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.55rem;
}

.check-list li {
  background: rgba(198, 167, 86, 0.14);
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 0.6rem 0.8rem;
}

.cta-band {
  background: linear-gradient(125deg, #5B9583 0%, #24343c 72%);
  color: #fff;
}

.cta-band h2,
.cta-band .eyebrow {
  color: #fff;
}

.cta-wrap {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1.2fr auto;
  align-items: center;
}

.cta-actions {
  display: grid;
  gap: 0.65rem;
}

.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.contact-card h3 {
  font-size: 1.55rem;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #ddd4c4;
}

.footer-main {
  padding: 2.3rem 0 1.8rem;
}

.footer-contact-grid {
  grid-template-columns: 1.05fr 1fr;
  gap: 1.2rem;
}

.footer-contact .eyebrow {
  margin-bottom: 0.5rem;
}

.footer-title {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
}

.footer-title img {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.floating-quick-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.floating-shop-link,
.floating-futs-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(91, 149, 131, 0.2);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(18, 29, 34, 0.14);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
}

.floating-shop-link:hover,
.floating-shop-link:focus-visible,
.floating-futs-link:hover,
.floating-futs-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(18, 29, 34, 0.2);
  background: rgba(255, 255, 255, 0.96);
}

.floating-futs-link {
  color: #fff;
  border-color: rgba(91, 149, 131, 0.55);
  background: rgba(91, 149, 131, 0.86);
}

.floating-futs-link:hover,
.floating-futs-link:focus-visible {
  background: rgba(91, 149, 131, 0.96);
}

.floating-action-icon {
  width: 0.9rem;
  height: 0.9rem;
  flex: 0 0 auto;
}

.floating-action-icon path {
  fill: currentColor;
}

.site-footer .contact-card {
  background: rgba(255, 255, 255, 0.62);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.1rem 0 1.35rem;
}

.footer-bottom p {
  margin: 0;
  color: var(--ink-soft);
}

.page-hero {
  position: relative;
  padding: 5rem 0 4rem;
  color: #fff;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(12, 16, 18, 0.5), rgba(12, 16, 18, 0.16)),
    var(--page-hero-image) center/cover no-repeat;
}

.page-hero-content {
  position: relative;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 0.9rem;
}

.values-page-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.value-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
}

.value-panel h2 {
  font-size: 1.95rem;
}

.value-panel p:last-child {
  margin-bottom: 0;
}

.value-panel img {
  margin-top: 0.8rem;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(29, 36, 40, 0.15);
  object-fit: cover;
  max-height: 260px;
}

.value-panel--local { border-top: 4px solid #5b9583; }
.value-panel--water { border-top: 4px solid #322d77; }
.value-panel--labels { border-top: 4px solid #5955a1; }
.value-panel--bio { border-top: 4px solid #cf941a; }
.value-panel--malts { border-top: 4px solid #434241; }
.value-panel--natural { border-top: 4px solid #5955a1; }
.value-panel--circular { border-top: 4px solid #76bfa7; }
.value-panel--consigne { border-top: 4px solid #434241; }

.story-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  border-top: 4px solid rgba(91, 149, 131, 0.35);
}

.story-card--origins { border-top-color: #5b9583; }
.story-card--water { border-top-color: #322d77; }
.story-card--identity { border-top-color: #76bfa7; }
.story-card--site { border-top-color: #cf941a; }
.story-card--brewroom { border-top-color: #5955a1; }
.story-card--funding { border-top-color: #434241; }

.story-card--wide {
  grid-column: 1 / -1;
}

.story-card h2 {
  font-size: 2rem;
}

.story-card p:last-child {
  margin-bottom: 0;
}

.story-card img {
  margin-top: 0.75rem;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(29, 36, 40, 0.15);
}

.funding-banner {
  margin-top: 0.9rem;
  width: min(100%, 760px);
  border-radius: 12px;
  border: 1px solid rgba(29, 36, 40, 0.12);
  background: #fff;
}

.story-duo {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.story-duo--brew {
  grid-template-columns: 1.35fr 1fr;
}

.story-duo--brew img {
  margin-top: 0;
  height: 320px;
  width: 100%;
  object-fit: cover;
}

.story-duo--identity img {
  margin-top: 0;
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.story-duo--identity {
  grid-template-columns: 1.35fr 1fr;
  align-items: stretch;
}

.water-gallery {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  align-items: stretch;
}

.water-gallery-left {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.8rem;
}

.water-gallery img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(29, 36, 40, 0.14);
  object-fit: cover;
  height: 100%;
}

.water-gallery-left img {
  min-height: 220px;
}

.water-gallery-right {
  min-height: 452px;
}

.lieu-collage {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.lieu-step {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(29, 36, 40, 0.14);
  border-radius: 18px;
  padding: 0.45rem;
  box-shadow: 0 10px 24px rgba(18, 29, 34, 0.12);
}

.lieu-step img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(29, 36, 40, 0.12);
  display: block;
}

.subpage-hero {
  padding-top: 4.4rem;
  padding-bottom: 2.4rem;
}

.section--tight {
  padding-top: 1.8rem;
}

.beer-picker {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.beer-pill,
.soft-pill,
.ephemeral-pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.beer-pill img,
.soft-pill img,
.ephemeral-pill img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.beer-pill span,
.soft-pill span,
.ephemeral-pill span {
  font-size: 0.84rem;
  font-weight: 700;
}

.pill-badge {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  margin: 0;
  font-style: normal;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #4a5560;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(74, 85, 96, 0.24);
  border-radius: 999px;
  padding: 0.14rem 0.4rem;
}

.pill-badge--archive {
  color: #8f1f1f;
  background: rgba(215, 48, 48, 0.14);
  border-color: rgba(143, 31, 31, 0.28);
}

.pill-badge--current {
  color: #34424b;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(52, 66, 75, 0.28);
}

.beer-pill:hover,
.beer-pill:focus-visible,
.soft-pill:hover,
.soft-pill:focus-visible,
.ephemeral-pill:hover,
.ephemeral-pill:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(91, 149, 131, 0.4);
}

.beer-pill.is-active,
.soft-pill.is-active,
.ephemeral-pill.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(198, 167, 86, 0.2);
}

.beer-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.soft-range {
  margin-top: 1.6rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}

.soft-range h2 {
  margin-bottom: 0.85rem;
}

.soft-picker {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.ephemeral-range {
  margin-top: 1.6rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}

.ephemeral-range h2 {
  margin-bottom: 0.85rem;
}

.ephemeral-picker {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}


.beer-modal {
  border: 0;
  padding: 0;
  background: transparent;
  width: min(860px, calc(100% - 1.5rem));
}

.beer-modal::backdrop {
  background: rgba(17, 24, 28, 0.75);
  backdrop-filter: blur(4px);
}

.beer-modal-card {
  background: linear-gradient(165deg, #fff 0%, #f4efe5 100%);
  border: 1px solid rgba(29, 36, 40, 0.18);
  border-radius: 22px;
  padding: 1rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(18, 29, 34, 0.35);
  overflow: hidden;
}

.beer-modal-card::before {
  content: none;
}

.beer-modal-card > * {
  position: relative;
  z-index: 1;
}

.beer-modal-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: 280px 1fr;
  align-items: center;
}

.beer-modal-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(29, 36, 40, 0.15);
}

.beer-modal-close {
  position: absolute;
  right: 0.65rem;
  top: 0.65rem;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(29, 36, 40, 0.2);
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-2);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  z-index: 4;
}

.beer-modal-actions {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.beer-modal-abv {
  margin: 0 0 0.45rem;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.9rem;
}

body.modal-open {
  overflow: hidden;
}

.beer-modal[hidden] {
  display: none;
}

.beer-modal.is-open {
  position: fixed;
  inset: 0;
  width: auto;
  max-width: none;
  margin: 0;
  border: 0;
  display: grid;
  place-items: center;
  background: rgba(17, 24, 28, 0.75);
  backdrop-filter: blur(4px);
  z-index: 120;
}

.values-modal {
  border: 0;
  padding: 0;
  background: transparent;
  width: min(980px, calc(100% - 1.5rem));
}

.values-modal::backdrop {
  background: rgba(17, 24, 28, 0.78);
  backdrop-filter: blur(4px);
}

.values-modal-card {
  background: linear-gradient(165deg, #fff 0%, #f7f3ea 100%);
  border: 1px solid rgba(29, 36, 40, 0.18);
  border-radius: 22px;
  padding: 1.1rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(18, 29, 34, 0.35);
  max-height: min(88vh, 900px);
  overflow: auto;
}

.values-modal-head {
  margin-bottom: 0.95rem;
  padding-right: 2.2rem;
  border-bottom: 1px solid rgba(29, 36, 40, 0.12);
  padding-bottom: 0.7rem;
}

.values-modal-head h3 {
  margin-bottom: 0.25rem;
}

.values-modal-head p {
  margin: 0;
  color: var(--muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.values-item {
  border: 1px solid rgba(29, 36, 40, 0.1);
  background: #fff;
  border-radius: 14px;
  padding: 0.8rem;
  animation: values-in 0.34s ease both;
  box-shadow: 0 8px 20px rgba(18, 29, 34, 0.07);
  border-top: 4px solid rgba(36, 52, 60, 0.2);
}

.values-item:nth-child(2) { animation-delay: 0.03s; }
.values-item:nth-child(3) { animation-delay: 0.06s; }
.values-item:nth-child(4) { animation-delay: 0.09s; }
.values-item:nth-child(5) { animation-delay: 0.12s; }
.values-item:nth-child(6) { animation-delay: 0.15s; }

.values-item h4 {
  margin: 0 0 0.2rem;
  font-size: 1.22rem;
  font-family: "Cormorant Garamond", serif;
}

.values-item p {
  margin: 0;
  color: var(--ink);
}

.values-tag {
  display: inline-flex;
  margin-bottom: 0.45rem;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.16rem 0.45rem;
  border: 1px solid transparent;
}

.values-item--eco { border-top-color: #5b9583; }
.values-item--eco .values-tag { background: rgba(177, 215, 201, 0.34); color: #355f53; border-color: rgba(91, 149, 131, 0.34); }

.values-item--water { border-top-color: #322d77; }
.values-item--water .values-tag { background: rgba(149, 144, 198, 0.22); color: #322d77; border-color: rgba(89, 85, 161, 0.32); }

.values-item--transport { border-top-color: #434241; }
.values-item--transport .values-tag { background: rgba(230, 230, 229, 0.95); color: #434241; border-color: rgba(67, 66, 65, 0.3); }

.values-item--natural { border-top-color: #cf941a; }
.values-item--natural .values-tag { background: rgba(253, 224, 159, 0.45); color: #8d6512; border-color: rgba(207, 148, 26, 0.35); }

.values-item--circular { border-top-color: #5955a1; }
.values-item--circular .values-tag { background: rgba(149, 144, 198, 0.24); color: #4a468a; border-color: rgba(89, 85, 161, 0.3); }

.values-item--consigne { border-top-color: #76bfa7; }
.values-item--consigne .values-tag { background: rgba(118, 191, 167, 0.24); color: #2f6f5b; border-color: rgba(91, 149, 131, 0.3); }

.values-item--metha { border-top-color: #cf941a; }
.values-item--metha .values-tag { background: rgba(251, 206, 92, 0.3); color: #8c6111; border-color: rgba(207, 148, 26, 0.3); }

.values-item--wide {
  padding: 0.95rem;
}

.values-item--wide { grid-column: 1 / -1; }

.values-modal[hidden] {
  display: none;
}

.values-modal.is-open {
  position: fixed;
  inset: 0;
  width: auto;
  max-width: none;
  margin: 0;
  border: 0;
  display: grid;
  place-items: center;
  background: rgba(17, 24, 28, 0.75);
  backdrop-filter: blur(4px);
  z-index: 120;
}

.service-modal {
  border: 0;
  padding: 0;
  background: transparent;
  width: min(980px, calc(100% - 1.5rem));
}

.service-modal::backdrop {
  background: rgba(17, 24, 28, 0.78);
  backdrop-filter: blur(4px);
}

.service-modal-card {
  background: linear-gradient(165deg, #fff 0%, #f7f3ea 100%);
  border: 1px solid rgba(29, 36, 40, 0.18);
  border-radius: 22px;
  padding: 1.1rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(18, 29, 34, 0.35);
  max-height: min(88vh, 900px);
  overflow: auto;
}

.service-modal-head {
  margin-bottom: 0.95rem;
  padding-right: 2.2rem;
  border-bottom: 1px solid rgba(29, 36, 40, 0.12);
  padding-bottom: 0.7rem;
}

.service-modal-head h3 {
  margin-bottom: 0.3rem;
}

.service-modal-head p {
  margin: 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.service-item {
  border: 1px solid rgba(29, 36, 40, 0.1);
  background: #fff;
  border-radius: 14px;
  padding: 0.85rem;
  box-shadow: 0 8px 20px rgba(18, 29, 34, 0.07);
  border-top: 4px solid rgba(36, 52, 60, 0.2);
}

.service-item h4 {
  margin: 0 0 0.25rem;
  font-size: 1.22rem;
  font-family: "Cormorant Garamond", serif;
}

.service-item p {
  margin: 0;
}

.service-item p + p {
  margin-top: 0.65rem;
}

.service-item--wide {
  grid-column: 1 / -1;
}

#futs-modal .service-item--futs-log { border-top-color: #5955a1; }
#futs-modal .service-item--futs-pricing { border-top-color: #cf941a; }
#futs-modal .service-item--futs-qty { border-top-color: #322d77; }
#futs-modal .service-item--futs-gear { border-top-color: #5b9583; }

.futs-page .futs-feature {
  border-top: 4px solid rgba(36, 52, 60, 0.2);
}

.futs-page .futs-feature--events { border-top-color: #5955a1; }
.futs-page .futs-feature--draft { border-top-color: #cf941a; }
.futs-page .futs-feature--local { border-top-color: #5b9583; }

.futs-page .service-item--futs-log { border-top-color: #5955a1; }
.futs-page .service-item--futs-pricing { border-top-color: #cf941a; }
.futs-page .service-item--futs-qty { border-top-color: #322d77; }
.futs-page .service-item--futs-gear { border-top-color: #5b9583; }

.service-list {
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
  color: var(--ink);
}

.service-list li + li {
  margin-top: 0.35rem;
}

.service-cta {
  margin-top: 0.95rem;
}

.visit-form-wrap {
  margin-top: 0.95rem;
}

.visit-form-wrap .bf-wrapper {
  font-family: "Manrope", sans-serif;
  background: #fff;
  border: 1px solid rgba(29, 36, 40, 0.14);
  border-radius: 14px;
  padding: 14px;
  max-width: none;
  box-shadow: 0 6px 18px rgba(18, 29, 34, 0.06);
}

.visit-form-wrap .bf-wrapper h2,
.visit-form-wrap .bf-wrapper h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--brand-2);
}

.visit-form-wrap .bf-wrapper h2 {
  margin: 0 0 0.7rem;
  font-size: 1.65rem;
}

.visit-form-wrap .bf-field > label {
  color: var(--ink);
  font-weight: 700;
}

.visit-form-wrap .bf-field-body input,
.visit-form-wrap .bf-field-body textarea,
.visit-form-wrap .bf-field-body select {
  border: 1px solid rgba(29, 36, 40, 0.22);
  border-radius: 10px;
  padding: 9px 10px;
  font: inherit;
}

.visit-form-wrap .bf-field-body input:focus,
.visit-form-wrap .bf-field-body textarea:focus,
.visit-form-wrap .bf-field-body select:focus {
  outline: none;
  border-color: rgba(91, 149, 131, 0.62);
  box-shadow: 0 0 0 3px rgba(91, 149, 131, 0.12);
}

.visit-form-wrap .bf-section {
  border: 1px solid rgba(29, 36, 40, 0.13);
  border-radius: 12px;
  background: #f9f5ec;
  box-shadow: none;
}

.visit-form-wrap .bf-btn {
  display: block;
  margin: 0.2rem auto 0;
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
}

.visit-form-wrap .bf-btn:hover,
.visit-form-wrap .bf-btn:focus-visible {
  background: #322d77;
  border-color: #322d77;
}

.visit-form-wrap .bf-locate-btn {
  border-radius: 999px;
  border-color: rgba(29, 36, 40, 0.2);
}

.visit-form-wrap .bf-image {
  border-radius: 10px;
  border: 1px solid rgba(29, 36, 40, 0.12);
}

.visit-form-wrap .bf-status {
  margin-top: 0.6rem;
  font-weight: 700;
}

.service-modal[hidden] {
  display: none;
}

.service-modal.is-open {
  position: fixed;
  inset: 0;
  width: auto;
  max-width: none;
  margin: 0;
  border: 0;
  display: grid;
  place-items: center;
  background: rgba(17, 24, 28, 0.75);
  backdrop-filter: blur(4px);
  z-index: 120;
}

.cta-inline {
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 1.2rem;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes values-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .value-grid,
  .values-page-grid,
  .story-grid,
  .beer-grid,
  .split,
  .reverse,
  .cta-wrap,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .beer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split,
  .reverse,
  .cta-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .beer-picker,
  .cta-inline {
    grid-template-columns: 1fr;
  }

  .beer-picker {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .beer-modal-layout {
    grid-template-columns: 1fr;
  }

  .beer-modal-media img {
    max-width: 320px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .soft-picker {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ephemeral-picker {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 760px) {
  .section {
    padding: 4rem 0;
  }

  .brand img {
    width: 72px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 84px;
    background: #f9f4e8;
    border-bottom: 1px solid var(--line);
    padding: 0.9rem 4%;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .nav-shop-link {
    margin-top: 0.2rem;
  }

  .hero {
    padding-top: 4.8rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }

  .value-grid,
  .values-page-grid,
  .story-grid,
  .beer-grid,
  .photo-collage {
    grid-template-columns: 1fr;
  }

  .story-duo {
    grid-template-columns: 1fr;
  }

  .story-duo--brew img {
    height: 240px;
  }

  .story-duo--identity img {
    height: 240px;
  }

  .water-gallery {
    grid-template-columns: 1fr;
  }

  .water-gallery-left {
    grid-template-rows: none;
    grid-template-columns: 1fr;
  }

  .water-gallery-left img,
  .water-gallery-right {
    min-height: 260px;
  }

  .lieu-collage {
    grid-template-columns: 1fr;
  }

  .beer-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .soft-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ephemeral-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-collage img:first-child {
    grid-column: auto;
  }

  .footer-contact-grid {
    grid-template-columns: 1fr;
  }

  .floating-quick-actions {
    right: 0.75rem;
    left: 0.75rem;
    bottom: 0.75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .floating-shop-link,
  .floating-futs-link {
    justify-content: center;
    padding: 0.68rem 0.8rem;
  }
}
