/* ============================================================
   Hadar Pisanty — Personal Styling Landing Page
   Direction 1a (desktop) / 1b (mobile) — "אדמה, שמנת ורוז"
   ============================================================ */

:root {
  /* Colors */
  --cream:        #FAF5EE;
  --sand:         #EADFD1;
  --blush:        #F0DAD2;
  --clay-rose:    #B76B58;
  --rose-light:   #EFB9A8;
  --tint-line:    #E3C7BB;
  --chocolate:    #34261F;
  --sage:         #93A08D;
  --cream-on-dark:#F6EFE5;

  --cta-gradient: linear-gradient(135deg, #C4826E, #A85B49);

  /* Text opacities on cream */
  --ink:        #34261F;
  --ink-body:   rgba(52, 38, 31, .78);
  --ink-muted:  rgba(52, 38, 31, .66);
  /* On dark */
  --on-dark-body: rgba(246, 239, 229, .82);

  /* Layout */
  --content-width: 1120px;
  --pad-x: 40px;

  /* Radius / shadow */
  --r-card: 8px;
  --r-chip: 4px;
  --r-pill: 100px;
  --arch: 210px 210px 10px 10px;
  --shadow-cta: 0 8px 22px rgba(183, 107, 88, .28);
  --shadow-pill: 0 10px 28px rgba(52, 38, 31, .28);
  --shadow-card-hover: 0 6px 18px rgba(52, 38, 31, .08);

  --header-h: 74px;

  color-scheme: light;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Rubik, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3 {
  font-family: "Varela Round", "Rubik", sans-serif;
  font-weight: 400;
  margin: 0;
}

h1 { font-size: 62px; line-height: 1.14; letter-spacing: -.01em; }
h2 { font-size: 44px; line-height: 1.22; }
h3 { font-family: Rubik, sans-serif; font-weight: 600; font-size: 19px; line-height: 1.4; }

p { margin: 0; }

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

/* ---------- Focus visibility (keyboard) ---------- */
:focus-visible {
  outline: 2px solid var(--clay-rose);
  outline-offset: 3px;
  border-radius: 3px;
}
.btn-primary:focus-visible,
.whatsapp-pill:focus-visible { outline-color: var(--chocolate); }
.band--chocolate a:focus-visible,
.card--invert :focus-visible,
.form-section :focus-visible,
.benefit--invert :focus-visible,
.site-footer :focus-visible { outline-color: var(--rose-light); }

:target { scroll-margin-top: calc(var(--header-h) + 16px); }
section[id] { scroll-margin-top: calc(var(--header-h) + 8px); }

.wrap {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.narrow { max-width: 800px; margin-inline: auto; }
.center { text-align: center; }

/* ---------- Eyebrow / label ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--clay-rose);
  margin: 0 0 18px;
}
.eyebrow-rule { width: 26px; height: 1px; background: var(--clay-rose); }

.note {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-muted);
}

/* ---------- Buttons ---------- */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-header {
  font-family: Rubik, sans-serif;
  cursor: pointer;
  border-radius: var(--r-pill);
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease, background .2s ease, color .2s ease;
}

.btn-primary {
  border: none;
  background: var(--cta-gradient);
  color: #FFF9F2;
  font-weight: 600;
  font-size: 16.5px;
  padding: 17px 34px;
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover { filter: brightness(.94); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  border: 1.5px solid var(--chocolate);
  background: transparent;
  color: var(--chocolate);
  font-weight: 600;
  font-size: 16px;
  padding: 15px 30px;
}
.btn-secondary:hover { background: var(--chocolate); color: var(--cream); }

.btn-outline {
  border: 1px solid rgba(246, 239, 229, .5);
  background: transparent;
  color: var(--cream-on-dark);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 22px;
}
.btn-outline:hover { background: rgba(246, 239, 229, .12); }

.btn-header {
  border: none;
  background: var(--chocolate);
  color: var(--cream);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
}
.btn-header:hover { filter: brightness(1.15); }

.btn-block { width: 100%; display: block; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 245, 238, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(52, 38, 31, .08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
}

.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: "Varela Round", sans-serif;
  font-size: 21px;
  line-height: 1.1;
  letter-spacing: .01em;
}
.logo-sub {
  font-family: Rubik, sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 1.1;
  letter-spacing: .24em;
  color: var(--clay-rose);
  margin-top: 6px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14.5px;
  font-weight: 400;
  color: rgba(52, 38, 31, .72);
}
.nav-desktop a { transition: color .18s ease; }
.nav-desktop a:hover { color: var(--clay-rose); }

.hamburger {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  /* expand the tap target to 44px without shifting the bars visually */
  min-width: 44px;
  min-height: 44px;
  padding: 11px;
  margin: -11px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--chocolate);
  transition: transform .25s ease, opacity .2s ease, width .25s ease;
}
.hamburger span:nth-child(1) { width: 20px; }
.hamburger span:nth-child(2) { width: 20px; }
.hamburger span:nth-child(3) { width: 13px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { width: 20px; transform: translateY(-5.5px) rotate(-45deg); }

.mobile-sheet {
  border-bottom: 1px solid rgba(52, 38, 31, .08);
  background: rgba(250, 245, 238, .98);
  backdrop-filter: blur(10px);
  padding: 8px var(--pad-x) 22px;
}
.mobile-sheet nav { display: flex; flex-direction: column; }
.mobile-sheet nav a {
  padding: 14px 2px;
  font-size: 16px;
  border-bottom: 1px solid rgba(52, 38, 31, .08);
}
.mobile-sheet .btn-primary { margin-top: 18px; }

/* ---------- Photo frames (image slots) ---------- */
.placeholder {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* about photo: very slight zoom + reframe toward the right, to keep
   the background of the original candid shot from peeking in at the top */
.placeholder--on-dark img {
  transform: scale(1.08);
  object-position: 60% 50%;
}

.placeholder--arched { border-radius: var(--arch); }

.hero-placeholder {
  height: 520px;
  background: linear-gradient(160deg, #F5E3DB, #E3CBBD);
}

.placeholder--on-dark {
  height: 440px;
  border-radius: 200px 200px 8px 8px;
  background: linear-gradient(170deg, #4A382D, #5B4636);
  border: 1px solid rgba(246, 239, 229, .18);
}

.placeholder--form {
  min-height: 520px;
  background: linear-gradient(200deg, #F0D9D0, #D9AE9F);
}

/* ---------- 1. Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 56px;
  align-items: center;
  padding-block: 64px 76px;
}
.hero-text h1 { margin: 0; }
.hero-text h1 em { font-style: normal; color: var(--clay-rose); }
.hero-body {
  margin-top: 26px;
  max-width: 30em;
  font-size: 19.5px;
  line-height: 1.72;
  color: var(--ink-body);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-media { position: relative; }
.hero-frame {
  position: absolute;
  inset: -14px -14px 34px 34px;
  border: 1px solid rgba(183, 107, 88, .34);
  border-radius: 220px 220px 12px 12px;
}
.hero-placeholder { position: relative; }

/* ---------- Bands ---------- */
.band { padding-block: 88px; padding-inline: var(--pad-x); }
.band--blush { background: linear-gradient(180deg, #F4E7E1, #EFE7DC); }
.band--testimonials { background: linear-gradient(180deg, #F6E7E0, #EFDED6); }
.band--chocolate { background: var(--chocolate); color: var(--cream-on-dark); }

.band--blush h2 { font-size: 42px; line-height: 1.28; }
.band--blush p {
  margin-top: 26px;
  font-size: 19px;
  line-height: 1.8;
  color: rgba(52, 38, 31, .76);
}

/* ---------- Splits ---------- */
.split {
  display: grid;
  align-items: center;
}
.split--about {
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  max-width: 1000px;
  margin-inline: auto;
}

.split-text > h2 { margin: 0; }
.split-text > p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.78;
  color: var(--ink-body);
}
.band--chocolate .split-text > p {
  font-size: 17.5px;
  line-height: 1.8;
  color: var(--on-dark-body);
}
/* ---------- 4. Process ---------- */
.process { padding-block: 92px 84px; }
.process-head { margin-bottom: 48px; }
.process-head .eyebrow { margin-bottom: 14px; }

.process-grid {
  list-style: none;
  margin: 0 0 44px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid rgba(52, 38, 31, .1);
  border-radius: var(--r-card);
  padding: 30px 26px 32px;
  transition: box-shadow .2s ease, transform .15s ease;
}
.card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.card .numeral {
  font-family: "Varela Round", sans-serif;
  font-size: 40px;
  line-height: 1;
  color: var(--tint-line);
  display: block;
}
.card h3 { margin: 16px 0 10px; }
.card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(52, 38, 31, .72);
}
.card--invert {
  background: var(--chocolate);
  color: var(--cream-on-dark);
}
.card--invert .numeral { color: var(--clay-rose); }
.card--invert p { color: rgba(246, 239, 229, .8); }

/* ---------- 5. Testimonials ---------- */
.band--testimonials h2 {
  font-size: 40px;
  margin: 0 0 42px;
}
.quote-viewport {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-mark {
  font-family: "Varela Round", sans-serif;
  font-size: 56px;
  line-height: 1;
  color: var(--tint-line);
  margin-bottom: 10px;
}
.quote {
  margin: 0;
  font-size: 23px;
  line-height: 1.72;
  color: rgba(52, 38, 31, .86);
}
.quote.is-animating { animation: fadeq .5s ease both; }
@keyframes fadeq {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  color: var(--clay-rose);
}

/* pause / play auto-advance toggle */
.carousel-pause {
  flex: none;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(183, 107, 88, .5);
  background: transparent;
  color: var(--clay-rose);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.carousel-pause:hover { background: rgba(183, 107, 88, .1); }
.carousel-pause::before {
  content: "";
  width: 8px;
  height: 10px;
  border-inline: 3px solid currentColor;
}
.carousel-pause[aria-pressed="true"]::before {
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-inline-start: 10px solid currentColor;
  border-inline-end: 0;
  margin-inline-start: 3px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 2px;
  color: var(--clay-rose);
}
.dots button {
  position: relative;
  border: none;
  padding: 0;
  width: 24px;
  height: 24px;
  background: transparent;
  cursor: pointer;
}
.dots button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: var(--r-pill);
  background: rgba(128, 110, 90, .5);
  transition: width .35s ease, background .35s ease;
}
.dots button.is-active::before {
  width: 26px;
  background: currentColor;
}

/* ---------- 6. Benefits ---------- */
.benefits { padding-block: 92px; }
.benefits-head { margin-bottom: 46px; }
.benefits-head { max-width: 1000px; margin-inline: auto; }
.benefits-head p {
  margin: 16px auto 0;
  max-width: 34em;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(52, 38, 31, .72);
}
.benefits-grid {
  max-width: 1000px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.benefit {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: rgba(255, 255, 255, .62);
  border-radius: var(--r-card);
}
.benefit-num {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--clay-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--clay-rose);
}
.benefit h3 { margin: 0 0 8px; }
.benefit p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(52, 38, 31, .74);
}
.benefit--invert {
  background: var(--chocolate);
  color: var(--cream-on-dark);
}
.benefit--invert .benefit-num { border-color: var(--rose-light); color: var(--rose-light); }
.benefit--invert p { color: rgba(246, 239, 229, .8); }

/* ---------- 7. Form ---------- */
.form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(150deg, #3E2C24 0%, #6B473C 58%, #96604F 100%);
  color: var(--cream-on-dark);
}
.form-text { padding: 88px 56px 92px 40px; }
.form-text h2 { margin: 0; font-size: 40px; }
.form-text > p {
  margin: 20px 0 34px;
  font-size: 17.5px;
  line-height: 1.75;
  color: rgba(246, 239, 229, .85);
  max-width: 26em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 26em;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field > span:first-child {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--cream-on-dark);
}
.field input {
  border: none;
  border-bottom: 1px solid rgba(246, 239, 229, .45);
  background: rgba(255, 255, 255, .08);
  border-radius: 4px 4px 0 0;
  padding: 14px;
  font: 300 16px Rubik, sans-serif;
  color: var(--cream-on-dark);
  outline: none;
  transition: border-color .18s ease, background .18s ease;
}
.field input::placeholder { color: rgba(246, 239, 229, .62); }
.field input:focus { border-bottom-color: var(--rose-light); background: rgba(255, 255, 255, .13); }
.field input:focus-visible { outline: 2px solid var(--rose-light); outline-offset: 2px; }
.field input[aria-invalid="true"] { border-bottom-color: #F3B7A6; }
.field-error {
  font-size: 12.5px;
  font-weight: 500;
  color: #FCE0D7;
  min-height: 1em;
}
.contact-form .btn-primary { margin-top: 8px; }

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

.thanks-panel {
  background: rgba(246, 239, 229, .14);
  border: 1px solid rgba(246, 239, 229, .34);
  border-radius: var(--r-card);
  padding: 34px 30px;
  max-width: 26em;
}
.thanks-title {
  font-family: "Varela Round", sans-serif;
  font-size: 28px;
  line-height: 1.3;
}
.thanks-panel p {
  margin: 12px 0 0;
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(246, 239, 229, .85);
}
.thanks-panel .btn-outline { margin-top: 20px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--chocolate);
  color: rgba(246, 239, 229, .72);
  padding: 36px var(--pad-x);
  font-size: 14px;
}
.footer-inner {
  max-width: var(--content-width);
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-contact { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer-contact a:hover { opacity: .72; text-decoration: underline; }
.social { display: inline-flex; align-items: center; gap: 7px; }
.glyph {
  width: 15px;
  height: 15px;
  border: 1.2px solid currentColor;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.glyph--ig span {
  width: 5px;
  height: 5px;
  border: 1.2px solid currentColor;
  border-radius: 50%;
}
.glyph--fb { font: 700 10px/1 Rubik, sans-serif; }

/* ---------- Floating WhatsApp pill ---------- */
.whatsapp-pill {
  position: fixed;
  bottom: 26px;
  left: 26px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #4A342B, #241812);
  color: #F7E6DE;
  padding: 15px 24px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  box-shadow: var(--shadow-pill);
  transition: transform .15s ease, filter .2s ease;
}
.whatsapp-pill:hover { transform: translateY(-1px); filter: brightness(1.1); }
.wa-dot { width: 9px; height: 9px; border-radius: 50%; background: #FFE3D8; }
.wa-label-short { display: none; }

/* ============================================================
   Mobile — direction 1b (single column ≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  :root {
    --pad-x: 22px;
    --header-h: 62px;
    --arch: 170px 170px 8px 8px;
  }

  body { font-size: 16px; line-height: 1.7; }
  h1 { font-size: 38px; line-height: 1.16; }
  h2 { font-size: 29px; line-height: 1.28; }
  h3 { font-size: 16px; }

  .nav-desktop, .btn-header { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 30px 34px;
  }
  .hero .eyebrow-rule { display: none; }
  .hero-body { margin-top: 16px; font-size: 16.5px; line-height: 1.68; }
  .hero-actions { margin-top: 22px; }
  .hero-actions .btn-primary { width: 100%; }
  .hero-actions .note { display: none; }
  .hero-media { margin-top: 24px; }
  .hero-frame { display: none; }
  .hero-placeholder { height: 360px; }

  /* Bands */
  .band { padding-block: 46px; }
  .band--blush h2 { font-size: 29px; }
  .band--blush p { font-size: 16px; line-height: 1.75; }

  /* Split stacks, image first */
  .split--about {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 48px;
  }
  .split-text > h2 { margin-top: 2px; }
  .split-text > p { font-size: 16px; line-height: 1.75; }
  .band--chocolate .split-text > p { font-size: 16px; }

  .placeholder--on-dark { height: 300px; border-radius: 150px 150px 8px 8px; }

  /* Process, stacked */
  .process { padding-block: 48px; }
  .process-head { margin-bottom: 22px; }
  .process-grid { grid-template-columns: 1fr; gap: 12px; margin-bottom: 20px; }
  .card { padding: 18px; }
  .card .numeral { font-size: 28px; }
  .card h3 { margin: 8px 0 6px; }
  .card p { font-size: 13.5px; line-height: 1.6; }
  .process .center .btn-primary { width: 100%; }

  /* Testimonials */
  .band--testimonials h2 { font-size: 27px; margin-bottom: 24px; }
  .quote-viewport { min-height: 210px; }
  .quote { font-size: 17.5px; line-height: 1.7; }
  .quote-mark { font-size: 44px; }
  .carousel-controls { margin-top: 18px; gap: 12px; }

  /* Benefits 1-up */
  .benefits { padding-block: 46px; }
  .benefits-head { margin-bottom: 22px; }
  .benefits-head p { font-size: 15px; line-height: 1.65; }
  .benefits-grid { grid-template-columns: 1fr; gap: 12px; }
  .benefit { padding: 20px; gap: 16px; }
  .benefit p { font-size: 14.5px; line-height: 1.65; }

  /* Form stacked */
  .form-section {
    grid-template-columns: 1fr;
    background: linear-gradient(165deg, #3E2C24 0%, #6B473C 55%, #96604F 100%);
  }
  .form-section .placeholder--form {
    order: -1;
    min-height: 180px;
  }
  .form-text { padding: 46px 22px; }
  .form-text h2 { font-size: 28px; }
  .form-text > p { font-size: 15.5px; margin-bottom: 24px; }
  .contact-form, .thanks-panel { max-width: none; }

  /* WhatsApp pill */
  .whatsapp-pill { bottom: 16px; left: 18px; padding: 13px 20px; font-size: 13px; }
  .wa-label-full { display: none; }
  .wa-label-short { display: inline; }
}

@media (min-width: 641px) and (max-width: 960px) {
  .hero { gap: 40px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .quote.is-animating { animation: none; }
  .hero::before,
  .form-section { animation: none !important; }
}

/* ============================================================
   Enhancement layer — living gradients, motion, pointer feedback
   The static page works fully without any of this; every rule
   below is additive polish and is neutralised by reduced-motion.
   ============================================================ */

/* ---- B · Living colour ---- */

/* hero: a barely-there breathing colour wash sits behind everything */
.hero { position: relative; isolation: isolate; }
.hero::before {
  content: "";
  position: absolute;
  inset: -20% 0 -5%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(58% 55% at 78% 28%, rgba(240, 218, 210, .60), transparent 70%),
    radial-gradient(52% 52% at 12% 78%, rgba(234, 223, 209, .55), transparent 72%);
  animation: heroWash 22s ease-in-out infinite alternate;
}
@keyframes heroWash {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: .85; }
  to   { transform: translate3d(0, -2.4%, 0) scale(1.07); opacity: 1; }
}

/* primary CTAs: the clay-rose gradient glides across on hover */
.btn-primary {
  background-image: linear-gradient(115deg, #C4826E 0%, #A85B49 46%, #C4826E 100%);
  background-size: 210% 100%;
  background-position: 0% 0;
  transition: transform .15s ease, box-shadow .2s ease,
              background-position .55s ease, filter .2s ease;
}
.btn-primary:hover { background-position: 100% 0; filter: none; }

/* eyebrow rule + step numerals take a soft gradient */
.eyebrow-rule { background: linear-gradient(90deg, #B76B58, #E3C7BB); }
.card .numeral {
  background: linear-gradient(155deg, #E3C7BB, #D2AB9A);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.card--invert .numeral {
  background: linear-gradient(155deg, #C4826E, #B76B58);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* soft seams: the coloured bands melt into the cream around them */
.band--blush, .band--testimonials { position: relative; }
.band--blush::before, .band--blush::after,
.band--testimonials::before, .band--testimonials::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 40px;
  pointer-events: none;
}
.band--blush::before, .band--testimonials::before { top: 0; background: linear-gradient(var(--cream), transparent); }
.band--blush::after,  .band--testimonials::after  { bottom: 0; background: linear-gradient(transparent, var(--cream)); }

/* ---- C · Pointer feedback ---- */

/* nav links: an underline that grows from the RTL side */
.nav-desktop a { position: relative; }
.nav-desktop a::after {
  content: "";
  position: absolute;
  right: 0; bottom: -4px;
  width: 100%; height: 1.5px;
  background: var(--clay-rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s ease;
}
.nav-desktop a:hover::after { transform: scaleX(1); }

/* process cards: warmer hover + a light sweep of shine */
.card { position: relative; overflow: hidden; }
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, .45) 50%, transparent 58%);
  transform: translateX(120%);
  transition: transform .7s ease;
}
.card:hover {
  border-color: rgba(183, 107, 88, .4);
  box-shadow: 0 12px 30px rgba(183, 107, 88, .13);
}
.card:hover::after { transform: translateX(-120%); }
.card--invert::after { background: linear-gradient(115deg, transparent 42%, rgba(246, 239, 229, .12) 50%, transparent 58%); }
.card--invert:hover { border-color: rgba(239, 185, 168, .4); }

/* benefit cards: firm up on hover */
.benefit {
  position: relative;
  transition: background .25s ease, transform .18s ease, box-shadow .2s ease;
}
.benefit:hover {
  background: rgba(255, 255, 255, .84);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(183, 107, 88, .1);
}
.benefit--invert:hover { background: #3D2C23; }

/* photos: the faintest hover zoom, like a page that's alive */
@media (hover: hover) {
  .hero-media .placeholder,
  .placeholder--on-dark,
  .placeholder--form { transition: transform .45s ease; }
  .hero-media:hover .placeholder,
  .placeholder--on-dark:hover,
  .placeholder--form:hover { transform: scale(1.012); }
}

/* form fields: the underline draws in from the centre on focus */
.field-line { position: relative; display: block; }
.field-line::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 2px;
  background: var(--rose-light);
  transform: translateX(-50%);
  transition: width .3s ease;
}
.field-line:focus-within::after { width: 100%; }
.field:focus-within > span:first-child { color: #FFFFFF; }

@media (min-width: 641px) {
  /* form panel: the dark gradient drifts very slowly */
  .form-section {
    background-size: 170% 170%;
    background-position: 0% 0%;
    animation: formDrift 26s ease-in-out infinite alternate;
  }
  @keyframes formDrift {
    from { background-position: 0% 0%; }
    to   { background-position: 100% 65%; }
  }
}
