:root {
  --bg: #ffffff;
  --bg-soft: #faf6f0;
  --bg-section: #f3ece1;
  --ink: #1a1614;
  --ink-soft: #4a423b;
  --muted: #8a8378;
  --accent: #c89968;
  --accent-dark: #a67d4f;
  --accent-soft: #f3e3cc;
  --gold: #d4a574;
  --line: #ece4d6;
  --shadow: 0 4px 18px rgba(26, 22, 20, 0.05);
  --shadow-md: 0 8px 28px rgba(26, 22, 20, 0.07);
  --shadow-lg: 0 24px 60px rgba(26, 22, 20, 0.12);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --max: 1180px;
  --max-narrow: 880px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.1;
}

h1 { font-size: clamp(2.1rem, 7vw, 4rem); }
h2 { font-size: clamp(1.7rem, 5vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.35rem); font-weight: 700; line-height: 1.25; }
h4 { font-size: 1rem; font-weight: 700; }

p { color: var(--ink-soft); }

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

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.container-narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ----- Nav ----- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: var(--max);
  margin: 0 auto;
  gap: 16px;
}
.brand {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.brand span { color: var(--accent); }
.nav-links { display: none; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.94rem;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover { color: var(--accent); }
.nav-toggle {
  background: none;
  border: 1px solid var(--line);
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--ink);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 20px 22px;
  gap: 4px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 4px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.mobile-menu a:last-child { border-bottom: none; }

@media (min-width: 820px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .2s ease, background .15s ease;
  font-family: inherit;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: #fff; }
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(200, 153, 104, 0.35);
}
.btn-accent:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
  box-shadow: 0 10px 28px rgba(166, 125, 79, 0.45);
}
.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 0.92rem; }

/* ----- Hero ----- */
.hero {
  padding: 48px 0 56px;
  text-align: center;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(212,165,116,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(243,227,204,0.45) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero .eyebrow {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  margin-bottom: 22px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent-dark);
  font-weight: 800;
}
.hero .sub {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 32px;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
@media (min-width: 540px) {
  .hero-ctas { flex-direction: row; }
}
.hero .trust {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}
.stars {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 1.05rem;
  letter-spacing: 2px;
}
.stars-meta {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  margin-left: 4px;
}

@media (min-width: 720px) {
  .hero { padding: 72px 0 88px; }
}
@media (min-width: 1024px) {
  .hero { padding: 96px 0 110px; }
}

/* ----- Social proof bar ----- */
.proof {
  padding: 28px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.proof-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
.proof-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.proof-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px 36px;
  color: var(--ink-soft);
  opacity: 0.7;
}
.proof-logos span {
  font-family: 'Inter', serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
@media (min-width: 720px) {
  .proof-logos span { font-size: 1.1rem; }
  .proof-logos { gap: 24px 48px; }
}

/* ----- Sections ----- */
.section { padding: 64px 0; }
.section-tight { padding: 48px 0; }
.section-alt { background: var(--bg-soft); }
.section-dark { background: var(--bg-section); }
@media (min-width: 720px) {
  .section { padding: 88px 0; }
  .section-tight { padding: 64px 0; }
}

.section-head {
  text-align: center;
  margin-bottom: 44px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.section-head .eyebrow {
  font-size: 0.78rem;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: 14px;
  display: inline-block;
}
.section-head h2 { margin-bottom: 14px; }
.section-head p { font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* ----- Product grid ----- */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.product-tile {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tile-visual {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  font-size: 3.4rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.tile-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.15) 100%);
}
.tile-visual span { position: relative; z-index: 1; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25)); }
.v-1 { background: linear-gradient(135deg, #c89968 0%, #8b5a3c 100%); }
.v-2 { background: linear-gradient(135deg, #6b73a8 0%, #2c3458 100%); }
.v-3 { background: linear-gradient(135deg, #e4b8a0 0%, #b07d6e 100%); }
.v-4 { background: linear-gradient(135deg, #a8956b 0%, #5d4f30 100%); }
.v-5 { background: linear-gradient(135deg, #4a6e8a 0%, #2a4358 100%); }
.v-6 { background: linear-gradient(135deg, #b88a6f 0%, #6e4f3a 100%); }
.tile-body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tile-body h3 { margin-bottom: 8px; }
.tile-body p {
  font-size: 0.95rem;
  margin-bottom: 18px;
  flex: 1;
}
.tile-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}
.tile-meta .price { color: var(--ink); font-weight: 700; }
.tile-meta .from { color: var(--muted); }
.tile-body .btn { width: 100%; }

/* ----- Feature grid (home: two built experiences) ----- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

.feature-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.feature-visual {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  font-size: 5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.feature-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.18) 100%);
}
.feature-visual span { position: relative; z-index: 1; filter: drop-shadow(0 6px 16px rgba(0,0,0,0.3)); }

.feature-body {
  padding: 32px 30px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 14px;
}
.feature-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 5px 11px;
  border-radius: 999px;
  align-self: flex-start;
}
.feature-body h3 {
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  margin: 2px 0 4px;
}
.feature-lead {
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 8px;
  display: grid;
  gap: 10px;
}
.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.feature-list .dot {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 1px;
}
.feature-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.feature-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.feature-price .from {
  color: var(--muted);
  font-size: 0.85rem;
}
.feature-price .price {
  color: var(--ink);
  font-weight: 800;
  font-size: 1.5rem;
}
.more-soon {
  text-align: center;
  margin-top: 36px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ----- Steps ----- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }

.step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow);
}
.step .num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 18px;
  box-shadow: 0 8px 22px rgba(200,153,104,0.35);
}
.step h3 { margin-bottom: 10px; font-size: 1.18rem; }
.step p { font-size: 0.96rem; }

/* ----- Testimonials ----- */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 760px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }

.tcard {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.tcard .stars { margin-bottom: 14px; }
.tcard .quote {
  font-size: 1.02rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 18px;
  flex: 1;
}
.tcard .author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tcard .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}
.tcard .author strong { display: block; font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.tcard .author span { font-size: 0.85rem; color: var(--muted); }

/* ----- Promises ----- */
.promises {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}
@media (min-width: 720px) { .promises { grid-template-columns: repeat(2, 1fr); } }

.promise {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.promise .check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.promise strong { display: block; margin-bottom: 4px; color: var(--ink); font-weight: 600; }
.promise span { color: var(--ink-soft); font-size: 0.94rem; }

/* ----- FAQ ----- */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq details {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 20px 24px;
  transition: box-shadow .15s ease;
}
.faq details[open] { box-shadow: var(--shadow); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 400;
  transition: transform .2s;
  line-height: 1;
}
.faq details[open] summary::after { content: '−'; }
.faq details p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

/* ----- Final CTA ----- */
.final-cta {
  background: linear-gradient(135deg, #1a1614 0%, #3a2a1f 100%);
  color: #fff;
  text-align: center;
  padding: 72px 0;
  border-radius: 0;
}
.final-cta h2 { color: #fff; margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,0.78); max-width: 540px; margin: 0 auto 28px; font-size: 1.05rem; }
.final-cta .btn-accent { box-shadow: 0 10px 30px rgba(200,153,104,0.5); }
@media (min-width: 720px) { .final-cta { padding: 96px 0; } }

/* ----- Product detail (existing pages) ----- */
.product-hero { padding: 48px 0 24px; }
.product-hero .eyebrow {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.product-hero h1 { margin-bottom: 18px; max-width: 760px; }
.product-hero .lede {
  font-size: 1.1rem;
  max-width: 640px;
  margin-bottom: 8px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 24px;
}
@media (min-width: 960px) {
  .detail-grid { grid-template-columns: 1.4fr 1fr; gap: 56px; }
}
.detail-info > div + div { margin-top: 32px; }
.detail-info h3 { font-size: 1.15rem; margin-bottom: 12px; }
.detail-info ul { list-style: none; padding: 0; }
.detail-info ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--ink-soft);
}
.detail-info ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 96px;
  align-self: start;
}
.pricing-card .from {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pricing-card .price-big {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--ink);
  margin: 8px 0 20px;
  letter-spacing: -0.03em;
}
.pricing-card ul { list-style: none; margin-bottom: 22px; }
.pricing-card ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.96rem;
  border-bottom: 1px solid var(--line);
}
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

/* ----- Form ----- */
.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
}
@media (min-width: 720px) { .form-wrap { padding: 44px 40px; } }

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.field .hint {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="number"],
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(200, 153, 104, 0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input[type="file"] {
  display: block;
  width: 100%;
  padding: 16px;
  border: 1.5px dashed var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field-row .field { margin-bottom: 0; }

.checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 24px;
}
.checkbox input { margin-top: 4px; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--accent); }
.checkbox label { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; font-weight: 400; }

.form-section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin: 8px 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.order-summary {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.order-summary .label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 2px; }
.order-summary .selected { font-weight: 600; color: var(--ink); }
.order-summary .total {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.note {
  background: #fdf8f0;
  border: 1px solid var(--accent-soft);
  color: var(--ink-soft);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.92rem;
  margin-bottom: 22px;
}

/* ----- Thank you ----- */
.thanks {
  text-align: center;
  padding: 100px 20px 120px;
}
.thanks .heart {
  font-size: 3rem;
  margin-bottom: 18px;
  display: inline-block;
}
.thanks h1 { margin-bottom: 18px; }
.thanks p {
  max-width: 520px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
}

/* ----- Legal pages ----- */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}
.legal h1 { margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: 0.92rem; margin-bottom: 36px; }
.legal h2 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
}
.legal p { margin-bottom: 14px; }
.legal ul { margin: 12px 0 14px 20px; }
.legal li { color: var(--ink-soft); margin-bottom: 6px; }

/* ----- Footer ----- */
footer {
  background: var(--ink);
  color: #c9c0b3;
  padding: 64px 0 40px;
  margin-top: 0;
}
footer .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 760px) {
  footer .container { grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; }
}
footer .brand-block .brand { color: #fff; font-size: 1.5rem; }
footer .brand-block .brand span { color: var(--accent); }
footer .brand-block p { color: #aea597; margin-top: 14px; font-size: 0.96rem; max-width: 320px; }
footer h4 {
  font-family: 'Inter', sans-serif;
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  font-weight: 700;
}
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 10px; }
footer ul a {
  color: #aea597;
  transition: color .15s;
  font-size: 0.94rem;
}
footer ul a:hover { color: var(--accent); }
footer .bottom {
  border-top: 1px solid #2e2820;
  margin-top: 44px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.86rem;
  color: #7a705f;
}

/* ----- Misc ----- */
.center { text-align: center; }
.crumb {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 18px 0 6px;
}
.crumb a { font-weight: 500; }
.crumb a:hover { color: var(--accent); }
