
:root {
  --bg: #0e0b09;
  --bg-soft: #15100d;
  --bg-alt: #120d0b;
  --panel: rgba(23, 17, 14, 0.82);
  --panel-solid: #17110e;
  --text: #f6efe9;
  --muted: #cdbfb2;
  --muted-strong: #e2d4c7;
  --line: rgba(255,255,255,0.10);
  --line-strong: rgba(255,255,255,0.16);
  --accent: #d8af8f;
  --accent-strong: #c99267;
  --shadow: 0 24px 70px rgba(0,0,0,0.34);
  --shadow-soft: 0 18px 40px rgba(0,0,0,0.18);
}

body.light {
  --bg: #f7f2ed;
  --bg-soft: #fffaf6;
  --bg-alt: #f3ece5;
  --panel: rgba(255,255,255,0.88);
  --panel-solid: #fffdfb;
  --text: #1d1713;
  --muted: #67584d;
  --muted-strong: #47392f;
  --line: rgba(29,23,19,0.10);
  --line-strong: rgba(29,23,19,0.15);
  --accent: #b67c53;
  --accent-strong: #9b633b;
  --shadow: 0 24px 50px rgba(73,49,31,0.09);
  --shadow-soft: 0 16px 28px rgba(73,49,31,0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(216,175,143,0.10), transparent 30%),
    radial-gradient(circle at top right, rgba(141,112,255,0.05), transparent 25%),
    linear-gradient(180deg, var(--bg), var(--bg-alt) 48%, var(--bg));
  color: var(--text);
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; min-height: 88px;
}
.brand { display: flex; flex-direction: column; gap: 5px; }
.brand-title { font-weight: 800; font-size: 1.55rem; letter-spacing: -0.035em; }
.brand-tag { color: var(--muted); max-width: 340px; font-size: 0.94rem; line-height: 1.4; }
.nav-toggle { display: none; }
.header-right { display: flex; align-items: center; gap: 14px; }
.site-nav { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.site-nav a {
  color: var(--muted); font-weight: 600; position: relative; padding: 4px 0;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1.5px;
  background: var(--accent); transform: scaleX(0); transform-origin: center; transition: transform .22s ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--text); }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.theme-toggle {
  border: 1px solid var(--line-strong); background: transparent; color: var(--text);
  border-radius: 999px; padding: 12px 16px; font-weight: 700; cursor: pointer;
}
.theme-toggle:hover { background: rgba(255,255,255,0.03); }

main { padding-bottom: 96px; }
.section { padding: 104px 0; }
.section-tight { padding: 72px 0; }
.eyebrow {
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.8rem; font-weight: 800; margin-bottom: 14px;
}
.h1, h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.94; margin: 0 0 20px; letter-spacing: -0.05em;
  max-width: 10ch;
}
.h2, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.02; margin: 0 0 16px; letter-spacing: -0.045em;
}
.h3, h3 {
  font-size: 1.28rem; line-height: 1.25; margin: 0 0 12px; font-weight: 800;
}
.lead {
  font-size: 1.08rem; color: var(--muted); max-width: 760px; line-height: 1.78;
}

.hero-grid {
  display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 42px; align-items: stretch;
  padding-top: 42px;
}
.hero-copy, .hero-panel, .card, .panel {
  border: 1px solid var(--line); border-radius: 32px; box-shadow: var(--shadow-soft);
}
.hero-copy {
  padding: 56px; min-height: 600px;
  background:
    radial-gradient(circle at top left, rgba(216,175,143,0.09), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    var(--bg-soft);
  display: flex; flex-direction: column; justify-content: center;
}
.hero-copy .lead { max-width: 34rem; }
.hero-panel {
  padding: 38px;
  background: var(--panel);
}
.hero-panel > p { max-width: 32rem; }
.hero-points { display: grid; gap: 16px; margin-top: 26px; }
.point-item {
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
}
.point-item h4 {
  margin: 0 0 6px; font-size: 1rem; line-height: 1.2; font-weight: 800;
}
.point-item p { margin: 0; color: var(--muted); line-height: 1.62; }

.button-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 22px; border-radius: 999px; font-weight: 800;
  border: 1px solid var(--line-strong); transition: 0.2s ease;
}
.btn-primary {
  background: var(--accent); color: #201510; border-color: transparent; box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}
.btn-primary:hover { background: var(--accent-strong); transform: translateY(-1px); }
.btn-secondary:hover { background: rgba(255,255,255,0.04); transform: translateY(-1px); }

.grid-2, .grid-3, .grid-4 { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .panel {
  padding: 34px; background: var(--panel);
}
.card p, .panel p, .panel li, .card li { color: var(--muted); }
.card:hover, .panel:hover, .hero-panel:hover, .hero-copy:hover { box-shadow: var(--shadow); }
.list-clean { list-style: none; padding: 0; margin: 0; }
.list-clean li { padding-left: 0; margin-bottom: 12px; }
.muted { color: var(--muted); }
.kicker { color: var(--accent); font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; }

.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start;
}
.cta-band {
  padding: 44px; border-radius: 32px;
  background: linear-gradient(135deg, rgba(216,175,143,0.16), rgba(255,255,255,0.03));
  border: 1px solid var(--line); box-shadow: var(--shadow-soft);
}
.quote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem; line-height: 1.35;
}

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
label { display: block; font-weight: 700; margin-bottom: 8px; }
input, textarea, select {
  width: 100%; padding: 14px 16px; border-radius: 18px; border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-soft) 88%, transparent); color: var(--text);
  font: inherit;
}
textarea { min-height: 160px; resize: vertical; }

.site-footer {
  border-top: 1px solid var(--line); padding: 30px 0 54px; color: var(--muted);
}
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

@media (max-width: 980px) {
  .hero-grid, .split, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero-copy { min-height: auto; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 88px; display: none; flex-direction: column;
    align-items: flex-start; padding: 20px 24px; background: var(--bg); border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .nav-toggle {
    display: inline-flex; border: 1px solid var(--line); background: transparent; color: var(--text);
    border-radius: 14px; padding: 10px 12px; font-weight: 800; cursor: pointer;
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1180px); }
  .section { padding: 80px 0; }
  .section-tight { padding: 56px 0; }
  .hero-copy, .hero-panel, .card, .panel, .cta-band { padding: 24px; border-radius: 24px; }
  .button-row { flex-direction: column; }
  .btn { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  h1, .h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
}


.price{font-size:1.05rem;font-weight:700;letter-spacing:0.01em;margin:14px 0 10px;color:var(--accent);}


.footer-brand{font-weight:800;color:var(--text);margin-bottom:4px;}
.footer-domain{font-size:.95rem;}
.media-card{display:grid;grid-template-columns:1.15fr .85fr;align-items:center;gap:24px;}
.media-card img{border-radius:22px;border:1px solid var(--line);box-shadow:var(--shadow-soft);max-height:420px;justify-self:end;}
.founder-card{display:grid;grid-template-columns:160px 1fr;gap:22px;align-items:center;}
.bio-thumb{width:160px;height:160px;object-fit:cover;border-radius:24px;border:1px solid var(--line);box-shadow:var(--shadow-soft);}
.founder-layout{display:grid;grid-template-columns:.8fr 1.2fr;gap:28px;align-items:stretch;}
.founder-image-wrap{display:flex;align-items:center;justify-content:center;}
.founder-image{width:100%;max-width:420px;aspect-ratio:4/5;object-fit:cover;border-radius:28px;border:1px solid var(--line);box-shadow:var(--shadow);}
.contact-meta{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin-bottom:24px;color:var(--muted);}
.contact-panel form{margin-top:10px;}
@media (max-width: 980px){.media-card,.founder-card,.founder-layout{grid-template-columns:1fr;}.media-card img{justify-self:start;max-height:none;width:min(280px,100%);}.founder-image{max-width:320px;}.contact-meta{grid-template-columns:1fr;}}
