:root {
  color-scheme: light;
  --black: #070707;
  --ink: #302e2c;
  --muted: #7a7572;
  --paper: #fbf5f1;
  --paper-low: #f6f0eb;
  --paper-high: #ede7e2;
  --coral: #ffd0c7;
  --coral-soft: #ffe2dc;
  --red: #aa2c32;
  --red-hot: #ff7574;
  --pink: #ff1e93;
  --purple: #8e28ff;
  --lime: #dfff00;
  --teal: #0f7b8a;
  --white: #ffffff;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(48, 46, 44, 0.14);
  --shadow-hot: 0 18px 48px rgba(255, 30, 147, 0.24);
  --shadow-paper: 0 18px 46px rgba(170, 44, 50, 0.15);
  --max: 1160px;
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body.dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 30, 147, 0.38), rgba(142, 40, 255, 0.26) 42%, rgba(7, 7, 7, 0.92) 78%),
    url("/assets/images/roast-menu-background.png") center / cover fixed,
    var(--black);
}

body.paper {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(176, 106, 100, 0.08)),
    linear-gradient(45deg, rgba(192, 122, 116, 0.10) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(135deg, #ffddd6, #ffd0c7 46%, #ffe2dc);
  background-size: auto, 28px 28px, 28px 28px, auto;
}

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

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

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--black);
  background: var(--lime);
  font-weight: 900;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(7, 7, 7, 0.68);
  backdrop-filter: blur(18px);
}

.paper .site-header {
  border-bottom-color: var(--line-light);
  background: rgba(251, 245, 241, 0.80);
}

.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  min-height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 1000;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(255, 30, 147, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.paper .nav-links {
  color: rgba(48, 46, 44, 0.72);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--lime);
}

.paper .nav-links a:hover,
.paper .nav-links a[aria-current="page"] {
  color: var(--red);
}

.nav-cta,
.button-primary,
.button-secondary,
.button-quiet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 1000;
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease;
}

.nav-cta,
.button-primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--red), var(--red-hot));
  box-shadow: 0 14px 30px rgba(170, 44, 50, 0.32);
}

.nav-cta {
  min-height: 40px;
  padding: 0 16px;
}

.button-primary,
.button-secondary,
.button-quiet {
  padding: 0 20px;
}

.button-primary {
  min-width: 186px;
  height: 58px;
}

.button-secondary {
  min-width: 168px;
  height: 58px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
}

.paper .button-secondary {
  color: var(--red);
  border-color: rgba(170, 44, 50, 0.20);
  background: rgba(255, 255, 255, 0.58);
}

.button-quiet {
  height: 46px;
  color: var(--lime);
  background: transparent;
}

.button-primary:hover,
.button-secondary:hover,
.button-quiet:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button-primary:active,
.button-secondary:active,
.button-quiet:active,
.nav-cta:active {
  transform: scale(0.97);
  filter: brightness(0.92);
}

.hero {
  min-height: calc(100svh - 66px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(310px, 0.88fr);
  align-items: center;
  gap: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 1000;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 18px rgba(255, 30, 147, 0.8);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  font-weight: 1000;
}

h1 {
  max-width: 820px;
  font-size: 76px;
  text-shadow: 3px 3px 0 rgba(255, 30, 147, 0.66);
}

.paper h1 {
  color: var(--ink);
  text-shadow: none;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 22px;
  line-height: 1.08;
}

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

.hero-copy > p,
.section-lede,
.legal-lede,
.seo-lede {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.58;
}

.paper .hero-copy > p,
.paper .section-lede,
.paper .legal-lede,
.paper .seo-lede {
  color: var(--muted);
}

.hero-copy > p {
  margin-top: 18px;
  max-width: 610px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-chip,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.trust-chip {
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.28);
}

.tag {
  color: var(--black);
  background: var(--lime);
}

.hero-media {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.phone-frame {
  position: relative;
  width: min(360px, 82vw);
  aspect-ratio: 393 / 852;
  padding: 10px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 36px;
  background: rgba(0, 0, 0, 0.78);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.45), var(--shadow-hot);
  transform: rotate(2deg);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 96px;
  height: 24px;
  border-radius: 0 0 16px 16px;
  background: #050505;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.singer-stack {
  position: absolute;
  right: 0;
  bottom: 42px;
  display: grid;
  grid-template-columns: repeat(2, 86px);
  gap: 10px;
  transform: rotate(-4deg);
}

.singer-stack img {
  width: 86px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.media-badge {
  position: absolute;
  left: 0;
  top: 92px;
  display: inline-grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 8px;
  color: var(--black);
  background: url("/assets/images/roast-menu-row-hot.png") center / cover;
  box-shadow: var(--shadow-hot);
  font-size: 16px;
  font-weight: 1000;
  text-align: center;
  transform: rotate(-8deg);
}

.section {
  padding: 78px 0;
}

.section.paper-band {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(176, 106, 100, 0.07)),
    linear-gradient(45deg, rgba(192, 122, 116, 0.10) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(135deg, #ffddd6, #ffd0c7 48%, #ffe2dc);
  background-size: auto, 28px 28px, 28px 28px, auto;
}

.section.black-band {
  color: var(--white);
  background: rgba(7, 7, 7, 0.86);
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-lede {
  max-width: 560px;
}

.paper-band .section-lede {
  color: var(--muted);
}

.feature-grid,
.style-grid,
.seo-grid,
.steps-grid,
.proof-grid {
  display: grid;
  gap: 16px;
}

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

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

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

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

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

.feature-card,
.style-card,
.seo-card,
.step-card,
.proof-card,
.legal-card,
.contact-panel,
.faq details {
  border-radius: 8px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.paper-band .feature-card,
.paper-band .style-card,
.paper-band .seo-card,
.paper-band .step-card,
.paper-band .proof-card,
.paper .legal-card,
.paper .contact-panel,
.paper .faq details {
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-paper);
}

.feature-card,
.seo-card,
.step-card,
.proof-card,
.legal-card,
.contact-panel {
  padding: 22px;
}

.feature-card p,
.seo-card p,
.step-card p,
.proof-card p,
.legal-card p,
.contact-panel p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.52;
}

.paper-band .feature-card p,
.paper-band .seo-card p,
.paper-band .step-card p,
.paper-band .proof-card p,
.paper .legal-card p,
.paper .contact-panel p {
  color: var(--muted);
}

.icon-tile {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: var(--black);
  background: var(--lime);
  font-size: 22px;
  font-weight: 1000;
}

.style-card {
  min-height: 132px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.style-card strong {
  font-size: 20px;
}

.style-card span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 800;
}

.paper-band .style-card span {
  color: var(--muted);
}

.pink {
  color: var(--pink);
}

.lime {
  color: var(--lime);
}

.red {
  color: var(--red);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 46px;
  align-items: center;
}

.poster-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.poster-strip img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.quote-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.quote {
  padding: 20px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
}

.quote p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.quote strong {
  display: block;
  margin-top: 14px;
  color: var(--lime);
}

.conversion-hero {
  padding: 72px 0 46px;
}

.conversion-hero .hero-grid {
  min-height: auto;
  padding: 0;
}

.conversion-panel {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 7, 7, 0.58);
  box-shadow: var(--shadow-hot);
}

.conversion-panel h2 {
  font-size: 30px;
  line-height: 1.05;
}

.conversion-panel ul,
.legal-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.conversion-panel li,
.legal-card li {
  position: relative;
  margin-top: 12px;
  padding-left: 26px;
  line-height: 1.42;
}

.conversion-panel li::before,
.legal-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 16px rgba(223, 255, 0, 0.48);
}

.landing-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.legal-main {
  padding: 58px 0 86px;
}

.legal-hero {
  max-width: 800px;
  margin-bottom: 30px;
}

.legal-hero h1 {
  font-size: 56px;
}

.legal-lede {
  margin-top: 16px;
}

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

.legal-card h2 {
  font-size: 30px;
  line-height: 1.08;
}

.legal-card a,
.contact-panel a {
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.45fr);
  gap: 20px;
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line-light);
}

.contact-method:first-of-type {
  border-top: 0;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 1000;
}

.faq p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.54;
}

.paper .faq p {
  color: var(--muted);
}

.site-footer {
  color: rgba(255, 255, 255, 0.66);
  border-top: 1px solid var(--line-dark);
  background: rgba(0, 0, 0, 0.60);
}

.paper .site-footer {
  color: var(--muted);
  border-top-color: var(--line-light);
  background: rgba(251, 245, 241, 0.75);
}

.footer-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.footer-shell nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-left: auto;
  font-weight: 800;
}

.footer-shell a:hover {
  color: var(--lime);
}

.paper .footer-shell a:hover {
  color: var(--red);
}

.fine-print {
  font-size: 13px;
}

@media (max-width: 980px) {
  .nav-shell {
    min-height: auto;
    padding: 12px 0;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-cta {
    margin-left: auto;
  }

  .hero-grid,
  .conversion-hero .hero-grid,
  .split,
  .section-head,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-media {
    min-height: 500px;
  }

  .feature-grid,
  .seo-grid,
  .steps-grid,
  .quote-row {
    grid-template-columns: 1fr;
  }

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

  .footer-shell nav {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .container,
  .hero-grid,
  .footer-shell {
    width: min(100% - 24px, var(--max));
  }

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .nav-links {
    gap: 14px;
    font-size: 13px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 38px;
    gap: 28px;
  }

  h1 {
    font-size: 43px;
  }

  .legal-hero h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-copy > p,
  .section-lede,
  .legal-lede,
  .seo-lede {
    font-size: 16px;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .hero-media {
    min-height: 430px;
  }

  .phone-frame {
    width: min(290px, 82vw);
    border-radius: 30px;
  }

  .phone-frame img {
    border-radius: 22px;
  }

  .media-badge {
    top: 28px;
    width: 88px;
    height: 88px;
    font-size: 13px;
  }

  .singer-stack {
    right: 2px;
    bottom: 18px;
    grid-template-columns: repeat(2, 70px);
    gap: 8px;
  }

  .singer-stack img {
    width: 70px;
  }

  .section {
    padding: 58px 0;
  }

  .style-grid,
  .proof-grid,
  .poster-strip {
    grid-template-columns: 1fr;
  }
}
