/* ====================================================================
   Yona-Care · יונאקר · Pigeon repellent services
   Design language v2 — Editorial Guardian · phase 1 foundation
   ==================================================================== */

:root {
  /* Ink family — deepened navy */
  --ink-950: #030A1F;
  --ink-900: #07142D;
  --ink-800: #0C2149;
  --ink-700: #143063;
  --ink-600: #1F4383;
  --ink-500: #2B5AA7;

  /* Paper / warm cream tier (new) */
  --paper-50:  #FBF7EC;
  --paper-100: #F5EEDB;
  --paper-200: #EDE2C3;
  --paper-300: #DED0A0;

  /* Accents */
  --ember:      #DE3A2E;
  --ember-600:  #B82A21;
  --ember-700:  #8B1D16;
  --gold:       #E8B94A;
  --gold-600:   #C9981F;
  --gold-ink:   #6B4A0A;

  /* Earth neutrals */
  --sage: #5B7250;
  --sand: #C9A86A;

  /* Warm slate */
  --slate-50:  #F5F3EF;
  --slate-100: #E9E4D7;
  --slate-200: #C8BFA6;
  --slate-300: #96907F;
  --slate-400: #6B6758;
  --slate-500: #4A4739;
  --slate-900: #1C1A12;

  /* Back-compat aliases */
  --navy-900: var(--ink-900);
  --navy-800: var(--ink-800);
  --navy-700: var(--ink-700);
  --navy-600: var(--ink-600);
  --accent:      var(--ember);
  --accent-600:  var(--ember-600);
  --cream: var(--paper-50);
  --green: #3F8C4F;
  --ink: var(--ink-900);
  --muted: var(--slate-400);

  /* Radii & shadow */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-sm:   0 1px 2px rgba(7, 20, 45, 0.06), 0 2px 8px rgba(7, 20, 45, 0.05);
  --shadow-md:   0 14px 36px -14px rgba(7, 20, 45, 0.28);
  --shadow-lg:   0 30px 60px -22px rgba(7, 20, 45, 0.45);
  --shadow-xl:   0 40px 80px -30px rgba(7, 20, 45, 0.55);

  --ease:        cubic-bezier(0.33, 1, 0.68, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Grain (200x200 noise) — apply via bg-image */
  --grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.04 0 0 0 0 0.05 0 0 0 0 0.09 0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");

  /* Blueprint dot pattern */
  --blueprint: radial-gradient(circle at 1px 1px, rgba(7, 20, 45, 0.13) 1px, transparent 0);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "Assistant", -apple-system, "Segoe UI", system-ui, Arial, sans-serif;
  font-weight: 400;
  color: var(--ink-900);
  background: var(--paper-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.003em;
}

/* fixed grain overlay — whole-page texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--grain);
  background-size: 220px;
  opacity: 0.6;
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 100;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: "Frank Ruhl Libre", "Assistant", serif;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 0;
}

h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; }
h3 {
  font-size: 1.25rem;
  font-family: "Assistant", sans-serif;
  font-weight: 700;
  letter-spacing: -0.004em;
  color: var(--ink-900);
  line-height: 1.25;
}
h4 { font-size: 1rem; font-family: "Assistant", sans-serif; font-weight: 700; }

p { margin: 0.5em 0; }

.container {
  width: min(1240px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Latin display util (numerals / English accents) */
.display-lat {
  font-family: "Fraunces", "Frank Ruhl Libre", serif;
  font-variation-settings: "opsz" 144;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ember);
  text-transform: uppercase;
  padding: 0.45rem 0.95rem;
  background: rgba(222, 58, 46, 0.08);
  border: 1px solid rgba(222, 58, 46, 0.22);
  border-radius: 99px;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.eyebrow--light {
  color: var(--gold);
  background: rgba(232, 185, 74, 0.12);
  border-color: rgba(232, 185, 74, 0.3);
}

.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section__head h2 { margin-bottom: 0.6rem; }

.section__head p {
  color: var(--muted);
  font-size: 1.08rem;
  margin-top: 0.6rem;
  font-weight: 400;
}

/* ================= Buttons ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid transparent;
  border-radius: 99px;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.2s, color 0.2s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: -0.005em;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.25s;
}

.btn:hover::after { opacity: 1; }

.btn--primary {
  background: linear-gradient(180deg, var(--ember) 0%, var(--ember-600) 100%);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(222, 58, 46, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(222, 58, 46, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn--accent {
  background: linear-gradient(180deg, var(--gold) 0%, #cfa13a 100%);
  color: var(--ink-900);
  box-shadow: 0 12px 30px -10px rgba(232, 185, 74, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn--accent:hover { transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--ink-900);
}
.btn--ghost:hover {
  background: var(--ink-900);
  color: var(--paper-50);
}

.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }

/* ================= Topbar ================= */
.topbar {
  background: var(--ink-950);
  color: var(--paper-200);
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  gap: 1rem;
}

.topbar__hours {
  color: var(--slate-200);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.topbar__hours::before {
  content: "●";
  color: var(--sage);
  animation: pulseDot 2.4s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: -0.003em;
  transition: color 0.2s;
}

.topbar__phone:hover { color: var(--paper-50); }

/* ================= Header ================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 236, 0.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(7, 20, 45, 0.06);
  transition: box-shadow 0.3s, background 0.3s;
}

.header.is-scrolled {
  box-shadow: 0 10px 30px -18px rgba(7, 20, 45, 0.2);
  background: rgba(251, 247, 236, 0.96);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo__mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ink-800) 0%, var(--ink-600) 100%);
  color: var(--gold);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative;
}

.logo__mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(232, 185, 74, 0.3);
  pointer-events: none;
}

.logo__text strong {
  display: block;
  font-family: "Frank Ruhl Libre", serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--ink-900);
  line-height: 1;
  letter-spacing: -0.025em;
}

.logo__text em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--slate-400);
  letter-spacing: 0.1em;
  margin-top: 3px;
  text-transform: uppercase;
}

.logo--light .logo__text strong { color: var(--paper-50); }
.logo--light .logo__text em { color: var(--slate-200); }

.nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a {
  color: var(--ink-900);
  position: relative;
  transition: color 0.2s;
  padding: 0.25rem 0;
}

.nav a:hover { color: var(--ember); }

.nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0; left: 0;
  height: 2px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}

.nav a:hover::after { transform: scaleX(1); }

.header__cta { padding: 0.65rem 1.3rem; font-size: 0.9rem; }

.burger {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink-900);
  transition: all 0.25s;
}

/* ================= Hero ================= */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(168deg, var(--paper-50) 0%, var(--paper-100) 55%, var(--paper-200) 100%);
  padding: clamp(3rem, 6vw, 5.5rem) 0 0;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  position: absolute;
  inset: -50px;
  background-image: var(--blueprint);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at 70% 45%, black 15%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 45%, black 15%, transparent 75%);
  opacity: 0.75;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.7;
  mix-blend-mode: multiply;
}

.hero__glow--1 {
  width: 560px; height: 560px;
  top: -180px; right: -140px;
  background: radial-gradient(circle, rgba(232, 185, 74, 0.65), transparent 60%);
}

.hero__glow--2 {
  width: 420px; height: 420px;
  bottom: -140px; left: -90px;
  background: radial-gradient(circle, rgba(222, 58, 46, 0.3), transparent 65%);
}

.hero__pigeon {
  position: absolute;
  width: 120px; height: 120px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><g fill='%2307142D' opacity='0.08'><ellipse cx='26' cy='36' rx='20' ry='10' transform='rotate(-4 26 36)'/><path d='M10 34 L2 30 L4 42 Z'/><circle cx='44' cy='26' r='7'/><path d='M50 24 L56 26 L50 28 Z'/></g></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  animation: drift 14s ease-in-out infinite;
}

.hero__pigeon--1 {
  --r: -15deg;
  top: 8%; right: 4%;
  width: 180px; height: 180px;
  animation-delay: 0s;
}

.hero__pigeon--2 {
  --r: 20deg;
  top: 52%; left: 6%;
  width: 110px; height: 110px;
  animation-delay: 3s;
}

.hero__pigeon--3 {
  --r: -8deg;
  bottom: 15%; right: 38%;
  width: 82px; height: 82px;
  opacity: 0.55;
  animation-delay: 7s;
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--r, -15deg)); }
  33%      { transform: translate3d(-6px, -14px, 0) rotate(var(--r, -15deg)); }
  66%      { transform: translate3d(8px, 6px, 0) rotate(var(--r, -15deg)); }
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  padding: 3rem 0 5rem;
  z-index: 2;
}



.hero__title {
  font-family: "Frank Ruhl Libre", serif;
  font-size: clamp(2.7rem, 6.4vw, 5rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.032em;
  margin-bottom: 1.5rem;
  color: var(--ink-900);
}

.hero__title > span { display: block; }

.hero__title > span:first-child {
  font-weight: 700;
  color: var(--ink-700);
}

.hero__title-accent {
  position: relative;
  display: inline-block !important;
  color: var(--ember);
  font-style: italic;
  font-weight: 900;
  padding: 0 0.06em;
}

.hero__title-accent::after {
  content: "";
  position: absolute;
  right: -4px; left: -4px;
  bottom: 0.08em;
  height: 20%;
  background: linear-gradient(90deg, rgba(232, 185, 74, 0.55) 0%, rgba(232, 185, 74, 0) 100%);
  z-index: -1;
  border-radius: 3px;
  transform: skewX(-6deg);
}

.hero__title-accent .char {
  display: inline-block;
  opacity: 0;
  translate: 0 0.45em;
  animation: charIn 0.6s var(--ease-out) forwards;
  animation-delay: calc(var(--i, 0) * 50ms + 180ms);
  white-space: pre;
}

@keyframes charIn {
  to { opacity: 1; translate: 0 0; }
}

.hero__subtitle {
  font-size: 1.18rem;
  color: var(--slate-500);
  max-width: 560px;
  margin-bottom: 2.3rem;
  line-height: 1.55;
  font-weight: 400;
}

.hero__subtitle strong {
  color: var(--ink-900);
  font-weight: 700;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.hero__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(7, 20, 45, 0.12);
  position: relative;
}

.hero__trust::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  width: 52px;
  height: 3px;
  background: var(--ember);
}

.hero__trust li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero__trust strong {
  font-family: "Frank Ruhl Libre", serif;
  font-size: 1.95rem;
  font-weight: 900;
  color: var(--ink-900);
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero__trust span {
  font-size: 0.82rem;
  color: var(--slate-400);
  letter-spacing: 0.01em;
}

.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
}

.hero__shield {
  position: absolute;
  inset: 0;
  filter: drop-shadow(0 40px 55px rgba(7, 20, 45, 0.3));
  animation: shieldFloat 9s ease-in-out infinite;
  translate: var(--mx, 0) var(--my, 0);
  transition: translate 0.4s var(--ease-out);
}

@keyframes shieldFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(-1.2deg); }
}

.hero__floatcard {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(7, 20, 45, 0.08);
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 4.5s ease-in-out infinite;
  backdrop-filter: blur(8px);
}

.hero__floatcard--1 { top: 10%; right: -10%; animation-delay: 0s; }
.hero__floatcard--2 { bottom: 16%; left: -8%; animation-delay: 2.2s; }

.hero__floatcard strong {
  display: block;
  font-size: 0.93rem;
  color: var(--ink-900);
  font-weight: 700;
}

.hero__floatcard small {
  font-size: 0.76rem;
  color: var(--slate-400);
}

.dot-green, .dot-orange {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-green  { background: var(--sage);     box-shadow: 0 0 0 4px rgba(91, 114, 80, 0.25); }
.dot-orange { background: var(--gold-600); box-shadow: 0 0 0 4px rgba(201, 152, 31, 0.25); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero__marquee {
  background: var(--ink-950);
  color: var(--paper-100);
  overflow: hidden;
  padding: 1rem 0;
  border-top: 4px solid var(--gold);
  position: relative;
}

.hero__marquee::before,
.hero__marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 2;
}

.hero__marquee::before {
  right: 0;
  background: linear-gradient(270deg, var(--ink-950), transparent);
}

.hero__marquee::after {
  left: 0;
  background: linear-gradient(90deg, var(--ink-950), transparent);
}

.hero__marquee-track {
  display: flex;
  gap: 2.8rem;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  will-change: transform;
}

.hero__marquee-track span {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--paper-100);
  letter-spacing: 0.01em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

/* ================= Problem ================= */
.problem {
  padding: 6.5rem 0 6rem;
  background: var(--paper-50);
  position: relative;
  overflow: hidden;
}

.problem::before {
  content: "";
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(7, 20, 45, 0.1), transparent);
}

/* giant bleed numeral marker */
.problem::after {
  content: "01";
  position: absolute;
  top: 2rem;
  left: 2.5rem;
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144;
  font-weight: 900;
  font-size: clamp(6rem, 14vw, 14rem);
  color: rgba(7, 20, 45, 0.04);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.problem__head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem;
  position: relative;
  z-index: 1;
}

.problem__head h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
}

.problem__head p { color: var(--muted); font-size: 1.1rem; }

.problem__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  counter-reset: problem-count;
  position: relative;
  z-index: 1;
}

.problem__item {
  counter-increment: problem-count;
  text-align: right;
  padding: 2rem 1.5rem 1.8rem;
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.problem__item::before {
  content: "";
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ember), var(--gold));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.55s var(--ease-out);
}

.problem__item::after {
  content: "0" counter(problem-count);
  position: absolute;
  top: 1rem;
  left: 1.1rem;
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 72;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-300);
  letter-spacing: 0.15em;
}

.problem__item:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.problem__item:hover::before { transform: scaleX(1); }
.problem__item:hover::after { color: var(--ember); }

.problem__item svg {
  color: var(--ember);
  background: linear-gradient(135deg, rgba(222, 58, 46, 0.1), rgba(232, 185, 74, 0.08));
  padding: 0.75rem;
  border-radius: 14px;
  width: 56px;
  height: 56px;
  margin: 0 0 1.2rem;
  box-sizing: content-box;
  transition: transform 0.4s var(--ease-out);
}

.problem__item:hover svg { transform: rotate(-6deg) scale(1.05); }

.problem__item h3 {
  margin-bottom: 0.4rem;
  font-family: "Frank Ruhl Libre", serif;
  font-weight: 900;
  font-size: 1.22rem;
}
.problem__item p { color: var(--muted); font-size: 0.94rem; margin: 0; line-height: 1.55; }

/* ================= Services ================= */
.services {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--paper-100) 0%, var(--paper-50) 100%);
  position: relative;
  overflow: hidden;
}

.services::after {
  content: "02";
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144;
  font-weight: 900;
  font-size: clamp(6rem, 14vw, 14rem);
  color: rgba(7, 20, 45, 0.04);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.services .section__head { position: relative; z-index: 1; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: service-count;
  position: relative;
  z-index: 1;
}

.service {
  counter-increment: service-count;
  position: relative;
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  padding: 2.4rem 1.9rem 2rem;
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service::before {
  content: "";
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ember), var(--gold));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out);
}

.service:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service:hover::before { transform: scaleX(1); }

.service::after {
  content: "0" counter(service-count);
  position: absolute;
  top: 1.3rem;
  left: 1.6rem;
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 72;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--slate-300);
  letter-spacing: 0.18em;
  z-index: 2;
  transition: color 0.3s;
}

.service:hover::after { color: var(--ember); }

.service--featured {
  background-color: var(--ink-800);
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><g fill='%23ffffff' opacity='0.04'><ellipse cx='26' cy='36' rx='20' ry='10' transform='rotate(-4 26 36)'/><path d='M10 34 L2 30 L4 42 Z'/><circle cx='44' cy='26' r='7'/><path d='M50 24 L56 26 L50 28 Z'/></g></svg>"),
    linear-gradient(165deg, var(--ink-800) 0%, var(--ink-700) 100%);
  background-size: 130px, cover;
  color: var(--paper-50);
  border-color: var(--ink-700);
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
}

.service--featured::before { transform: scaleX(1); }
.service--featured h3 { color: #fff; }
.service--featured > p { color: var(--slate-200); }
.service--featured ul li { color: var(--slate-100); }
.service--featured ul li::before { background: var(--gold); }
.service--featured .service__icon {
  background: linear-gradient(135deg, rgba(232, 185, 74, 0.18), rgba(232, 185, 74, 0.06));
  color: var(--gold);
}
.service--featured .service__link { color: var(--gold); }
.service--featured::after { color: rgba(232, 185, 74, 0.55); }
.service--featured:hover::after { color: var(--gold); }

.service__tag {
  position: absolute;
  top: 1.3rem;
  right: 1.6rem;
  background: var(--gold);
  color: var(--ink-900);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  letter-spacing: 0.05em;
  z-index: 2;
}

.service__icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(222, 58, 46, 0.1), rgba(222, 58, 46, 0.04));
  color: var(--ember);
  display: grid;
  place-items: center;
  margin: 0.9rem 0 1.4rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  transition: transform 0.4s var(--ease-out);
}

.service:hover .service__icon { transform: rotate(-4deg) scale(1.03); }

.service h3 {
  margin-bottom: 0.55rem;
  font-family: "Frank Ruhl Libre", serif;
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.015em;
}

.service > p {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 1.2rem;
  line-height: 1.55;
}

.service ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.3rem;
  font-size: 0.92rem;
}

.service ul li {
  position: relative;
  padding-inline-start: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.service ul li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 1px;
  background: var(--ember);
  transform: rotate(45deg);
}

.service__link {
  margin-top: auto;
  font-weight: 700;
  color: var(--ember);
  font-size: 0.95rem;
  transition: color 0.2s, transform 0.3s var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--slate-100);
}

.service--featured .service__link { border-top-color: rgba(255, 255, 255, 0.12); }

.service__link:hover { color: var(--ember-600); transform: translateX(-4px); }
.service--featured .service__link:hover { color: #fff; }

/* ================= Why ================= */
.why {
  padding: 7.5rem 0;
  background: var(--ink-900);
  color: var(--paper-50);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><g fill='%23ffffff' opacity='0.028'><ellipse cx='26' cy='36' rx='20' ry='10' transform='rotate(-4 26 36)'/><path d='M10 34 L2 30 L4 42 Z'/><circle cx='44' cy='26' r='7'/><path d='M50 24 L56 26 L50 28 Z'/></g></svg>");
  background-size: 180px 180px;
}

.why::after {
  content: "03";
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144;
  font-weight: 900;
  font-size: clamp(6rem, 14vw, 14rem);
  color: rgba(232, 185, 74, 0.06);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.why__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: center;
  z-index: 1;
}

.why__left {
  position: relative;
}

.why__left::before {
  content: "";
  position: absolute;
  top: 0; right: -2rem;
  width: 2px;
  height: 120%;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  opacity: 0.5;
}

.why__left .eyebrow { margin-bottom: 1.3rem; }

.why__left h2 {
  color: var(--paper-50);
  margin-bottom: 1.3rem;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.why__left h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 900;
}

.why__left > p {
  color: var(--slate-200);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.2rem;
  max-width: 480px;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.why__card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  transition: all 0.4s var(--ease-out);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.why__card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}

.why__card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
  border-color: rgba(232, 185, 74, 0.4);
}

.why__card:hover::before { transform: scaleX(1); }

.why__num {
  font-family: "Fraunces", "Frank Ruhl Libre", serif;
  font-variation-settings: "opsz" 144;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.035em;
  display: inline-block;
  position: relative;
}

.why__num::after {
  content: "";
  position: absolute;
  bottom: 0.22em;
  right: -0.4em;
  width: 4px;
  height: 4px;
  background: var(--ember);
  border-radius: 50%;
}

.why__card h3 {
  color: var(--paper-50);
  margin-bottom: 0.45rem;
  font-family: "Frank Ruhl Libre", serif;
  font-weight: 900;
  font-size: 1.22rem;
  letter-spacing: -0.015em;
}

.why__card p { color: var(--slate-200); font-size: 0.95rem; margin: 0; line-height: 1.55; }

/* ================= Process ================= */
.process {
  padding: 7rem 0;
  background: var(--paper-100);
  position: relative;
  overflow: hidden;
}

.process::after {
  content: "04";
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144;
  font-weight: 900;
  font-size: clamp(6rem, 14vw, 14rem);
  color: rgba(7, 20, 45, 0.04);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.process .section__head,
.process__list { position: relative; z-index: 1; }

.process__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  position: relative;
}

.process__list::before {
  content: "";
  position: absolute;
  top: 102px;
  right: 10%;
  left: 10%;
  height: 2px;
  background:
    repeating-linear-gradient(to left, var(--ember) 0, var(--ember) 10px, transparent 10px, transparent 20px);
  z-index: 0;
  opacity: 0.45;
}

.process__step {
  background: #fff;
  padding: 2.4rem 1.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  border: 1px solid var(--slate-100);
}

.process__step:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.process__step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #f56256, var(--ember) 45%, var(--ember-600) 100%);
  color: #fff;
  font-family: "Fraunces", "Frank Ruhl Libre", serif;
  font-variation-settings: "opsz" 144;
  font-size: 1.85rem;
  font-weight: 900;
  display: grid;
  place-items: center;
  margin: 0 auto 1.2rem;
  box-shadow:
    0 10px 22px -8px rgba(222, 58, 46, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 0 0 6px rgba(222, 58, 46, 0.08);
  letter-spacing: -0.02em;
  position: relative;
}

.process__step-num::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px dashed rgba(222, 58, 46, 0.35);
  opacity: 0;
  transition: opacity 0.3s, transform 0.5s var(--ease-out);
  transform: scale(0.9) rotate(0deg);
}

.process__step:hover .process__step-num::after {
  opacity: 1;
  transform: scale(1.15) rotate(180deg);
}

.process__step h3 {
  margin-bottom: 0.45rem;
  font-family: "Frank Ruhl Libre", serif;
  font-weight: 900;
  font-size: 1.22rem;
  letter-spacing: -0.015em;
}

.process__step p { color: var(--muted); font-size: 0.93rem; margin: 0; line-height: 1.55; }

/* tiny "stage N" label above step num */
.process__step::before {
  content: "שלב";
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--slate-400);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ================= Gallery ================= */
.gallery {
  padding: 7rem 0;
  background: var(--paper-50);
  position: relative;
  overflow: hidden;
}

.gallery::after {
  content: "05";
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144;
  font-weight: 900;
  font-size: clamp(6rem, 14vw, 14rem);
  color: rgba(7, 20, 45, 0.04);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.gallery .section__head,
.gallery__grid { position: relative; z-index: 1; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
  border: 1px solid var(--slate-100);
}

.gallery__item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.gallery__ph {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.8s var(--ease-out), filter 0.5s;
}

.gallery__item:hover .gallery__ph { transform: scale(1.1); filter: saturate(1.1); }

.gallery__ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(7, 20, 45, 0.85) 100%),
    linear-gradient(135deg, rgba(222, 58, 46, 0.08) 0%, transparent 45%);
}

.gallery__ph {
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><path fill='%23ffffff' opacity='0.12' d='M160 55c-9 0-15 3-21 9l-24-6c-9-3-18 0-24 6l-12 12-27 6c-12 3-18 12-18 24 0 9 6 15 15 15h9l-12 24c-3 6 3 12 9 12h18c15 0 27-9 33-24l18-6c18-6 30-21 33-39 6-3 12-9 12-18 0-9-3-15-9-15z'/></svg>"),
    var(--bg, linear-gradient(135deg, var(--ink-700), var(--ink-900)));
  background-size: 58%, cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gallery__ph--1 { --bg: linear-gradient(135deg, var(--ink-600), var(--ink-900)); }
.gallery__ph--2 { --bg: linear-gradient(135deg, #3a4a5c, #1b2636); }
.gallery__ph--3 { --bg: linear-gradient(135deg, var(--gold), #8b6a1f); }
.gallery__ph--4 { --bg: linear-gradient(135deg, #5b6d7e, #2a3340); }
.gallery__ph--5 { --bg: linear-gradient(120deg, var(--ink-900) 0%, var(--ink-600) 50%, var(--ember-700) 100%); }

/* overlay tag "לפני · אחרי" */
.gallery__item::before {
  content: "לפני · אחרי";
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.7rem;
  background: rgba(251, 247, 236, 0.92);
  color: var(--ink-900);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 99px;
  z-index: 2;
  backdrop-filter: blur(6px);
  transition: transform 0.35s var(--ease-out);
}

.gallery__item:hover::before {
  transform: translateY(-2px);
  background: var(--gold);
}

.gallery__item figcaption {
  position: absolute;
  bottom: 1.1rem;
  right: 1.3rem;
  left: 1.3rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  z-index: 1;
  font-family: "Frank Ruhl Libre", serif;
  letter-spacing: -0.01em;
}

/* ================= Reviews ================= */
.reviews {
  padding: 7rem 0;
  background: var(--paper-100);
  position: relative;
  overflow: hidden;
}

.reviews::after {
  content: "06";
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144;
  font-weight: 900;
  font-size: clamp(6rem, 14vw, 14rem);
  color: rgba(7, 20, 45, 0.04);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.reviews .section__head,
.reviews__grid { position: relative; z-index: 1; }

.reviews__score {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
  font-size: 0.95rem;
  color: var(--muted);
  background: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 99px;
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
}

.reviews__score strong {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 72;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--ink-900);
}

.reviews__stars, .review__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.4rem 2rem 2rem;
  margin: 0;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  border: 1px solid var(--slate-100);
  display: flex;
  flex-direction: column;
}

.review:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.review::before {
  content: "\201D";
  position: absolute;
  top: -22px;
  right: 24px;
  font-family: "Frank Ruhl Libre", serif;
  font-size: 7rem;
  color: var(--ember);
  opacity: 0.18;
  line-height: 1;
  font-weight: 900;
  transition: opacity 0.3s, transform 0.4s var(--ease-out);
}

.review:hover::before { opacity: 0.35; transform: translateY(-4px) rotate(-3deg); }

.review__stars {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.review p {
  color: var(--ink-900);
  font-size: 1.05rem;
  margin: 0 0 1.4rem;
  line-height: 1.65;
  font-family: "Frank Ruhl Libre", serif;
  font-weight: 500;
  letter-spacing: -0.005em;
  flex: 1;
}

.review footer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--slate-100);
  position: relative;
}

.review footer::after {
  content: "G";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-15%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--slate-100);
  display: grid;
  place-items: center;
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 0.95rem;
  color: #4285f4;
  box-shadow: var(--shadow-sm);
}

.review__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink-600), var(--ink-800));
  color: var(--gold);
  font-family: "Frank Ruhl Libre", serif;
  font-weight: 900;
  font-size: 1.3rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}

.review footer strong {
  display: block;
  color: var(--ink-900);
  font-size: 0.98rem;
  font-weight: 700;
}

.review footer small {
  color: var(--slate-400);
  font-size: 0.8rem;
}

/* ================= CTA Banner ================= */
.ctabanner {
  padding: 5.5rem 0;
  background:
    radial-gradient(ellipse at 80% 0%, #f56256, transparent 60%),
    linear-gradient(135deg, var(--ember) 0%, var(--ember-600) 60%, var(--ember-700) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.ctabanner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><g fill='%23ffffff' opacity='0.075'><ellipse cx='26' cy='36' rx='20' ry='10' transform='rotate(-4 26 36)'/><path d='M10 34 L2 30 L4 42 Z'/><circle cx='44' cy='26' r='7'/><path d='M50 24 L56 26 L50 28 Z'/></g></svg>");
  background-size: 140px;
  mask-image: linear-gradient(90deg, transparent 0%, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 50%, transparent 100%);
}

.ctabanner::after {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232, 185, 74, 0.25), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.ctabanner__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  z-index: 1;
}

.ctabanner__inner > div { max-width: 620px; }

.ctabanner h2 {
  color: #fff;
  font-family: "Frank Ruhl Libre", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
  margin-bottom: 0.6rem;
  letter-spacing: -0.025em;
  font-weight: 900;
}

.ctabanner p {
  color: rgba(255, 255, 255, 0.94);
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.55;
  max-width: 540px;
}

/* ================= Contact ================= */
.contact {
  padding: 7rem 0;
  background: var(--paper-50);
  position: relative;
  overflow: hidden;
}

.contact::after {
  content: "07";
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144;
  font-weight: 900;
  font-size: clamp(6rem, 14vw, 14rem);
  color: rgba(7, 20, 45, 0.04);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact__info h2 {
  margin: 0.5rem 0 0.9rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.025em;
}

.contact__info > p { color: var(--muted); font-size: 1.1rem; margin-bottom: 2.2rem; }

.contact__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.contact__list li::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  right: 0;
  width: 3px;
  background: var(--ember);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease-out);
}

.contact__list li:hover {
  border-color: transparent;
  transform: translateX(-4px);
  box-shadow: var(--shadow-md);
}

.contact__list li:hover::before { transform: scaleY(1); }

.contact__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ink-700), var(--ink-900));
  color: var(--gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}

.contact__list small {
  display: block;
  color: var(--slate-400);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.contact__list a, .contact__list strong {
  color: var(--ink-900);
  font-size: 1.05rem;
  font-weight: 700;
}

.contact__list a:hover { color: var(--ember); }

.contact__form {
  background: linear-gradient(170deg, #fff 0%, var(--paper-50) 100%);
  padding: 2.4rem;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.contact__form::before {
  content: "";
  position: absolute;
  top: -2px; right: 0; left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ember), var(--gold));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.contact__form h3 {
  grid-column: 1 / -1;
  font-size: 1.45rem;
  margin-bottom: 0.3rem;
  font-family: "Frank Ruhl Libre", serif;
  font-weight: 900;
  letter-spacing: -0.015em;
}

.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: 0.02em;
}

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--slate-100);
  border-radius: 10px;
  background: #fff;
  transition: all 0.25s var(--ease-out);
  resize: vertical;
  color: var(--ink-900);
}

.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--slate-300); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ember);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(222, 58, 46, 0.12);
}

.contact__notice {
  font-size: 0.8rem;
  color: var(--slate-400);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

.contact__form .form-success {
  grid-column: 1 / -1;
  background: #dcfce7;
  color: #166534;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  border: 1px solid #86efac;
}

/* ================= Footer ================= */
.footer {
  background: var(--ink-950);
  color: var(--slate-200);
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.footer::after {
  /* giant wordmark bleeding from bottom */
  content: "YONA-CARE";
  position: absolute;
  bottom: -40px;
  right: 0;
  left: 0;
  text-align: center;
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144;
  font-weight: 900;
  font-size: clamp(4rem, 16vw, 16rem);
  color: rgba(232, 185, 74, 0.035);
  letter-spacing: -0.03em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.footer__brand p {
  margin-top: 1.1rem;
  color: var(--slate-200);
  font-size: 0.96rem;
  max-width: 380px;
  line-height: 1.65;
}

.footer__col h4 {
  color: var(--paper-50);
  margin-bottom: 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: "Assistant", sans-serif;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer__col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__col a {
  color: var(--slate-200);
  transition: color 0.2s, padding-right 0.25s var(--ease-out);
  font-size: 0.95rem;
  display: inline-block;
}
.footer__col a:hover { color: var(--gold); padding-right: 4px; }
.footer__col li { font-size: 0.95rem; color: var(--slate-200); }

.footer__bottom {
  background: rgba(0, 0, 0, 0.35);
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 1;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--slate-200);
  font-size: 0.85rem;
}

.footer__bottom-inner small:last-child {
  color: var(--slate-300);
  font-style: italic;
  letter-spacing: 0.01em;
}

/* ================= Float Button ================= */
.floatbtn {
  position: fixed;
  bottom: 26px;
  left: 26px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--ember) 0%, var(--ember-600) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px -8px rgba(222, 58, 46, 0.75), inset 0 1px 0 rgba(255,255,255,0.25);
  z-index: 40;
  transition: transform 0.25s var(--ease-spring);
  animation: pulseRing 2.5s infinite;
}

.floatbtn:hover { transform: scale(1.08) rotate(-6deg); }

@keyframes pulseRing {
  0%   { box-shadow: 0 12px 30px -8px rgba(222, 58, 46, 0.75), 0 0 0 0 rgba(222, 58, 46, 0.55); }
  70%  { box-shadow: 0 12px 30px -8px rgba(222, 58, 46, 0.75), 0 0 0 20px rgba(222, 58, 46, 0); }
  100% { box-shadow: 0 12px 30px -8px rgba(222, 58, 46, 0.75), 0 0 0 0 rgba(222, 58, 46, 0); }
}

/* ================= Scroll Rope Pigeon ================= */
.ropepigeon {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 88px;
  pointer-events: none;
  z-index: 35;
}

.ropepigeon__rope {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 2px;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(232, 185, 74, 0.55) 0 5px,
      transparent 5px 10px
    );
}

.ropepigeon__rope::before,
.ropepigeon__rope::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  box-shadow: 0 0 0 2px rgba(232, 185, 74, 0.25);
}

.ropepigeon__rope::before { top: 0; }
.ropepigeon__rope::after  { bottom: 0; }

.ropepigeon__bird {
  position: absolute;
  top: 90px;
  left: 0;
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 8px 14px rgba(7, 20, 45, 0.25));
  transition: top 0.14s linear, transform 0.3s var(--ease-out);
  will-change: top, transform;
}

.ropepigeon__bird.is-bouncing {
  animation: bobble 3s ease-in-out infinite;
}

@keyframes bobble {
  0%, 100% { transform: rotate(0deg); }
  33%      { transform: rotate(-3deg); }
  66%      { transform: rotate(2deg); }
}

/* hide under tight widths — overlaps content */
@media (max-width: 1180px) {
  .ropepigeon { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .ropepigeon__bird {
    transition: none;
    animation: none !important;
  }
}

/* ================= Reveal animations ================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= Responsive ================= */
@media (max-width: 980px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; }

  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper-50);
    flex-direction: column;
    padding: 1rem 2rem;
    border-top: 1px solid var(--slate-100);
    box-shadow: var(--shadow-md);
    align-items: stretch;
    gap: 0.5rem;
  }
  .nav.is-open a { padding: 0.7rem 0; border-bottom: 1px solid var(--slate-100); }

  .hero__inner { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 3.5rem; }
  .hero__visual { display: none; }
  .hero__trust { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .hero__pigeon--1 { width: 120px; height: 120px; }

  .problem__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service--featured { transform: none; }
  .why__inner { grid-template-columns: 1fr; gap: 2rem; }
  .why__grid { grid-template-columns: 1fr; }
  .process__list { grid-template-columns: repeat(2, 1fr); }
  .process__list::before { display: none; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }
  .reviews__grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .topbar__hours { display: none; }
  .services__grid { grid-template-columns: 1fr; }
  .problem__grid { grid-template-columns: 1fr; }
  .process__list { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 190px; }
  .gallery__item--wide { grid-column: span 1; }
  .contact__form { grid-template-columns: 1fr; padding: 1.6rem; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__trust { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero__trust strong { font-size: 1.5rem; }
  .btn--lg { padding: 0.95rem 1.5rem; font-size: 1rem; }
  .floatbtn { width: 54px; height: 54px; bottom: 18px; left: 18px; }
}
