:root {
  --navy: #0c1f3d;
  --navy-soft: #152a4a;
  --terra: #c45c26;
  --forest: #2f5d4a;
  --cream: #f7f1e8;
  --ink: #1c1916;
  --muted: #6b7a90;
  --white: #fff;
  --font: "DM Sans", system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --max: 1100px;
  --pad: clamp(1rem, 4vw, 1.25rem);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
html, body { overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font); color: var(--ink); background: var(--white); line-height: 1.65;
  min-height: 100dvh;
}
body.menu-open { overflow: hidden; }
.muted { color: var(--muted); }
img, svg, video { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.container { width: min(var(--max), calc(100% - 2 * var(--pad))); margin-inline: auto; }

.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12, 31, 61, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 92, 38, 0.25);
  padding-top: env(safe-area-inset-top);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  padding: 0.75rem 0;
}
.logo {
  display: inline-flex; align-items: center; gap: 0.55rem;
  color: #fff; font-weight: 700; letter-spacing: 0.03em; font-size: 0.92rem;
  min-width: 0;
}
.logo img, .logo-mark, .logo object {
  width: 36px; height: 36px; flex: none; border-radius: 50%; background: #f4eee4;
  pointer-events: none;
}
.logo .wordmark { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.intro {
  background: #efe4d0;
  padding: clamp(1.6rem, 4vw, 2.8rem) 0 clamp(2rem, 5vw, 3rem);
}
.intro-grid {
  display: grid;
  gap: 1.4rem 2rem;
  align-items: center;
}
.intro-mark {
  justify-self: center;
  width: min(200px, 46vw);
}
.intro-ant, .intro-ant svg {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  display: block;
  border-radius: 50%;
}
.intro-copy h1 {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0.4rem 0 0.85rem;
  color: #1a1714;
}
.intro-copy h1 em { font-style: italic; color: #9a3f14; }
.intro-lead {
  font-size: 1.08rem;
  color: #2c261f;
  max-width: 36rem;
  margin-bottom: 0.7rem;
}
.intro-body {
  color: #4d463c;
  max-width: 36rem;
  margin-bottom: 1.2rem;
}
.intro-cta { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.btn-quiet {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0.8rem 1.15rem; border-radius: 12px; font-weight: 700;
  color: #9a3f14; background: transparent;
}
.mini-cards {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.6rem;
}
.mini {
  background: rgba(255,252,247,.92);
  border: 1px solid rgba(154, 63, 20, 0.12);
  border-radius: 14px;
  padding: 0.85rem 1rem;
}
.mini h3 { font-size: 0.95rem; margin: 0 0 0.25rem; color: #1a1714; }
.mini p { margin: 0; font-size: 0.88rem; color: #4d463c; }
.logo b { color: #f0b27a; font-weight: 600; }
.nav { display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem 1rem; }
.nav a {
  color: #9fb0c7; font-size: 0.88rem; font-weight: 500;
  min-height: 40px; display: inline-flex; align-items: center;
}
.nav a:hover, .nav a:focus-visible { color: #f0b27a; }
.menu-btn {
  display: none; border: 0; background: none; color: #fff;
  width: 44px; height: 44px; font-size: 1.45rem; line-height: 1;
  flex: none; border-radius: 10px;
}

.hero {
  padding: clamp(2.2rem, 6vw, 4.2rem) 0 clamp(2rem, 5vw, 3.4rem);
  background:
    radial-gradient(ellipse 70% 55% at 78% 8%, rgba(196,92,38,.28), transparent),
    linear-gradient(165deg, var(--navy) 0%, #0a1830 55%, var(--navy-soft) 100%);
  color: #fff;
}
.hero-inner { display: grid; gap: 1.5rem; align-items: center; }
.hero-tag { font-size: 0.72rem; letter-spacing: 0.12em; color: #f0b27a; font-weight: 600; word-break: break-word; }
.hero h1 { font-family: var(--serif); font-size: clamp(1.85rem, 6vw, 3.4rem); font-weight: 400; line-height: 1.15; margin: 0.55rem 0 0.9rem; }
.hero h1 em { font-style: italic; color: #f4c7a0; }
.hero-desc { color: #c5d0dc; max-width: 38rem; font-size: 1rem; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 1.1rem 0 1.3rem; }
.hero-chips span { border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 0.28rem 0.7rem; font-size: 0.78rem; color: #d5deea; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0.8rem 1.15rem; border-radius: 12px; font-weight: 700;
}
.btn-primary { background: var(--terra); color: #fff; }
.btn-ghost { border: 1px solid rgba(255,255,255,.28); color: #fff; }
.hero-art { border-radius: 18px; overflow: hidden; box-shadow: 0 24px 50px rgba(0,0,0,.28); margin: 0; }
.hero-art img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 200px; max-height: 420px; }

.section { padding: clamp(2.4rem, 6vw, 4rem) 0; }
.section.alt { background: var(--cream); }
.section-head h2 { font-family: var(--serif); font-size: clamp(1.5rem, 4.4vw, 2.4rem); font-weight: 400; margin: 0.4rem 0 0.6rem; line-height: 1.2; }
.section-head p { color: #3d352c; max-width: 42rem; }
.kicker { color: var(--terra); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; }
.cards { display: grid; gap: 0.75rem; margin-top: 1.3rem; }
.cards.tight { gap: 0.65rem; }
.card { background: #fff; border: 1px solid #eadfce; border-radius: 14px; padding: 0.85rem 0.95rem; }
.card h3 { font-size: 0.98rem; margin-bottom: 0.25rem; }
.card p { color: #4d463c; font-size: 0.88rem; }
.card-icon { display: inline-block; color: var(--terra); font-weight: 700; margin-bottom: 0.25rem; font-size: 0.8rem; }

.steps { display: grid; gap: 1rem; margin-top: 1.4rem; }
.step { padding: 1.1rem 0.1rem; border-top: 3px solid var(--terra); }
.step b { display: block; color: var(--terra); font-size: 0.78rem; letter-spacing: 0.08em; }
.step h3 { margin: 0.25rem 0 0.35rem; font-size: 1.02rem; }
.step p { color: #4d463c; font-size: 0.94rem; }

.cta-band { background: var(--navy); color: #fff; padding: clamp(2.2rem, 5vw, 3.2rem) 0; text-align: center; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(1.55rem, 4vw, 2rem); font-weight: 400; margin-bottom: 0.6rem; }
.cta-band p { color: #b8c4d4; margin: 0 auto 1.2rem; max-width: 38rem; }
.cta-band .btn-primary { min-width: min(100%, 16rem); }

.footer {
  background: #081426; color: #8ea0b8; font-size: 0.86rem;
  padding: 1.3rem 0 calc(1.3rem + env(safe-area-inset-bottom));
}
.footer-inner { display: flex; justify-content: space-between; gap: 0.75rem 1.2rem; flex-wrap: wrap; }

.privacy { padding: clamp(1.6rem, 4vw, 3rem) 0 clamp(2.4rem, 6vw, 4rem); }
.privacy h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem, 4.5vw, 2.5rem); margin: 0.4rem 0 1rem; }
.privacy h2 { font-size: 1.15rem; margin: 1.8rem 0 0.5rem; }
.privacy p, .privacy li { color: #3d352c; }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0.8rem 0 1rem; }
.privacy table { width: 100%; min-width: 520px; border-collapse: collapse; font-size: 0.92rem; }
.privacy th, .privacy td { border-bottom: 1px solid #eadfce; padding: 0.55rem 0.4rem; text-align: left; vertical-align: top; }
.privacy .note { background: #fff6e8; border: 1px solid #ead2a0; border-radius: 12px; padding: 0.9rem 1rem; }

@media (min-width: 640px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .mini-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .mini-cards { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 860px) {
  .intro-grid { grid-template-columns: 220px 1fr; gap: 2.4rem; }
  .intro-mark { width: 220px; justify-self: start; }
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; gap: 2rem; }
}
@media (min-width: 960px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .logo img, .logo-mark, .logo object { width: 40px; height: 40px; }
}

@media (max-width: 959px) {
  .menu-btn { display: grid; place-items: center; }
  .header:not(:has(.menu-btn)) .nav { display: flex; }
  .nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #0c1f3d;
    padding: 0.4rem var(--pad) calc(0.8rem + env(safe-area-inset-bottom));
    border-bottom: 1px solid rgba(196, 92, 38, 0.25);
    box-shadow: 0 16px 28px rgba(0,0,0,.22);
  }
  .nav.open { display: flex; }
  .nav a {
    min-height: 48px; padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
}
@media (max-width: 420px) {
  .logo .brand-pre { display: none; }
  .hero-cta .btn-primary, .hero-cta .btn-ghost { width: 100%; }
}
@media (max-width: 360px) {
  .hero h1 { font-size: 1.65rem; }
}
