:root {
  --bg: #f5f1e8;
  --bg-strong: #ebe3d3;
  --text: #2f2d28;
  --muted: #686257;
  --olive: #5c6b4a;
  --olive-strong: #465437;
  --line: rgba(58, 56, 51, 0.12);
  --card: rgba(255, 252, 246, 0.82);
  --shadow: 0 18px 50px rgba(38, 31, 23, 0.1);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(92, 107, 74, 0.14), transparent 24%),
    radial-gradient(circle at top right, rgba(201, 155, 122, 0.18), transparent 26%),
    linear-gradient(180deg, #fbf8f1 0%, var(--bg) 45%, #f2ecdf 100%);
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.55), transparent 22%),
    radial-gradient(circle at 8% 65%, rgba(92, 107, 74, 0.08), transparent 18%),
    radial-gradient(circle at 92% 75%, rgba(201, 155, 122, 0.1), transparent 20%);
}

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(245, 241, 232, 0.76);
  border-bottom: 1px solid rgba(58, 56, 51, 0.08);
  box-shadow: 0 8px 24px rgba(35, 30, 24, 0.05);
}

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

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

.brand-mark {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(92, 107, 74, 0.28);
  background: rgba(255, 255, 255, 0.38);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 0.06rem;
}

.brand-copy strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  line-height: 0.9;
  letter-spacing: 0.08em;
  word-break: break-word;
}

.brand-copy span {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.35;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topnav {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.topnav a {
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
}

.topnav a:hover {
  color: var(--olive);
  border-bottom-color: currentColor;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.92rem;
  border-radius: 999px;
  border: 1px solid rgba(58, 56, 51, 0.12);
  background: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.pill.primary {
  border-color: transparent;
  background: var(--olive);
  color: #fff;
}

.hero {
  padding: 3.5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 240px;
  height: 240px;
  top: -90px;
  right: -80px;
  background: radial-gradient(circle, rgba(92, 107, 74, 0.12), transparent 68%);
}

.hero::after {
  width: 180px;
  height: 180px;
  left: -70px;
  bottom: 20px;
  background: radial-gradient(circle, rgba(201, 155, 122, 0.12), transparent 68%);
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--olive);
  font-weight: 800;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 1.8rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.7rem);
  max-width: 10ch;
  margin-top: 0.8rem;
}

.hero p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.02rem;
  margin: 1.2rem 0 0;
  line-height: 1.75;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(58, 56, 51, 0.08);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-badge::before {
  content: '✦';
  color: var(--olive);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.82rem 1.05rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(38, 31, 23, 0.12);
}

.btn-primary {
  background: var(--olive);
  color: #fff;
  box-shadow: 0 10px 24px rgba(92, 107, 74, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(58, 56, 51, 0.12);
  color: var(--text);
}

.hero-panel {
  border-radius: 32px;
  padding: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 242, 0.88)),
    radial-gradient(circle at top right, rgba(92, 107, 74, 0.12), transparent 35%);
  border: 1px solid rgba(58, 56, 51, 0.08);
  box-shadow: var(--shadow);
  position: relative;
  transform: translateZ(0);
}

.hero-photo-wrap {
  min-height: 700px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  background: var(--bg-strong);
}

.hero-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(38, 31, 23, 0.72) 100%);
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
  object-position: center 58%;
}

.hero-photo-caption {
  position: absolute;
  inset: auto 1.4rem 1.4rem;
  z-index: 1;
  display: grid;
  gap: 0.45rem;
  color: #fff;
}

.hero-photo-caption .eyebrow {
  color: #fff;
}

.hero-photo-caption strong {
  max-width: 12ch;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 0.95;
}

.hero-panel::after {
  content: '';
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 107, 74, 0.14), transparent 70%);
  pointer-events: none;
}

.hero-panel-inner {
  border-radius: 26px;
  padding: 1.2rem;
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(92, 107, 74, 0.16), rgba(201, 155, 122, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.48));
  display: grid;
  gap: 1rem;
  align-content: space-between;
  position: relative;
  overflow: hidden;
}

.hero-panel-inner::after {
  content: '';
  position: absolute;
  inset: auto -30px -35px auto;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55), transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.stat {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(58, 56, 51, 0.08);
  padding: 1rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
}

.stat span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.section {
  padding: 1rem 0 4rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.section-head p {
  margin: 0;
  max-width: 46ch;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  gap: 1.1rem;
}

.card {
  border-radius: var(--radius);
  padding: 1.3rem;
  background: var(--card);
  border: 1px solid rgba(58, 56, 51, 0.08);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(38, 31, 23, 0.12);
  border-color: rgba(92, 107, 74, 0.18);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--olive), #b8c093);
}

.card.featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 244, 236, 0.9)),
    linear-gradient(135deg, rgba(92, 107, 74, 0.08), rgba(201, 155, 122, 0.08));
  transform: translateY(-4px);
}

.card.featured::before {
  background: linear-gradient(90deg, #3f4d32, var(--olive), #b8c093);
  height: 5px;
}

.card.featured .tag {
  background: rgba(63, 77, 50, 0.12);
  color: #3f4d32;
}

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  margin-bottom: 0.9rem;
}

.card-top .tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(92, 107, 74, 0.12);
  color: var(--olive-strong);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.price {
  text-align: right;
}

.price strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
}

.price span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card h3 {
  font-size: 2.15rem;
  margin-bottom: 0.4rem;
}

.card.featured h3 {
  font-size: 2.3rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.features {
  margin: 1rem 0 1.2rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.features li {
  display: flex;
  gap: 0.65rem;
  align-items: start;
  color: var(--text);
}

.features li::before {
  content: '✦';
  color: var(--olive);
  flex: none;
  margin-top: 0.05rem;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: auto;
}

.grid-2 {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.info-box {
  border-radius: 22px;
  padding: 1.25rem;
  border: 1px solid rgba(58, 56, 51, 0.08);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.info-box h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.info-box ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border-radius: 20px;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(58, 56, 51, 0.08);
}

.faq-item strong {
  display: block;
  margin-bottom: 0.35rem;
}

.footer-cta {
  margin: 0 auto 3rem;
  padding: 1.45rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(92, 107, 74, 0.12), rgba(201, 155, 122, 0.16)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.45), transparent 38%);
  border: 1px solid rgba(58, 56, 51, 0.08);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.footer-cta::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55), transparent 70%);
  pointer-events: none;
}

.footer-cta-inner {
  display: grid;
  gap: 0.8rem;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.footer-cta p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

@media (max-width: 759px) {
  .container {
    width: min(1180px, calc(100% - 1rem));
  }

  .topbar-inner {
    padding: 0.65rem 0;
    align-items: flex-start;
  }

  .topnav {
    justify-content: flex-start;
    gap: 0.75rem;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .topbar-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .topbar-actions .pill,
  .hero-actions .btn,
  .footer-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding-top: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
    gap: 0.7rem;
  }
}

@media (min-width: 760px) {
  .topbar-inner {
    flex-wrap: nowrap;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.8rem;
  }

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

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

  .hero-badges {
    max-width: 48rem;
  }
}

@media (min-width: 1080px) {
  .pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
