:root {
  --ink: #171711;
  --charcoal: #1d211a;
  --jungle: #102417;
  --jungle-2: #233f25;
  --cream: #f4edda;
  --milk: #fffaf0;
  --leaf: #617344;
  --gold: #d2a647;
  --gold-deep: #9b6f22;
  --mangosteen: #6f294c;
  --line: rgba(23, 23, 17, 0.14);
  --shadow: 0 26px 70px rgba(13, 20, 12, 0.2);
  --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", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
  background: var(--cream);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23, 23, 17, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(23, 23, 17, 0.035) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), 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.7;
}

.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, 23, 18, 0.94);
  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: 70px;
  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,
label {
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand strong {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, 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(210, 166, 71, 0.56);
  color: var(--gold);
  font-size: 0.68rem;
}

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

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, #fffaf0 0%, rgba(255, 250, 240, 0.98) 26%, rgba(255, 250, 240, 0.7) 45%, rgba(255, 250, 240, 0.05) 70%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.08), rgba(255, 250, 240, 0.82)),
    url("./assets/musang-king-hero.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-deep);
  font-size: 0.74rem;
  font-weight: 800;
}

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

h1,
h2,
h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, 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-size: 1.35rem;
}

p {
  line-height: 1.72;
}

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

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

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

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

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

.ghost {
  color: var(--ink);
  border-color: rgba(23, 23, 17, 0.32);
  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;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  list-style: none;
}

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

.seal-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--gold-deep);
  border: 1px solid rgba(210, 166, 71, 0.48);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.62);
}

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

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

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

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

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

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

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

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

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

.centered p {
  color: rgba(23, 23, 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", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

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

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

.origin-image {
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(17, 21, 15, 0.02), rgba(17, 21, 15, 0.42)),
    url("./assets/musang-king-hero.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),
    var(--jungle);
  background-size: 48px 48px;
}

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

.panel .kicker,
.market .kicker {
  color: var(--gold);
}

.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;
}

.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 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.taste-grid article {
  padding: 28px;
  background: var(--milk);
}

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

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

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

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

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

.proof-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: #fffaf0;
}

.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: #efe4cf;
}

.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;
  background: var(--line);
  list-style: none;
}

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

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

.enquiry {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(340px, 0.82fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
  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),
    var(--jungle);
  background-size: 48px 48px;
}

.enquiry .kicker {
  color: var(--gold);
}

.enquiry-copy p {
  color: rgba(255, 250, 240, 0.72);
}

form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(210, 166, 71, 0.28);
  background: rgba(255, 250, 240, 0.06);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.68rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid rgba(255, 250, 240, 0.24);
  background: var(--milk);
  font: inherit;
}

.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);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

  .hero {
    min-height: auto;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(255, 250, 240, 0.97) 0%, rgba(255, 250, 240, 0.76) 48%, rgba(255, 250, 240, 0.12) 100%),
      linear-gradient(180deg, rgba(255, 250, 240, 0.1), rgba(255, 250, 240, 0.9)),
      url("./assets/musang-king-hero.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,
  .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 {
    flex-wrap: wrap;
    gap: 13px;
    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.6rem;
  }

  .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;
  }

  .button {
    width: 100%;
  }

  .difference,
  .intro,
  .reserve,
  .enquiry {
    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;
  }

  .proof-image,
  .proof-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;
  }
}
