:root {
  --bg: #fffdf7;
  --surface: #fff8e1;
  --surface-2: #fff3bf;
  --card: #fffdf8;
  --text: #2b2b2b;
  --muted: #66604f;
  --primary: #f4b400;
  --primary-strong: #d89a00;
  --primary-soft: #ffe082;
  --border: #ead9a4;
  --shadow: 0 12px 30px rgba(120, 93, 0, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Roboto, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, #fff5c6 0%, var(--bg) 38%),
    var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.narrow {
  width: min(100% - 32px, 760px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 253, 247, 0.82);
  border-bottom: 1px solid rgba(234, 217, 164, 0.6);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--primary-soft), var(--primary));
  color: #3b2d00;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text span {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}

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

.hero {
  padding: 64px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.hero-copy h1 {
  margin: 14px 0 16px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 58ch;
}

.pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-2);
  color: #6f5600;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 700;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #3b2d00;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--primary-strong);
  color: #fff8ea;
}

.btn-secondary {
  background: #fffaf0;
  border: 1px solid var(--border);
  color: #5f4b00;
}

.mini-text {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 12px;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(255, 240, 180, 0.24), rgba(255, 255, 255, 0));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 14px 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
}

.section-heading p {
  color: var(--muted);
}

.card {
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(234, 217, 164, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-visual {
  padding: 20px;
}

.hero-visual img {
  width: 100%;
  border-radius: 20px;
}

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

.feature-card {
  padding: 24px;
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

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

.shot-card {
  padding: 18px;
}

.shot-placeholder {
  min-height: 440px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, #fff9df, #ffeeb0);
  display: grid;
  place-items: center;
  text-align: center;
  color: #7b6200;
  font-weight: 700;
  padding: 20px;
  border: 2px dashed rgba(123, 98, 0, 0.2);
}

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

.step-card {
  padding: 24px;
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #3b2d00;
  font-weight: 800;
  margin-bottom: 14px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 18px 20px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item p {
  color: var(--muted);
  margin-top: 12px;
}

.cta-section {
  padding-top: 28px;
}

.cta-box {
  padding: 32px;
  border-radius: 32px;
  background: linear-gradient(180deg, #fff0b8, #ffe082);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(234, 217, 164, 0.7);
  margin-top: 28px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-text {
  color: var(--muted);
  margin: 4px 0 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

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

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

.legal h1 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.legal h2 {
  margin-top: 32px;
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.legal p {
  color: var(--muted);
}

.back-link {
  margin-top: 32px;
  font-weight: 700;
}

@media (max-width: 960px) {
  .hero-grid,
  .feature-grid,
  .shots-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }

  .cta-box {
    padding: 24px;
  }
}

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

  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .section {
    padding: 56px 0;
  }

  .btn {
    width: 100%;
  }

  .cta-row {
    width: 100%;
  }
}
