:root {
  --bg: #f4efe6;
  --surface: #fffdfa;
  --surface-soft: #f8f2e8;
  --text: #2f261e;
  --muted: #77695c;
  --line: rgba(47, 38, 30, 0.08);
  --accent: #a27a43;
  --accent-dark: #886331;
  --accent-soft: #eee2cf;
  --shadow: 0 12px 28px rgba(29, 23, 17, 0.05);
  --shadow-float: 0 12px 26px rgba(39, 29, 18, 0.16);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.76), transparent 30%),
    var(--bg);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page {
  width: min(100% - 24px, var(--max));
  margin: 0 auto;
}

.section {
  padding: 22px 0;
}

.section-tight {
  padding-top: 4px;
  padding-bottom: 6px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.hero {
  padding-top: 18px;
  padding-bottom: 8px;
}

.hero-wrap {
  padding: 18px;
}

.hero-layout {
  display: grid;
  gap: 18px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  border: 1px solid rgba(162, 122, 67, 0.1);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2.1rem, 7.4vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 10ch;
}

.lead {
  margin-top: 14px;
  font-size: 1rem;
  color: var(--muted);
  max-width: 34rem;
}

.micro {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 12px;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}

.btn,
.float-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.97rem;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn:hover,
.float-button:hover {
  transform: translateY(-1px);
}

.btn-primary,
.float-button {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 18px rgba(162, 122, 67, 0.2);
}

.btn-primary:hover,
.float-button:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}

.section-head {
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.55rem, 4vw, 2.25rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.section-copy {
  color: var(--muted);
  max-width: 40rem;
}

.badges-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dev-badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.92);
  color: var(--accent-dark);
  border: 1px solid rgba(162, 122, 67, 0.1);
  font-size: 0.88rem;
  font-weight: 600;
}

.gallery-grid,
.offers-grid,
.final-grid {
  display: grid;
  gap: 14px;
}

.gallery-grid-2 {
  grid-template-columns: 1fr;
}

.gallery-card {
  overflow: hidden;
  padding: 0;
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.trust-card {
  padding: 16px 18px;
  background: linear-gradient(180deg, #fffdfa, #f8f2e8);
}

.trust-card p {
  color: var(--muted);
  text-align: center;
  font-size: 0.95rem;
}

.two-cols {
  grid-template-columns: 1fr;
}

.offer-card {
  padding: 18px;
}

.offer-card-devotional {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 242, 232, 0.86));
}

.offer-card.featured {
  border-color: rgba(162, 122, 67, 0.18);
}

.offer-top h3 {
  font-size: 1.1rem;
  margin: 8px 0 8px;
}

.offer-top p {
  color: var(--muted);
  font-size: 0.95rem;
}

.offer-tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.offer-toggle {
  margin-top: 16px;
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

.offer-hidden {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.offer-card.is-open .offer-hidden {
  display: block;
}

.detail-list {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.detail-list span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text);
  font-size: 0.93rem;
}

.detail-list span::before {
  content: "•";
  color: var(--accent-dark);
  font-weight: 800;
}

.price-block {
  margin-bottom: 16px;
}

.price-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.price {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 6px;
}

.cta-final {
  padding: 20px;
}

.cta-final p {
  color: var(--muted);
  margin-top: 8px;
  margin-bottom: 16px;
}

.whatsapp-float {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 50;
}

.float-button {
  min-height: 54px;
  padding-inline: 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-float);
}

.footer-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  padding: 16px 0 104px;
}

@media (min-width: 720px) {
  .hero-wrap,
  .cta-final {
    padding: 28px;
  }

  .hero-layout {
    grid-template-columns: 1fr 0.95fr;
    align-items: center;
  }

  .cta-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .gallery-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-grid {
    grid-template-columns: 1.1fr auto;
    align-items: center;
  }

  .hero-image img {
    min-height: 500px;
  }

  .gallery-card img {
    height: 340px;
  }
}