/* =========================================================
   Pharmacie Saint-Antoine — Nice Ouest
   Thème botanique vert · design avancé
   ========================================================= */

:root {
  --green-900: #2f5d44;
  --green-700: #3d7a55;
  --green-600: #4e9a6e;
  --green-500: #6fb387;
  --green-300: #a7c957;
  --green-100: #e7f1e8;
  --green-50:  #f4f8f2;
  --cream:     #fbfaf5;
  --ink:       #2b3a31;
  --ink-soft:  #5a6b60;
  --white:     #ffffff;
  --shadow-sm: 0 6px 18px rgba(47, 93, 68, .08);
  --shadow-md: 0 16px 40px rgba(47, 93, 68, .14);
  --shadow-lg: 0 30px 70px rgba(47, 93, 68, .20);
  --radius:    22px;
  --radius-sm: 14px;
  --maxw:      1180px;
  --ease:      cubic-bezier(.16, 1, .3, 1);
  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif:"Cormorant Garamond", Georgia, serif;
  --font-script:"Dancing Script", cursive;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 300;
  overflow-x: clip;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.ic { width: 18px; height: 18px; fill: currentColor; flex: none; }

.script { font-family: var(--font-script); font-weight: 700; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--green-600);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border: none; cursor: pointer;
  font-family: var(--font-body); font-size: .98rem; font-weight: 500;
  border-radius: 50px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  position: relative;
}
.btn--primary {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: #fff;
  box-shadow: 0 12px 26px rgba(78, 154, 110, .35);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(78, 154, 110, .45); }
.btn--ghost {
  background: rgba(255, 255, 255, .7);
  color: var(--green-700);
  border: 1.5px solid var(--green-300);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { transform: translateY(-3px); background: #fff; box-shadow: var(--shadow-sm); }
.btn--lg { padding: 18px 38px; font-size: 1.05rem; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--green-900);
  color: #dceadf;
  font-size: .82rem;
  letter-spacing: .2px;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 40px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item .ic { width: 15px; height: 15px; fill: var(--green-300); }
.topbar__phone { font-weight: 500; color: #fff; transition: color .25s; }
.topbar__phone:hover { color: var(--green-300); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 250, 245, .85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(78, 154, 110, .12);
  transition: box-shadow .3s, background .3s;
}
.header.is-scrolled { box-shadow: var(--shadow-sm); background: rgba(251, 250, 245, .96); }
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { width: 50px; height: 50px; transition: transform .4s var(--ease); }
.brand:hover .brand__logo { transform: rotate(-6deg) scale(1.05); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-script); font-size: 1.5rem; color: var(--green-700); font-weight: 700; }
.brand__name--accent { color: var(--green-500); margin-top: -4px; }

.nav { display: flex; align-items: center; gap: 8px; }
.nav__link {
  padding: 10px 14px; font-size: .94rem; font-weight: 400; color: var(--ink-soft);
  border-radius: 50px; position: relative; transition: color .25s;
}
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--green-500); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav__link:hover { color: var(--green-700); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__cta {
  margin-left: 8px; padding: 11px 20px; font-size: .92rem; font-weight: 500; color: #fff;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  border-radius: 50px; box-shadow: 0 10px 22px rgba(78, 154, 110, .32);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(78, 154, 110, .42); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2.5px; background: var(--green-700); border-radius: 3px; transition: transform .3s, opacity .3s; }
.burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 80px 0 140px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; }
.blob--1 { width: 460px; height: 460px; background: radial-gradient(circle, #cfe6d4, transparent 70%); top: -120px; right: -120px; }
.blob--2 { width: 380px; height: 380px; background: radial-gradient(circle, #e8f0c8, transparent 70%); bottom: -100px; left: -120px; }
.leaf {
  position: absolute; width: 60px; height: 60px; opacity: .5;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 21c0-9 7-16 16-16 0 9-7 16-16 16z' fill='%23a7c957'/%3E%3C/svg%3E");
}
.leaf--1 { top: 14%; left: 8%; animation: float 9s ease-in-out infinite; }
.leaf--2 { top: 60%; right: 12%; width: 44px; height: 44px; animation: float 7s ease-in-out infinite reverse; }
.leaf--3 { top: 30%; right: 28%; width: 34px; height: 34px; opacity: .35; animation: float 11s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-22px) rotate(12deg); } }

.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero__eyebrow { font-size: 1rem; color: var(--green-700); letter-spacing: .5px; margin-bottom: 14px; }
.hero__eyebrow strong { color: var(--green-600); }
.hero__title { font-family: var(--font-serif); font-weight: 600; font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.02; color: var(--ink); }
.hero__title .script { display: inline-block; font-size: clamp(3rem, 8vw, 5.6rem); color: var(--green-600); margin-top: 4px; }
.hero__lead { max-width: 540px; margin: 22px 0 30px; color: var(--ink-soft); font-size: 1.05rem; }
.hero__lead strong { color: var(--green-700); font-weight: 600; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__badges { display: flex; gap: 22px; margin-top: 30px; flex-wrap: wrap; }
.hero__badges li { display: flex; align-items: center; gap: 8px; font-size: .92rem; color: var(--ink-soft); }
.hero__badges span { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--green-100); color: var(--green-700); font-size: .72rem; font-weight: 700; }

.hero__card { display: flex; justify-content: center; }
.cross-card {
  width: 100%; max-width: 360px; background: var(--white);
  border-radius: 30px; padding: 40px 34px; text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(78, 154, 110, .1);
  position: relative; transition: transform .5s var(--ease);
}
.cross-card::before {
  content: ""; position: absolute; inset: 0; border-radius: 30px; padding: 1.5px;
  background: linear-gradient(135deg, var(--green-300), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.cross-card img { width: 110px; height: 110px; margin: 0 auto 12px; }
.cross-card__title { font-size: 2.2rem; color: var(--green-600); }
.cross-card__sub { color: var(--ink-soft); font-size: .95rem; margin-top: 4px; }
.cross-card__stats { margin-top: 22px; padding-top: 22px; border-top: 1px dashed rgba(78,154,110,.25); }
.cross-card__stats strong { display: block; font-size: 1.45rem; color: var(--green-700); font-weight: 700; }
.cross-card__stats span { font-size: .82rem; color: var(--ink-soft); letter-spacing: .5px; text-transform: uppercase; }

.hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; z-index: 1; }
.hero__wave svg { width: 100%; height: 110px; }
.hero__wave path { fill: var(--green-50); }

/* ---------- Section heads ---------- */
.section-kicker {
  display: inline-block; font-size: .8rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--green-600); font-weight: 600; margin-bottom: 12px;
}
.section-kicker--light { color: var(--green-300); }
.section-title { font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.1; color: var(--ink); }
.section-title .script { color: var(--green-600); }
.section-title--light { color: #fff; }
.section-title--light .script { color: var(--green-300); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.section-sub { margin-top: 16px; color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Click & Collect ---------- */
.cc { background: var(--green-50); padding: 40px 0 100px; position: relative; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step {
  background: #fff; border-radius: var(--radius); padding: 38px 30px 32px; position: relative;
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s;
  overflow: hidden;
}
.step::after {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--green-300)); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.step:hover::after { transform: scaleX(1); }
.step__num {
  position: absolute; top: 22px; right: 26px; font-family: var(--font-serif);
  font-size: 3.2rem; font-weight: 600; color: var(--green-100); line-height: 1;
}
.step__icon { width: 58px; height: 58px; border-radius: 16px; background: var(--green-100); display: grid; place-items: center; margin-bottom: 18px; }
.step__icon svg { width: 28px; height: 28px; fill: var(--green-600); }
.step h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; color: var(--green-900); }
.step p { color: var(--ink-soft); font-size: .96rem; }
.cc__cta { text-align: center; margin-top: 46px; }

/* ---------- Services ---------- */
.services { padding: 100px 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: #fff; border: 1px solid rgba(78,154,110,.1); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .4s var(--ease), box-shadow .4s, border-color .3s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__icon {
  width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--green-100), #eef5db);
  transition: transform .4s var(--ease);
}
.card:hover .card__icon { transform: rotate(-8deg) scale(1.08); }
.card__icon svg { width: 30px; height: 30px; fill: var(--green-600); }
.card h3 { font-size: 1.2rem; font-weight: 600; color: var(--green-900); margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- About ---------- */
.about { background: var(--green-50); padding: 100px 0; }
.about__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.about__media { position: relative; display: flex; justify-content: center; }
.about__logo-wrap {
  width: 320px; height: 320px; border-radius: 40px; display: grid; place-items: center;
  background: radial-gradient(circle at 30% 30%, #fff, var(--green-100));
  box-shadow: var(--shadow-lg); position: relative;
}
.about__logo-wrap::before {
  content: ""; position: absolute; inset: -16px; border-radius: 50px; border: 2px dashed var(--green-300); opacity: .5;
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.about__logo-wrap img { width: 200px; height: 200px; }
.about__tag {
  position: absolute; bottom: 8px; background: var(--green-700); color: #fff; font-size: .82rem;
  padding: 9px 20px; border-radius: 50px; box-shadow: var(--shadow-md); letter-spacing: .3px;
}
.about__content p { color: var(--ink-soft); margin-top: 16px; }
.about__content strong { color: var(--green-700); font-weight: 600; }
.about__list { margin: 24px 0 28px; display: grid; gap: 12px; }
.about__list li { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.about__list span { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--green-600); color: #fff; font-size: .8rem; flex: none; }

/* ---------- Form section ---------- */
.form-section {
  position: relative; padding: 100px 0;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: #eaf3ec; overflow: hidden;
}
.form-section::before, .form-section::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px); opacity: .35;
}
.form-section::before { width: 420px; height: 420px; background: var(--green-500); top: -120px; left: -100px; }
.form-section::after { width: 360px; height: 360px; background: var(--green-300); bottom: -120px; right: -80px; }
.form-section__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.form-intro p { margin-top: 16px; color: #d3e6d8; max-width: 460px; }
.form-intro__list { margin: 28px 0; display: grid; gap: 14px; }
.form-intro__list li { display: flex; align-items: center; gap: 12px; font-size: .96rem; color: #eaf3ec; }
.form-intro__list .ic { fill: var(--green-300); width: 22px; height: 22px; }
.form-intro__contact { display: flex; flex-direction: column; gap: 6px; margin-top: 26px; }
.form-intro__contact a { color: #fff; transition: color .25s; }
.form-intro__contact a:first-child { font-size: 1.4rem; font-weight: 600; }
.form-intro__contact a:hover { color: var(--green-300); }

.oform {
  background: #fff; color: var(--ink); border-radius: var(--radius); padding: 38px 34px;
  box-shadow: var(--shadow-lg); display: grid; gap: 18px;
}
.oform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .88rem; font-weight: 500; color: var(--green-900); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: .98rem; font-weight: 300; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid #dfe7e0; border-radius: var(--radius-sm);
  background: var(--green-50); transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--green-500); background: #fff;
  box-shadow: 0 0 0 4px rgba(111, 179, 135, .18);
}
.field textarea { resize: vertical; }
.field.is-invalid input, .field.is-invalid textarea { border-color: #d9534f; background: #fdf3f3; }
.field__error { font-size: .8rem; color: #d9534f; min-height: 0; transition: min-height .2s; }
.field.is-invalid .field__error { min-height: 16px; }

.dropzone {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  padding: 28px 20px; border: 2px dashed var(--green-300); border-radius: var(--radius-sm);
  background: var(--green-50); cursor: pointer; text-align: center;
  transition: border-color .25s, background .25s, transform .25s;
}
.dropzone:hover { background: var(--green-100); transform: translateY(-2px); }
.dropzone.is-drag { border-color: var(--green-600); background: var(--green-100); }
.dropzone.has-file { border-style: solid; border-color: var(--green-600); }
.dropzone__icon { width: 38px; height: 38px; fill: var(--green-600); }
.dropzone__text { font-size: .92rem; color: var(--ink-soft); }
.dropzone__text strong { color: var(--green-700); }
.dropzone__file { font-size: .86rem; font-weight: 500; color: var(--green-700); }

.consent { display: flex; gap: 12px; align-items: flex-start; font-size: .85rem; color: var(--ink-soft); cursor: pointer; }
.consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--green-600); flex: none; }

.hp { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.oform__submit { justify-content: center; margin-top: 4px; }
.oform__spinner { display: none; width: 18px; height: 18px; border: 2.5px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
.oform.is-sending .oform__spinner { display: inline-block; }
.oform.is-sending .oform__submit { pointer-events: none; opacity: .85; }
.oform__feedback { font-size: .92rem; text-align: center; min-height: 0; }
.oform__feedback.is-success { color: var(--green-700); font-weight: 500; }
.oform__feedback.is-error { color: #d9534f; font-weight: 500; }

/* ---------- Access ---------- */
.access { padding: 100px 0; }
.access__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: stretch; }
.infos { margin: 26px 0 32px; display: grid; gap: 20px; }
.infos li { display: flex; gap: 16px; }
.infos .ic { width: 24px; height: 24px; fill: var(--green-600); margin-top: 3px; }
.infos div { color: var(--ink-soft); font-size: .96rem; }
.infos strong { color: var(--green-900); }
.infos a { color: var(--green-700); }
.infos a:hover { text-decoration: underline; }

.hours { background: var(--green-50); border-radius: var(--radius); padding: 26px 28px; border: 1px solid rgba(78,154,110,.12); }
.hours h3 { display: flex; align-items: center; gap: 10px; font-size: 1.15rem; color: var(--green-900); margin-bottom: 14px; }
.hours h3 .ic { fill: var(--green-600); width: 22px; height: 22px; }
.hours ul { display: grid; gap: 10px; }
.hours li { display: flex; justify-content: space-between; padding-bottom: 9px; border-bottom: 1px dashed rgba(78,154,110,.2); font-size: .95rem; }
.hours li:last-child { border-bottom: none; padding-bottom: 0; }
.hours b { color: var(--green-700); }
.hours__note { margin-top: 14px; font-size: .82rem; color: var(--ink-soft); font-style: italic; }

.access__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); min-height: 420px; }
.access__map iframe { width: 100%; height: 100%; }

/* ---------- Footer ---------- */
.footer { background: var(--green-900); color: #c9dccf; padding: 60px 0 24px; }
.footer__inner { display: grid; grid-template-columns: 1.3fr 1fr 1.2fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img { width: 54px; height: 54px; background: #fff; border-radius: 14px; padding: 6px; }
.footer__brand .script { display: block; font-size: 1.6rem; color: #fff; }
.footer__brand small { color: var(--green-300); }
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a { font-size: .94rem; transition: color .25s, padding .25s; }
.footer__nav a:hover { color: #fff; padding-left: 5px; }
.footer__contact { display: flex; flex-direction: column; gap: 8px; font-size: .94rem; }
.footer__contact a:not(.social) { transition: color .25s; }
.footer__contact a:not(.social):hover { color: #fff; }
.socials { display: flex; gap: 12px; margin-top: 8px; }
.social {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .12);
  transition: transform .3s var(--ease), background .3s, box-shadow .3s;
}
.social svg { width: 20px; height: 20px; fill: #c9dccf; transition: fill .3s; }
.social:hover { transform: translateY(-3px); background: var(--green-600); box-shadow: 0 10px 22px rgba(78, 154, 110, .4); }
.social:hover svg { fill: #fff; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 22px; font-size: .82rem; color: #9fb6a6; }
.footer__bottom strong { color: var(--green-300); }

/* ---------- Floating action button ---------- */
.fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: flex; align-items: center; gap: 9px; padding: 14px 20px;
  background: linear-gradient(135deg, var(--green-600), var(--green-700)); color: #fff;
  border-radius: 50px; box-shadow: 0 14px 30px rgba(47,93,68,.4);
  font-size: .92rem; font-weight: 500;
  transform: translateY(120px); opacity: 0; transition: transform .45s var(--ease), opacity .45s, box-shadow .3s;
}
.fab.is-visible { transform: translateY(0); opacity: 1; }
.fab:hover { box-shadow: 0 18px 38px rgba(47,93,68,.5); }
.fab svg { width: 20px; height: 20px; fill: #fff; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }

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

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero__inner, .about__inner, .form-section__inner, .access__inner { grid-template-columns: 1fr; }
  .hero__card { order: -1; }
  .cross-card { max-width: 320px; }
  .steps, .cards { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .access__map { min-height: 340px; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed; top: 76px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); padding: 12px 24px 24px; border-bottom: 1px solid rgba(78,154,110,.15);
    box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; transform: translateY(-12px); pointer-events: none;
    transition: opacity .3s var(--ease), transform .35s var(--ease), visibility .35s; z-index: 99;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
  .nav__link { padding: 14px 6px; border-bottom: 1px solid rgba(78,154,110,.1); }
  .nav__link::after { display: none; }
  .nav__cta { margin: 14px 0 0; text-align: center; }
  .burger { display: flex; }
  .topbar__inner { justify-content: center; }
  .topbar__item:first-child { display: none; }
}

@media (max-width: 560px) {
  .steps, .cards, .oform__row, .footer__inner { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 110px; }
  .oform { padding: 28px 22px; }
  .fab span { display: none; }
  .fab { padding: 16px; }
  .footer__bottom { flex-direction: column; }
  .topbar { font-size: .76rem; }
}
