:root {
  color-scheme: light dark;
  --paper: #f7f1df;
  --paper-deep: #eee5cc;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #fffdf8;
  --ink: #181714;
  --muted: #68645b;
  --accent: #d7494c;
  --accent-dark: #b83237;
  --moss: #2f6b52;
  --line: rgba(24, 23, 20, 0.12);
  --shadow: 0 18px 60px rgba(73, 56, 31, 0.10);
  --radius: 26px;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 74px, rgba(124, 103, 65, 0.045) 75px, transparent 76px),
    var(--paper);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  transition: top .2s ease;
}

.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--max));
  margin: 16px auto 0;
  padding: 10px 12px 10px 10px;
  border: 1px solid rgba(255,255,255,.66);
  border-radius: 22px;
  background: rgba(250, 246, 235, 0.82);
  box-shadow: 0 8px 30px rgba(73, 56, 31, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}

.brand span { display: grid; line-height: 1.05; }
.brand strong { letter-spacing: .03em; }
.brand small { margin-top: 4px; color: var(--muted); font-size: .72rem; }

nav { display: flex; gap: 4px; }
nav a {
  padding: 9px 13px;
  border-radius: 13px;
  text-decoration: none;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 650;
}
nav a:hover, nav a:focus-visible, nav a[aria-current="page"] {
  background: var(--surface-solid);
  color: var(--accent-dark);
}

main { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }

.hero {
  padding: clamp(72px, 11vw, 138px) 0 64px;
  max-width: 880px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1, h2, h3 { margin-top: 0; letter-spacing: -.035em; line-height: 1.08; }
h1 { margin-bottom: 22px; font-size: clamp(3rem, 9vw, 7.4rem); }
h2 { margin-bottom: 16px; font-size: clamp(2rem, 5vw, 3.7rem); }
h3 { margin-bottom: 12px; font-size: 1.35rem; }

.hero-copy {
  max-width: 730px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 750;
  transition: transform .15s ease, background .15s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--accent); color: white; box-shadow: 0 10px 26px rgba(215,73,76,.25); }
.button.primary:hover { background: var(--accent-dark); }
.button.secondary { background: var(--surface-solid); border: 1px solid var(--line); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-strip div { display: grid; grid-template-columns: auto 1fr; padding: 20px; background: var(--surface-solid); }
.trust-strip strong { font-size: .98rem; }
.trust-strip small { grid-column: 2; color: var(--muted); }
.status-dot { width: 10px; height: 10px; margin: 6px 10px 0 0; border-radius: 999px; background: #39a56c; box-shadow: 0 0 0 5px rgba(57,165,108,.12); }

.section { padding: 108px 0 0; }
.section-heading { max-width: 700px; margin-bottom: 34px; }
.narrow { max-width: 850px; margin-inline: auto; }

.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.card {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(255,255,255,.78);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.card p, .card li { color: var(--muted); }
.card ol { padding-left: 1.25rem; margin-bottom: 0; }
.card li + li { margin-top: 8px; }
.icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 28px; border-radius: 14px; color: var(--accent-dark); background: rgba(215,73,76,.12); font-size: 1.35rem; font-weight: 800; }

.faq-list { border-block: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary { cursor: pointer; list-style: none; padding: 23px 46px 23px 0; font-size: 1.12rem; font-weight: 750; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 8px; color: var(--accent); font-size: 1.5rem; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p { margin: -5px 46px 24px 0; color: var(--muted); }

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 110px;
  padding: clamp(30px, 6vw, 60px);
  border-radius: calc(var(--radius) + 6px);
  background: var(--ink);
  color: white;
}
.contact-panel h2 { margin-bottom: 12px; }
.contact-panel p { max-width: 690px; margin: 0; color: rgba(255,255,255,.7); }
.contact-panel .eyebrow { color: #ff9294; }

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  width: min(calc(100% - 32px), var(--max));
  margin: 80px auto 0;
  padding: 26px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .88rem;
}
footer a { margin-left: auto; }

.policy-page { max-width: 940px; }
.policy-hero { padding: clamp(72px, 11vw, 130px) 0 50px; }
.policy-hero h1 { max-width: 850px; font-size: clamp(3rem, 8vw, 6rem); }
.policy-hero > p { max-width: 760px; color: var(--muted); font-size: 1.2rem; }
.policy-hero .updated { margin-top: 26px; font-size: .9rem; }

.privacy-summary { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 70px; }
.privacy-summary div { display: grid; gap: 4px; padding: 22px; border-radius: 20px; background: rgba(47,107,82,.10); border: 1px solid rgba(47,107,82,.16); }
.privacy-summary strong { color: var(--moss); }
.privacy-summary span { color: var(--muted); font-size: .92rem; }

.policy-content { max-width: 760px; margin-inline: auto; }
.policy-content h2 { margin: 58px 0 14px; font-size: 1.65rem; }
.policy-content p { color: var(--muted); font-size: 1.04rem; }
.policy-content strong { color: var(--ink); }
.policy-content a { color: var(--accent-dark); }
.contact-link { display: inline-block; padding: 12px 16px; border-radius: 14px; background: rgba(215,73,76,.1); font-weight: 750; }

:focus-visible { outline: 3px solid rgba(215,73,76,.5); outline-offset: 3px; }

@media (max-width: 720px) {
  .site-header { margin-top: 8px; width: min(calc(100% - 16px), var(--max)); }
  .brand small { display: none; }
  nav a { padding: 8px 10px; }
  main { width: min(calc(100% - 28px), var(--max)); }
  .hero { padding-top: 70px; }
  .trust-strip, .card-grid, .privacy-summary { grid-template-columns: 1fr; }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-panel .button { width: 100%; overflow-wrap: anywhere; }
  footer a { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #191816;
    --paper-deep: #22201d;
    --surface: rgba(42, 40, 36, .88);
    --surface-solid: #2b2925;
    --ink: #f6f1e8;
    --muted: #b9b2a7;
    --accent: #e25659;
    --accent-dark: #ff8588;
    --moss: #72c69f;
    --line: rgba(255,255,255,.11);
    --shadow: 0 18px 60px rgba(0,0,0,.24);
  }
  body { background: repeating-linear-gradient(90deg, transparent 0, transparent 74px, rgba(255,255,255,.025) 75px, transparent 76px), var(--paper); }
  .site-header { background: rgba(28, 27, 24, .82); border-color: rgba(255,255,255,.08); }
  .button.primary { color: white; }
  .contact-panel { background: #0d0d0c; }
}
