/* =========================================================
   גבעולים — סדנת שזירת פרחים  |  Landing page styles
   RTL-first. Logical properties throughout. Light + dark.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg: #f7f8f1;            /* airy off-white with a hint of green */
  --surface: #ffffff;
  --surface-2: #eef3e2;
  --tint: #e7efd6;          /* light leaf tint for cards */
  --tint-strong: #d9e7c1;
  --leaf: #90b040;          /* the real brand green (from the logo) */
  --leaf-deep: #6f9130;
  --forest: #51752a;        /* primary interactive (AA on white) */
  --forest-deep: #34501c;   /* headings / strong text */
  --moss: #46661f;
  --sage: #6f9130;          /* secondary accent: icons, rules, large marks */
  --sage-2: #88a86a;
  --ink: #293321;           /* primary text */
  --muted: #5b6a4d;         /* secondary text */
  --line: rgba(52, 79, 27, .14);
  --line-strong: rgba(52, 79, 27, .24);
  --coral: #df6b86;         /* warm floral accent, used sparingly */
  --blush: #f0c6cd;         /* soft decorative tint */
  --wa: #1f9d57;            /* WhatsApp-channel green (launchers only) */
  --wa-fg: #ffffff;

  --logo-color: var(--leaf);
  --btn-bg: var(--forest);
  --btn-fg: #f7f8f1;

  --shadow-sm: 0 2px 10px rgba(31, 53, 40, .07);
  --shadow: 0 20px 44px -24px rgba(31, 53, 40, .38);
  --shadow-lg: 0 34px 70px -30px rgba(31, 53, 40, .45);

  --r-sm: 12px;
  --r: 18px;
  --r-lg: 26px;
  --r-pill: 999px;

  --container: 1180px;
  --ease: cubic-bezier(.16, 1, .3, 1);

  --font-body: "Assistant", "Segoe UI", system-ui, sans-serif;
  --font-display: "Rubik", "Assistant", "Segoe UI", system-ui, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #161d12;
    --surface: #1e261a;
    --surface-2: #243019;
    --tint: #2a3720;
    --tint-strong: #344426;
    --leaf: #a6cc54;
    --leaf-deep: #bcd87a;
    --forest: #a6cc54;       /* light leaf for buttons on dark */
    --forest-deep: #d7e8ba;  /* headings */
    --moss: #4d6e2a;
    --sage: #9cbf6a;
    --sage-2: #b0cd86;
    --ink: #e9efdf;
    --muted: #a8b699;
    --line: rgba(233, 239, 223, .12);
    --line-strong: rgba(233, 239, 223, .22);
    --coral: #e98aa0;
    --blush: #3a2b2f;
    --wa: #25a862;
    --logo-color: #bcdd7e;
    --btn-bg: #a6cc54;
    --btn-fg: #16210d;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, .4);
    --shadow: 0 20px 44px -24px rgba(0, 0, 0, .6);
    --shadow-lg: 0 34px 70px -30px rgba(0, 0, 0, .7);
  }
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-block-start: 86px;
  -webkit-text-size-adjust: 100%;
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-body);
  font-size: 17px;            /* Hebrew reads slightly larger */
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--forest-deep);
  text-wrap: balance;
}

::selection { background: var(--sage); color: #fff; }

:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.2rem);
}

.skip-link {
  position: absolute;
  inset-block-start: -100px;
  inset-inline-start: 1rem;
  z-index: 200;
  background: var(--forest);
  color: #fff;
  padding: .6rem 1rem;
  border-radius: var(--r-sm);
  transition: inset-block-start .2s var(--ease);
}
.skip-link:focus { inset-block-start: 1rem; }

/* ---------- Brand: nav shows the word-only mark; footer features the full logo ---------- */
.brand { display: inline-flex; align-items: center; flex: none; }
.brand__logo { display: block; block-size: 2rem; inline-size: auto; }
.footer__logo { display: block; block-size: 4.8rem; inline-size: auto; margin-block-end: .9rem; }

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--btn-bg);
  --_fg: var(--btn-fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .72rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  background: var(--_bg);
  color: var(--_fg);
  font-weight: 600;
  font-size: .98rem;
  white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), filter .2s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); filter: brightness(1.04); }
.btn:active { transform: translateY(0) scale(.98); }

.btn--primary { --_bg: var(--forest); --_fg: var(--btn-fg); }
@media (prefers-color-scheme: dark) { .btn--primary { --_fg: #122019; } }

.btn--ghost {
  --_bg: transparent;
  --_fg: var(--forest-deep);
  border-color: var(--line-strong);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--surface); }

.btn--whatsapp { --_bg: var(--wa); --_fg: var(--wa-fg); }

.btn--lg { padding: .95rem 1.9rem; font-size: 1.06rem; }
.btn--block { inline-size: 100%; }

.i { inline-size: 1.15em; block-size: 1.15em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.i-wa { fill: currentColor; stroke: none; inline-size: 1.3em; block-size: 1.3em; }
/* The arrow asset already points left, which is "forward" in RTL, so no mirroring. */

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  font-weight: 700;
  font-size: .9rem;
  color: var(--forest);
  margin-block-end: .5rem;
}
.eyebrow::before { content: "✿ "; color: var(--leaf); }

.section-title { font-size: clamp(1.8rem, 4.2vw, 2.85rem); }
.section-lead { color: var(--muted); font-size: 1.08rem; margin-block-start: .7rem; max-inline-size: 56ch; }

.section-head { max-inline-size: 60ch; margin-block-end: clamp(2rem, 5vw, 3.2rem); }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-block-end: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.scrolled {
  border-block-end-color: var(--line);
  box-shadow: var(--shadow-sm);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  block-size: 72px;
}

.nav__links { display: flex; gap: 1.5rem; margin-inline-start: auto; }
.nav__links a { color: var(--muted); font-weight: 500; position: relative; padding-block: .3rem; transition: color .2s var(--ease); }
.nav__links a::after {
  content: ""; position: absolute; inset-block-end: 0; inset-inline-start: 0;
  inline-size: 0; block-size: 2px; background: var(--sage); transition: inline-size .25s var(--ease);
}
.nav__links a:hover { color: var(--forest-deep); }
.nav__links a:hover::after { inline-size: 100%; }
.nav__cta { margin-inline-start: .2rem; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; background: none; border: 0; }
.nav__toggle span { inline-size: 24px; block-size: 2px; background: var(--forest-deep); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.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-menu[hidden] { display: none; }
.mobile-menu {
  display: flex; flex-direction: column; gap: .35rem;
  padding: .8rem clamp(1.1rem, 4vw, 2.2rem) 1.4rem;
  background: var(--surface);
  border-block-end: 1px solid var(--line);
}
.mobile-menu a { padding: .7rem .4rem; color: var(--ink); font-weight: 500; border-radius: var(--r-sm); }
.mobile-menu a:hover { background: var(--tint); }
.mobile-menu .btn { margin-block-start: .5rem; }

/* ---------- HERO ---------- */
.hero { position: relative; overflow: hidden; }
.hero__decor {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(40% 50% at 88% 8%, color-mix(in srgb, var(--sage) 26%, transparent), transparent 70%),
    radial-gradient(46% 55% at 6% 92%, color-mix(in srgb, var(--blush) 38%, transparent), transparent 72%);
  opacity: .7;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-block-size: calc(100svh - 72px);
  padding-block: clamp(2rem, 5vw, 3.4rem) clamp(2.5rem, 6vw, 4rem);
}
.hero__title {
  font-size: clamp(2.2rem, 5.6vw, 3.9rem);
  font-weight: 900;
  letter-spacing: -.01em;
  margin-block: .2rem .9rem;
}
.hero__sub { color: var(--muted); font-size: clamp(1.05rem, 2.4vw, 1.2rem); max-inline-size: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-block: 1.6rem 1.4rem; }
.hero__chips { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; color: var(--muted); font-size: .95rem; }
.hero__chips li { display: inline-flex; align-items: center; gap: .4rem; }
.hero__chips .i { color: var(--sage); }

.hero__media { position: relative; }
.media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(150deg, var(--moss), var(--forest)); /* fallback if image missing */
  box-shadow: var(--shadow-lg);
}
.media img { inline-size: 100%; block-size: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.media--noimg { aspect-ratio: 4 / 5; min-block-size: 320px; }

/* ---------- TRUST STRIP ---------- */
.strip { background: var(--forest); color: #eef3ea; }
@media (prefers-color-scheme: dark) { .strip { background: var(--surface-2); } }
.strip__inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-block: clamp(1.4rem, 3vw, 2.1rem);
  text-align: center;
}
.strip__item { display: flex; flex-direction: column; gap: .15rem; position: relative; }
.strip__item + .strip__item::before {
  content: ""; position: absolute; inset-inline-start: -.5rem; inset-block: 18%;
  inline-size: 1px; background: rgba(255, 255, 255, .18);
}
.strip__k { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 3.5vw, 2.3rem); color: #fff; }
.strip__v { font-size: .92rem; color: #d6e3cf; }
@media (prefers-color-scheme: dark) { .strip__k { color: var(--forest-deep); } .strip__v { color: var(--muted); } }

/* ---------- Section rhythm ---------- */
section { padding-block: clamp(3.2rem, 8vw, 6rem); }
.strip, .greenery-band { padding-block: 0; }

/* ---------- ABOUT ---------- */
.about__inner {
  display: grid; grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.about__media { border-radius: var(--r-lg); }
.about__media img { aspect-ratio: 4 / 5; }
.about__content p { margin-block-start: 1rem; color: var(--muted); font-size: 1.08rem; }
.about__highlight {
  font-family: var(--font-display); font-size: 1.3rem; color: var(--forest-deep) !important;
  border-inline-start: 3px solid var(--sage); padding-inline-start: 1rem; margin-block-start: 1.4rem !important;
}
.about__sign { font-family: var(--font-display); font-weight: 700; color: var(--forest) !important; margin-block-start: 1.2rem !important; }

/* ---------- USE CASES (BENTO) ---------- */
/* Even 3-up grid of identical photo cards — no size jumps */
.bento {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;   /* a trailing partial row (e.g. 5 cards = 3 + 2) stays centred */
  gap: 1rem;
}
.uc {
  flex: 0 1 calc((100% - 2rem) / 3);   /* 3 per row (2 × 1rem gaps) */
  position: relative; overflow: hidden;
  border-radius: var(--r);
  padding: 1.4rem;
  aspect-ratio: 4 / 5;             /* every card the same shape */
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff;
  background-color: var(--moss);
  background-image:
    linear-gradient(to top, rgba(20, 33, 24, .85) 10%, rgba(20, 33, 24, .25) 52%, rgba(20, 33, 24, .05)),
    var(--img);
  background-size: cover;
  background-position: center;
  transition: transform .35s var(--ease);
}
.uc:hover { transform: scale(1.012); }
.uc h3 { font-size: 1.35rem; margin-block-end: .35rem; color: #fff; }
.uc p { font-size: .98rem; color: rgba(255, 255, 255, .92); }

/* ---------- HOW IT WORKS ---------- */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.6rem 1.4rem 1.4rem;
}
.step__num {
  display: grid; place-items: center;
  inline-size: 2.5rem; block-size: 2.5rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  background: var(--tint); color: var(--forest); border-radius: 50%;
  margin-block-end: 1rem;
}
.step h3 { font-size: 1.2rem; margin-block-end: .4rem; }
.step p { color: var(--muted); font-size: .98rem; }

/* ---------- INCLUDED ---------- */
.included { background: var(--surface-2); }
.included__inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.included__head .btn { margin-block-start: 1.4rem; }
.included__list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 1.4rem; }
.included__list li { display: flex; gap: .85rem; align-items: flex-start; }
.included__list .i { color: var(--sage); margin-block-start: .25rem; }
.included__list span { display: flex; flex-direction: column; color: var(--muted); font-size: .96rem; }
.included__list strong { color: var(--forest-deep); font-size: 1.05rem; font-weight: 600; }

/* ---------- GALLERY ---------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}
.gallery__grid figure { margin: 0; border-radius: var(--r); overflow: hidden; background: linear-gradient(150deg, var(--moss), var(--forest)); box-shadow: var(--shadow); }
.gallery__grid img { inline-size: 100%; block-size: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery__grid figure:hover img { transform: scale(1.05); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--tint); }
@media (prefers-color-scheme: dark) { .testimonials { background: var(--surface); } }
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.quote {
  background: var(--surface); border-radius: var(--r); padding: 1.7rem 1.6rem;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); margin: 0;
  position: relative;
}
.quote::before {
  content: "”"; font-family: var(--font-display); font-size: 3.5rem; line-height: 1;
  color: var(--sage); opacity: .5; position: absolute; inset-block-start: .4rem; inset-inline-end: 1rem;
}
.quote blockquote { font-size: 1.12rem; color: var(--ink); margin: 0 0 1rem; }
.quote figcaption { display: flex; flex-direction: column; }
.quote__name { font-family: var(--font-display); font-weight: 700; color: var(--forest-deep); }
.quote__role { font-size: .88rem; color: var(--forest); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq__inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.faq__list { display: flex; flex-direction: column; gap: .7rem; }
.acc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.acc summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.3rem; font-weight: 600; color: var(--forest-deep); cursor: pointer;
  list-style: none; font-size: 1.05rem;
}
.acc summary::-webkit-details-marker { display: none; }
.acc__icon { position: relative; inline-size: 1.1rem; block-size: 1.1rem; flex: none; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; inset-block-start: 50%; inset-inline-start: 0; inline-size: 100%; block-size: 2px; background: var(--sage); border-radius: 2px; transition: transform .25s var(--ease); }
.acc__icon::after { transform: rotate(90deg); }
.acc[open] .acc__icon::after { transform: rotate(0); }
.acc__body { padding: 0 1.3rem 1.2rem; }
.acc__body p { color: var(--muted); }

/* ---------- GREENERY BAND ---------- */
.greenery-band {
  position: relative; isolation: isolate;
  background-color: var(--forest);
  background-image: linear-gradient(rgba(20, 33, 24, .72), rgba(20, 33, 24, .72)), var(--band-img);
  background-size: cover; background-position: center;
  text-align: center; color: #fff;
  padding-block: clamp(3rem, 7vw, 5rem);
}
.greenery-band h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.6rem); }
.greenery-band p { color: rgba(255, 255, 255, .9); max-inline-size: 50ch; margin-inline: auto; margin-block: .8rem 1.6rem; }
.greenery-band .btn--ghost { --_fg: #fff; border-color: rgba(255, 255, 255, .5); }
.greenery-band .btn--ghost:hover { background: rgba(255, 255, 255, .12); }

/* ---------- BOOKING ---------- */
.booking__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.booking__points { list-style: none; padding: 0; margin-block-start: 1.4rem; display: flex; flex-direction: column; gap: .7rem; }
.booking__points li { display: flex; align-items: center; gap: .6rem; color: var(--muted); font-weight: 500; }
.booking__points .i { color: var(--sage); }

.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); }
.booking__form { padding: clamp(1.5rem, 3vw, 2.2rem); display: flex; flex-direction: column; gap: 1.05rem; }

.field { display: flex; flex-direction: column; gap: .4rem; }
.field--row { flex-direction: row; gap: 1rem; }
.field--row > .field { flex: 1; }
.field label, .field__label { font-weight: 600; color: var(--forest-deep); font-size: .98rem; }
.field__opt { font-weight: 400; color: var(--sage); font-size: .85rem; }
.field input, .field textarea {
  font: inherit; color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  padding: .75rem .9rem;
  text-align: right;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: color-mix(in srgb, var(--muted) 75%, transparent); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px color-mix(in srgb, var(--sage) 30%, transparent); }
.field__hint { font-size: .82rem; color: var(--muted); }
.field__error { font-size: .85rem; color: #c0492f; }
@media (prefers-color-scheme: dark) { .field__error { color: #ef9a87; } }

.choice { display: flex; gap: .6rem; }
.choice__opt { flex: 1; position: relative; }
.choice__opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice__opt span {
  display: block; text-align: center; padding: .7rem .6rem;
  border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  color: var(--muted); font-weight: 600; transition: all .2s var(--ease);
}
.choice__opt input:checked + span { background: var(--forest); color: var(--btn-fg); border-color: var(--forest); }
@media (prefers-color-scheme: dark) { .choice__opt input:checked + span { color: #122019; } }
.choice__opt input:focus-visible + span { outline: 3px solid var(--sage); outline-offset: 2px; }

.booking__reassure { font-size: .88rem; color: var(--muted); text-align: center; }
.booking__scarcity {
  display: inline-flex; align-items: center; gap: .45rem;
  margin-block-start: 1.1rem;
  padding: .45rem .9rem;
  background: var(--tint); color: var(--forest-deep);
  border-radius: var(--r-pill); font-weight: 600; font-size: .92rem;
}
.booking__scarcity .i { color: var(--sage); }

/* cream solid button on the always-dark gift band — fixed dark-green text so it
   never flips to light in dark mode (the band ignores the colour scheme) */
.greenery-band .btn--primary { --_bg: #f4f6f1; --_fg: #34501c; }

/* ---------- FOOTER ---------- */
.footer { background: var(--forest-deep); color: #d6e3cf; padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.4rem; }
@media (prefers-color-scheme: dark) { .footer { background: #0f1813; } }
.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; }
.footer__brand p { margin-block-start: .8rem; max-inline-size: 38ch; color: #b9ccb0; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-block-end: .9rem; }
.footer__col a, .footer__muted { display: block; color: #c4d6bc; padding-block: .3rem; transition: color .2s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between; align-items: center;
  margin-block-start: 2rem; padding-block-start: 1.4rem;
  border-block-start: 1px solid rgba(255, 255, 255, .14);
  font-size: .9rem; color: #aec3a5;
}
.footer__bottom a { color: var(--sage-2); }

/* ---------- Floating WhatsApp + mobile sticky CTA ---------- */
.wa-fab {
  position: fixed; inset-block-end: 1.4rem; inset-inline-start: 1.4rem; z-index: 90;
  inline-size: 3.6rem; block-size: 3.6rem; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--wa); color: #fff;
  box-shadow: 0 12px 30px -8px rgba(31, 157, 87, .6);
  transition: transform .2s var(--ease);
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { inline-size: 1.9rem; block-size: 1.9rem; fill: currentColor; }
.wa-fab::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(31, 157, 87, .5);
  animation: wa-pulse 2.6s var(--ease) infinite;
}
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(31, 157, 87, .45); } 70% { box-shadow: 0 0 0 16px rgba(31, 157, 87, 0); } 100% { box-shadow: 0 0 0 0 rgba(31, 157, 87, 0); } }

.mobile-cta {
  position: fixed; inset-block-end: 0; inset-inline: 0; z-index: 95;
  display: none; gap: .7rem; align-items: center;
  padding: .7rem clamp(1rem, 4vw, 1.4rem);
  padding-block-end: max(.7rem, env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-block-start: 1px solid var(--line);
}
.mobile-cta .btn { flex: 1; }
.mobile-cta__note { font-size: .82rem; color: var(--muted); flex: none; max-inline-size: 7.5rem; line-height: 1.25; }

/* ---------- Reveal animation (progressive enhancement: content is visible without JS) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js [data-reveal].in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .hero__inner { grid-template-columns: 1fr; min-block-size: 0; gap: 2rem; padding-block: 2rem 3rem; }
  .hero__media { order: -1; }
  .media img { aspect-ratio: 16 / 11; }

  .about__inner, .included__inner, .faq__inner, .booking__inner { grid-template-columns: 1fr; }
  .about__media { order: -1; max-inline-size: 460px; }
  /* Nurit's portrait stays portrait on mobile (the .media landscape ratio above
     suits the wide hero shot, not this) and the crop favours the top so her
     face — upper-right in the source — never gets cut off. */
  .about__media img { aspect-ratio: 4 / 5; object-position: 50% 20%; }

  .uc { flex-basis: calc((100% - 1rem) / 2); }   /* 2 per row */

  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }
}

@media (max-width: 600px) {
  body { font-size: 16.5px; }
  .strip__inner { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }
  .strip__item + .strip__item::before { display: none; }
  .included__list { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .uc { flex-basis: 100%; }   /* 1 per row */
  .uc { aspect-ratio: 4 / 3; }
  .steps { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .field--row { flex-direction: column; }
  .footer__inner { grid-template-columns: 1fr; gap: 1.6rem; }
  .wa-fab { display: none; }
  .mobile-cta { display: flex; }
  body { padding-block-end: 4.5rem; } /* room for sticky bar */
  html { scroll-padding-block-start: 70px; }
  .nav__inner { block-size: 64px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js [data-reveal], [data-reveal] { opacity: 1 !important; transform: none !important; }
  .wa-fab::after { display: none; }
}
