:root {
  --bg: #fbf7f4;
  --surface: #ffffff;
  --surface-soft: #f5efea;
  --text: #231815;
  --muted: #6f625d;
  --line: #eaded8;
  --accent: #5a3b2e;
  --accent-2: #a67c6f;
  --shadow: 0 18px 40px rgba(83, 39, 28, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fffaf8 0%, #fffdfc 100%);
}
a { color: inherit; text-decoration: none; }
.text-link { color: var(--accent); font-weight: 700; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255,250,248,.84);
  border-bottom: 1px solid rgba(234,222,216,.7);
}
.nav { display:flex; justify-content:space-between; align-items:center; padding: 16px 0; gap: 24px; }
.nav nav { display:flex; gap: 18px; flex-wrap: wrap; }
.brand { font-weight: 800; letter-spacing: .02em; }
.brand-lockup { display:flex; align-items:center; gap: 12px; }
.brand-lockup img { width: 42px; height: 42px; object-fit: cover; border-radius: 12px; border: 1px solid var(--line); }
.hero { padding: 88px 0 56px; }
.hero-grid { display:grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: center; }
.compact-hero-grid { grid-template-columns: .9fr 1.1fr; }
.hero-showcase { display:grid; gap: 18px; }
.compact-showcase { order: 0; }
.hero-logo-card, .hero-note, .store-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.hero-logo-card { padding: 24px; }
.hero-logo-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 24px; }
.hero-cover-card { padding: 0; overflow: hidden; }
.hero-cover-card img { aspect-ratio: 4 / 5; border-radius: 28px; }
.short-copy { max-width: 44ch; }
.compact-trust-list { grid-template-columns: repeat(3, minmax(0,1fr)); }
.hero-note { padding: 22px; }
.hero-note strong { display:block; margin-bottom: 10px; font-size: 18px; }
.eyebrow, .section-tag { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
h1 { font-size: clamp(38px, 6vw, 64px); line-height: 1.02; margin: 10px 0 18px; max-width: 11ch; }
h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.1; margin: 8px 0 16px; }
h3 { margin: 0 0 10px; font-size: 22px; }
p { color: var(--muted); line-height: 1.75; margin: 0 0 14px; }
.small-note { font-size: 14px; color: var(--muted); margin-top: -6px; }
.hero-copy, .section-copy { max-width: 65ch; }
.hero-actions { display:flex; gap: 14px; flex-wrap:wrap; margin: 28px 0 20px; }
.btn {
  display:inline-flex; align-items:center; justify-content:center;
  padding: 14px 20px; border-radius: 999px; font-weight: 700;
  border: 1px solid var(--line);
}
.btn-primary { background: var(--accent); color: white; border-color: var(--accent); }
.btn-secondary { background: white; }
.trust-list { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; list-style:none; padding:0; margin:24px 0 0; }
.trust-list li, .card, .highlight-box, .step, .faq-list details, .product-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow);
}
.trust-list li { padding: 16px 18px; font-weight: 600; color: var(--text); }
.section { padding: 74px 0; }
.alt { background: rgba(166,124,111,.08); border-top: 1px solid rgba(234,222,216,.7); border-bottom: 1px solid rgba(234,222,216,.7); }
.cards.three, .steps, .footer-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.card, .step { padding: 24px; }
.split { display:grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: start; }
.highlight-box { padding: 26px; background: linear-gradient(180deg, #fff 0%, var(--surface-soft) 100%); }
.highlight-box ul { margin: 0; padding-left: 18px; color: var(--muted); line-height: 2; }
.store-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 22px; }
.store-card.large img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; border-radius: 28px; }
.store-card:not(.large) { padding: 24px; display:flex; align-items:center; }
.product-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; margin-top: 24px; }
.product-card { margin: 0; overflow: hidden; }
.product-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.product-card figcaption { padding: 14px 16px 18px; color: var(--text); font-weight: 600; }
.step span {
  width: 42px; height: 42px; border-radius: 50%; display:inline-flex; align-items:center; justify-content:center;
  background: #f6ebe7; color: var(--accent); font-weight: 800; margin-bottom: 16px;
}
.faq-list { display:grid; gap: 14px; }
.faq-list details { padding: 20px 22px; }
.faq-list summary { cursor:pointer; font-weight:700; }
.faq-list p { margin-top: 12px; }
.faq-wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.blog-kicker { display:inline-block; margin-bottom:10px; color: var(--accent); font-size: 12px; font-weight:700; text-transform: uppercase; letter-spacing: .12em; }
.site-footer { padding: 54px 0; background: #201614; color: #f7efec; }
.site-footer p, .site-footer a, .site-footer h4 { color: #e7d8d2; }
.site-footer h3, .site-footer h4 { margin-top: 0; color: white; }
.hero-clean .hero-grid.two-media { grid-template-columns: 1fr 1fr; }
.hero-dual { display: grid; grid-template-columns: 1fr; gap: 18px; }
.media-card { background: var(--surface); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); overflow: hidden; }
.logo-card { padding: 18px; display: flex; align-items: center; justify-content: center; }
.logo-card img { max-height: 220px; width: auto; object-fit: contain; }
.store-photo-card img { width: 100%; min-height: 260px; object-fit: cover; }
.video-card video { width: 100%; display: block; border-radius: 28px; background: #000; }
.elegant-page { background: linear-gradient(180deg, #f8f4f1 0%, #fffdfb 100%); }
.elegant-hero { padding-bottom: 28px; }
.elegant-hero-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 28px; align-items: center; }
.hero-copy-block { padding-right: 12px; }
.hero-feature-card { background: var(--surface); border: 1px solid var(--line); border-radius: 32px; box-shadow: var(--shadow); overflow: hidden; }
.hero-feature-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.wide-hero-card img { aspect-ratio: 16 / 10; }
.elegant-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 26px; }
.featured-wide { grid-column: span 2; }
.featured-wide img { aspect-ratio: 8 / 5; }
.info-page .info-hero-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 28px; align-items: center; }
.info-page .info-hero-copy { padding-right: 10px; }
@media (max-width: 900px) {
  .hero-grid, .split, .cards.three, .steps, .footer-grid, .trust-list, .store-grid, .product-grid, .hero-clean .hero-grid.two-media, .elegant-hero-grid, .elegant-grid, .faq-wide, .info-page .info-hero-grid { grid-template-columns: 1fr; }
  .nav { flex-direction: column; align-items: flex-start; }
  .hero { padding-top: 56px; }
  .store-card.large img { min-height: 260px; }
  .featured-wide { grid-column: auto; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { width: min(100% - 20px, 1120px); }
  .site-header { position: static; }
  .nav { gap: 10px; padding: 10px 0 8px; align-items: center; }
  .nav nav { gap: 6px 10px; font-size: 12px; justify-content: center; }
  .brand-lockup { width: 100%; justify-content: center; flex-direction: column; gap: 10px; }
  .brand-lockup span { font-size: 24px; font-weight: 800; text-align: center; }
  .brand-lockup img { width: 86px; height: 86px; border-radius: 22px; }
  .hero { padding: 12px 0 22px; }
  .compact-hero-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero-showcase { order: -1; }
  .hero-logo-card { max-width: none; margin: 0 auto; padding: 0; }
  .hero-cover-card { border-radius: 22px; max-width: 100%; }
  .hero-cover-card img { border-radius: 22px; aspect-ratio: 4 / 5; min-height: 340px; object-fit: cover; }
  .hero-note { text-align: center; }
  h1 { font-size: 31px; max-width: none; }
  h2 { font-size: 27px; }
  h3 { font-size: 20px; }
  .hero-copy, .section-copy, p { line-height: 1.65; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; margin: 20px 0 16px; }
  .btn { width: 100%; min-height: 52px; padding: 14px 18px; }
  .trust-list { gap: 10px; margin-top: 14px; }
  .compact-trust-list { grid-template-columns: 1fr; }
  .compact-trust-list li { text-align: center; padding: 12px 14px; }
  .trust-list li, .card, .highlight-box, .step, .faq-list details, .product-card, .hero-logo-card, .hero-note, .store-card, .media-card { border-radius: 18px; }
  .section { padding: 42px 0; }
  .hero-note, .card, .step, .highlight-box, .store-card:not(.large) { padding: 18px; }
  .product-grid, .cards.three, .steps, .footer-grid, .faq-wide { gap: 12px; }
  .product-card figcaption { padding: 12px 14px 16px; font-size: 14px; }
  .store-card.large img, .store-photo-card img { min-height: 220px; border-radius: 18px; }
  .section-tag, .eyebrow { font-size: 11px; letter-spacing: .10em; }
  .site-footer { padding: 34px 0; }
}
