:root {
  --ink: #171411;
  --charcoal: #23201c;
  --cream: #f8f2e8;
  --milk: #fffaf0;
  --stone: #d9cbb8;
  --gold: #bf9253;
  --gold-deep: #8f642f;
  --sage: #68735a;
  --rose: #c68a91;
  --line: rgba(23, 20, 17, 0.14);
  --shadow: 0 26px 70px rgba(20, 15, 10, 0.18);
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  background: var(--cream);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23, 20, 17, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(23, 20, 17, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 72%);
}

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.site-header,
main,
.site-footer {
  width: min(100%, 1440px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px 34px;
  color: var(--milk);
  background: rgba(18, 16, 14, 0.92);
  border-bottom: 1px solid rgba(255, 250, 240, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 74px;
  color: var(--gold);
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong,
.brand small,
.kicker,
.site-nav,
.header-cta,
.button,
dt,
.reserve-card li span,
.trust-row,
.proof-grid span {
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand strong {
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 1rem;
  font-weight: 500;
}

.brand small {
  margin-top: 6px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.64rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.72rem;
}

.site-nav a,
.site-footer a {
  transition: color 160ms ease;
}

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

.header-cta {
  padding: 11px 16px;
  border: 1px solid rgba(191, 146, 83, 0.55);
  color: var(--gold);
  font-size: 0.68rem;
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: end;
  isolation: isolate;
  color: var(--ink);
  background: var(--milk);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, #fbfaf6 0%, rgba(251, 250, 246, 0.96) 27%, rgba(251, 250, 246, 0.72) 45%, rgba(251, 250, 246, 0.06) 68%),
    linear-gradient(180deg, rgba(251, 250, 246, 0.15), rgba(251, 250, 246, 0.86)),
    url("./assets/alpine-hero-board.png") center right/cover no-repeat;
}

.hero-copy {
  max-width: 760px;
  padding: 92px 34px 74px clamp(28px, 7vw, 112px);
}

.kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
}

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

h1,
h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 6.6vw, 7.25rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 4.3vw, 5rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

p {
  line-height: 1.72;
}

.hero-copy p {
  max-width: 46ch;
  color: rgba(23, 20, 17, 0.74);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 0.74rem;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.primary {
  color: #16120d;
  background: var(--gold);
}

.ghost {
  border-color: rgba(23, 20, 17, 0.32);
  color: var(--ink);
  background: rgba(255, 250, 240, 0.26);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  align-items: center;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.seal-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(191, 146, 83, 0.45);
  border-radius: 50%;
  color: var(--gold-deep);
  background: rgba(255, 250, 240, 0.56);
}

.seal-icon svg {
  width: 18px;
  height: 18px;
}

.hero-facts {
  align-self: stretch;
  display: grid;
  align-content: end;
  border-left: 1px solid rgba(23, 20, 17, 0.12);
  background: rgba(255, 250, 240, 0.28);
  backdrop-filter: blur(7px);
}

.hero-facts article {
  padding: 34px;
  border-top: 1px solid rgba(23, 20, 17, 0.12);
}

.hero-facts span {
  display: block;
  margin-bottom: 6px;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 0.95;
}

.hero-facts small {
  color: rgba(23, 20, 17, 0.58);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro,
.craft,
.reserve,
.difference {
  padding: clamp(64px, 9vw, 122px) clamp(22px, 5vw, 72px);
  background: var(--cream);
}

.difference {
  background: var(--milk);
  text-align: center;
}

.centered {
  max-width: 920px;
  margin: 0 auto 54px;
  text-align: center;
}

.centered h2 {
  margin-bottom: 12px;
}

.centered p {
  color: rgba(23, 20, 17, 0.68);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--content);
  margin: 0 auto;
  border-block: 1px solid var(--line);
}

.difference-grid article {
  min-width: 0;
  padding: clamp(30px, 5vw, 56px) clamp(18px, 4vw, 44px);
  border-right: 1px solid var(--line);
}

.difference-grid article:last-child {
  border-right: 0;
}

.line-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 28px;
  color: var(--gold-deep);
}

.line-icon svg {
  width: 100%;
  height: 100%;
}

.difference-grid h3 {
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.difference-grid p {
  margin: 18px auto 0;
  max-width: 30ch;
  color: rgba(23, 20, 17, 0.7);
  font-size: 1.03rem;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) 1fr;
  gap: clamp(36px, 7vw, 86px);
  align-items: start;
}

.intro > div:first-child,
.section-heading {
  max-width: 620px;
}

.taste-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.taste-grid article,
.process-grid article {
  background: var(--milk);
}

.taste-grid article {
  padding: 28px;
}

.taste-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold-deep);
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 2rem;
}

.taste-grid p,
.panel p,
.process-grid p,
.reserve-copy p,
.site-footer p,
.purity-copy p {
  color: rgba(23, 20, 17, 0.72);
}

.origin {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.68fr);
  min-height: 700px;
  background: #11100e;
}

.origin-image {
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(17, 16, 14, 0.02), rgba(17, 16, 14, 0.2)),
    url("./assets/hero-generated.png") center/cover no-repeat;
}

.panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 82px);
  color: var(--milk);
  background:
    linear-gradient(rgba(255, 250, 240, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 240, 0.035) 1px, transparent 1px),
    #181613;
  background-size: 48px 48px;
}

.panel p,
.panel dd {
  color: rgba(255, 250, 240, 0.7);
}

.spec-list {
  display: grid;
  gap: 18px;
  margin: 36px 0 0;
}

.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.16);
}

dt {
  color: var(--gold);
  font-size: 0.68rem;
}

dd {
  margin: 0;
  text-align: right;
}

.craft {
  background: linear-gradient(180deg, var(--cream), #ede1d0);
}

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

.process-grid article {
  min-width: 0;
}

.process-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.process-grid h3,
.process-grid p {
  padding-inline: 24px;
}

.process-grid h3 {
  margin-top: 24px;
}

.process-grid p {
  padding-bottom: 30px;
}

.purity {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: stretch;
  background: var(--milk);
}

.certificate-image {
  min-height: 520px;
  background: #eee4d5;
}

.certificate-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.purity-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 92px);
  background: #fbfaf6;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.proof-grid article {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.proof-grid svg {
  width: 38px;
  height: 38px;
  color: var(--gold-deep);
}

.proof-grid span {
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35;
}

.reserve {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) 1fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  background: #f7efe2;
}

.reserve-copy {
  max-width: 520px;
}

.reserve-card {
  background: var(--milk);
  box-shadow: var(--shadow);
}

.reserve-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.reserve-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px 0 0;
  list-style: none;
  background: var(--line);
}

.reserve-card li {
  display: grid;
  gap: 7px;
  padding: 22px;
  background: var(--milk);
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 1.1rem;
}

.reserve-card li span {
  color: var(--gold-deep);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 0.63rem;
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 30px 34px;
  color: var(--milk);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 250, 240, 0.68);
}

.site-footer > a:last-child {
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero,
  .intro,
  .origin,
  .reserve,
  .purity {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(251, 250, 246, 0.96) 0%, rgba(251, 250, 246, 0.78) 48%, rgba(251, 250, 246, 0.16) 100%),
      linear-gradient(180deg, rgba(251, 250, 246, 0.12), rgba(251, 250, 246, 0.92)),
      url("./assets/alpine-hero-board.png") center right/cover no-repeat;
  }

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

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-left: 0;
  }

  .taste-grid,
  .process-grid,
  .difference-grid {
    grid-template-columns: 1fr;
  }

  .difference-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .difference-grid article:last-child {
    border-bottom: 0;
  }

  .origin {
    min-height: 0;
  }

  .reserve-copy {
    max-width: 680px;
  }

  .purity-copy {
    order: -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    padding: 18px 20px;
  }

  .site-nav {
    gap: 13px;
    flex-wrap: wrap;
    font-size: 0.66rem;
  }

  .header-cta {
    display: none;
  }

  .hero-copy {
    padding: 48px 20px 40px;
  }

  h1 {
    max-width: 11ch;
    margin-bottom: 18px;
    font-size: clamp(2.45rem, 11.6vw, 3.15rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

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

  .hero-facts article {
    padding: 18px 12px;
  }

  .hero-facts span {
    font-size: 1.8rem;
  }

  .hero-facts small {
    display: block;
    font-size: 0.62rem;
    line-height: 1.35;
  }

  .hero-copy p {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .trust-row {
    gap: 12px;
    font-size: 0.68rem;
  }

  .seal-icon {
    width: 28px;
    height: 28px;
  }

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

  .intro,
  .craft,
  .reserve,
  .difference {
    padding: 58px 20px;
  }

  .centered {
    margin-bottom: 34px;
  }

  .difference-grid article {
    padding: 34px 20px;
  }

  .purity-copy {
    padding: 58px 20px 42px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .certificate-image,
  .certificate-image img {
    min-height: 360px;
  }

  .panel {
    padding: 48px 20px;
  }

  .origin-image {
    min-height: 390px;
  }

  .spec-list div {
    display: grid;
  }

  dd {
    text-align: left;
  }

  .reserve-card ul {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 20px;
  }
}
