﻿:root {
  --ivory: #f8f2e9;
  --cream: #f0e2cf;
  --gold: #b18452;
  --gold-deep: #8a6438;
  --sage: #95a28d;
  --ink: #2e2419;
  --text: #4b3b2b;
  --muted: #75624e;
  --line: rgba(153, 118, 76, 0.28);
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: rgba(255, 255, 255, 0.93);
  --shadow: 0 20px 50px rgba(90, 65, 36, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 8% 8%, rgba(188, 150, 97, 0.31), transparent 34%),
    radial-gradient(circle at 90% 14%, rgba(149, 165, 142, 0.22), transparent 30%),
    var(--ivory);
  background-image:
    url("../assets/images/pattern-dots.svg"),
    radial-gradient(circle at 8% 8%, rgba(188, 150, 97, 0.31), transparent 34%),
    radial-gradient(circle at 90% 14%, rgba(149, 165, 142, 0.22), transparent 30%);
}

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

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.12;
  font-family: "Cormorant Garamond", serif;
}

p {
  margin: 0;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

.section-pad {
  padding: 4rem 0;
}

.section-pad-sm {
  padding: 2.7rem 0 4.2rem;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: var(--gold-deep);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.section-title {
  font-size: clamp(2rem, 5.4vw, 3.3rem);
  margin-bottom: 1.3rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid transparent;
  transition: background-color 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.site-header.is-scrolled {
  background: rgba(248, 241, 232, 0.88);
  border-color: rgba(153, 118, 76, 0.15);
  box-shadow: 0 7px 22px rgba(82, 58, 32, 0.09);
  backdrop-filter: blur(8px);
}

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

.brand {
  font-size: 1.82rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

.brand span {
  color: var(--gold);
}

.menu-toggle {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: #5f452c;
  padding: 0.56rem 0.9rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.site-nav {
  position: absolute;
  top: 86px;
  left: 1rem;
  right: 1rem;
  display: none;
  flex-direction: column;
  gap: 0.74rem;
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

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

.site-nav a {
  font-weight: 700;
  color: #58412a;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.8rem 1.3rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #bc9767, #9e7342);
  box-shadow: 0 12px 27px rgba(158, 115, 66, 0.34);
}

.btn-soft {
  color: #5c432a;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(158, 115, 66, 0.3);
}

.btn-outline {
  color: #7b562e;
  background: rgba(188, 151, 103, 0.11);
  border-color: rgba(158, 115, 66, 0.3);
}

.btn-block {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 1.3rem;
  padding-bottom: 2.8rem;
}

.aura {
  position: absolute;
  border-radius: 50%;
  filter: blur(42px);
  pointer-events: none;
}

.aura-1 {
  width: 320px;
  height: 320px;
  right: -80px;
  top: 25px;
  background: rgba(188, 150, 97, 0.28);
}

.aura-2 {
  width: 220px;
  height: 220px;
  left: -80px;
  bottom: 45px;
  background: rgba(149, 165, 142, 0.25);
}

.hero-layout {
  position: relative;
  display: grid;
  gap: 1.1rem;
}

.hero-copy h1 {
  font-size: clamp(1.9rem, 5.2vw, 3.6rem);
  margin-bottom: 0.7rem;
  max-width: 13ch;
}

.hero-copy p {
  font-size: 0.98rem;
  max-width: 57ch;
  color: rgba(75, 59, 43, 0.92);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.benefit-pills {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.benefit-pills span {
  padding: 0.45rem 0.76rem;
  border-radius: 999px;
  border: 1px solid rgba(158, 115, 66, 0.27);
  background: rgba(255, 255, 255, 0.72);
  color: #664c31;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 380px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 0.5rem 0 0.8rem;
}

.hero-showcase {
  position: relative;
  width: min(100%, 460px);
  height: 370px;
  overflow: visible;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 14% 8% 10% 10%;
  border-radius: 40px;
  background: radial-gradient(circle at 20% 20%, rgba(187, 149, 98, 0.18), rgba(187, 149, 98, 0.02) 70%);
  filter: blur(2px);
  z-index: 1;
}

.showcase-card {
  margin: 0;
  position: absolute;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  z-index: 3;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.8s ease, filter 0.8s ease;
}

.showcase-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 18px 34px rgba(89, 63, 34, 0.22));
}

.showcase-card--main {
  width: 72%;
  right: 0;
  top: 3%;
}

.showcase-card--sub {
  width: 43%;
  left: 1%;
  bottom: 6%;
}

.hero-showcase.is-swapped .showcase-card--main {
  transform: translateX(-43%) translateY(14%) scale(0.74);
  opacity: 0.95;
  filter: saturate(0.94);
}

.hero-showcase.is-swapped .showcase-card--sub {
  transform: translateX(78%) translateY(-10%) scale(1.34);
  opacity: 1;
  filter: saturate(1.04);
  z-index: 4;
}

.hero-decor {
  position: absolute;
  width: 170px;
  opacity: 0.55;
  pointer-events: none;
}

.hero-decor--top {
  top: 10px;
  right: -8px;
  transform: rotate(8deg);
}

.hero-decor--bottom {
  left: -8px;
  bottom: 24px;
  transform: rotate(188deg);
}

.value-grid {
  display: grid;
  gap: 0.78rem;
}

.value-grid article,
.template-card,
.journey-item,
.testi-card,
.price-card,
.cta-box {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.79);
  box-shadow: var(--shadow);
}

.value-grid article {
  padding: 1rem;
}

.value-grid h3 {
  font-size: 1.45rem;
  margin-bottom: 0.3rem;
}

.alt-bg {
  background: linear-gradient(180deg, rgba(191, 157, 110, 0.08), rgba(191, 157, 110, 0.02));
}

.template-grid {
  display: grid;
  gap: 0.9rem;
}

.template-card {
  position: relative;
  overflow: hidden;
}

.template-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.template-card:hover img {
  transform: scale(1.04);
}

.template-body {
  padding: 1rem;
}

.template-body h3 {
  font-size: 1.7rem;
  margin-bottom: 0.35rem;
}

.template-body p {
  margin-bottom: 0.7rem;
}

.template-body a {
  font-weight: 800;
  color: #8c6133;
}

.chip {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 2;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #7a5228;
  background: rgba(255, 255, 255, 0.94);
}

.journey-grid,
.testi-grid,
.pricing-grid {
  display: grid;
  gap: 0.8rem;
}

.journey-item,
.testi-card,
.price-card {
  padding: 1rem;
}

.journey-item span {
  display: inline-flex;
  margin-bottom: 0.45rem;
  color: #8f6638;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.journey-item h3,
.testi-card h3,
.price-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.3rem;
}

.testi-card p {
  margin-bottom: 0.8rem;
}

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

.plan {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8f6638;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.price-card ul {
  margin: 0.2rem 0 1rem;
  padding-left: 1rem;
  display: grid;
  gap: 0.45rem;
}

.featured-plan {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(234, 218, 192, 0.56));
  transform: translateY(-2px);
}

.cta-box {
  text-align: center;
  padding: 1.4rem;
  background:
    radial-gradient(circle at 12% 22%, rgba(188, 150, 97, 0.18), transparent 36%),
    radial-gradient(circle at 87% 17%, rgba(149, 165, 142, 0.16), transparent 35%),
    rgba(255, 255, 255, 0.8);
}

.cta-box h2 {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  margin-bottom: 0.4rem;
}

.cta-box p {
  margin-bottom: 1rem;
}

.site-footer {
  border-top: 1px solid rgba(158, 115, 66, 0.23);
  padding: 1.4rem 0;
}

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.65rem;
  font-size: 0.9rem;
}

.footer-wrap a {
  color: #855b2f;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (min-width: 760px) {
  .hero {
    padding-top: 1.5rem;
    padding-bottom: 3.2rem;
  }

  .hero-layout {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 1.35rem;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-showcase {
    height: 430px;
  }

  .value-grid,
  .template-grid,
  .testi-grid,
  .pricing-grid,
  .journey-grid.three-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    gap: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
