:root {
  color-scheme: light;
  --ink: #221915;
  --muted: #6c5b50;
  --paper: #fff9f0;
  --cream: #f2e1c5;
  --foam: #fff4de;
  --coffee: #603515;
  --caramel: #c47a3c;
  --tomato: #dc5637;
  --sage: #66735b;
  --line: rgba(34, 25, 21, 0.14);
  --shadow: 0 18px 50px rgba(64, 34, 16, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 12px clamp(18px, 4vw, 48px);
  background: rgba(255, 249, 240, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #fff;
  background: var(--coffee);
  font-size: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 0;
}

.nav-toggle {
  display: none;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(700px, 74svh);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: #2b170d;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 10, 5, 0.18), rgba(20, 10, 5, 0.72));
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commercial-hero {
  min-height: calc(92svh - 68px);
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  padding: clamp(28px, 6vw, 84px);
  background: #21130d;
}

.commercial-hero::after {
  display: block;
  z-index: -1;
  background: linear-gradient(90deg, rgba(34, 25, 21, 0.82), rgba(34, 25, 21, 0.32) 52%, rgba(34, 25, 21, 0.18));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  min-height: 0;
}

.hero-card {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--coffee);
  box-shadow: none;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 50%;
}

.hero-card-large {
  height: 100%;
  aspect-ratio: auto;
}

.hero-copy {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 clamp(34px, 7vh, 86px);
  color: #fff;
  text-align: center;
}

.commercial-hero .hero-copy {
  width: min(690px, 100%);
  margin: 0;
  padding: 0;
  text-align: left;
}

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

.hero .eyebrow {
  color: #ffd2c4;
}

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

h1 {
  margin: 0;
  font-size: clamp(54px, 11vw, 124px);
  line-height: 0.88;
  letter-spacing: 0;
}

.commercial-hero h1 {
  font-size: clamp(48px, 6.5vw, 96px);
}

h2 {
  margin: 0;
  font-size: clamp(32px, 6vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.1;
}

p {
  line-height: 1.62;
}

.hero-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px auto 0;
  font-size: clamp(17px, 2vw, 22px);
}

.commercial-hero .hero-copy p:not(.eyebrow) {
  margin-left: 0;
}

.hero-actions,
.site-footer {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 14px;
}

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

.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.54);
}

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

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 90px) 0;
}

.intro-grid,
.reel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 7vw, 88px);
  align-items: start;
}

.lead {
  color: var(--muted);
  font-size: 18px;
}

.lead p:first-child {
  margin-top: 0;
}

.visual-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  background: var(--ink);
}

.visual-band figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.visual-band img {
  height: 100%;
  object-fit: cover;
}

.surprise-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr) minmax(0, 0.9fr);
  gap: 8px;
  align-items: stretch;
  padding: 8px;
  background: var(--ink);
}

.surprise-band figure {
  margin: 0;
  overflow: hidden;
  min-height: 430px;
}

.surprise-band img {
  height: 100%;
  object-fit: cover;
}

.surprise-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 48px);
  color: #fff;
  background: var(--tomato);
}

.surprise-copy .eyebrow {
  color: #ffe5dc;
}

.surprise-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.edible {
  padding-bottom: clamp(56px, 8vw, 96px);
}

.edible-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 14px;
  align-items: stretch;
}

.edible-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.edible-grid img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

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

.section-heading.compact {
  max-width: 620px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.strategy,
.impact {
  width: 100%;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background: #f7ead7;
}

.strategy-grid,
.impact-grid,
.price-grid,
.target-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.strategy-grid article,
.impact-grid article,
.price-card,
.target-list article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.strategy-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--sage);
  font-weight: 900;
}

.impact-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--sage);
  font-size: 12px;
  font-weight: 900;
}

.strategy-grid p,
.impact-grid p,
.target-list p,
.price-card span {
  color: var(--muted);
}

.revenue {
  width: 100%;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: #fff;
}

.revenue .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

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

.revenue-grid article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.revenue-grid article.highlight {
  background: var(--tomato);
  border-color: transparent;
}

.revenue-icon {
  display: grid;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  margin-bottom: 34px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--foam);
  font-weight: 900;
  font-size: 13px;
}

.revenue-kicker {
  margin: 0 0 10px;
  color: #f6d7bc;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.revenue-grid p:not(.revenue-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.revenue-grid strong {
  margin-top: auto;
  color: #fff;
  line-height: 1.4;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.5fr);
  gap: clamp(20px, 5vw, 64px);
  align-items: center;
}

.proof-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.proof-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.proof-socials a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--coffee);
  background: #fff;
  font-size: 14px;
  font-weight: 900;
}

.proof-card {
  padding: 26px;
  border-radius: 8px;
  color: #fff;
  background: var(--coffee);
  box-shadow: var(--shadow);
}

.proof-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.1;
}

.proof-card p {
  color: #f6d7bc;
}

.proof-stats {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.proof-stats span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.proof-stats b {
  color: #fff;
  font-size: 26px;
  line-height: 1;
}

.contact {
  width: 100%;
  padding-inline: max(18px, calc((100vw - 980px) / 2));
  background: #fff;
}

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

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.contact-form textarea,
.contact-form button,
.form-status,
.form-note {
  grid-column: 1 / -1;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #2f4d28;
  background: #edf6e9;
  border: 1px solid rgba(47, 77, 40, 0.22);
}

.form-status.is-error {
  color: #7d2e1f;
  background: #fff0eb;
  border: 1px solid rgba(125, 46, 31, 0.22);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.offers {
  padding-bottom: 70px;
}

.price-card {
  background: #fff;
  box-shadow: var(--shadow);
}

.price-card p {
  margin: 0 0 20px;
  color: var(--sage);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.price-card h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.price-card.featured {
  color: #fff;
  background: var(--coffee);
}

.price-card.featured p,
.price-card.featured span {
  color: #f6d7bc;
}

.targets {
  border-top: 1px solid var(--line);
}

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

.target-list article {
  min-height: 170px;
  background: var(--foam);
}

.events {
  width: 100%;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background: #fff;
}

.event-table {
  border-top: 1px solid var(--line);
}

.event-table div {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.event-table span {
  color: var(--muted);
}

.reel {
  align-items: center;
}

.reel ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: reel;
}

.reel li {
  counter-increment: reel;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.reel li::before {
  content: counter(reel, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #fff;
  background: var(--sage);
  font-weight: 900;
  font-size: 13px;
}

.live-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: min(760px, 86svh);
  overflow: hidden;
  background: var(--ink);
}

.live-feature > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.live-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(34, 25, 21, 0.78), rgba(34, 25, 21, 0.16) 58%, rgba(34, 25, 21, 0.22));
  pointer-events: none;
}

.live-feature-copy {
  position: absolute;
  left: clamp(18px, 6vw, 84px);
  bottom: clamp(22px, 7vw, 86px);
  z-index: 1;
  width: min(560px, calc(100% - 36px));
  color: #fff;
}

.live-feature-copy .eyebrow {
  color: #ffd2c4;
}

.live-feature-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.legal {
  width: 100%;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background: #f7ead7;
}

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

.legal-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.legal-grid h3 {
  margin-bottom: 16px;
}

.legal-grid p {
  margin: 8px 0;
  color: var(--muted);
}

.cookie-policy {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(22px, 6vw, 72px);
  align-items: start;
}

.cookie-policy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  align-items: start;
  justify-content: space-between;
  padding: 24px clamp(18px, 4vw, 48px);
  color: #fff;
  background: var(--ink);
}

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

.site-footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.footer-services {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 620px;
}

.footer-services span {
  flex-basis: 100%;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-services a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(760px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #fff;
  background: rgba(34, 25, 21, 0.96);
  box-shadow: 0 22px 60px rgba(34, 25, 21, 0.32);
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .button {
  border: 0;
  cursor: pointer;
}

.cookie-settings {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 39;
  display: none;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.cookie-settings.is-visible {
  display: inline-flex;
  align-items: center;
}

@media (max-width: 980px) {
  .strategy-grid,
  .impact-grid,
  .price-grid,
  .revenue-grid,
  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-band,
  .edible-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .commercial-hero,
  .surprise-band,
  .proof {
    grid-template-columns: 1fr;
  }

  .commercial-hero .hero-media {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 62px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 62px 12px auto;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 76svh;
  }

  .commercial-hero {
    min-height: calc(88svh - 62px);
    padding: 18px;
  }

  .commercial-hero .hero-media {
    min-height: 0;
  }

  .commercial-hero .hero-card img {
    object-position: 58% 50%;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-copy p:not(.eyebrow) {
    margin-left: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .button {
    flex: 1 1 160px;
  }

  .intro-grid,
  .reel,
  .cookie-policy,
  .target-list,
  .strategy-grid,
  .impact-grid,
  .price-grid,
  .revenue-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .strategy-grid article,
  .impact-grid article,
  .price-card,
  .target-list article,
  .revenue-grid article {
    min-height: auto;
  }

  .event-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .edible-grid img {
    min-height: auto;
  }

  .surprise-band figure {
    min-height: 320px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .footer-services {
    justify-content: flex-start;
  }

  .footer-services span {
    text-align: left;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
    width: auto;
  }

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

  .live-feature {
    min-height: auto;
  }

  .live-feature > img {
    min-height: 520px;
  }

  .live-feature::after {
    background: linear-gradient(180deg, rgba(34, 25, 21, 0.18), rgba(34, 25, 21, 0.86));
  }
}

@media (max-width: 430px) {
  .hero-copy,
  .section {
    width: min(100% - 28px, 1180px);
  }

  .visual-band {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 52px;
  }

  .commercial-hero h1 {
    font-size: 44px;
  }

  .commercial-hero .hero-media {
    min-height: 0;
  }
}
