:root {
  --bg: #f5f0e6;
  --bg-soft: #fbf8f2;
  --surface: rgba(255, 251, 246, 0.78);
  --surface-strong: rgba(255, 253, 249, 0.94);
  --surface-dark: #2a221d;
  --line: rgba(74, 52, 34, 0.12);
  --line-strong: rgba(74, 52, 34, 0.18);
  --text: #231912;
  --muted: #675446;
  --muted-strong: #503f33;
  --accent: #8a5a2f;
  --accent-soft: #c38d54;
  --gold: #d8b16d;
  --olive: #6e7456;
  --sage: #93a07b;
  --terracotta: #a55c3a;
  --coffee: #55311d;
  --shadow: 0 26px 72px rgba(54, 36, 22, 0.12);
  --shadow-soft: 0 18px 42px rgba(54, 36, 22, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(195, 141, 84, 0.2), transparent 26%),
    radial-gradient(circle at 88% 16%, rgba(138, 90, 47, 0.11), transparent 22%),
    linear-gradient(180deg, #fffcf7 0%, var(--bg) 46%, #efe4d5 100%);
  padding-bottom: 104px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(87, 63, 42, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87, 63, 42, 0.038) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
}

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

a {
  color: inherit;
}

.ambient {
  position: fixed;
  z-index: -2;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(18px);
}

.ambient-top {
  top: -160px;
  left: 18%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(216, 177, 109, 0.28), transparent 70%);
}

.ambient-left {
  top: 38%;
  left: -160px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(110, 116, 86, 0.2), transparent 72%);
}

.ambient-right {
  right: -170px;
  top: 60%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(165, 92, 58, 0.16), transparent 72%);
}

.container {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 244, 0.74);
  border-bottom: 1px solid rgba(74, 52, 34, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  width: min(172px, 46vw);
}

.nav-actions,
.hero-actions,
.signal-row,
.closing-actions,
.detail-list,
.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
}

.btn-secondary,
.btn-primary,
.cta-main,
.cta-link,
.product-link,
.intent-pill,
.whatsapp-float {
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.btn-secondary,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.76rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
}

.btn-secondary {
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(74, 52, 34, 0.1);
}

.btn-primary {
  color: #fff9f1;
  background: linear-gradient(135deg, #6a4128, #3f2719);
  border: 1px solid rgba(51, 31, 20, 0.24);
  box-shadow: 0 16px 36px rgba(56, 33, 20, 0.18);
}

.btn-secondary:hover,
.btn-primary:hover,
.cta-main:hover,
.cta-link:hover,
.product-link:hover,
.intent-pill:hover,
.whatsapp-float:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 2rem;
  align-items: center;
  padding: 4.75rem 0 3.4rem;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h1,
h2 {
  font-family: "Fraunces", serif;
}

h3 {
  font-family: "Sora", sans-serif;
}

h1 {
  max-width: 10.4ch;
  font-size: clamp(3rem, 6vw, 5.35rem);
}

h1 span {
  display: block;
  color: var(--accent);
}

h2 {
  font-size: clamp(2.05rem, 3vw, 3.2rem);
}

h3 {
  font-size: 1.2rem;
}

.hero-lead {
  margin: 1.35rem 0 0.4rem;
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.16rem, 2vw, 1.52rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-text,
.section-intro p,
.product-copy p,
.hero-panel p,
.statement-card p,
.flow-card p,
.alert-card p,
.footer-wrap p,
.footer-wrap small {
  color: var(--muted);
}

.hero-text {
  max-width: 39rem;
  margin: 0;
  font-size: 1.09rem;
}

.hero-actions {
  align-items: center;
  margin-top: 1.75rem;
}

.cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.96rem 1.28rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #7e4d30, #4c2f1f);
  color: #fff8f0;
  font-weight: 800;
  box-shadow: 0 22px 44px rgba(76, 47, 31, 0.2);
}

.cta-link {
  padding: 0.2rem 0;
  color: var(--accent);
  font-weight: 800;
}

.signal-row {
  margin-top: 1.5rem;
}

.signal-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.76);
  border: 1px solid rgba(74, 52, 34, 0.09);
  box-shadow: var(--shadow-soft);
  color: var(--muted-strong);
  font-size: 0.93rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: auto 18% -10% auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(216, 177, 109, 0.24), transparent 70%);
  z-index: 0;
}

.hero-panel {
  position: relative;
  z-index: 1;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(74, 52, 34, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 252, 247, 0.94), rgba(248, 241, 230, 0.84)),
    rgba(255, 252, 247, 0.94);
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  max-width: 12ch;
  font-size: clamp(1.95rem, 3.2vw, 3rem);
}

.hero-panel p {
  margin: 1rem 0 0;
  max-width: 31rem;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.intent-pill {
  display: flex;
  align-items: flex-start;
  min-height: 84px;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(74, 52, 34, 0.1);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 28px rgba(67, 43, 25, 0.08);
  color: var(--muted-strong);
  font-weight: 700;
}

.section {
  padding: 1.35rem 0 1.95rem;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.72fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.7rem;
}

.section-intro p {
  margin: 0;
  max-width: 32rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 230px) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  overflow: hidden;
  padding: 1.35rem;
  border-radius: 30px;
  border: 1px solid rgba(74, 52, 34, 0.08);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(247, 240, 230, 0.88));
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: auto auto -80px -80px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  opacity: 0.7;
  z-index: -1;
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 250px;
  padding: 1rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 243, 235, 0.9));
  border: 1px solid rgba(74, 52, 34, 0.07);
}

.product-media::after {
  content: "";
  position: absolute;
  bottom: 18px;
  left: 50%;
  width: 68%;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(62, 43, 28, 0.18), transparent 72%);
  filter: blur(12px);
}

.catalog-product {
  position: relative;
  z-index: 1;
  max-height: 280px;
  width: auto;
  object-fit: contain;
}

.product-copy {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.product-copy h3 {
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.product-copy p {
  margin: 0;
}

.product-hook {
  color: var(--text);
  font-family: "Fraunces", serif;
  font-size: 1.48rem;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.product-note {
  color: var(--muted-strong);
  font-weight: 700;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  margin-top: 0.15rem;
  color: var(--accent);
  font-weight: 800;
}

.product-link::after {
  content: "↗";
  font-size: 0.95rem;
}

.tone-ice::before,
.tone-ice .product-media {
  background:
    linear-gradient(180deg, rgba(244, 250, 255, 0.95), rgba(232, 243, 249, 0.92));
}

.tone-ice::before {
  background: radial-gradient(circle, rgba(116, 167, 194, 0.24), transparent 70%);
}

.tone-amalaki::before,
.tone-amalaki .product-media {
  background:
    linear-gradient(180deg, rgba(250, 246, 237, 0.96), rgba(238, 231, 211, 0.92));
}

.tone-amalaki::before {
  background: radial-gradient(circle, rgba(167, 144, 87, 0.22), transparent 70%);
}

.tone-bfit::before,
.tone-bfit .product-media {
  background:
    linear-gradient(180deg, rgba(249, 246, 255, 0.96), rgba(236, 232, 247, 0.92));
}

.tone-bfit::before {
  background: radial-gradient(circle, rgba(118, 96, 156, 0.2), transparent 70%);
}

.tone-edge::before,
.tone-edge .product-media {
  background:
    linear-gradient(180deg, rgba(242, 248, 255, 0.96), rgba(227, 238, 249, 0.92));
}

.tone-edge::before {
  background: radial-gradient(circle, rgba(67, 105, 160, 0.2), transparent 70%);
}

.tone-rise::before,
.tone-rise .product-media {
  background:
    linear-gradient(180deg, rgba(255, 249, 242, 0.96), rgba(246, 234, 218, 0.92));
}

.tone-rise::before {
  background: radial-gradient(circle, rgba(151, 102, 58, 0.24), transparent 70%);
}

.tone-accell::before,
.tone-accell .product-media {
  background:
    linear-gradient(180deg, rgba(249, 253, 243, 0.96), rgba(234, 244, 220, 0.92));
}

.tone-accell::before {
  background: radial-gradient(circle, rgba(115, 154, 67, 0.22), transparent 70%);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.3rem;
}

.statement-card,
.flow-card,
.closing-card,
.alert-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(74, 52, 34, 0.09);
  box-shadow: var(--shadow-soft);
}

.statement-card {
  padding: 1.9rem;
  background:
    linear-gradient(160deg, rgba(255, 253, 249, 0.95), rgba(248, 240, 229, 0.9));
}

.statement-card p {
  max-width: 30rem;
  margin: 1rem 0 0;
  font-size: 1.06rem;
}

.flow-card {
  padding: 1.9rem;
  background: linear-gradient(145deg, #342821, #201915);
  color: #fff9f2;
}

.flow-card h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.flow-card p,
.flow-card li {
  color: rgba(255, 247, 238, 0.8);
}

.check-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  flex-direction: column;
  gap: 0.95rem;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f2d498, #c98f4b);
  box-shadow: 0 0 0 6px rgba(242, 212, 152, 0.12);
}

.closing-card {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(260px, 0.76fr);
  gap: 1.2rem;
  align-items: center;
  padding: 2rem;
  background:
    linear-gradient(145deg, rgba(255, 251, 246, 0.94), rgba(247, 238, 226, 0.92));
}

.closing-copy p {
  max-width: 33rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.closing-actions {
  justify-content: flex-end;
}

.closing-actions .cta-main {
  width: 100%;
  text-align: center;
}

.alert-card {
  padding: 1.4rem 1.5rem;
  background: rgba(255, 251, 246, 0.9);
}

.alert-card h3 {
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.alert-card p {
  margin: 0.55rem 0 0;
  font-size: 0.94rem;
}

.site-footer {
  padding: 1.4rem 0 2.5rem;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(74, 52, 34, 0.08);
}

.footer-logo {
  width: min(150px, 42vw);
}

.footer-wrap p,
.footer-wrap small {
  margin: 0;
}

.footer-wrap div {
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.88rem 1.1rem;
  border-radius: 999px;
  background: #1f7a46;
  color: #f8fff8;
  font-weight: 800;
  box-shadow: 0 22px 36px rgba(24, 92, 52, 0.26);
}

.js .reveal {
  opacity: 1;
  transform: none;
}

.js .reveal.is-visible {
  animation: reveal-up 520ms ease both;
}

@keyframes reveal-up {
  from {
    opacity: 0.72;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1060px) {
  .hero,
  .section-intro,
  .split-grid,
  .closing-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-panel h2,
  h1 {
    max-width: none;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .closing-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 0.9rem 0;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-media {
    min-height: 228px;
  }

  .catalog-product {
    max-height: 250px;
  }

  .intent-grid {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-wrap div {
    text-align: left;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 92px;
  }

  .container {
    width: min(100vw - 24px, 1180px);
  }

  .hero {
    gap: 1.35rem;
    padding: 2.9rem 0 2rem;
  }

  .hero-panel,
  .statement-card,
  .flow-card,
  .closing-card,
  .alert-card,
  .product-card {
    border-radius: 24px;
  }

  .hero-panel,
  .statement-card,
  .flow-card,
  .closing-card {
    padding: 1.35rem;
  }

  .product-card {
    padding: 1rem;
    gap: 1rem;
  }

  .product-hook {
    font-size: 1.3rem;
  }

  .signal-row span,
  .intent-pill {
    width: 100%;
  }

  .btn-secondary {
    display: none;
  }

  .nav-actions {
    width: 100%;
  }

  .btn-primary {
    width: 100%;
  }

  .whatsapp-float {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
