:root {
  --bg: #f4efe8;
  --surface: #fffaf4;
  --surface-strong: #f0e1d0;
  --ink: #241b17;
  --muted: #62564f;
  --line: rgba(36, 27, 23, 0.12);
  --brand: #a3602f;
  --brand-dark: #6f3c19;
  --brand-soft: #dfc1a7;
  --shadow: 0 24px 60px rgba(36, 27, 23, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(223, 193, 167, 0.85), transparent 28%),
    linear-gradient(180deg, #f9f2ea 0%, var(--bg) 100%);
}

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

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

main,
.site-header,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 16px;
}

.brand-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.brand-logo {
  width: 180px;
}

.top-nav {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--muted);
}

.top-nav a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.hero,
.story,
.gallery-section,
.benefits,
.contact-section {
  margin: 26px 0;
}

.benefits {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(111, 60, 25, 0.28);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.story-card,
.gallery-card,
.benefit-list article,
.contact-copy,
.contact-form,
.trust-strip,
.site-footer {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel,
.contact-copy,
.contact-form {
  border-radius: var(--radius-xl);
  padding: 36px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Albert Sans", sans-serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.3rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.35rem;
}

.lead,
.hero-panel p,
.section-heading p,
.story-card p,
.gallery-card p,
.benefit-list p,
.contact-copy p,
.form-note,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  max-width: 62ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 24px;
}

.hero-notes span,
.panel-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--brand-dark);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.button-primary,
.floating-whatsapp {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff;
  box-shadow: 0 14px 30px rgba(111, 60, 25, 0.28);
}

.button-secondary {
  border-color: var(--line);
  background: transparent;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(163, 96, 47, 0.12), rgba(255, 250, 244, 0.92)),
    var(--surface);
  overflow: hidden;
}

.panel-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
}

.panel-content {
  padding-top: 26px;
}

.hero-panel h2 {
  margin-top: 18px;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
}

.panel-list {
  padding-left: 18px;
  margin: 26px 0 0;
  color: var(--muted);
}

.panel-list li + li {
  margin-top: 10px;
}

.panel-button {
  margin-top: 24px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
}

.trust-strip div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 132px;
}

.trust-strip strong {
  display: block;
  margin-top: 10px;
  font-family: "Roboto Slab", serif;
  font-size: 2rem;
  color: var(--brand-dark);
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.5;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.benefits .eyebrow,
.benefits .section-heading p,
.benefits h2 {
  color: #fffaf4;
}

.benefits .eyebrow {
  color: rgba(255, 250, 244, 0.72);
}

.section-heading h2 {
  margin-bottom: 14px;
}

.story-grid,
.gallery-grid,
.benefit-list,
.contact-section {
  display: grid;
  gap: 20px;
}

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

.story-card,
.gallery-card,
.benefit-list article {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.accent-card {
  background: linear-gradient(180deg, #fff6ed, #f6e4d3);
}

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

.gallery-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: var(--radius-md);
}

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

.benefit-list article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface-strong);
  border-color: rgba(111, 60, 25, 0.18);
  box-shadow: none;
}

.benefits .benefit-list h3,
.benefits .benefit-list p {
  color: var(--ink);
}

.benefit-link {
  font-weight: 700;
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-section {
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-cards a {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
}

.contact-cards strong {
  display: block;
  margin-top: 4px;
  font-family: "Albert Sans", sans-serif;
  font-size: 1.1rem;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(36, 27, 23, 0.16);
  border-radius: 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  margin-bottom: 32px;
  padding: 24px 28px;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  padding: 16px 20px;
  border-radius: 999px;
  font-weight: 700;
}

@media (max-width: 960px) {
  .hero,
  .story-grid,
  .gallery-grid,
  .benefit-list,
  .contact-section,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .brand-bar {
    border-radius: 26px;
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav {
    flex-wrap: wrap;
  }

  .hero-copy,
  .hero-panel,
  .contact-copy,
  .contact-form {
    padding: 28px;
  }

  .benefits {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  main,
  .site-header,
  .site-footer {
    width: min(100% - 20px, 1180px);
  }

  .brand-logo {
    width: 150px;
  }

  .floating-whatsapp {
    right: 12px;
    left: 12px;
    bottom: 12px;
    justify-content: center;
    text-align: center;
  }
}
