:root {
  --bg: #f8efe4;
  --bg-deep: #f1e0ce;
  --surface: rgba(255, 249, 241, 0.84);
  --surface-strong: #fffaf4;
  --surface-dark: #153126;
  --text: #1c261e;
  --muted: #5e655c;
  --line: rgba(32, 42, 34, 0.1);
  --accent: #ef6d1a;
  --accent-deep: #b94a08;
  --accent-soft: rgba(239, 109, 26, 0.12);
  --leaf: #1f5d47;
  --leaf-soft: rgba(31, 93, 71, 0.12);
  --shadow-xl: 0 32px 80px rgba(76, 50, 22, 0.14);
  --shadow-lg: 0 18px 36px rgba(76, 50, 22, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 28%),
    radial-gradient(circle at right 12%, rgba(239, 109, 26, 0.12), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-bg::before,
.site-bg::after {
  content: "";
  position: fixed;
  z-index: -1;
  inset: auto;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.6;
}

.site-bg::before {
  width: 320px;
  height: 320px;
  top: 120px;
  right: -80px;
  background: rgba(239, 109, 26, 0.18);
}

.site-bg::after {
  width: 260px;
  height: 260px;
  left: -60px;
  top: 540px;
  background: rgba(31, 93, 71, 0.14);
}

.site-header,
.section,
.trust-strip,
.cta-band,
.site-footer {
  width: min(calc(100% - 32px), var(--content-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 16px 20px;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(239, 109, 26, 0.24);
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__text strong,
.brand__text small {
  white-space: nowrap;
}

.brand__text strong {
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-deep);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff9f3;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 18px 28px rgba(239, 109, 26, 0.28);
}

.button--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(32, 42, 34, 0.08);
}

.button--ghost-light {
  color: #fff9f3;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.section {
  padding: 100px 0 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding-top: 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3rem, 5.8vw, 5.5rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  max-width: 14ch;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
  line-height: 1.7;
}

.hero__lead,
.section-heading p {
  color: var(--muted);
  max-width: 60ch;
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero__points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero__points li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.hero__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--leaf));
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.metric-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(32, 42, 34, 0.08);
  box-shadow: var(--shadow-lg);
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero__media {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 640px;
}

.media-card,
.gallery-card,
.showcase-stack__wide,
.showcase-stack__portrait,
.assurance-panel,
.benefit-card,
.process-card,
.audience-card,
.faq-item,
.cta-band {
  box-shadow: var(--shadow-xl);
}

.media-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 32px;
  background: var(--surface-strong);
}

.media-card img,
.gallery-card img,
.showcase-stack__wide img,
.showcase-stack__portrait img,
.assurance-panel__media img {
  height: 100%;
  object-fit: cover;
}

.media-card--main {
  height: 470px;
  margin: 0 0 0 46px;
}

.media-card--portrait {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: min(46%, 240px);
  height: 300px;
}

.hero-note {
  position: absolute;
  right: 0;
  bottom: 46px;
  width: min(52%, 270px);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  color: #fffaf4;
  background: linear-gradient(145deg, rgba(21, 49, 38, 0.92), rgba(31, 93, 71, 0.88));
  box-shadow: var(--shadow-xl);
}

.hero-note__label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.trust-strip article {
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(32, 42, 34, 0.07);
}

.trust-strip span {
  display: inline-block;
  margin-bottom: 14px;
  font-family: "Sora", sans-serif;
  color: var(--accent-deep);
}

.section-heading {
  margin-bottom: 34px;
}

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

.process-card,
.benefit-card,
.audience-card,
.faq-item {
  padding: 28px;
  border: 1px solid rgba(32, 42, 34, 0.07);
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 246, 0.78);
}

.process-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff9f3;
  background: linear-gradient(135deg, var(--accent), var(--leaf));
  font-weight: 800;
}

.assurance-panel {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.9fr);
  gap: 0;
  overflow: hidden;
  margin-top: 28px;
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
}

.assurance-panel__media {
  min-height: 360px;
}

.assurance-panel__copy {
  padding: 40px;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--leaf);
}

.section--warm {
  position: relative;
}

.section--warm::before {
  content: "";
  position: absolute;
  inset: 72px 0 -40px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.2), rgba(255, 245, 235, 0.82));
  border-radius: 40px;
}

.benefits-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 0.86fr);
  gap: 24px;
  align-items: start;
}

.benefits-list {
  display: grid;
  gap: 18px;
}

.benefit-card p,
.audience-card p,
.process-card p,
.faq-item p {
  margin-top: 14px;
  color: var(--muted);
}

.showcase-stack {
  display: grid;
  gap: 18px;
}

.showcase-stack__wide,
.showcase-stack__portrait {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background: var(--surface-strong);
}

.showcase-stack__wide {
  height: 280px;
}

.showcase-stack__portrait {
  justify-self: end;
  width: min(78%, 340px);
  height: 420px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.section--gallery {
  padding-bottom: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background: var(--surface-strong);
}

.gallery-card--tall {
  grid-column: span 3;
  min-height: 420px;
}

.gallery-card--wide {
  grid-column: span 6;
  min-height: 420px;
}

.gallery-card:not(.gallery-card--tall):not(.gallery-card--wide) {
  grid-column: span 3;
}

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

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.88);
}

.faq-item p {
  max-width: 62ch;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 24px;
  align-items: center;
  margin-top: 92px;
  padding: 42px;
  border-radius: 34px;
  color: #fffaf4;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 25%),
    linear-gradient(135deg, #ef6d1a 0%, #be4f08 42%, #1f5d47 100%);
}

.cta-band__copy p:not(.eyebrow) {
  color: rgba(255, 250, 244, 0.84);
  max-width: 58ch;
}

.cta-band__copy .hero__actions {
  margin-top: 24px;
}

.cta-band__media {
  padding: 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 32px 0 46px;
}

.site-footer strong {
  display: inline-block;
  margin-bottom: 10px;
  font-family: "Sora", sans-serif;
}

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

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 28;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  line-height: 54px;
  background: linear-gradient(135deg, #2ccf6b, #169d4a);
  box-shadow: 0 18px 34px rgba(24, 145, 73, 0.3);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 250, 244, 0.96);
    box-shadow: var(--shadow-xl);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .benefits-layout,
  .assurance-panel,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 26px;
  }

  .hero__media {
    min-height: 520px;
  }

  .trust-strip,
  .process-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card--tall,
  .gallery-card--wide,
  .gallery-card:not(.gallery-card--tall):not(.gallery-card--wide) {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 14px;
    padding: 12px 14px;
  }

  .brand__text small {
    display: none;
  }

  .section {
    padding-top: 78px;
  }

  h1 {
    font-size: clamp(2.4rem, 10vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .hero__metrics,
  .trust-strip,
  .process-grid,
  .audience-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .media-card--main {
    height: 360px;
    margin-left: 0;
  }

  .media-card--portrait {
    position: relative;
    left: auto;
    bottom: auto;
    width: 58%;
    margin-top: -120px;
    height: 240px;
  }

  .hero-note {
    position: relative;
    bottom: auto;
    width: 100%;
    margin-top: -10px;
  }

  .assurance-panel__copy,
  .cta-band {
    padding: 28px;
  }

  .showcase-stack__portrait {
    width: 100%;
    height: 340px;
  }

  .gallery-card--tall,
  .gallery-card--wide,
  .gallery-card:not(.gallery-card--tall):not(.gallery-card--wide) {
    grid-column: span 12;
    min-height: 320px;
  }

  .floating-whatsapp {
    right: 14px;
    left: 14px;
    text-align: center;
  }
}
