:root {
  --black: #090909;
  --black-soft: #12100f;
  --charcoal: #1d1a18;
  --paper: #f4eee5;
  --paper-deep: #e8dccb;
  --white: #fff8eb;
  --muted: #b9ac9c;
  --ink: #211d19;
  --red: #720a1a;
  --red-light: #9b1430;
  --gold: #c6a15b;
  --line-dark: rgba(255, 248, 235, 0.16);
  --line-light: rgba(33, 29, 25, 0.14);
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.32);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Avenir, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  min-height: 84px;
  padding: 14px clamp(22px, 5vw, 76px);
  border-bottom: 1px solid rgba(255, 248, 235, 0.12);
  background: rgba(9, 9, 9, 0.88);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-name {
  color: var(--white);
  font-family: var(--serif);
  font-size: 23px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(16px, 2.5vw, 42px);
  color: rgba(255, 248, 235, 0.82);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a,
.text-link {
  text-decoration-color: rgba(198, 161, 91, 0.72);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover,
.text-link:hover {
  color: var(--gold);
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(198, 161, 91, 0.58);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-cta:hover {
  background: var(--red);
  border-color: var(--red);
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.92fr);
  gap: clamp(38px, 6vw, 94px);
  align-items: center;
  min-height: calc(100vh - 84px);
  padding: clamp(62px, 8vw, 112px) clamp(24px, 6vw, 94px);
  background:
    radial-gradient(circle at 18% 12%, rgba(114, 10, 26, 0.42), transparent 34%),
    linear-gradient(120deg, #090909 0%, #14100e 52%, #090909 100%);
  border-bottom: 1px solid var(--line-dark);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 850px;
  color: var(--white);
  font-size: clamp(58px, 8.5vw, 132px);
}

h2 {
  color: inherit;
  font-size: clamp(38px, 5.4vw, 82px);
}

h3 {
  font-size: clamp(25px, 2.4vw, 38px);
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.lead {
  max-width: 720px;
  margin-top: 28px;
  color: rgba(255, 248, 235, 0.76);
  font-size: clamp(19px, 1.55vw, 23px);
}

.secondary-lead {
  color: rgba(255, 248, 235, 0.62);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button.red {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.button.red:hover {
  background: var(--red-light);
  border-color: var(--red-light);
}

.light-link {
  color: rgba(255, 248, 235, 0.82);
}

.hero-points,
.offer-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-points span,
.offer-points span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 248, 235, 0.16);
  color: rgba(255, 248, 235, 0.82);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cinematic-media,
.schema-card,
.wide-image,
.map-card,
.offer-section figure,
.story-section figure {
  overflow: hidden;
  border: 1px solid rgba(255, 248, 235, 0.14);
  background: rgba(255, 248, 235, 0.04);
  box-shadow: var(--shadow);
}

.cinematic-media img {
  height: min(72vh, 740px);
  object-fit: cover;
}

.manifesto-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--black);
  border-bottom: 1px solid var(--line-dark);
}

.manifesto-strip article {
  min-height: 250px;
  padding: clamp(30px, 4vw, 52px);
  border-right: 1px solid var(--line-dark);
}

.manifesto-strip article:last-child {
  border-right: 0;
}

.manifesto-strip span,
.definition-grid strong,
.action-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.manifesto-strip h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.8vw, 54px);
}

.section,
.comparison-section,
.faq-section {
  padding: clamp(72px, 9vw, 132px) clamp(24px, 6vw, 94px);
}

.difference-section,
.coffee-map,
.offer-section,
.split-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
}

.difference-section,
.coffee-map,
.visual-proof,
.faq-section,
.split-actions {
  background: var(--paper);
  color: var(--ink);
}

.section-copy p,
.offer-copy p {
  max-width: 690px;
  margin-top: 24px;
}

.schema-card img,
.wide-image img {
  object-fit: cover;
}

.dark-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 1fr);
  gap: clamp(36px, 6vw, 84px);
  padding: clamp(72px, 9vw, 130px) clamp(24px, 6vw, 94px);
  background:
    radial-gradient(circle at 92% 12%, rgba(114, 10, 26, 0.34), transparent 34%),
    linear-gradient(120deg, #0b0b0b, #18110f);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.dark-band h2,
.dark-band h3,
.dark-band p {
  color: var(--white);
}

.dark-band p {
  color: rgba(255, 248, 235, 0.72);
}

.effect-grid,
.definition-grid,
.action-cards,
.faq-list {
  display: grid;
  gap: 18px;
}

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

.effect-grid article,
.definition-grid article,
.faq-list details {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line-dark);
  background: rgba(255, 248, 235, 0.04);
}

.effect-grid strong {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.68fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
  margin-bottom: clamp(34px, 5vw, 68px);
}

.wide-image {
  box-shadow: 0 28px 86px rgba(33, 29, 25, 0.16);
}

.map-card {
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 36px);
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 28px 86px rgba(33, 29, 25, 0.14);
}

.map-card img {
  max-width: 520px;
}

.definition-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 30px 0;
}

.definition-grid article {
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.42);
}

.definition-grid strong {
  margin-bottom: 10px;
  color: var(--red);
}

.definition-grid span {
  color: #655b50;
}

.image-break {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.image-break img {
  height: 650px;
  object-fit: cover;
}

.image-break::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(9, 9, 9, 0.82), rgba(9, 9, 9, 0.08));
}

.image-break div {
  position: absolute;
  inset: auto auto clamp(38px, 7vw, 84px) clamp(24px, 6vw, 94px);
  z-index: 1;
  max-width: 760px;
}

.image-break h2,
.image-break p {
  color: var(--white);
}

.action-cards {
  grid-template-columns: 1fr;
}

.action-card {
  display: block;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.46);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.action-card:hover {
  transform: translateY(-2px);
  border-color: rgba(114, 10, 26, 0.44);
}

.action-card strong {
  display: block;
  max-width: 620px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  line-height: 1;
}

.offer-section {
  padding: clamp(72px, 9vw, 132px) clamp(24px, 6vw, 94px);
  background:
    radial-gradient(circle at 18% 22%, rgba(114, 10, 26, 0.34), transparent 35%),
    var(--black);
  border-top: 1px solid var(--line-dark);
}

.offer-section h2,
.offer-section p {
  color: var(--white);
}

.offer-section p {
  color: rgba(255, 248, 235, 0.72);
}

.offer-section figure {
  display: grid;
  min-height: 560px;
  place-items: center;
  padding: 28px;
  box-shadow: none;
}

.offer-section figure img {
  max-width: 460px;
  object-fit: contain;
}

.microcopy,
.offer-copy .microcopy {
  max-width: 520px;
  margin-top: 14px;
  color: rgba(255, 248, 235, 0.56);
  font-size: 13px;
}

.faq-list {
  max-width: 980px;
}

.faq-list details {
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.42);
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
}

.faq-list p {
  margin-top: 16px;
  color: #655b50;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
  padding: 44px clamp(24px, 6vw, 94px);
  border-top: 1px solid var(--line-dark);
  background: #070707;
}

.site-footer strong {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer span {
  color: rgba(255, 248, 235, 0.64);
}

.legal-note {
  max-width: 620px;
  margin-top: 12px;
  color: rgba(255, 248, 235, 0.48);
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: rgba(255, 248, 235, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.socials {
  display: flex;
  gap: 16px;
}

.socials img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

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

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 248, 235, 0.18);
    background: transparent;
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--white);
  }

  .nav-toggle span + span {
    margin-top: -13px;
  }

  .main-nav {
    position: absolute;
    top: 84px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 18px 24px;
    border-bottom: 1px solid var(--line-dark);
    background: rgba(9, 9, 9, 0.98);
  }

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

  .main-nav a {
    padding: 14px 0;
  }

  .hero,
  .difference-section,
  .coffee-map,
  .offer-section,
  .split-actions,
  .dark-band,
  .section-head {
    grid-template-columns: 1fr;
  }

  .manifesto-strip,
  .effect-grid,
  .definition-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

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

@media (max-width: 620px) {
  .brand-name {
    font-size: 18px;
  }

  h1 {
    font-size: clamp(54px, 17vw, 76px);
  }

  .cinematic-media img,
  .image-break img {
    height: 430px;
  }

  .offer-section figure {
    min-height: 420px;
  }

  .button {
    width: 100%;
  }
}
