:root {
  color-scheme: light dark;
  --bg: #fbf7ef;
  --surface: #fffaf2;
  --surface-2: #f0e9dc;
  --text: #1d1a16;
  --muted: #665f55;
  --line: #d7ccbc;
  --accent: #b4472f;
  --accent-2: #0f766e;
  --ink: #17130f;
  --shadow: 0 20px 50px rgba(52, 31, 13, 0.16);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #14110e;
    --surface: #201a15;
    --surface-2: #2b231c;
    --text: #f5ebdc;
    --muted: #c8b9a5;
    --line: #4c4035;
    --accent: #f28d68;
    --accent-2: #5eead4;
    --ink: #090706;
    --shadow: 0 22px 56px rgba(0, 0, 0, 0.34);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(180, 71, 47, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  min-height: calc(100svh - 64px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff8ef;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(9, 7, 6, 0.9), rgba(9, 7, 6, 0.46) 54%, rgba(9, 7, 6, 0.28)),
    url("lantern_warm.png");
  background-size: cover;
  background-position: center right;
}

.hero-inner {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0 110px;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 14px;
  color: #f2c7b0;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
}

.hero-copy {
  max-width: 640px;
  margin: 22px 0 0;
  color: #eadbc8;
  font-size: 1.16rem;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  background: var(--accent);
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff8ef;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

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

.section-head h2,
.policy h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid,
.support-grid,
.shot-grid {
  display: grid;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shot-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tile,
.faq,
.shot {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.tile,
.faq {
  padding: 22px;
}

.tile h3,
.faq h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.tile p,
.faq p,
.policy p,
.policy li {
  color: var(--muted);
}

.shot {
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.shot-preview {
  flex: 1;
  min-height: 290px;
  background-size: cover;
  background-position: center;
}

.shot.one .shot-preview {
  background-image: linear-gradient(rgba(14, 12, 10, .2), rgba(14, 12, 10, .58)), url("lantern_love.png");
}

.shot.two .shot-preview {
  background-image: linear-gradient(rgba(14, 12, 10, .14), rgba(14, 12, 10, .62)), url("lantern_warm.png");
}

.shot.three .shot-preview {
  background-image: linear-gradient(rgba(14, 12, 10, .18), rgba(14, 12, 10, .64)), url("lantern_peace.png");
}

.shot-caption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.policy {
  padding: 56px 0 72px;
}

.policy article {
  max-width: 900px;
}

.lang-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 34px;
}

.lang-switch a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  background: var(--surface);
  text-decoration: none;
  font-weight: 700;
}

.policy h2 {
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.policy h3 {
  margin-top: 26px;
}

.meta {
  color: var(--muted);
  font-size: 0.94rem;
}

.notice {
  border-left: 4px solid var(--accent-2);
  padding: 14px 16px;
  background: color-mix(in srgb, var(--surface-2) 70%, transparent);
  border-radius: 8px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--muted);
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 760px;
  }

  .hero::before {
    background-image:
      linear-gradient(180deg, rgba(9, 7, 6, 0.74), rgba(9, 7, 6, 0.58)),
      url("lantern_warm.png");
    background-position: center;
  }

  .feature-grid,
  .support-grid,
  .shot-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 0;
  }
}
