:root {
  /* Brand palette sampled from the SNS Stores logo */
  --red: #e11007;
  --red-bright: #ff0f02;
  --red-dark: #b00c04;
  --red-deep: #8a0903;
  --gold: #f1cb76;
  --gold-dark: #a0741f;

  --ink: #1f1a19;
  --body: #5b5250;
  --muted: #8b807d;
  --line: #ece4e2;
  --surface: #fdf8f7;
  --white: #ffffff;

  --radius: 14px;
  --shadow: 0 1px 2px rgba(60, 20, 16, 0.04), 0 8px 24px rgba(60, 20, 16, 0.07);
  --wrap: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 0.6em;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); }
h3 { font-size: 1.125rem; }

p { margin: 0 0 1.1em; }

a { color: var(--red); }
a:hover { text-decoration: underline; }

img { max-width: 100%; }

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

.section { padding: 88px 0; }
.section--tint { background: var(--surface); border-block: 1px solid var(--line); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.lede { font-size: 1.075rem; max-width: 62ch; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }

.brand__mark {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.94rem;
  font-weight: 500;
}
.nav__links a { color: var(--body); text-decoration: none; }
.nav__links a:hover { color: var(--red); }

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 650;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn--primary { background: var(--red); color: var(--white); }
.btn--primary:hover { background: var(--red-dark); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--red); color: var(--red); }

.btn--light { background: var(--white); color: var(--red); }
.btn--light:hover { background: #fff1ef; }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.14); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 420px at 84% -8%, rgba(241, 203, 118, 0.28), transparent 60%),
    linear-gradient(158deg, var(--red-bright) 0%, var(--red) 52%, var(--red-deep) 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 96px 0 84px;
}

.hero h1 { color: var(--white); max-width: 16ch; }
.hero .lede { color: rgba(255, 255, 255, 0.88); font-size: 1.14rem; }
.hero .eyebrow { color: var(--gold); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.stat__value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.stat__label { font-size: 0.86rem; color: rgba(255, 255, 255, 0.75); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 22px; margin-top: 44px; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(225, 16, 7, 0.08);
  color: var(--red);
  margin-bottom: 16px;
}
.card__icon svg { width: 22px; height: 22px; }

.card p:last-child { margin-bottom: 0; }

/* ---------- Split ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist svg {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--red);
}
.checklist strong { color: var(--ink); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.contact-card h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 10px;
}
.contact-card p { margin: 0; color: var(--ink); font-weight: 550; }
.contact-card p + p { margin-top: 4px; }
.contact-card .sub { color: var(--body); font-weight: 400; font-size: 0.93rem; }

/* ---------- CTA band ---------- */
.cta {
  background:
    radial-gradient(700px 320px at 15% 0%, rgba(241, 203, 118, 0.22), transparent 60%),
    linear-gradient(135deg, var(--red-deep), var(--red));
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 72px 0;
}
.cta h2 { color: var(--white); }
.cta .lede { margin-inline: auto; color: rgba(255, 255, 255, 0.88); }
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.64);
  padding: 56px 0 32px;
  font-size: 0.93rem;
}
.site-footer a { color: rgba(255, 255, 255, 0.84); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-grid h4 {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.site-footer .brand { color: var(--white); margin-bottom: 14px; }

.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.87rem;
}

/* ---------- Legal pages ---------- */
.legal { padding: 64px 0 88px; }
.legal .wrap { max-width: 760px; }
.legal h2 { font-size: 1.35rem; margin-top: 40px; }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: 0.92rem; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
}

@media (max-width: 620px) {
  .nav__links { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 64px 0 56px; }
  .hero__stats { margin-top: 40px; }
}
