:root {
  --bg: #FBF7F2;
  --paper: #FFFFFF;
  --ink: #2B2118;
  --muted: #7A6A5C;
  --line: #EADFD3;
  --accent: #C97B49;
  --accent-deep: #9A5528;
  --accent-soft: #F6E7DB;
  --serif: "New York", ui-serif, Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --shadow: 0 18px 40px rgba(64, 38, 18, .12);
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #17120E; --paper: #211A14; --ink: #F3ECE4; --muted: #B3A393; --line: #362B21;
    --accent: #E0925F; --accent-deep: #F0AE80; --accent-soft: #3A2718; --shadow: 0 18px 40px rgba(0, 0, 0, .45);
  }
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 17px/1.6 var(--sans); -webkit-font-smoothing: antialiased; overflow-x: clip; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-deep); }
h1, h2, h3 { font-family: var(--serif); line-height: 1.15; margin: 0; text-wrap: balance; }
.wrap { width: min(1100px, 100% - 32px); margin: 0 auto; }

/* nav */
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 10px; font: 700 20px var(--serif); color: var(--ink); text-decoration: none; }
.brand img { width: 36px; height: 36px; border-radius: 9px; box-shadow: 0 4px 12px rgba(64, 38, 18, .18); }
.nav nav { display: flex; gap: 6px 16px; flex-wrap: wrap; align-items: center; font-size: 15px; }
.nav nav a { color: var(--muted); text-decoration: none; }
.nav nav a:hover, .nav nav a[aria-current] { color: var(--ink); }
.nav nav a.lang { border: 1px solid var(--line); border-radius: 999px; padding: 4px 12px; color: var(--ink); }

/* hero */
.hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; padding: 40px 0 72px; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 700; color: var(--accent); margin: 0 0 14px; }
.hero h1 { font-size: clamp(38px, 6vw, 64px); letter-spacing: -.01em; }
.lead { font-size: clamp(18px, 2.2vw, 21px); color: var(--muted); max-width: 34ch; margin: 20px 0 28px; }
.hero-art { position: relative; justify-self: center; }
.hero-art .phone { width: min(300px, 70vw); border-radius: 38px; box-shadow: var(--shadow); border: 8px solid #1d1611; }
.hero-art .appicon { position: absolute; width: 104px; height: 104px; left: -44px; top: 36px; border-radius: 24px; box-shadow: var(--shadow); }

/* badge */
.badge { display: inline-flex; align-items: center; gap: 10px; background: var(--ink); color: var(--bg); text-decoration: none; padding: 12px 20px; border-radius: 14px; font-weight: 600; }
.badge.soon { background: var(--accent-soft); color: var(--accent-deep); }

/* blocks */
.block { padding: 56px 0; border-top: 1px solid var(--line); }
.block h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 28px; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: 20px; padding: 24px; }
.card .emoji { font-size: 30px; margin-bottom: 10px; }
.card h3 { font-size: 21px; margin-bottom: 8px; }
.card p { margin: 0; color: var(--muted); font-size: 16px; }
.shots { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.shots figure { margin: 0; }
.shots img { border-radius: 26px; box-shadow: var(--shadow); border: 6px solid #1d1611; }
.shots figcaption { text-align: center; color: var(--muted); font-size: 14px; margin-top: 12px; }
.band { background: var(--accent-soft); border-radius: 28px; padding: 40px; border: 0; margin: 24px auto; }
.band h2 { margin-bottom: 12px; }
.band p { margin: 0; max-width: 62ch; }
.cta { text-align: center; display: grid; justify-items: center; gap: 12px; }
.cta img { width: 96px; height: 96px; border-radius: 22px; box-shadow: var(--shadow); }
.cta h2 { margin: 8px 0 0; }
.cta p { color: var(--muted); margin: 0 0 8px; }

/* documents */
.doc { max-width: 760px; padding: 24px 0 64px; }
.doc h1 { font-size: clamp(34px, 5vw, 48px); margin: 16px 0 8px; }
.doc .meta { color: var(--muted); font-size: 14px; margin: 0 0 24px; }
.doc section { padding: 18px 0; border-top: 1px solid var(--line); }
.doc h2 { font-size: 22px; margin-bottom: 8px; }
.doc p, .doc li { color: var(--ink); }
.doc ul { padding-left: 22px; }

/* footer */
.foot { border-top: 1px solid var(--line); padding: 28px 0 40px; color: var(--muted); font-size: 14px; }
.foot p { margin: 4px 0; }
.foot a { color: var(--muted); }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 16px; text-align: left; }
  .hero-art .appicon { left: -16px; width: 84px; height: 84px; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shots { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .band { padding: 28px 20px; }
  .nav nav { font-size: 14px; }
}
