:root {
  --cream: #e7e0c5;
  --cream-soft: #f4efdf;
  --sand: #b7a67f;
  --navy: #272a34;
  --navy-deep: #191b22;
  --clay: #b65731;
  --clay-light: #d36a3c;
  --green: #7fa643;
  --ink: #1c1c1a;
  --white: #fffdf6;
  --line: rgba(39, 42, 52, 0.18);
  --display: Georgia, "Times New Roman", serif;
  --condensed: "Arial Narrow", "Franklin Gothic Medium", Impact, sans-serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--cream-soft);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::selection {
  background: var(--clay);
  color: var(--white);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(231, 224, 197, 0.18);
  background: rgba(25, 27, 34, 0.9);
  color: var(--cream);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-link {
  width: 176px;
  flex: 0 0 auto;
}

.brand-link img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  margin-left: auto;
}

.desktop-nav a {
  color: rgba(255, 253, 246, 0.76);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 2px;
  padding: 0 22px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg,
.service-card a svg,
.footer-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.68rem;
}

.button-light {
  background: var(--cream);
  color: var(--navy);
}

.button-light:hover {
  background: var(--white);
}

.button-primary {
  background: var(--clay-light);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(13, 14, 17, 0.18);
}

.button-primary:hover {
  background: #e07546;
}

.button-dark {
  background: var(--navy);
  color: var(--white);
}

.button-dark:hover {
  background: var(--navy-deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--clay);
  font-family: var(--condensed);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: var(--sand);
}

.eyebrow span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 840px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 145px 0 90px;
  background:
    radial-gradient(circle at 78% 48%, rgba(182, 87, 49, 0.16), transparent 32%),
    var(--navy);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    transparent 0,
    transparent 28px,
    rgba(231, 224, 197, 0.025) 29px,
    transparent 30px
  );
  content: "";
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(rgba(255, 255, 255, 0.55) 0.7px, transparent 0.7px);
  background-size: 5px 5px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(430px, 1.06fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
}

.hero-copy {
  padding-top: 14px;
}

.hero h1,
.section-heading h2,
.custom-copy h2,
.stock-copy h2,
.quote-intro h2,
.about-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
}

.hero h1 em {
  display: block;
  color: var(--clay-light);
  font-style: italic;
  font-weight: 500;
}

.hero-lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(255, 253, 246, 0.72);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 54px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(231, 224, 197, 0.2);
  list-style: none;
}

.hero-facts li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 15px;
}

.hero-facts li + li {
  padding-left: 20px;
  border-left: 1px solid rgba(231, 224, 197, 0.15);
}

.hero-facts strong {
  color: var(--cream);
  font-family: var(--condensed);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-facts span {
  color: rgba(255, 253, 246, 0.55);
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sun-disc {
  position: absolute;
  top: 30px;
  left: 50%;
  width: min(530px, 90%);
  aspect-ratio: 1;
  border: 8px solid var(--clay-light);
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 3px var(--navy), 0 0 0 5px rgba(183, 166, 127, 0.62);
  transform: translateX(-50%);
  overflow: hidden;
}

.sun-disc::after {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(to bottom, transparent 55%, rgba(39, 42, 52, 0.16));
  content: "";
}

.sun-disc i {
  position: absolute;
  right: 10%;
  left: 10%;
  height: 7px;
  background: rgba(231, 224, 197, 0.38);
}

.sun-disc i:nth-child(1) { top: 24%; right: 28%; left: 28%; }
.sun-disc i:nth-child(2) { top: 34%; right: 21%; left: 21%; }
.sun-disc i:nth-child(3) { top: 44%; right: 15%; left: 15%; }
.sun-disc i:nth-child(4) { top: 54%; }
.sun-disc i:nth-child(5) { top: 64%; }
.sun-disc i:nth-child(6) { top: 74%; }

.hero-route {
  position: absolute;
  top: 38px;
  right: 1%;
  z-index: 3;
  margin: 0;
  border: 1px solid rgba(231, 224, 197, 0.38);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(39, 42, 52, 0.7);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(4deg);
}

.hero-truck {
  position: relative;
  z-index: 2;
  width: min(670px, 112%);
  margin-top: 165px;
  filter: drop-shadow(0 22px 20px rgba(6, 7, 10, 0.38));
  transform: translateX(-2%);
}

.hero-stamp {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 24px;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  border-top: 2px solid var(--sand);
  border-bottom: 2px solid var(--sand);
  padding: 11px 8px;
  color: var(--cream);
}

.hero-stamp::before,
.hero-stamp::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(183, 166, 127, 0.45);
  content: "";
}

.hero-stamp::before { top: 4px; }
.hero-stamp::after { bottom: 4px; }

.hero-stamp strong {
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.6vw, 2.45rem);
  letter-spacing: 0.12em;
}

.hero-stamp span {
  font-family: var(--condensed);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(231, 224, 197, 0.5);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue b {
  color: var(--clay-light);
  font-size: 1.2rem;
}

.service-section,
.process-section {
  padding: 120px 0;
  background:
    linear-gradient(rgba(183, 166, 127, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183, 166, 127, 0.06) 1px, transparent 1px),
    var(--cream-soft);
  background-size: 42px 42px;
}

.section-heading {
  margin-bottom: 55px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 70px;
}

.section-heading h2,
.custom-copy h2,
.stock-copy h2,
.quote-intro h2,
.about-copy h2 {
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.split-heading > p {
  margin: 0 0 4px;
  color: rgba(39, 42, 52, 0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 355px;
  display: flex;
  flex-direction: column;
  padding: 36px 34px 30px;
  background: rgba(255, 253, 246, 0.55);
  transition: background 200ms ease, transform 200ms ease;
}

.service-card + .service-card {
  border-left: 1px solid var(--line);
}

.service-card:hover {
  z-index: 2;
  background: var(--white);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(39, 42, 52, 0.09);
}

.card-topline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  color: var(--clay);
}

.card-topline span,
.card-topline small {
  font-family: var(--condensed);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-topline i {
  height: 1px;
  background: rgba(182, 87, 49, 0.35);
}

.service-card h3,
.process-list h3,
.custom-steps h3 {
  margin: 44px 0 14px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1.15;
}

.service-card > p {
  margin: 0;
  color: rgba(39, 42, 52, 0.67);
  font-size: 0.94rem;
  line-height: 1.75;
}

.service-card > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: auto;
  color: var(--navy);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card > a svg {
  width: 16px;
  transition: transform 180ms ease;
}

.service-card > a:hover svg {
  transform: translate(3px, -3px);
}

.beers-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0 130px;
  background: var(--navy);
  color: var(--cream);
}

.beers-section::before {
  position: absolute;
  width: 680px;
  height: 680px;
  top: -390px;
  right: -180px;
  border: 1px solid rgba(231, 224, 197, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(231, 224, 197, 0.03), 0 0 0 90px rgba(231, 224, 197, 0.02);
  content: "";
}

.beers-heading {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.beers-heading h2 {
  color: var(--white);
}

.beer-glossary {
  display: flex;
  gap: 24px;
  padding-bottom: 4px;
}

.beer-glossary p {
  margin: 0;
  color: rgba(231, 224, 197, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.beer-glossary strong {
  display: block;
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.1rem;
}

.beer-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.beer-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(231, 224, 197, 0.16);
  border-radius: 2px;
  background: var(--cream-soft);
  color: var(--navy);
  transition: transform 220ms ease;
}

.beer-card:hover {
  transform: translateY(-8px);
}

.beer-label {
  position: relative;
  height: 235px;
  overflow: hidden;
  border-bottom: 5px solid var(--navy);
  background: var(--clay);
}

.beer-label::before,
.beer-label::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 253, 246, 0.35);
  content: "";
}

.beer-label::before { top: 24px; }
.beer-label::after { bottom: 24px; }

.beer-neipa .beer-label {
  background: var(--green);
}

.beer-amber .beer-label {
  background: #873f28;
}

.beer-sun {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 185px;
  height: 185px;
  border: 4px solid var(--navy);
  border-radius: 50%;
  background: var(--cream);
  transform: translateX(-50%);
  opacity: 0.92;
}

.beer-label img {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 50%;
  width: 78%;
  filter: drop-shadow(0 12px 8px rgba(0, 0, 0, 0.18));
  transform: translateX(-50%);
}

.beer-number {
  position: absolute;
  z-index: 3;
  top: 17px;
  left: 18px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 800;
}

.beer-label > p {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 4px;
  margin: 0;
  color: var(--navy);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.beer-content {
  padding: 30px 30px 32px;
}

.beer-kicker {
  margin: 0 0 6px;
  color: var(--clay);
  font-family: var(--condensed);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.beer-content h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.beer-description {
  min-height: 94px;
  margin: 18px 0 24px;
  color: rgba(39, 42, 52, 0.67);
  font-size: 0.9rem;
  line-height: 1.7;
}

.beer-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 0 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.beer-specs div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 12px 12px 0;
}

.beer-specs div + div {
  border-left: 1px solid var(--line);
  padding-right: 0;
  padding-left: 12px;
}

.beer-specs dt {
  color: var(--clay);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.beer-specs dd {
  margin: 0;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 800;
}

.ingredient-list {
  display: grid;
  gap: 8px;
}

.ingredient-list p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 15px;
  margin: 0;
  color: var(--navy);
  font-size: 0.73rem;
  font-weight: 700;
  text-align: right;
}

.ingredient-list span {
  color: rgba(39, 42, 52, 0.48);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.custom-section {
  padding: 120px 0;
  background: var(--cream);
}

.custom-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(70px, 10vw, 140px);
}

.custom-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 28px 0 34px;
  color: rgba(39, 42, 52, 0.68);
  line-height: 1.8;
}

.custom-steps {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.custom-steps::before {
  position: absolute;
  top: 45px;
  bottom: 45px;
  left: 35px;
  width: 1px;
  background: rgba(182, 87, 49, 0.35);
  content: "";
}

.custom-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 28px;
  min-height: 135px;
  border-bottom: 1px solid rgba(39, 42, 52, 0.13);
}

.custom-steps li:last-child {
  border-bottom: 0;
}

.custom-steps > li > span {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid var(--clay);
  border-radius: 50%;
  background: var(--cream);
  color: var(--clay);
  font-family: var(--display);
  font-weight: 800;
}

.custom-steps h3 {
  margin: 0 0 5px;
  font-size: 1.35rem;
}

.custom-steps p {
  margin: 0;
  color: rgba(39, 42, 52, 0.62);
  font-size: 0.9rem;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--navy);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  padding-top: 3px;
  color: var(--clay);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
}

.process-list h3 {
  margin: 0 0 8px;
  font-size: 1.55rem;
}

.process-list p {
  max-width: 820px;
  margin: 0;
  color: rgba(39, 42, 52, 0.65);
  line-height: 1.75;
}

.stock-section {
  padding: 36px 0;
  background: var(--clay);
}

.stock-board {
  position: relative;
  min-height: 480px;
  display: grid;
  grid-template-columns: 1fr 220px;
  align-items: center;
  gap: 70px;
  overflow: hidden;
  border: 1px solid rgba(231, 224, 197, 0.5);
  padding: 68px 76px;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 34px, rgba(231, 224, 197, 0.035) 35px, transparent 36px),
    var(--navy);
  color: var(--cream);
}

.stock-board::before,
.stock-board::after {
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(231, 224, 197, 0.09);
  border-radius: 50%;
  content: "";
}

.stock-board::before {
  top: -210px;
  left: -180px;
}

.stock-board::after {
  right: -220px;
  bottom: -240px;
  box-shadow: 0 0 0 40px rgba(231, 224, 197, 0.025), 0 0 0 80px rgba(231, 224, 197, 0.018);
}

.stock-tag {
  position: absolute;
  top: 26px;
  right: 28px;
  border: 1px solid rgba(231, 224, 197, 0.35);
  padding: 7px 11px;
  color: rgba(231, 224, 197, 0.7);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stock-copy {
  position: relative;
  z-index: 2;
}

.stock-copy h2 {
  max-width: 690px;
  color: var(--white);
}

.stock-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin: 26px 0 0;
  color: rgba(255, 253, 246, 0.68);
  line-height: 1.8;
}

.stock-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 34px;
}

.text-link-light {
  color: var(--cream);
}

.stock-seal {
  position: relative;
  z-index: 2;
  width: 188px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--sand);
  border-radius: 50%;
  color: var(--cream);
  text-align: center;
  transform: rotate(7deg);
}

.stock-seal::before {
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(231, 224, 197, 0.5);
  border-radius: 50%;
  content: "";
}

.stock-seal small,
.stock-seal span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.stock-seal strong {
  margin: 2px 0;
  font-family: var(--display);
  font-size: 1.42rem;
  line-height: 1;
}

.quote-section {
  padding: 125px 0;
  background: var(--navy-deep);
  color: var(--cream);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(570px, 1.15fr);
  align-items: start;
  gap: clamp(60px, 8vw, 110px);
}

.quote-intro {
  position: sticky;
  top: 120px;
}

.quote-intro h2 {
  color: var(--white);
}

.quote-intro > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: rgba(255, 253, 246, 0.64);
  line-height: 1.8;
}

.direct-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid rgba(231, 224, 197, 0.15);
}

.direct-contact span {
  margin-bottom: 6px;
  color: var(--sand);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.direct-contact a {
  color: rgba(255, 253, 246, 0.84);
  font-size: 0.92rem;
}

.direct-contact a:hover {
  color: var(--white);
  text-decoration: underline;
}

.quote-form {
  border-top: 5px solid var(--clay);
  padding: 42px;
  background: var(--cream-soft);
  color: var(--navy);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
}

.form-heading p {
  margin: 0;
  color: rgba(39, 42, 52, 0.55);
  font-size: 0.72rem;
}

.form-row {
  display: grid;
  gap: 18px;
}

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

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}

.field > span {
  color: var(--navy);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(39, 42, 52, 0.18);
  border-radius: 0;
  outline: 0;
  background: var(--white);
  color: var(--navy);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input,
.field select {
  height: 50px;
  padding: 0 13px;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
  padding: 12px 13px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(39, 42, 52, 0.38);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(182, 87, 49, 0.11);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note,
.form-feedback {
  margin: 12px 0 0;
  color: rgba(39, 42, 52, 0.5);
  font-size: 0.7rem;
  line-height: 1.5;
  text-align: center;
}

.form-feedback:empty {
  display: none;
}

.form-feedback {
  color: #506d29;
  font-weight: 700;
}

.about-section {
  padding: 105px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(60px, 9vw, 120px);
}

.about-mark {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--clay);
}

.about-mark::before {
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(231, 224, 197, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(231, 224, 197, 0.07), 0 0 0 70px rgba(231, 224, 197, 0.04);
  content: "";
}

.about-mark img {
  position: relative;
  z-index: 1;
  width: 88%;
  filter: drop-shadow(0 15px 16px rgba(39, 42, 52, 0.18));
}

.about-copy > p:not(.eyebrow, .about-quote) {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(39, 42, 52, 0.68);
  line-height: 1.85;
}

.about-quote {
  margin: 34px 0 0;
  color: var(--clay);
  font-family: var(--display);
  font-size: 1.4rem;
  font-style: italic;
}

.site-footer {
  padding: 64px 0 24px;
  background: var(--navy);
  color: var(--cream);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr auto;
  align-items: start;
  gap: 45px;
  padding-bottom: 52px;
}

.footer-brand img {
  width: 220px;
}

.footer-brand p {
  max-width: 300px;
  margin: 18px 0 0;
  color: rgba(231, 224, 197, 0.52);
  font-size: 0.78rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.footer-column p {
  margin: 0 0 8px;
  color: var(--sand);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 253, 246, 0.72);
  font-size: 0.8rem;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 6px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(231, 224, 197, 0.13);
  padding-top: 20px;
  color: rgba(231, 224, 197, 0.42);
  font-size: 0.66rem;
}

.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 8px 14px 8px 8px;
  background: #316b43;
  color: white;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover {
  background: #285c38;
  transform: translateY(-2px);
}

.floating-whatsapp span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.62rem;
  font-weight: 900;
}

.floating-whatsapp b {
  font-size: 0.69rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(680px, 100%);
    min-height: 540px;
    margin-inline: auto;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .split-heading > p {
    max-width: 650px;
  }

  .beer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .beer-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) 1fr;
  }

  .beer-label {
    height: auto;
    min-height: 355px;
    border-right: 5px solid var(--navy);
    border-bottom: 0;
  }

  .beer-description {
    min-height: auto;
  }

  .custom-grid,
  .quote-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .quote-grid {
    gap: 50px;
  }

  .quote-intro {
    position: static;
  }

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

@media (max-width: 760px) {
  html {
    scroll-padding-top: 74px;
  }

  .shell {
    width: min(100% - 30px, 1180px);
  }

  .header-inner {
    min-height: 68px;
    gap: 14px;
  }

  .brand-link {
    width: 142px;
  }

  .button-small {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 0.6rem;
  }

  .button-small svg {
    display: none;
  }

  .hero {
    padding: 118px 0 78px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 5.1rem);
  }

  .hero-lead {
    margin-top: 24px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: center;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 38px;
  }

  .hero-facts li,
  .hero-facts li + li {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    border-left: 0;
    padding: 0;
  }

  .hero-visual {
    min-height: 410px;
  }

  .sun-disc {
    top: 35px;
    width: 340px;
    max-width: 88%;
    border-width: 5px;
  }

  .hero-route {
    top: 29px;
    right: 0;
    font-size: 0.56rem;
  }

  .hero-truck {
    width: 108%;
    margin-top: 125px;
  }

  .hero-stamp {
    bottom: 10px;
  }

  .scroll-cue {
    display: none;
  }

  .service-section,
  .beers-section,
  .custom-section,
  .process-section,
  .quote-section,
  .about-section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .custom-copy h2,
  .stock-copy h2,
  .quote-intro h2,
  .about-copy h2 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

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

  .service-card {
    min-height: 310px;
  }

  .service-card + .service-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .beers-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .beer-card {
    display: block;
  }

  .beer-label {
    height: 235px;
    min-height: 0;
    border-right: 0;
    border-bottom: 5px solid var(--navy);
  }

  .beer-content {
    padding: 27px 24px 30px;
  }

  .custom-grid {
    gap: 58px;
  }

  .custom-steps li {
    grid-template-columns: 58px 1fr;
    gap: 20px;
  }

  .custom-steps::before {
    left: 29px;
  }

  .custom-steps > li > span {
    width: 58px;
    height: 58px;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .stock-section {
    padding: 20px 0;
  }

  .stock-board {
    min-height: 590px;
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 62px 28px 42px;
  }

  .stock-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .stock-actions .text-link {
    align-self: flex-start;
  }

  .stock-seal {
    width: 145px;
  }

  .quote-form {
    padding: 30px 20px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .two-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-mark {
    min-height: 315px;
  }

  .about-grid {
    gap: 55px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 410px) {
  .brand-link {
    width: 120px;
  }

  .button-small {
    padding-inline: 10px;
    font-size: 0.55rem;
  }

  .hero-facts li,
  .hero-facts li + li {
    grid-template-columns: 105px 1fr;
  }

  .beer-glossary {
    gap: 16px;
  }

  .floating-whatsapp b {
    display: none;
  }

  .floating-whatsapp {
    padding-right: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Integração com o WordPress. */
body.admin-bar .site-header {
  top: 32px;
}

.brand-link .custom-logo-link,
.brand-link .custom-logo {
  display: block;
  width: 100%;
  height: auto;
}

.promo-stock-board {
  border: 1px solid rgba(231, 224, 197, 0.5);
  padding: 68px 64px;
  background: var(--navy);
  color: var(--cream);
}

.promo-stock-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 42px;
}

.promo-stock-heading h2 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

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

.promo-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(231, 224, 197, 0.18);
  background: var(--cream-soft);
  color: var(--navy);
}

.promo-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--clay);
}

.promo-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-image > img[src*="logo-insulana"] {
  padding: 34px;
  object-fit: contain;
}

.promo-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  border: 1px solid rgba(255, 253, 246, 0.5);
  padding: 7px 10px;
  background: var(--navy);
  color: var(--cream);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.promo-content {
  display: flex;
  flex-direction: column;
  min-height: 335px;
  padding: 27px 26px 26px;
}

.promo-content h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1.12;
}

.promo-content > p {
  margin: 15px 0 20px;
  color: rgba(39, 42, 52, 0.67);
  font-size: 0.88rem;
  line-height: 1.65;
}

.promo-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: auto 0 18px;
}

.promo-price del {
  color: rgba(39, 42, 52, 0.48);
  font-size: 0.8rem;
}

.promo-price strong {
  color: var(--clay);
  font-family: var(--display);
  font-size: 1.65rem;
}

.promo-content .button {
  width: 100%;
}

.wp-content-shell {
  min-height: 72vh;
  padding: 170px 0 110px;
  background: var(--cream-soft);
}

.wp-content-inner {
  min-width: 0;
}

.wp-reading-width {
  max-width: 850px;
}

.wp-page-heading {
  margin-bottom: 44px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.wp-page-heading h1,
.wp-error-page h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(2.7rem, 6vw, 5rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.wp-entry-content {
  color: rgba(39, 42, 52, 0.78);
  font-size: 1.02rem;
  line-height: 1.8;
}

.wp-entry-content h2,
.wp-entry-content h3 {
  color: var(--navy);
  font-family: var(--display);
  line-height: 1.15;
}

.wp-entry-content a {
  color: var(--clay);
  text-decoration: underline;
}

.wp-entry-content img,
.wp-featured-image img {
  height: auto;
}

.wp-featured-image {
  margin-bottom: 38px;
}

.wp-post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.wp-post-card {
  border-top: 4px solid var(--clay);
  padding: 24px;
  background: var(--white);
}

.wp-post-image {
  display: block;
  margin: -24px -24px 22px;
}

.wp-post-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.wp-post-date {
  margin: 0 0 8px;
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wp-post-card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1.15;
}

.wp-error-page p:not(.eyebrow) {
  margin: 24px 0 30px;
}

@media (max-width: 1020px) {
  .promo-grid {
    grid-template-columns: 1fr;
  }

  .promo-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) 1fr;
  }

  .promo-image {
    height: auto;
    min-height: 320px;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 760px) {
  .promo-stock-board {
    padding: 58px 22px 24px;
  }

  .promo-stock-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .promo-card {
    display: block;
  }

  .promo-image {
    height: 220px;
    min-height: 0;
  }

  .wp-content-shell {
    padding: 125px 0 80px;
  }

  .wp-post-grid {
    grid-template-columns: 1fr;
  }
}
