:root {
  --ink: #2B2620;
  --cream: #FAF7F2;
  --surface: #F0E7D8;
  --border: #E7DDCF;
  --gold: #9A7B4F;
  --gold-light: #C9A876;
  --text-secondary: #7A6F5E;
  --white: #FFFFFF;
  --success: #1FAA59;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.3px;
  color: var(--ink);
}

.brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.brand .light {
  font-weight: 400;
  color: var(--text-secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  position: relative;
  padding-bottom: 2px;
  transition: color 200ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--gold);
  transition: right 200ms ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  right: 0;
}

.nav-cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 200ms ease, background 200ms ease;
}

.nav-cta:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  color: var(--ink);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-top: 1px solid var(--border);
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: var(--surface);
}

/* Hero */

.hero {
  padding: 88px 0 72px;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
}

h1 {
  font-size: 56px;
  line-height: 1.05;
  font-weight: 800;
  margin: 0 0 22px;
  text-wrap: balance;
}

.hero p.lead {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 0 36px;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(43, 38, 32, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
}

.pill-note {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 600;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual .disc {
  width: 86%;
  height: 86%;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--surface), var(--cream) 70%);
  border: 1px solid var(--border);
  position: relative;
}

.hero-visual .disc::before,
.hero-visual .disc::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--gold-light);
  opacity: 0.35;
}

.hero-visual .disc::before {
  width: 46%;
  height: 46%;
  top: 16%;
  left: 12%;
}

.hero-visual .disc::after {
  width: 22%;
  height: 22%;
  top: 24%;
  left: 20%;
}

.order-card {
  position: absolute;
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
  width: 82%;
  max-width: 300px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 24px 48px -24px rgba(43, 38, 32, 0.35);
}

.order-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.order-card-shop {
  display: flex;
  align-items: center;
  gap: 10px;
}

.order-card-shop img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--surface);
  padding: 5px;
  flex-shrink: 0;
}

.order-card-name {
  font-size: 13.5px;
  font-weight: 800;
}

.order-card-item {
  font-size: 12.5px;
  color: var(--text-secondary);
}

.order-status {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--success);
  background: rgba(31, 170, 89, 0.12);
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.order-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}

.order-price {
  font-weight: 800;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}

.order-paid {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
}

/* Sections */

section {
  padding: 88px 0;
}

.section-alt {
  background: var(--surface);
}

.section-head {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head .eyebrow {
  justify-content: center;
  width: 100%;
}

h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 14px;
  text-wrap: balance;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 17px;
  margin: 0;
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-light);
  box-shadow: 0 20px 40px -28px rgba(43, 38, 32, 0.4);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 8px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 14.5px;
  margin: 0;
}

/* Split (for cafés) */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split h2 {
  text-align: left;
}

.split .section-head {
  text-align: left;
  margin: 0 0 24px;
}

.split .section-head .eyebrow {
  justify-content: flex-start;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
}

.check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--success);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 2px;
}

.mock-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  text-align: center;
}

.mock-card .disc {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--surface);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-card .disc img {
  width: 60%;
}

.mock-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
}

.mock-card p {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0 0 20px;
}

/* Download */

.download-band {
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.download-band h2 {
  color: var(--white);
}

.download-band p {
  color: rgba(255,255,255,0.65);
}

.download-band .btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.download-band .btn-primary {
  background: var(--white);
  color: var(--ink);
}

.download-band .btn-primary:hover {
  background: var(--gold-light);
}

.btn-disabled {
  cursor: default;
  opacity: 0.55;
}

.btn-disabled:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border);
  color: var(--ink);
}

/* Footer */

footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Legal pages */

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.legal-content h1 {
  font-size: 34px;
}

.legal-content .updated {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 20px;
  margin-top: 40px;
}

.legal-content p,
.legal-content li {
  font-size: 15px;
  color: #4a443c;
}

.legal-content ul {
  padding-left: 20px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  margin-bottom: 32px;
}

/* Responsive */

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero .wrap, .split { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-visual { max-width: 260px; }
  .order-card { padding: 14px 16px; }
  h1 { font-size: 38px; }
  h2 { font-size: 28px; }
  .steps { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .hero { padding: 48px 0 56px; }
}
