:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #5d6470;
  --line: rgba(23, 23, 23, 0.14);
  --paper: #fffaf2;
  --soft: #f6efe2;
  --deep: #24312d;
  --accent: #b27436;
  --accent-2: #0f766e;
  --white: #fff;
  --shadow: 0 24px 70px rgba(33, 31, 27, 0.16);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a { color: inherit; }

.sample-strip {
  background: #111;
  color: #fff;
  padding: 10px 18px;
  font-size: 13px;
  text-align: center;
}

.nav {
  min-height: 68px;
  padding: 18px clamp(18px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.88);
  position: sticky;
  top: 0;
  z-index: 3;
  backdrop-filter: blur(16px);
}

.brand {
  font-weight: 800;
  letter-spacing: 0;
  font-size: clamp(18px, 2vw, 24px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pill, .button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 750;
  font-size: 14px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button {
  background: var(--deep);
  color: #fff;
  border-color: var(--deep);
  box-shadow: 0 10px 24px rgba(36, 49, 45, 0.18);
}

.button:hover { background: #151f1c; }
.pill:hover { background: rgba(255,255,255,0.7); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.78fr);
  min-height: calc(100vh - 110px);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  padding: clamp(40px, 8vw, 110px) clamp(20px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.kicker {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: 0.08em;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.97;
  letter-spacing: 0;
  max-width: 10ch;
}

.lead {
  margin: 0;
  max-width: 680px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
  color: var(--muted);
}

.hero-panel {
  min-height: 520px;
  padding: 22px;
  display: flex;
  align-items: stretch;
}

.photo-card {
  width: 100%;
  min-height: 440px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.38);
  position: relative;
  background: #ddd;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.98) contrast(1.02);
}

.photo-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border-radius: 8px;
  color: #fff;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.24);
}

.section {
  padding: clamp(42px, 7vw, 88px) clamp(18px, 5vw, 64px);
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-head p, .card p, .split p, .proof p {
  color: var(--muted);
  line-height: 1.65;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card, .proof, .split {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.64);
  padding: 22px;
}

.card h3, .proof h3, .split h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.split-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cta {
  background: var(--deep);
  color: #fff;
  padding: clamp(42px, 7vw, 82px) clamp(18px, 5vw, 64px);
}

.cta p { color: rgba(255,255,255,0.78); max-width: 760px; line-height: 1.7; }
.cta .button { background: #fff; color: var(--deep); border-color: #fff; }

.mini {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.index-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.index-item {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

@media (max-width: 900px) {
  .hero, .split-wrap { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-panel { min-height: 420px; padding-top: 0; }
  .grid { grid-template-columns: 1fr 1fr; }
  h1 { max-width: 12ch; }
}

@media (max-width: 620px) {
  .nav { align-items: flex-start; gap: 14px; flex-direction: column; }
  .nav-actions { width: 100%; justify-content: flex-start; }
  .pill, .button { width: 100%; }
  .grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 36px; }
  .hero-panel { min-height: 340px; }
  .photo-card { min-height: 320px; }
  .index-item { align-items: stretch; flex-direction: column; }
}

