:root {
  --ink: #211b18;
  --muted: #6f625c;
  --paper: #fffaf3;
  --surface: #ffffff;
  --line: #eadfd3;
  --tomato: #b93822;
  --tomato-dark: #802615;
  --green: #24533a;
  --gold: #d9a441;
  --charcoal: #151312;
  --shadow: 0 18px 50px rgba(45, 25, 14, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  min-height: 70px;
  padding: 8px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 243, 0.93);
  border-bottom: 1px solid rgba(234, 223, 211, 0.88);
  backdrop-filter: blur(16px);
}

.nav {
  grid-column: 2;
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--tomato-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a,
.header-action {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav a:hover {
  color: var(--tomato-dark);
}

.header-action {
  grid-column: 3;
  justify-self: end;
  padding: 10px 15px;
  border: 1px solid var(--tomato);
  border-radius: 8px;
  color: var(--tomato-dark);
  font-weight: 700;
}

.header-action:hover {
  background: var(--tomato);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 540px;
  height: calc(100vh - 132px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 10, 9, 0.86) 0%, rgba(11, 10, 9, 0.62) 43%, rgba(11, 10, 9, 0.12) 100%),
    linear-gradient(0deg, rgba(11, 10, 9, 0.2), rgba(11, 10, 9, 0.12));
}

.hero-content {
  position: relative;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 88px);
  padding: 44px 0;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(2.9rem, 7vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.branch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.15;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--tomato);
  color: #fff;
}

.button.primary:hover {
  background: var(--tomato-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
}

.button.secondary:hover {
  background: #fff;
  color: var(--ink);
}

.button.light {
  border-color: var(--line);
  background: #fff;
  color: var(--tomato-dark);
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 92px);
  max-width: 1180px;
  margin: 0 auto;
}

.rich-text {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
}

.rich-text p:last-child {
  margin-bottom: 0;
}

.answer-strip {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(38px, 6vw, 70px) clamp(18px, 5vw, 72px);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.answer-strip h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.6vw, 3.35rem);
}

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

.answer-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.answer-grid h3 {
  margin-bottom: 12px;
  color: var(--tomato-dark);
  font-size: 1.08rem;
  line-height: 1.18;
}

.answer-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background: var(--charcoal);
  color: #fff;
}

.feature-copy {
  max-width: 720px;
}

.feature-copy h2 {
  max-width: 760px;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.pill-grid div {
  min-height: 160px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.pill-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.pill-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.pill-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.73);
}

.feature-image-wrap img,
.tasting img,
.final-cta img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-image-wrap img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.tasting {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.tasting img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.branches {
  background: #fff;
}

.branches .section-heading,
.faq .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.branch {
  display: grid;
  grid-template-columns: minmax(180px, 0.4fr) minmax(280px, 1fr) auto;
  gap: clamp(18px, 4vw, 52px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.branch-city span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--tomato);
  font-weight: 900;
}

.branch-city h3 {
  margin-bottom: 0;
}

.branch-details p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 1.04rem;
}

.branch-details a {
  color: var(--tomato-dark);
  font-size: 1.15rem;
  font-weight: 900;
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
}

details {
  min-height: 182px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(280px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  padding: clamp(54px, 8vw, 94px) clamp(18px, 5vw, 72px);
  background: var(--green);
  color: #fff;
}

.final-cta p:not(.section-kicker) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .split,
  .answer-strip,
  .feature-band,
  .tasting,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .feature-image-wrap {
    order: -1;
  }

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

  .branch-actions {
    width: 100%;
  }

  .branch-actions .button {
    flex: 1 1 160px;
  }

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

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

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    gap: 12px;
    padding: 9px 14px;
  }

  .header-action {
    padding: 9px 12px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 640px;
    height: calc(100vh - 104px);
    align-items: end;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(11, 10, 9, 0.9) 0%, rgba(11, 10, 9, 0.72) 44%, rgba(11, 10, 9, 0.18) 100%),
      linear-gradient(90deg, rgba(11, 10, 9, 0.35), rgba(11, 10, 9, 0.05));
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 0 auto;
    padding: 0 0 42px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3rem, 16vw, 4.75rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

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

}
