/* ============================================================
   שרית ארבל — CoSolution · פתרון משותף
   Design system: warm editorial, RTL Hebrew
   ============================================================ */

:root {
  --bg: #fdfbf7;
  --bg-2: #f7f2ea;
  --card: #ffffff;
  --ink: #000000;
  --ink-soft: #333333;
  --ink-faint: #98897d;
  --terra: #7d5a48;
  --terra-deep: #5d4335;
  --terra-soft: #e3d9cc;
  --gold: #7c6a58;
  --dark: #2a201b;
  --dark-2: #3a2d26;
  --line: #eae2d4;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, .04);
  --shadow-md: 0 14px 40px rgba(0, 0, 0, .07);
  --shadow-lg: 0 26px 70px rgba(0, 0, 0, .11);
  --radius: 22px;
  --serif: "Open Sans", "Heebo", sans-serif;
  --sans: "Open Sans", "Heebo", sans-serif;
  --ease: cubic-bezier(.22, .8, .3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: min(1180px, 92%); margin-inline: auto; }

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

/* ---------- grain overlay ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 4000;
  pointer-events: none;
  opacity: .14;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.55 0 0 0 0 0.5 0 0 0 0 0.45 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(9px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease), filter 1.2s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; filter: blur(0); }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
.reveal[data-delay="4"] { transition-delay: .48s; }

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

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  transition: padding .4s var(--ease);
  padding: 16px 0;
}
.nav.is-scrolled { padding: 8px 0; }
.nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 14px 26px 13px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.nav-inner::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--terra), var(--gold) 55%, #c9b8a4);
}
.brand { display: flex; align-items: center; justify-content: center; gap: 12px; }
.brand-logo {
  display: block;
  height: 96px;
  width: auto;
  transition: height .4s var(--ease);
}
.nav.is-scrolled .brand-logo { height: 72px; }
.brand-logo--footer { height: 104px; }
.footer .brand-logo--footer { height: 104px; }
.brand-text { line-height: 1.3; text-align: center; }
.brand-text strong {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 800;
  display: block;
  background: linear-gradient(120deg, var(--terra-deep), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-text span {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--terra-deep);
  letter-spacing: .03em;
}
.footer .brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terra), var(--gold));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.footer .brand-text strong { background: none; color: #fff; -webkit-background-clip: initial; background-clip: initial; }

.nav-links { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 38px; }
.nav-links a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--terra);
  transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--terra-deep);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  transition: background .3s, transform .3s;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold); transform: translateY(-2px); }

.nav-burger {
  display: none;
  position: absolute;
  top: 18px;
  inset-inline-start: 16px;
  background: none;
  border: 0;
  cursor: pointer;
  width: 42px; height: 42px;
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-burger span {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .3s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  padding: 215px 0 90px;
  background:
    radial-gradient(900px 600px at 85% 10%, rgba(226, 215, 198, .55), transparent 65%),
    radial-gradient(700px 550px at 8% 85%, rgba(124, 106, 88, .18), transparent 60%),
    linear-gradient(180deg, #fdfbf7, var(--bg));
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .45;
  animation: float 24s ease-in-out infinite alternate;
}
.hero-blob--a { width: 480px; height: 480px; background: #e9e0d2; top: -120px; left: -100px; }
.hero-blob--b { width: 380px; height: 380px; background: #e2d7c6; bottom: -140px; right: 10%; animation-delay: -9s; }

@keyframes float {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.08); }
}

.hero-arcs {
  position: absolute;
  inset-inline-start: -180px;
  bottom: -220px;
  width: 720px;
  opacity: .5;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  margin-block: auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.hero-kicker strong {
  color: var(--terra-deep);
  font-weight: 700;
  font-size: 1.02em;
}
.hero-kicker .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terra);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(93, 67, 53, .45); }
  60% { box-shadow: 0 0 0 9px rgba(93, 67, 53, 0); }
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.25;
  letter-spacing: -.01em;
  margin-bottom: 26px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--terra), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 34rem;
  margin-bottom: 22px;
}
.hero-intro {
  font-size: 1.02rem;
  margin-bottom: 30px;
}
.hero-intro strong { color: var(--terra-deep); }
.hero-points { display: grid; gap: 10px; margin-bottom: 34px; }
.hero-points li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 500;
  font-size: 1.02rem;
}
.hero-points .tick {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(93, 67, 53, .16);
  color: var(--terra-deep);
  display: grid; place-items: center;
  font-size: .72rem;
}
.hero-trust {
  margin-top: 20px;
  font-size: .88rem;
  color: var(--ink-faint);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--sans);
  cursor: pointer;
  border: 0;
  transition: transform .3s var(--ease), box-shadow .3s, background .3s, color .3s;
}
.btn-primary {
  background: var(--terra-deep);
  color: #fff;
  box-shadow: 0 14px 30px rgba(76, 107, 88, .3);
}
.btn-primary:hover { background: var(--gold); transform: translateY(-3px); box-shadow: 0 18px 38px rgba(124, 106, 88, .35); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(0, 0, 0, .25);
}
.btn-ghost:hover { border-color: var(--terra); color: var(--terra); transform: translateY(-3px); }

/* hero portrait + floating bubbles */
.hero-visual { position: relative; padding: 34px 44px 44px; }
.hero-portrait {
  position: relative;
  width: min(400px, 90%);
  margin-inline: auto;
  aspect-ratio: 4 / 5;
  padding: 12px;
  background: linear-gradient(140deg, #ede5d8, #e2d7c6 55%, #eae0d2);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}
.hero-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: inherit;
}
.portrait-glow {
  position: absolute;
  inset: -14%;
  z-index: -1;
  background:
    radial-gradient(45% 45% at 30% 25%, rgba(226, 215, 198, .85), transparent 70%),
    radial-gradient(42% 42% at 75% 75%, rgba(240, 224, 195, .8), transparent 70%),
    radial-gradient(36% 36% at 20% 80%, rgba(226, 216, 240, .6), transparent 70%);
  filter: blur(28px);
  border-radius: 50%;
  animation: glowPulse 9s ease-in-out infinite alternate;
}
@keyframes morph {
  0%   { border-radius: 58% 42% 55% 45% / 52% 48% 42% 58%; }
  50%  { border-radius: 45% 55% 48% 52% / 58% 42% 55% 45%; }
  100% { border-radius: 52% 48% 42% 58% / 45% 55% 52% 48%; }
}
@keyframes glowPulse {
  from { opacity: .65; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.07); }
}

.sparkle {
  position: absolute;
  color: var(--gold);
  text-shadow: 0 0 14px rgba(124, 106, 88, .9);
  animation: twinkle 3.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
.sparkle--1 { top: -6%; inset-inline-start: 14%; font-size: 1.3rem; }
.sparkle--2 { top: 16%; inset-inline-end: -6%; font-size: .95rem; animation-delay: -1.3s; }
.sparkle--3 { bottom: 12%; inset-inline-start: -7%; font-size: 1.1rem; animation-delay: -2.4s; }
.sparkle--4 { bottom: -5%; inset-inline-end: 20%; font-size: .8rem; animation-delay: -.7s; }
@keyframes twinkle {
  0%, 100% { opacity: .15; transform: scale(.6) rotate(0deg); }
  50%      { opacity: 1;   transform: scale(1.15) rotate(25deg); }
}

.bubble {
  position: absolute;
  width: 118px; height: 118px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, .8);
  backdrop-filter: blur(6px);
  animation: bubbleFloat 7s ease-in-out infinite alternate;
  z-index: 3;
}
.bubble span { padding: 10px; }
.bubble--1 { top: 0; inset-inline-start: -3%; background: linear-gradient(145deg, #e6f0e7, #cfe0d2); color: #4c6a58; }
.bubble--2 { top: 32%; inset-inline-end: -8%; width: 132px; height: 132px; background: linear-gradient(145deg, #fbeedd, #f1d9b8); color: #8a6a3b; animation-delay: -2.4s; animation-duration: 8.5s; }
.bubble--3 { bottom: 18%; inset-inline-start: -9%; width: 106px; height: 106px; background: linear-gradient(145deg, #ece6f5, #d8cfe9); color: #5f5680; animation-delay: -4.2s; animation-duration: 9.5s; }
.bubble--4 { bottom: -4%; inset-inline-end: 8%; width: 112px; height: 112px; background: linear-gradient(145deg, #fdeff0, #f3d5d8); color: #9c5f66; animation-delay: -1.5s; animation-duration: 7.8s; }
@keyframes bubbleFloat {
  from { transform: translateY(-9px) rotate(-2deg); }
  to   { transform: translateY(10px) rotate(2.5deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-portrait, .portrait-glow, .sparkle, .bubble { animation: none; }
}

.hero-scroll {
  position: absolute;
  bottom: 26px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  color: var(--ink-faint);
  font-size: .8rem;
  letter-spacing: .12em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll::after {
  content: "";
  width: 1.5px;
  height: 42px;
  background: linear-gradient(var(--terra), transparent);
  animation: drip 1.8s ease-in-out infinite;
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--bg-2);
  color: var(--ink-soft);
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  white-space: nowrap;
  position: relative;
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 70s linear infinite;
}
.marquee span {
  font-family: var(--serif);
  font-size: 1.05rem;
  padding-inline: 26px;
  display: inline-flex;
  align-items: center;
  gap: 26px;
}
.marquee span::after { content: "✦"; color: var(--gold); font-size: .8rem; }
.marquee-set { display: inline-flex; }
.marquee a {
  font-family: var(--serif);
  font-size: 1.05rem;
  padding-inline: 26px;
  display: inline-flex;
  align-items: center;
  gap: 26px;
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.marquee a::after { content: "✦"; color: var(--gold); font-size: .8rem; }
.marquee a:hover { color: #fff; text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1px; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.service-row, .ticket-card { scroll-margin-top: 150px; }
.service-row.is-flash, .ticket-card.is-flash { animation: rowFlash 1.6s ease; }
@keyframes rowFlash {
  0%, 55% { box-shadow: 0 0 0 3px rgba(125, 90, 72, .45); }
  100% { box-shadow: 0 0 0 3px transparent; }
}
@keyframes marquee { to { transform: translateX(50%); } }

/* ============================================================
   SECTIONS — shared
   ============================================================ */
section { padding: 130px 0; }

.sec-head { max-width: 640px; margin-bottom: 72px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--terra);
  margin-bottom: 16px;
}
.overline::before { content: ""; width: 34px; height: 1.5px; background: var(--terra); }
.sec-head.center .overline::after { content: ""; width: 34px; height: 1.5px; background: var(--terra); }
.sec-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.7vw, 2.7rem);
  line-height: 1.3;
  margin-bottom: 18px;
}
.sec-lead { color: var(--ink-soft); font-size: 1.1rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg); position: relative; }
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about-media { position: relative; }
.about-frame {
  border-radius: 240px 240px 26px 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  position: relative;
}
.about-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.about-frame:hover img { transform: scale(1.05); }
.about-media { text-align: center; }
.about-badge {
  display: inline-block;
  margin-top: 20px;
  background: var(--terra);
  color: #fff;
  border-radius: 20px;
  padding: 12px 30px;
  box-shadow: var(--shadow-md);
  text-align: center;
  white-space: nowrap;
}
.about-badge .big { font-family: var(--serif); font-size: 2rem; font-weight: 700; line-height: 1.1; display: block; }
.about-badge small { font-size: .8rem; opacity: .9; }
.about-ring {
  position: absolute;
  top: -34px;
  inset-inline-start: -34px;
  width: 130px; height: 130px;
  border: 2px dashed var(--gold);
  border-radius: 50%;
  animation: spin 45s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.about-body .sec-head { margin-bottom: 30px; }
.about-body p { color: var(--ink-soft); margin-bottom: 18px; font-size: 1.05rem; }
.about-quote {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  border-inline-start: 3px solid var(--terra);
  padding-inline-start: 22px;
  margin: 30px 0;
  line-height: 1.6;
}
.about-creds { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 34px; }
.about-creds li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  font-size: .95rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.about-creds .tick {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(93, 67, 53, .12);
  color: var(--terra);
  display: grid; place-items: center;
  font-size: .75rem;
  margin-top: 3px;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  padding: 0;
  position: relative;
  z-index: 2;
}
.stats-band {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 300px at 80% 0%, rgba(226, 215, 198, .4), transparent 70%);
}
.stat { position: relative; text-align: center; }
.stat + .stat { border-inline-start: 1px solid var(--line); }
.stat .num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.4rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  background: linear-gradient(120deg, var(--terra-deep), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .label { font-size: .95rem; color: var(--ink-soft); margin-top: 8px; }

/* ============================================================
   METHOD — CoSolution
   ============================================================ */
.method {
  background:
    radial-gradient(800px 500px at 10% 0%, rgba(226, 215, 198, .4), transparent 60%),
    var(--bg-2);
  position: relative;
}
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 10px;
}
.method-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s;
  position: relative;
  overflow: hidden;
}
.method-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.method-card .idx {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(93, 67, 53, .12);
  position: absolute;
  top: 8px;
  inset-inline-end: 22px;
  line-height: 1;
}
.method-card h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 700; margin-bottom: 12px; }
.method-card p { color: var(--ink-soft); font-size: 1rem; }
.method-card .tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--terra);
  background: rgba(93, 67, 53, .1);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 18px;
}

.method-merge {
  grid-column: 1 / -1;
  background: var(--dark);
  color: #f2ecdf;
  border: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 34px;
  align-items: center;
}
.method-merge:hover { transform: translateY(-6px); }
.method-merge .logo-mark {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terra), var(--gold));
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 12px 30px rgba(93, 67, 53, .4);
}
.method-merge h3 { color: #fff; font-size: 1.6rem; }
.method-merge p { color: #c6cfc5; }
.method-merge .idx { color: rgba(255, 255, 255, .07); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { position: relative; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.service-card { grid-column: span 2; }
.service-card.lg { grid-column: span 3; }
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s, border-color .45s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--terra), var(--gold));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 62px; height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(93, 67, 53, .12), rgba(124, 106, 88, .12));
  display: grid; place-items: center;
  margin-bottom: 24px;
  color: var(--terra);
}
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { font-family: var(--serif); font-size: 1.32rem; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--ink-soft); font-size: .98rem; }
.service-card.wide { grid-column: span 6; display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center; background: linear-gradient(120deg, #fff, #fdf4ec); }
.service-card.wide h3 { margin-bottom: 6px; }
.service-card.wide .service-icon { margin-bottom: 0; }

/* ============================================================
   ARTICLES
   ============================================================ */
.articles { background: var(--bg-2); color: var(--ink); position: relative; overflow: hidden; }
.articles::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 420px at 90% 10%, rgba(226, 215, 198, .5), transparent 65%),
    radial-gradient(600px 420px at 5% 95%, rgba(236, 223, 196, .4), transparent 65%);
  pointer-events: none;
}
.articles .container { position: relative; }
.articles .sec-title { color: var(--ink); }
.articles .sec-lead { color: var(--ink-soft); }
.articles .overline { color: var(--terra-deep); }
.articles .overline::before, .articles .overline::after { background: var(--terra-deep); }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.article-card {
  grid-column: span 2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s, border-color .5s;
}
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--terra-soft);
}
.article-card--featured { grid-column: span 6; flex-direction: row; min-height: 380px; }

.article-media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; flex-shrink: 0; }
.article-card--featured .article-media { width: 52%; aspect-ratio: auto; }
.article-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.article-card:hover .article-media img { transform: scale(1.07); }
.article-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(20deg, rgba(42, 32, 27, .22), transparent 55%);
}
.article-tag {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  z-index: 2;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  font-size: .76rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}
.article-body { padding: 28px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.article-card--featured .article-body { padding: 44px 42px; justify-content: center; }
.article-body h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.22rem;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 12px;
  transition: color .3s;
}
.article-card--featured .article-body h3 { font-size: 1.8rem; }
.article-card:hover h3 { color: var(--terra-deep); }
.article-body p {
  color: var(--ink-soft);
  font-size: .93rem;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card--featured .article-body p { font-size: 1.05rem; -webkit-line-clamp: 4; }
.article-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .8rem;
  color: var(--ink-faint);
}
.article-meta .more {
  margin-inline-start: auto;
  color: var(--terra-deep);
  font-weight: 600;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .3s var(--ease);
}
.article-card:hover .article-meta .more { gap: 11px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 34px 34px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .45s var(--ease), box-shadow .45s;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi-card .q {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 0;
  color: var(--terra);
  opacity: .35;
  display: block;
  margin-bottom: 30px;
}
.testi-card blockquote { font-size: 1.04rem; color: var(--ink); line-height: 1.8; margin-bottom: 26px; }
.testi-who { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
}
.testi-avatar.a { background: linear-gradient(135deg, var(--terra), #d98a5f); }
.testi-avatar.b { background: linear-gradient(135deg, #2f6d63, #57a294); }
.testi-avatar.c { background: linear-gradient(135deg, var(--gold), #e0b95a); }
.testi-who strong { display: block; font-size: .98rem; }
.testi-who small { color: var(--ink-faint); font-size: .82rem; }
.testi-stars { color: var(--gold); letter-spacing: 3px; font-size: .85rem; margin-bottom: 14px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { padding: 0 0 110px; }
.cta-box {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(120deg, var(--terra-deep), var(--terra) 55%, var(--gold));
  color: #fff;
  padding: 80px 60px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='500' viewBox='0 0 500 500'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.14)' stroke-width='1.4'%3E%3Ccircle cx='250' cy='250' r='60'/%3E%3Ccircle cx='250' cy='250' r='120'/%3E%3Ccircle cx='250' cy='250' r='180'/%3E%3Ccircle cx='250' cy='250' r='240'/%3E%3C/g%3E%3C/svg%3E");
  background-position: 110% 160%;
  background-repeat: no-repeat;
}
.cta-box > * { position: relative; }
.cta-box h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-box p { font-size: 1.12rem; opacity: .92; max-width: 36rem; margin: 0 auto 36px; }
.cta-box .btn-primary { background: #fff; color: var(--terra-deep); box-shadow: 0 14px 30px rgba(0, 0, 0, .2); }
.cta-box .btn-primary:hover { background: var(--dark); color: #fff; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-2); padding-bottom: 130px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-list { display: grid; gap: 16px; margin-top: 8px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.contact-item:hover { transform: translateX(-6px); box-shadow: var(--shadow-md); }
.contact-item .ico {
  width: 50px; height: 50px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(93, 67, 53, .1);
  color: var(--terra);
  display: grid; place-items: center;
}
.contact-item .ico svg { width: 24px; height: 24px; }
.contact-item strong { display: block; font-size: 1.02rem; }
.contact-item small { color: var(--ink-soft); font-size: .86rem; }

.contact-card {
  background: var(--dark);
  color: #f2ecdf;
  border-radius: 28px;
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 300px at 100% 0%, rgba(93, 67, 53, .35), transparent 70%);
}
.contact-card > * { position: relative; }
.contact-card h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.contact-card p { color: #aeb9ae; margin-bottom: 30px; }
.contact-card .btn { width: 100%; justify-content: center; margin-bottom: 14px; }
.btn-whatsapp { background: #8a5a44; color: #fff; box-shadow: 0 12px 26px rgba(93, 67, 53, .35); }
.btn-whatsapp:hover { background: #333333; transform: translateY(-3px); }
.btn-call { background: rgba(255, 255, 255, .1); color: #fff; border: 1px solid rgba(255, 255, 255, .2); }
.btn-call:hover { background: rgba(255, 255, 255, .2); transform: translateY(-3px); }
.contact-hours { margin-top: 22px; font-size: .88rem; color: #8d998f; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: #aeb9ae;
  padding: 60px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px; margin-bottom: 36px; }
.footer .brand-text strong { color: #fff; }
.footer .brand-text span { color: #8d998f; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; font-size: .92rem; }
.footer-links a { transition: color .3s; }
.footer-links a:hover { color: var(--gold); }
.footer-base {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: .82rem;
  color: #7e8a80;
}

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.progress-bar {
  position: fixed;
  top: 0;
  right: 0;
  height: 3.5px;
  width: 0;
  background: linear-gradient(90deg, var(--terra), var(--gold));
  z-index: 2000;
  border-radius: 0 0 0 4px;
}

.post-hero {
  position: relative;
  min-height: 66svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  padding: 0;
}
.post-hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.post-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 32, 27, .42), rgba(42, 32, 27, .86) 78%);
}
.post-hero .container { position: relative; z-index: 2; padding: 235px 0 64px; }
.post-tag {
  display: inline-block;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  font-size: .8rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.post-hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.4vw, 3.3rem);
  line-height: 1.3;
  max-width: 21ch;
  margin-bottom: 22px;
  text-wrap: balance;
}
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; font-size: .92rem; color: #ccd5cb; }
.post-meta .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terra), var(--gold));
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  color: #fff;
}
.post-meta .sep { opacity: .5; }

.post-wrap { padding: 80px 0 40px; }
.post-body { max-width: 720px; margin-inline: auto; font-size: 1.14rem; line-height: 2; color: var(--ink); }
.post-body > p:first-of-type {
  font-size: 1.32rem;
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.85;
}
.post-body p { margin-bottom: 26px; }
.post-body h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.7rem;
  margin: 52px 0 18px;
  position: relative;
  padding-inline-start: 20px;
}
.post-body h2::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: .3em;
  bottom: .25em;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(var(--terra), var(--gold));
}
.post-body .pull {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--ink);
  text-align: center;
  border-block: 1.5px solid var(--line);
  padding: 36px 20px;
  margin: 48px 0;
  position: relative;
}
.post-body .pull::before {
  content: "✦";
  position: absolute;
  top: -13px;
  right: 50%;
  transform: translateX(50%);
  background: var(--bg);
  color: var(--terra);
  padding-inline: 14px;
  font-size: .95rem;
}
.post-body strong { color: var(--ink); }

.post-cta {
  max-width: 720px;
  margin: 64px auto 0;
  background: var(--dark);
  color: #f2ecdf;
  border-radius: 26px;
  padding: 44px 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.post-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(340px 240px at 95% 0%, rgba(93, 67, 53, .4), transparent 70%);
}
.post-cta > * { position: relative; }
.post-cta h3 { font-family: var(--serif); font-size: 1.45rem; color: #fff; margin-bottom: 8px; }
.post-cta p { color: #aeb9ae; font-size: .98rem; margin: 0; }

.related { padding: 90px 0 110px; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.related .article-card {
  grid-column: auto;
  background: #fff;
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.related .article-card h3 { color: var(--ink); }
.related .article-card:hover h3 { color: var(--terra); }
.related .article-card p { color: var(--ink-soft); }
.related .article-meta { color: var(--ink-faint); }
.related .article-meta .more { color: var(--terra); }

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 34px;
  transition: gap .3s var(--ease);
}
.back-home:hover { gap: 13px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 80px; }
  .hero-visual { max-width: 520px; margin-inline: auto; width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 70px; }
  .about-media { max-width: 440px; margin-inline: auto; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card, .service-card.lg { grid-column: span 1; }
  .service-card.wide { grid-column: span 2; grid-template-columns: auto 1fr; }
  .service-card.wide .btn { grid-column: 2; justify-self: start; }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .article-card { grid-column: auto; }
  .article-card--featured { grid-column: span 2; flex-direction: column; }
  .article-card--featured .article-media { width: 100%; aspect-ratio: 16 / 9; }
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-inline-start: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  section { padding: 80px 0; }
  .nav-inner {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, .97);
  }
  .nav-links {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: min(320px, 82vw);
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    padding: 96px 30px 30px;
    gap: 26px;
    font-size: 1.15rem;
    transform: translateX(-105%);
    transition: transform .38s var(--ease);
    box-shadow: 20px 0 60px rgba(0, 0, 0, .16);
    border-inline-end: 1px solid var(--line);
    z-index: 1200;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 1.15rem; text-align: start; }
  .nav-burger { display: flex; }
  .hero { padding-top: 200px; }
  .brand-text strong { font-size: 1.35rem; }
  .brand-text span { font-size: .88rem; white-space: nowrap; }
  .brand-logo { height: 68px; }
  .nav.is-scrolled .brand-logo { height: 58px; }
  .hero-visual { padding: 24px 12px; }
  .bubble { width: 96px; height: 96px; font-size: .74rem; }
  .bubble--1 { inset-inline-start: 0; }
  .bubble--2 { width: 108px; height: 108px; inset-inline-end: -2%; }
  .bubble--3 { width: 90px; height: 90px; inset-inline-start: -2%; }
  .bubble--4 { inset-inline-end: 4%; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.wide { grid-column: span 1; grid-template-columns: 1fr; }
  .service-card.wide .btn { grid-column: 1; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-card--featured { grid-column: auto; }
  .stats-band { padding: 42px 28px; gap: 36px; }
  .stat + .stat { border-inline-start: 0; }
  .cta-box { padding: 60px 28px; }
  .contact-card { padding: 38px 28px; }
  .about-creds { grid-template-columns: 1fr; }
  .post-cta { grid-template-columns: 1fr; text-align: center; }
  .post-cta .btn { justify-content: center; }
  .related-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .method-merge { grid-template-columns: 1fr; text-align: center; }
  .method-merge .logo-mark { margin-inline: auto; }
}

/* ============================================================
   MAGIC — motion & sensitivity layer
   ============================================================ */

/* shimmering headline accent */
.hero h1 em {
  background: linear-gradient(120deg, var(--terra), var(--gold), var(--terra));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 8s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* light sweep on buttons */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 45%;
  inset-inline-start: -70%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .38), transparent);
  transform: skewX(-20deg);
  transition: inset-inline-start .8s var(--ease);
  pointer-events: none;
}
.btn:hover::after { inset-inline-start: 130%; }

/* dreamy pop-in for the hero bubbles */
.bubble    { animation: bubbleFloat 7s   ease-in-out        infinite alternate, bubblePop 1.1s var(--ease) .8s   backwards; }
.bubble--2 { animation: bubbleFloat 8.5s ease-in-out -2.4s  infinite alternate, bubblePop 1.1s var(--ease) 1.05s backwards; }
.bubble--3 { animation: bubbleFloat 9.5s ease-in-out -4.2s  infinite alternate, bubblePop 1.1s var(--ease) 1.3s  backwards; }
.bubble--4 { animation: bubbleFloat 7.8s ease-in-out -1.5s  infinite alternate, bubblePop 1.1s var(--ease) 1.55s backwards; }
@keyframes bubblePop {
  from { opacity: 0; filter: blur(10px); }
  to   { opacity: 1; filter: blur(0); }
}

/* overline lines draw themselves in */
.sec-head.reveal .overline::before,
.sec-head.reveal .overline::after { width: 0; transition: width 1s var(--ease) .45s; }
.sec-head.reveal.is-visible .overline::before,
.sec-head.reveal.is-visible .overline::after { width: 34px; }

/* icons come alive on hover */
.service-icon { transition: transform .5s var(--ease); }
.service-card:hover .service-icon { transform: translateY(-5px) rotate(-6deg) scale(1.06); }
.contact-item .ico { transition: transform .5s var(--ease); }
.contact-item:hover .ico { transform: rotate(-8deg) scale(1.08); }

/* floating quote marks */
.testi-card .q { animation: qBob 5.5s ease-in-out infinite alternate; }
.testi-card:nth-child(2) .q { animation-delay: -1.8s; }
.testi-card:nth-child(3) .q { animation-delay: -3.4s; }
@keyframes qBob {
  from { transform: translateY(0); }
  to   { transform: translateY(6px); }
}

/* slow Ken Burns drift on article heroes */
.post-hero img.bg { animation: kenburns 24s ease-in-out infinite alternate; }
@keyframes kenburns {
  from { transform: scale(1.05) translateY(0); }
  to   { transform: scale(1.14) translateY(-16px); }
}

/* breathing gradient on the CTA band */
.cta-box { background-size: 200% 200%; animation: ctaShift 16s ease-in-out infinite alternate; }
.cta-box > * { z-index: 1; }
@keyframes ctaShift {
  from { background-position: 0% 40%; }
  to   { background-position: 100% 60%; }
}

/* floating light particles */
.dust {
  position: absolute;
  bottom: -14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, var(--terra-soft));
  box-shadow: 0 0 10px rgba(93, 67, 53, .5);
  pointer-events: none;
  animation: dustRise linear infinite;
  z-index: 0;
}
.dust:nth-child(3n) {
  background: radial-gradient(circle at 35% 35%, #fff, #ecd9c0);
  box-shadow: 0 0 10px rgba(124, 106, 88, .45);
}
@keyframes dustRise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  12%  { opacity: var(--o, .45); }
  85%  { opacity: var(--o, .45); }
  100% { transform: translateY(-105vh) translateX(34px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .dust { display: none; }
  .hero h1 em, .post-hero img.bg, .cta-box, .testi-card .q, .bubble, .btn::after { animation: none; }
  [data-parallax] { transform: none !important; }
}

/* ============================================================
   ACCESSIBILITY — widget + modes + legal pages
   ============================================================ */
.a11y-btn {
  position: fixed;
  bottom: 22px;
  inset-inline-start: 22px;
  z-index: 3000;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 0;
  background: var(--terra-deep);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease), background .3s;
}
.a11y-btn:hover { transform: scale(1.08); background: var(--gold); }

.a11y-panel {
  position: fixed;
  bottom: 86px;
  inset-inline-start: 22px;
  z-index: 3000;
  width: 250px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 18px;
  display: none;
}
.a11y-panel.is-open { display: block; }
.a11y-panel h3 { font-size: 1.02rem; margin-bottom: 12px; }
.a11y-panel button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: start;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 12px;
  margin-bottom: 8px;
  font-family: inherit;
  font-size: .9rem;
  color: var(--ink);
  cursor: pointer;
  transition: background .25s, border-color .25s;
}
.a11y-panel button:hover { border-color: var(--terra); }
.a11y-panel button[aria-pressed="true"] {
  background: var(--terra-soft);
  border-color: var(--terra);
  font-weight: 600;
}
.a11y-panel .a11y-val { font-size: .8rem; color: var(--ink-soft); }
.a11y-panel .a11y-statement {
  display: block;
  text-align: center;
  margin-top: 4px;
  font-size: .85rem;
  color: var(--terra-deep);
  text-decoration: underline;
}

/* modes */
html.a11y-gray body > * { filter: grayscale(1); }
html.a11y-contrast body,
html.a11y-contrast .hero,
html.a11y-contrast .method,
html.a11y-contrast .articles,
html.a11y-contrast .marquee,
html.a11y-contrast .testimonials,
html.a11y-contrast .contact,
html.a11y-contrast .bg-2 { background: #fff !important; }
html.a11y-contrast body::before { display: none; }
html.a11y-contrast .hero-blob,
html.a11y-contrast .portrait-glow,
html.a11y-contrast .dust { display: none; }
html.a11y-contrast p,
html.a11y-contrast li,
html.a11y-contrast .sec-lead,
html.a11y-contrast .hero-sub,
html.a11y-contrast .label,
html.a11y-contrast .nav-links a { color: #000 !important; }
html.a11y-links a { text-decoration: underline !important; }
html.a11y-readable body { letter-spacing: .02em; word-spacing: .1em; line-height: 2.1; }
html.a11y-no-motion *,
html.a11y-no-motion *::before,
html.a11y-no-motion *::after { animation: none !important; transition: none !important; }
html.a11y-no-motion .dust, html.a11y-no-motion .sparkle { display: none; }
html.a11y-no-motion .reveal { opacity: 1; transform: none; filter: none; }

/* legal pages */
.legal { padding: 235px 0 90px; }
.legal .post-body { max-width: 760px; }
.legal h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  margin-bottom: 8px;
}
.legal .updated { color: var(--ink-faint); font-size: .9rem; margin-bottom: 36px; }

/* footer legal links */
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-legal a { transition: color .3s; text-decoration: underline; text-underline-offset: 3px; }
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   GOOGLE REVIEWS — summary + carousel
   ============================================================ */
.greview-summary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 22px;
  box-shadow: var(--shadow-sm);
  margin-top: 18px;
}
.g-logo { flex-shrink: 0; }
.g-score { font-size: 1.25rem; font-weight: 700; }
.g-stars { color: var(--gold); letter-spacing: 3px; font-size: 1rem; }
.g-count { color: var(--ink-soft); font-size: .88rem; }

.greview-carousel {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}
.car-viewport { position: relative; }
.car-slide { display: none; }
.car-slide.is-active { display: block; animation: slideIn .55s var(--ease); }
@keyframes slideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.greview-carousel .testi-card { min-height: 300px; display: flex; flex-direction: column; }
.greview-carousel .testi-card blockquote { flex: 1; }

.car-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--terra-deep);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background .3s, color .3s, transform .3s;
  display: grid; place-items: center;
  padding-bottom: 4px;
}
.car-arrow:hover { background: var(--terra-deep); color: #fff; transform: scale(1.07); }

.car-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}
.car-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 0;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .3s;
}
.car-dots button.is-active { background: var(--terra-deep); transform: scale(1.35); }

.greview-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}

@media (max-width: 760px) {
  .greview-carousel { grid-template-columns: 1fr; }
  .car-arrow { display: none; }
  .greview-carousel .testi-card { min-height: 0; }
  .greview-summary { flex-wrap: wrap; justify-content: center; }
}

/* ============================================================
   FLOATING WHATSAPP + COOKIE CONSENT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 22px;
  inset-inline-end: 22px;
  z-index: 3000;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #8a5a44;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(93, 67, 53, .4);
  transition: transform .3s var(--ease), background .3s;
}
.wa-float:hover { transform: scale(1.1); background: #4a3529; }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: waPulse 2.6s ease-out infinite;
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(93, 67, 53, .45); }
  70%  { box-shadow: 0 0 0 16px rgba(93, 67, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(93, 67, 53, 0); }
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2900;
  width: min(600px, 92%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner p { flex: 1; min-width: 230px; margin: 0; font-size: .88rem; color: var(--ink-soft); line-height: 1.6; }
.cookie-banner a { color: var(--terra-deep); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner .cookie-accept { padding: 10px 26px; font-size: .9rem; }

@media (max-width: 760px) {
  .cookie-banner { bottom: 92px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float::before { animation: none; }
}

/* ============================================================
   PERSONALITY LAYER — end-to-end redesign: alive, less templatey
   ============================================================ */

/* handwritten accents (Amatic SC, Hebrew) */
.hand, .hand-hi, .hand-note, .polaroid .cap, .board-cap {
  font-family: "Amatic SC", "Open Sans", cursive;
  font-weight: 700;
}
.hand-hi {
  display: inline-block;
  font-size: 2.1rem;
  color: var(--terra);
  margin-bottom: 10px;
  letter-spacing: .03em;
}
.hero-role {
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--terra-deep);
  margin-bottom: 16px;
  letter-spacing: .01em;
}

/* ghost outline words in the background */
.ghost-word {
  position: absolute;
  font-weight: 800;
  font-size: clamp(6rem, 17vw, 14rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(125, 90, 72, .1);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.ghost-word--hero { bottom: 2%; inset-inline-start: -1%; }
.method { position: relative; overflow: hidden; }
.ghost-word--method { top: 4%; inset-inline-end: -2%; }

/* hand-drawn animated underline */
.scribble { position: relative; display: inline-block; }
.scribble svg {
  position: absolute;
  inset-inline: 0;
  bottom: -.16em;
  width: 100%;
  height: .32em;
  overflow: visible;
}
.scribble path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  opacity: .85;
}
.reveal.is-visible .scribble path { animation: drawLine 1.1s .55s var(--ease) forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }

/* polaroid photos with tape */
.hero-portrait.plain, .about-frame.plain {
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  aspect-ratio: auto;
}
.polaroid {
  position: relative;
  background: #fff;
  padding: 14px;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  transition: transform .5s var(--ease);
}
.polaroid--about { }
.polaroid:hover { transform: scale(1.01); }
.polaroid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
  border-radius: 3px;
}
.polaroid .cap {
  position: absolute;
  bottom: 10px;
  inset-inline: 14px;
  text-align: center;
  font-size: 1.9rem;
  color: var(--ink-soft);
}
.tape {
  position: absolute;
  top: -14px;
  inset-inline-start: 26px;
  width: 96px;
  height: 30px;
  background: rgba(226, 215, 198, .85);
  border-inline: 1px dashed rgba(0, 0, 0, .07);
  transform: rotate(-6deg);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
  z-index: 2;
}
.tape--2 { inset-inline-start: auto; inset-inline-end: 26px; transform: rotate(5deg); }

/* trust tickets in hero */
.hero-tickets { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero-tickets .ticket {
  background: #fff;
  border: 1.5px dashed var(--terra);
  color: var(--terra-deep);
  font-weight: 600;
  font-size: .88rem;
  padding: 8px 16px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transform: rotate(-1.5deg);
}
.hero-tickets .ticket:nth-child(2) { transform: rotate(1.2deg); }
.hero-tickets .ticket:nth-child(3) { transform: rotate(-.7deg); }

/* slanted ticker */
.marquee {
  background: var(--dark);
  color: #ead9c5;
  border: 0;
  margin-block: 0;
  box-shadow: var(--shadow-md);
}

/* scoreboard stats */
.stats-band.scoreboard {
  background: var(--dark);
  border: 6px solid #fff;
  outline: 1px solid var(--line);
  color: #f3ead9;
  position: relative;
  overflow: visible;
  box-shadow: var(--shadow-lg);
}
.stats-band.scoreboard::before { display: none; }
.scoreboard .stat + .stat { border-inline-start: 1px dashed rgba(255, 255, 255, .18); }
.scoreboard .stat .num {
  background: linear-gradient(120deg, #fff, #d9c5a8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.scoreboard .stat .label { color: #cdbfae; }
.board-cap {
  position: absolute;
  top: -22px;
  right: 50%;
  transform: translateX(50%);
  background: #fff;
  color: var(--terra-deep);
  font-size: 1.7rem;
  padding: 2px 22px;
  border-radius: 99px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

/* sticky-note method cards */
.method-card.sticky {
  border-radius: 4px 22px 4px 22px;
  border-top: 14px solid var(--terra-soft);
  box-shadow: 0 16px 30px rgba(0, 0, 0, .07);
}
.method-card.sticky:nth-child(2) { border-top-color: #e2d7c6; }
.method-card.sticky:hover { transform: translateY(-6px); }
.method .container { position: relative; z-index: 1; }

/* editorial numbered service rows */
.service-rows { display: flex; flex-direction: column; margin-bottom: 40px; }
.service-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 34px 14px;
  border-bottom: 1px solid var(--line);
  transition: background .3s, transform .35s var(--ease);
}
.service-row:first-child { border-top: 1px solid var(--line); }
.service-row .idx {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--terra);
}
.service-row h3 { font-size: 1.45rem; font-weight: 700; margin-bottom: 6px; }
.service-row p { color: var(--ink-soft); max-width: 62ch; }
.service-row .go {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--terra);
  color: var(--terra-deep);
  display: grid; place-items: center;
  font-size: 1.35rem;
  transition: background .3s, color .3s, border-color .3s;
}
.service-row:hover { background: #fff; transform: translateX(-8px); }
.service-row:hover .go { background: var(--terra-deep); border-color: var(--terra-deep); color: #fff; }

/* workshop tickets */
.service-card.ticket-card {
  background: #fff;
  border: 1.5px dashed var(--terra);
}

.service-card.ticket-card:hover { transform: translateY(-6px); }
.service-card.ticket-card::before {
  content: "";
  position: absolute;
  inset-inline-start: -14px;
  top: 50%;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px dashed var(--terra);
  transform: translateY(-50%);
  transition: none;
}
.service-card.ticket-card:hover::before { transform: translateY(-50%); }
.service-card.ticket-card::after {
  content: "";
  position: absolute;
  inset-inline-end: -14px;
  top: 50%;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px dashed var(--terra);
  transform: translateY(-50%);
}

/* speech-bubble testimonials */
.greview-carousel .testi-card {
  border-radius: 26px;
}
.greview-carousel .testi-card::after {
  content: "";
  position: absolute;
  bottom: -15px;
  inset-inline-start: 52px;
  border-style: solid;
  border-width: 16px 20px 0 0;
  border-color: #fff transparent transparent transparent;
  filter: drop-shadow(0 3px 2px rgba(0, 0, 0, .04));
}

/* article cards: tape tag + playful hover */
.article-tag {
  border-radius: 4px;
  border: 1px dashed rgba(125, 90, 72, .45);
  background: rgba(236, 228, 214, .95);
}
.article-card:hover { transform: translateY(-6px); }

/* CTA hand note */
.hand-note {
  display: block;
  margin-top: 16px;
  font-size: 1.8rem;
  opacity: .95;
}

/* mobile adjustments for personality layer */
@media (max-width: 760px) {
  .service-row { grid-template-columns: auto 1fr; }
  .service-row .go { display: none; }
  .service-row .idx { font-size: 2.2rem; }
  .ghost-word { display: none; }
  .marquee { transform: none; }
  .stats-band.scoreboard { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .scribble path { stroke-dashoffset: 0; animation: none; }
}

/* read-more accordions */
.service-row-body { min-width: 0; }
.readmore-panel { display: none; margin-top: 14px; color: var(--ink-soft); border-inline-start: 3px solid var(--terra-soft); padding-inline-start: 16px; }
.readmore-panel.is-open { display: block; }
.readmore-panel p { margin-bottom: 12px; }
.readmore-panel p:last-child { margin-bottom: 0; }
.readmore-btn {
  background: none;
  border: 0;
  padding: 8px 0 0;
  color: var(--terra-deep);
  font-family: inherit;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.readmore-btn:hover { color: var(--terra); }
.service-row { grid-template-columns: auto 1fr; }
