:root {
  --bg: #fffaf5;
  --bg-soft: #f7efe7;
  --bg-accent: #fff4ea;
  --text: #2e2a28;
  --muted: #6f655f;
  --line: #e7d7c8;
  --accent: #a05a36;
  --accent-dark: #7f4323;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(70, 40, 20, 0.08);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}
.narrow { width: min(820px, calc(100% - 32px)); }
.section { padding: 72px 0; }
.section.white { background: var(--white); }
.section.light { background: var(--bg-soft); }
.section.accent { background: var(--bg-accent); }
.center { text-align: center; }

.hero {
  background: linear-gradient(180deg, #fff9f4 0%, #fff3e7 100%);
  padding: 56px 0 48px;
}
.hero-grid, .about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  margin: 0 0 12px;
}
h1, h2, h3 { line-height: 1.2; margin: 0 0 14px; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); text-align: center; }
h3 { font-size: 1.15rem; }
.lead, .section-intro, .section-subintro {
  color: var(--muted);
  font-size: 1.05rem;
}
.section-intro, .section-subintro { text-align: center; }
.section-subintro { margin-top: -4px; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero-points span {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.95rem;
}
.hero-image, .rounded-image {
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.medium-image { max-width: 460px; }
.product-image-row.single-center {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.feature-grid, .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.feature-card, .step-card, .theme-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.step-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

.preferences-form {
  margin-top: 28px;
  background: rgba(255,255,255,0.68);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.email-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}
input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d9c8ba;
  border-radius: 14px;
  font-size: 1rem;
  margin-bottom: 18px;
}
.theme-list {
  display: grid;
  gap: 14px;
}
.theme-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  cursor: pointer;
  transition: transform 0.12s ease, border-color 0.12s ease;
}
.theme-card:hover {
  transform: translateY(-1px);
  border-color: #d3b59c;
}
.theme-card input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.theme-card strong {
  display: block;
  margin-bottom: 4px;
}
.theme-card small {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}
.fineprint {
  color: var(--muted);
  text-align: center;
  margin: 18px 0 14px;
}
.form-status {
  min-height: 22px;
  text-align: center;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 0.95rem;
}
.cta-button, .secondary-button {
  display: inline-block;
  width: 100%;
  text-align: center;
  border: none;
  border-radius: 999px;
  padding: 16px 22px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.cta-button {
  background: var(--accent);
  color: #fff;
}
.cta-button:hover { background: var(--accent-dark); }
.cta-button:disabled {
  opacity: 0.7;
  cursor: wait;
}
.secondary-button {
  max-width: 280px;
  background: var(--white);
  border: 1px solid var(--line);
}
.trust-block {
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}
.trust-block p { margin: 4px 0; }

.latest-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.latest-gallery img {
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.gallery-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
}
.faq-grid details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  margin-top: 14px;
}
.faq-grid summary {
  cursor: pointer;
  font-weight: 700;
}
.final-cta {
  background: linear-gradient(180deg, #fff1e6 0%, #fff8f2 100%);
}
.thankyou-card {
  max-width: 760px;
  margin: 40px auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 36px;
}
.thankyou-card .cta-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 860px) {
  .hero-grid, .about-grid,
  .feature-grid, .steps-grid,
  .latest-gallery {
    grid-template-columns: 1fr;
  }
  .section { padding: 56px 0; }
}
