/* ============================================================
   GINEJOVEN · Sistema visual
   Paleta oficial: 8293DC · 262B35 · FB4959 · F7CFCD · FF8189 · EBEFF2 · D6DBF2
   Tipografía: DIN Next LT Pro (marca) → Barlow (web, sustituto libre)
   ============================================================ */

:root {
  --navy: #262b35;
  --navy-2: #323947;
  --blue: #8293dc;
  --blue-deep: #6a7dd0;
  --blue-soft: #d6dbf2;
  --coral: #fb4959;
  --coral-deep: #e63d4c;
  --salmon: #ff8189;
  --pink: #f7cfcd;
  --pink-2: #e8b0af;
  --gray: #ebeff2;
  --gray-2: #f6f7fa;
  --white: #ffffff;
  --text: var(--navy);
  --text-2: #5b6272;
  --line: #e2e6ee;

  --font: "Barlow", "DIN Next LT Pro", "DIN Next", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(38, 43, 53, .08);
  --shadow-lg: 0 24px 60px rgba(38, 43, 53, .14);
  --container: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--blue-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { margin: 0; line-height: 1.12; font-weight: 700; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--navy); color: #fff; padding: .5rem 1rem; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }
.center { text-align: center; }
.mt { margin-top: 2.5rem; }
.muted { color: var(--text-2); }
.small { font-size: .92rem; color: var(--text-2); }
.ico { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .72em 1.35em; border-radius: 999px; font-weight: 600; font-size: 1rem;
  border: 2px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: .9em 1.7em; font-size: 1.06rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 8px 22px rgba(251, 73, 89, .28); }
.btn-primary:hover { background: var(--coral-deep); box-shadow: 0 12px 28px rgba(251, 73, 89, .36); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-2); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--gray); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(38, 43, 53, .06); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 76px; }
.brand { display: flex; align-items: center; gap: .7rem; color: var(--navy); }
.brand:hover { text-decoration: none; }
.brand img { width: 40px; height: auto; }
.brand-word { height: 20px; width: 150px; color: var(--navy); }
.nav { display: flex; gap: 1.6rem; }
.nav a { color: var(--navy); font-weight: 500; position: relative; padding: .3rem 0; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.nav a:hover { text-decoration: none; }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: .8rem; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; border-radius: 10px; padding: 10px; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; }
.mobile-nav:not([hidden]) { display: flex; flex-direction: column; padding: .5rem 1.25rem 1.25rem; border-top: 1px solid var(--line); background: #fff; }
.mobile-nav a { padding: .85rem .25rem; color: var(--navy); font-weight: 600; font-size: 1.1rem; border-bottom: 1px solid var(--gray); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(3rem, 8vw, 6.5rem) 0 clamp(3rem, 7vw, 5.5rem); background: linear-gradient(180deg, #fbfbfd 0%, #fff 100%); }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; opacity: .8; }
.b1 { width: 760px; height: 760px; background: radial-gradient(circle, rgba(247, 207, 205, .9) 0%, rgba(247, 207, 205, .35) 40%, rgba(247, 207, 205, 0) 70%); top: -300px; right: -220px; }
.b2 { width: 660px; height: 660px; background: radial-gradient(circle, rgba(214, 219, 242, .9) 0%, rgba(214, 219, 242, .3) 40%, rgba(214, 219, 242, 0) 70%); bottom: -320px; right: 24%; }
.b3 { width: 560px; height: 560px; background: radial-gradient(circle, rgba(253, 227, 229, .9) 0%, rgba(253, 227, 229, .3) 40%, rgba(253, 227, 229, 0) 70%); top: 20%; left: -280px; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--blue-deep); margin-bottom: 1.4rem; }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(251, 73, 89, .18); }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 700; letter-spacing: -.025em; line-height: 1.02; }
.hero h1 em { font-style: normal; color: var(--blue); position: relative; }
.hero h1 em::after { content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .18em; background: var(--pink); z-index: -1; border-radius: 4px; }
.lead { font-size: 1.18rem; color: var(--text-2); max-width: 56ch; }
.hero .lead { margin-top: 1.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.9rem; }
.trust { display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.trust li { display: flex; flex-direction: column; gap: .1rem; max-width: 200px; }
.trust strong { font-size: 1.1rem; color: var(--navy); }
.trust span { font-size: .85rem; color: var(--text-2); line-height: 1.35; }

.hero-visual { position: relative; }
.hero-card {
  background: #fff; border-radius: 28px; padding: 2.2rem 2rem 2rem; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .8); position: relative; z-index: 1;
}
.flowers { display: flex; justify-content: center; gap: 1.2rem; margin-bottom: 1.6rem; }
.flowers .f { width: 84px; height: auto; animation: floaty 6s ease-in-out infinite; }
.flowers .f2 { animation-delay: -2s; }
.flowers .f3 { animation-delay: -4s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-card-title { font-weight: 700; font-size: 1.35rem; margin-bottom: .4rem; text-align: center; }
.hero-card-text { color: var(--text-2); text-align: center; font-size: 1rem; }
.stage-chips { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-top: 1.2rem; }
.stage-chips li { display: flex; align-items: center; gap: .6rem; background: var(--gray-2); border-radius: 12px; padding: .65rem .9rem; font-weight: 600; font-size: .95rem; }
.stage-chips .c { width: 12px; height: 12px; border-radius: 50%; }
.c1 { background: var(--pink-2); } .c2 { background: var(--blue); } .c3 { background: var(--coral); } .c4 { background: var(--navy); }
.float-note {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: .5rem;
  background: #fff; border-radius: 999px; padding: .6rem 1rem; font-weight: 600; font-size: .92rem;
  box-shadow: var(--shadow); color: var(--navy);
}
.float-note .ico { color: var(--coral); }
.n1 { top: -18px; left: -26px; }
.n2 { bottom: -16px; right: -18px; }
.n2 .ico { color: var(--blue); }

/* ---------- Pilares ---------- */
.pillars { padding: 1rem 0 0; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 1rem; }
.pillar { position: relative; overflow: hidden; background: var(--gray-2); border-radius: var(--radius); padding: 1.8rem 1.7rem 1.7rem; }
.pillar h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.pillar p { color: var(--text-2); margin: 0; font-size: 1rem; }
.pillar-flower { position: absolute; right: -18px; top: -14px; width: 110px; height: 110px; color: var(--blue); opacity: .13; }
.pillar:nth-child(2) .pillar-flower { color: var(--coral); }
.pillar:nth-child(3) .pillar-flower { color: var(--pink-2); opacity: .3; }

/* ---------- Secciones ---------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-alt { background: var(--gray-2); }
.section-dark { background: var(--navy); color: #fff; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head.left { text-align: left; margin: 0; }
.section-head.light .sub { color: rgba(255, 255, 255, .75); }
.kicker { display: inline-block; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--coral); margin-bottom: .9rem; }
.section-dark .kicker { color: var(--salmon); }
.section h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); letter-spacing: -.02em; }
.sub { color: var(--text-2); font-size: 1.1rem; margin-top: 1rem; }

/* ---------- Etapas ---------- */
.stages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.stage { position: relative; border-radius: var(--radius); padding: 1.8rem 1.5rem 1.6rem; background: #fff; border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.stage:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stage::before { content: ""; position: absolute; left: 1.5rem; right: 1.5rem; top: 0; height: 4px; border-radius: 0 0 4px 4px; }
.s1::before { background: var(--pink-2); } .s2::before { background: var(--blue); } .s3::before { background: var(--coral); } .s4::before { background: var(--navy); }
.stage-num { font-size: .8rem; font-weight: 700; letter-spacing: .1em; color: var(--text-2); }
.stage h3 { font-size: 1.45rem; margin-top: .4rem; }
.stage-age { color: var(--text-2); font-size: .92rem; margin: .2rem 0 1rem; }
.stage ul li { position: relative; padding-left: 1.2rem; font-size: .96rem; margin-bottom: .45rem; color: var(--navy-2); }
.stage ul li::before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--blue-soft); }
.s1 li::before { background: var(--pink); } .s3 li::before { background: #fdd3d7; } .s4 li::before { background: #c9cdd6; }

/* ---------- Servicios ---------- */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.service { background: #fff; border-radius: var(--radius); padding: 1.6rem 1.5rem; border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-ico { width: 46px; height: 46px; border-radius: 14px; background: var(--blue-soft); color: var(--blue-deep); display: grid; place-items: center; margin-bottom: 1rem; }
.service-ico svg { width: 24px; height: 24px; }
.service:nth-child(4n+2) .service-ico { background: #fde3e5; color: var(--coral); }
.service:nth-child(4n+3) .service-ico { background: var(--pink); color: #c9676a; }
.service:nth-child(4n+4) .service-ico { background: var(--gray); color: var(--navy); }
.service h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.service p { color: var(--text-2); font-size: .95rem; margin: 0; }

/* ---------- Especialista ---------- */
.dr-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 4rem; align-items: start; }
.dr-visual { position: sticky; top: 100px; }
.dr-frame { position: relative; border-radius: 28px; padding: 2rem; background: linear-gradient(160deg, var(--blue-soft), #fff 55%, var(--pink)); box-shadow: var(--shadow); overflow: hidden; }
.dr-frame::before { content: ""; position: absolute; inset: 0; background: url("/assets/isotipo-blue.svg") no-repeat right -60px top -40px / 260px; opacity: .14; }
.dr-badge { position: relative; display: flex; align-items: center; gap: 1rem; font-weight: 700; font-size: 1.35rem; line-height: 1.15; color: var(--navy); }
.dr-badge img { width: 64px; background: #fff; border-radius: 16px; padding: 8px; box-shadow: var(--shadow); }
.dr-facts { position: relative; margin: 1.8rem 0 0; display: grid; gap: .6rem; }
.dr-facts div { background: rgba(255, 255, 255, .8); border-radius: 12px; padding: .7rem 1rem; }
.dr-facts dt { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-2); font-weight: 600; }
.dr-facts dd { margin: 0; font-weight: 600; }
.dr-copy h2 { margin-bottom: 1rem; }
.dr-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2.2rem; margin-top: 2rem; }
.dr-cols h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .08em; color: var(--blue-deep); margin-bottom: .9rem; }
.dr-cols h3 + ul + h3 { margin-top: 1.6rem; }
.timeline li { display: grid; grid-template-columns: 52px 1fr; gap: .6rem; font-size: .95rem; padding: .55rem 0; border-bottom: 1px dashed var(--line); }
.timeline li span { font-weight: 700; color: var(--coral); }
.checks li { position: relative; padding-left: 1.6rem; font-size: .95rem; margin-bottom: .6rem; }
.checks li::before { content: ""; position: absolute; left: 0; top: .35em; width: 16px; height: 16px; border-radius: 50%; background: var(--blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%236a7dd0' d='m9 16.2-3.5-3.5L4 14.2 9 19.2l12-12-1.4-1.4z'/%3E%3C/svg%3E") center / 11px no-repeat; }
.tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.tags li { background: var(--gray); border-radius: 999px; padding: .3rem .8rem; font-size: .85rem; font-weight: 600; }

/* ---------- Ubicaciones ---------- */
.locations { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.loc { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius); padding: 1.8rem; }
.loc-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.loc-head img { width: 44px; background: #fff; border-radius: 12px; padding: 6px; }
.loc-head h3 { font-size: 1.35rem; }
.loc-head p { margin: .15rem 0 0; color: rgba(255, 255, 255, .78); }
.loc-details li { display: flex; align-items: center; gap: .6rem; margin-bottom: .5rem; color: rgba(255, 255, 255, .88); }
.loc-details .ico { color: var(--salmon); }
.loc-details a { color: #fff; font-weight: 600; }
.loc-details .muted { color: rgba(255, 255, 255, .55); font-size: .9rem; }
.loc-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; }
.loc-note { text-align: center; margin: 2.2rem auto 0; max-width: 640px; color: rgba(255, 255, 255, .8); }
.loc-note a { color: #fff; font-weight: 700; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; align-items: start; }
.faq-grid .btn { margin-top: .8rem; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 0; font-weight: 600; font-size: 1.08rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--gray); display: grid; place-items: center; color: var(--navy); font-weight: 500; transition: transform .25s var(--ease), background .2s; }
.faq details[open] summary::after { content: "–"; background: var(--pink); }
.faq details p { color: var(--text-2); padding-bottom: 1.1rem; margin: 0; max-width: 60ch; }

/* ---------- Instagram ---------- */
.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.ig-card { position: relative; aspect-ratio: 1; border-radius: var(--radius); padding: 1.4rem; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; overflow: hidden; transition: transform .3s var(--ease); }
.ig-card:hover { text-decoration: none; transform: translateY(-4px); }
.ig-card::after { content: ""; position: absolute; width: 150px; height: 150px; right: -34px; top: -26px; border-radius: 50%; background: rgba(255, 255, 255, .12); }
.ig-c1 { background: linear-gradient(160deg, var(--salmon), var(--coral)); }
.ig-c2 { background: linear-gradient(160deg, var(--blue), var(--blue-deep)); }
.ig-c3 { background: linear-gradient(160deg, var(--pink-2), #d99a99); }
.ig-c4 { background: linear-gradient(160deg, var(--navy-2), var(--navy)); }
.ig-tag { position: relative; display: inline-block; align-self: flex-start; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: rgba(255, 255, 255, .22); padding: .3rem .7rem; border-radius: 999px; margin-bottom: .7rem; }
.ig-txt { position: relative; font-weight: 600; font-size: 1.05rem; line-height: 1.35; }

/* ---------- Contacto ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-list { margin-top: 1.5rem; display: grid; gap: 1rem; }
.contact-list li { display: flex; gap: 1rem; align-items: center; }
.contact-list div { display: flex; flex-direction: column; }
.contact-list strong { font-size: .95rem; }
.contact-list span, .contact-list a { color: var(--text-2); }
.contact-ico { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--gray-2); color: var(--blue-deep); display: grid; place-items: center; }
.contact-ico svg { width: 22px; height: 22px; }
.contact-list li:first-child .contact-ico { background: #e7f8ee; color: #1f9d55; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 2rem; box-shadow: var(--shadow); }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-weight: 600; font-size: .92rem; }
.field .opt { font-weight: 400; color: var(--text-2); }
.field input, .field select, .field textarea {
  font: inherit; padding: .8rem 1rem; border-radius: 12px; border: 1.5px solid var(--line); background: var(--gray-2); color: var(--navy);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(130, 147, 220, .2); background: #fff; }
.field input[aria-invalid="true"] { border-color: var(--coral); }
.field textarea { resize: vertical; }
.form-note { font-size: .85rem; color: var(--text-2); text-align: center; margin: 1rem 0 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, .8); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 3rem; align-items: start; }
.footer-brand img { width: 220px; height: auto; margin-bottom: 1rem; }
.footer-brand p { max-width: 34ch; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: .55rem; }
.footer-nav a, .footer-contact a { color: #fff; font-weight: 500; }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .88rem; color: rgba(255, 255, 255, .6); }
.footer-bottom p { margin: 0 0 .4rem; }
.disclaimer { max-width: 80ch; }

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60; width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 28px rgba(37, 211, 102, .4);
  transition: transform .2s var(--ease);
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.06); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .flowers .f { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .stages, .services, .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .nav { gap: 1.1rem; }
}
@media (max-width: 960px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
  .n1 { left: 8px; } .n2 { right: 8px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .dr-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .dr-visual { position: static; }
  .locations { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .nav-wrap { height: 66px; }
  .brand-word { width: 120px; height: 16px; }
  .stages, .services, .ig-grid { grid-template-columns: 1fr; }
  .ig-card { aspect-ratio: auto; min-height: 150px; }
  .dr-cols, .field-row { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .trust { gap: 1rem 1.5rem; }
  .flowers .f { width: 64px; }
  .contact-form { padding: 1.4rem; }
  .wa-float { right: 14px; bottom: 14px; }
}
