/* ============================================================
   LexLine Virtual — styles.css
   Elegant neutral brand: ivory, olive green, muted gold.
   Structure:
   1. Design tokens (CSS variables)
   2. Base / reset
   3. Reusable pieces (container, buttons, dividers, leaves)
   4. Navigation
   5. Hero
   6. Meet Alexis
   7. How I Can Help
   8. Why Work With Me
   9. Packages
   10. Contact
   11. Footer
   12. Scroll reveal animation
   13. Responsive breakpoints
   ============================================================ */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Brand palette */
  --ivory:        #F6F1E8;   /* warm off-white page background */
  --ivory-soft:   #FBF7F0;   /* lighter tint for alternating sections */
  --cream:        #FDFBF6;   /* card surfaces */
  --olive:        #565E3B;   /* primary olive green */
  --olive-dark:   #464B30;   /* deep olive for shapes / footer */
  --olive-soft:   #EEEDE2;   /* faint olive wash */
  --gold:         #B79256;   /* muted gold accent */
  --gold-light:   #CBAF7E;   /* soft gold */
  --ink:          #29271F;   /* near-black serif text */
  --muted:        #736E60;   /* muted taupe body text */
  --line:         #E4DCCB;   /* hairline borders */

  /* Typography */
  --serif:  'Playfair Display', Georgia, serif;
  --soft-serif: 'Cormorant Garamond', Georgia, serif;
  --script: 'Parisienne', cursive;
  --sans:   'Jost', 'Helvetica Neue', Arial, sans-serif;

  /* Effects */
  --radius:    22px;
  --radius-sm: 14px;
  --shadow:    0 18px 40px -22px rgba(70, 75, 48, 0.35);
  --shadow-sm: 0 10px 26px -18px rgba(70, 75, 48, 0.3);
  --transition: 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  --maxw: 1160px;
}

/* ---------- 2. Base / reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { margin: 0; font-weight: 500; line-height: 1.2; }

/* ---------- 3. Reusable pieces ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { position: relative; padding: 96px 0; overflow: hidden; }
.section--tint { background: var(--ivory-soft); }

/* Section headings */
.section-head { text-align: center; margin-bottom: 56px; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  letter-spacing: 0.5px;
  color: var(--ink);
}
.section-eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 14px 0 0;
}
.section-sub {
  font-family: var(--soft-serif);
  font-size: 1.3rem;
  color: var(--muted);
  margin: 12px auto 0;
  max-width: 620px;
}

/* Script + gold accent helpers */
.script { font-family: var(--script); color: var(--gold); font-weight: 400; }
.section-title .script { font-size: 1.15em; line-height: 1; }
.gold { color: var(--gold); font-weight: 500; }

/* Elegant divider with gold dot */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 26px 0;
}
.divider--sm { margin: 20px auto 0; }
.divider__line {
  height: 1px;
  width: 70px;
  background: linear-gradient(90deg, transparent, var(--gold-light));
}
.divider__line:last-child { background: linear-gradient(90deg, var(--gold-light), transparent); }
.divider__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}
.divider--gold .divider__line { background: linear-gradient(90deg, transparent, var(--gold)); }
.divider--gold .divider__line:last-child { background: linear-gradient(90deg, var(--gold), transparent); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.82rem;
  padding: 14px 30px;
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), color var(--transition);
  will-change: transform;
}
.btn--primary { background: var(--olive); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--olive-dark); transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--olive); border-color: var(--gold-light); }
.btn--ghost:hover { background: var(--olive); color: #fff; border-color: var(--olive); transform: translateY(-3px); }
.btn--outline { background: transparent; color: var(--olive); border-color: var(--olive); }
.btn--outline:hover { background: var(--olive); color: #fff; transform: translateY(-3px); }
.btn--full { width: 100%; text-transform: none; letter-spacing: 0.4px; }

/* Botanical leaf accents (decorative SVG) */
.leaf {
  position: absolute;
  color: var(--olive);
  opacity: 0.16;
  width: 150px;
  pointer-events: none;
  z-index: 0;
}

/* ---------- 4. Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 241, 232, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), background var(--transition), border-color var(--transition);
}
.nav.is-scrolled {
  box-shadow: 0 6px 24px -18px rgba(70, 75, 48, 0.5);
  border-color: var(--line);
  background: rgba(246, 241, 232, 0.94);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.nav__logo { height: 44px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__link {
  font-size: 0.9rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  transition: color var(--transition);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { width: 100%; }
.nav__link--cta {
  padding: 9px 22px;
  border: 1.5px solid var(--gold-light);
  border-radius: 999px;
  color: var(--olive);
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--olive); color: #fff; border-color: var(--olive); }

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 26px; height: 2px;
  background: var(--olive);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 5. Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 70px 0;
  overflow: hidden;
}
/* Olive organic shape on the right */
.hero__shape {
  position: absolute;
  top: -12%;
  right: -14%;
  width: 46vw;
  height: 120%;
  background: linear-gradient(160deg, var(--olive) 0%, var(--olive-dark) 100%);
  border-radius: 46% 54% 42% 58% / 60% 44% 56% 40%;
  opacity: 0.9;
  z-index: 0;
}
.leaf--hero-left { top: 8%; left: -30px; transform: rotate(-14deg); }

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
}
.hero__logo {
  width: min(360px, 76vw);
  margin: 0 auto;
}
.hero__script {
  font-family: var(--script);
  color: var(--gold);
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin: 6px 0 4px;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
  color: var(--ink);
  letter-spacing: 0.4px;
}
.hero__subtitle {
  font-family: var(--soft-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  color: var(--muted);
  margin: 18px auto 0;
  max-width: 540px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* ---------- 6. Meet Alexis ---------- */
.leaf--about-right { top: 6%; right: -34px; transform: scaleX(-1) rotate(-10deg); }
.about__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: center;
}
.about__photo { display: flex; justify-content: center; }
.about__photo-ring {
  --ring: 300px;
  width: var(--ring);
  height: var(--ring);
  border-radius: 50%;
  padding: 10px;
  background: var(--cream);
  border: 2px solid var(--gold-light);
  box-shadow: var(--shadow);
  position: relative;
}
.about__photo-ring::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.5;
}
.about__photo-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transform: scale(1.06); /* clip the crop's faint outer ring */
}
.about__hi {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 14px;
}
.about__text p { color: var(--muted); font-size: 1.08rem; max-width: 560px; }
.wave { display: inline-block; }

/* Trait badges */
.badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.badge { text-align: center; }
.badge__icon {
  width: 62px; height: 62px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream);
  border: 1.5px solid var(--gold-light);
  color: var(--olive);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.badge__icon svg { width: 26px; height: 26px; }
.badge:hover .badge__icon { transform: translateY(-4px); background: var(--olive); color: #fff; border-color: var(--olive); }
.badge__label {
  font-size: 0.74rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
  line-height: 1.4;
}

/* ---------- 7. How I Can Help ---------- */
.leaf--help-left { bottom: 6%; left: -34px; transform: rotate(8deg); }
.help__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.services { display: grid; gap: 16px; align-content: start; }
.service {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service:hover { transform: translateX(6px); border-color: var(--gold-light); box-shadow: var(--shadow); }
.service__icon {
  flex: none;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--olive);
  color: #fff;
}
.service__icon svg { width: 24px; height: 24px; }
.service__label { font-family: var(--soft-serif); font-size: 1.32rem; color: var(--ink); }

/* Right callout card */
.callout {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.callout__sparkle {
  width: 54px; height: 54px;
  color: var(--gold);
  margin-bottom: 6px;
}
.callout__sparkle svg { width: 100%; height: 100%; }
.callout__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.callout__text { color: var(--muted); font-family: var(--soft-serif); font-size: 1.2rem; margin: 18px 0 22px; }
.callout__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  color: var(--olive);
  transition: color var(--transition);
}
.callout__phone svg { width: 18px; height: 18px; color: var(--gold); }
.callout__phone:hover { color: var(--gold); }

/* ---------- 8. Why Work With Me ---------- */
.leaf--why-right { top: 4%; right: -30px; transform: scaleX(-1); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
/* Center the last row of two cards */
.why-card:nth-child(4) { grid-column: 1 / 2; }
.why-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-light); }
.why-card__icon {
  width: 66px; height: 66px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--olive-soft);
  color: var(--olive);
  transition: background var(--transition), color var(--transition);
}
.why-card:hover .why-card__icon { background: var(--olive); color: #fff; }
.why-card__icon svg { width: 30px; height: 30px; }
.why-card h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 10px; }
.why-card p { color: var(--muted); margin: 0; }

/* ---------- 9. Packages ---------- */
.leaf--pkg-left { top: 5%; left: -34px; transform: rotate(-8deg); }
.pkg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
.pkg {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-light); }
.pkg--featured {
  border-color: var(--gold);
  box-shadow: 0 26px 54px -26px rgba(70, 75, 48, 0.5);
  transform: translateY(-14px);
}
.pkg--featured:hover { transform: translateY(-20px); }
.pkg__badge {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.pkg__icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--olive);
  color: #fff;
  margin-bottom: 18px;
}
.pkg__icon svg { width: 28px; height: 28px; }
.pkg__name {
  font-family: var(--sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.05rem;
  color: var(--olive);
}
.pkg__price {
  font-family: var(--serif);
  font-size: 3.4rem;
  color: var(--ink);
  margin: 8px 0 6px;
  line-height: 1;
}
.pkg__dollar { font-size: 1.6rem; vertical-align: top; color: var(--gold); margin-right: 2px; }
.pkg__mo { font-family: var(--sans); font-size: 1rem; color: var(--muted); font-weight: 300; }
.pkg__best {
  font-family: var(--soft-serif);
  font-size: 1.12rem;
  color: var(--muted);
  margin: 0 0 20px;
}
.pkg__best strong { color: var(--ink); font-weight: 600; }
.pkg__list {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
  flex-grow: 1;
}
.pkg__list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  font-size: 0.98rem;
}
.pkg__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  background:
    linear-gradient(var(--gold), var(--gold)) no-repeat 4px 8px / 3px 6px,
    linear-gradient(var(--gold), var(--gold)) no-repeat 8px 5px / 3px 9px;
  transform: none;
}
/* checkmark drawn with a rotated box */
.pkg__list li::before {
  content: "✓";
  color: var(--gold);
  font-size: 1rem;
  line-height: 1.4;
  background: none;
  font-weight: 600;
}

/* Custom package strip */
.pkg__custom {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  background: var(--cream);
  border: 1px dashed var(--gold-light);
  border-radius: var(--radius);
  padding: 26px 34px;
  box-shadow: var(--shadow-sm);
}
.pkg__custom p { margin: 0; font-family: var(--soft-serif); font-size: 1.2rem; color: var(--muted); }
.pkg__custom p strong { color: var(--ink); font-family: var(--serif); font-weight: 500; }
.pkg__custom-icon {
  width: 54px; height: 54px;
  flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--olive);
  color: #fff;
}
.pkg__custom-icon svg { width: 24px; height: 24px; }

/* ---------- 10. Contact ---------- */
.leaf--contact-left { top: 8%; left: -34px; transform: rotate(10deg); }
.leaf--contact-right { bottom: 8%; right: -34px; transform: scaleX(-1) rotate(10deg); }
.contact__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 300px));
  gap: 26px;
  justify-content: center;
}
/* Wrap the contact cards gracefully on narrower screens */
@media (max-width: 940px) {
  .contact__cards { grid-template-columns: repeat(2, minmax(0, 300px)); }
}
.contact-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-light); }
.contact-card__icon {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--olive);
  color: #fff;
}
.contact-card__icon svg { width: 28px; height: 28px; }
.contact-card__label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-card__value { font-family: var(--soft-serif); font-size: 1.25rem; color: var(--ink); word-break: break-word; }

/* Contact form */
.contact-form {
  max-width: 720px;
  margin: 44px auto 0;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 38px;
  display: grid;
  gap: 20px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-size: 0.78rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--olive);
}
.field__opt { color: var(--muted); text-transform: none; letter-spacing: 0.5px; font-size: 0.72rem; }
.field input,
.field textarea {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  color: var(--ink);
  background: var(--ivory-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder,
.field textarea::placeholder { color: #A9A392; }
.field input:focus,
.field textarea:focus {
  outline: none;
  background: var(--cream);
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(183, 146, 86, 0.15);
}
.contact-form__submit { justify-self: center; min-width: 220px; margin-top: 6px; }
/* Honeypot: hidden from real users, catches spam bots */
.contact-form__honeypot { position: absolute; left: -9999px; opacity: 0; }
.contact-form__status {
  text-align: center;
  margin: 0;
  font-family: var(--soft-serif);
  font-size: 1.1rem;
  min-height: 1.2em;
}
.contact-form__status.is-success { color: var(--olive); }
.contact-form__status.is-error { color: #A6503C; }

.contact__tagline { text-align: center; margin-top: 54px; }
.contact__big { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2rem); color: var(--ink); margin: 0; }
.contact__script { font-size: clamp(2rem, 5vw, 3rem); margin: 6px 0 0; }

/* ---------- 11. Footer ---------- */
.footer {
  background: linear-gradient(160deg, var(--olive) 0%, var(--olive-dark) 100%);
  color: #F1EEE2;
  padding: 56px 0 34px;
  text-align: center;
}
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer__logo {
  height: 52px;
  width: auto;
  background: var(--ivory);
  border-radius: 14px;
  padding: 12px 22px;
}
.footer__tag {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: var(--gold-light);
  margin: 6px 0 2px;
}
.footer__links { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
.footer__links a { transition: color var(--transition); }
.footer__links a:hover { color: var(--gold-light); }
.footer__sep { color: var(--gold-light); }
.footer__copy { font-size: 0.8rem; color: rgba(241, 238, 226, 0.6); margin-top: 14px; }

/* ---------- 12. Scroll reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
/* Stagger children inside grids */
.reveal.is-visible { transition-delay: var(--delay, 0s); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- 13. Responsive ---------- */
@media (max-width: 940px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .about__text p { margin-inline: auto; }
  .help__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .why-card:nth-child(4) { grid-column: auto; }
  .pkg__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .pkg--featured { transform: none; }
  .pkg--featured:hover { transform: translateY(-6px); }
}

@media (max-width: 820px) {
  /* Mobile nav */
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 74px;
    right: 0;
    width: min(78vw, 320px);
    height: calc(100vh - 74px);
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 30px 28px;
    background: var(--ivory-soft);
    box-shadow: -14px 0 40px -26px rgba(70,75,48,0.6);
    transform: translateX(110%);
    transition: transform var(--transition);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__link { width: 100%; padding: 10px 0; font-size: 1rem; }
  .nav__link--cta { margin-top: 10px; }

  .section { padding: 72px 0; }
  .hero { min-height: 82vh; }
  .hero__shape { width: 70vw; right: -30%; opacity: 0.85; }
}

@media (max-width: 560px) {
  .badges { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .contact__cards { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .pkg__custom { flex-direction: column; }
  .leaf { width: 100px; opacity: 0.12; }
  .hero__actions .btn { width: 100%; }
  /* Stack form fields on small screens */
  .contact-form { padding: 30px 22px; }
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-form__submit { width: 100%; }
}
