/* ==========================================================================
   Tompadel — טומפדל | מועדון פאדל
   Shared stylesheet. Warm gold / cream / dark. Hebrew RTL. Mobile-first.
   ========================================================================== */

:root {
  /* Palette — warm gold / mustard-brown, cream, dark footer (OKLCH) */
  --cream:     oklch(0.974 0.013 85);
  --cream-2:   oklch(0.949 0.020 82);
  --card:      oklch(0.995 0.007 88);
  --gold:      oklch(0.765 0.128 79);
  --gold-2:    oklch(0.700 0.135 71);
  --gold-deep: oklch(0.560 0.110 63);
  --ink:       oklch(0.270 0.018 66);
  --ink-soft:  oklch(0.470 0.017 66);
  --line:      oklch(0.882 0.018 80);
  --line-soft: oklch(0.922 0.014 82);
  --dark:      oklch(0.205 0.012 74);
  --dark-2:    oklch(0.262 0.014 74);
  --dark-line: oklch(0.340 0.014 74);
  --white:     oklch(0.995 0.004 90);

  --shadow-sm: 0 2px 8px -4px oklch(0.40 0.05 70 / 0.30);
  --shadow:    0 14px 34px -18px oklch(0.42 0.06 66 / 0.40);
  --shadow-lg: 0 30px 60px -26px oklch(0.40 0.06 66 / 0.45);

  --font-body:    "Rubik", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Secular One", "Rubik", system-ui, sans-serif;

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --wrap: 1200px;
  --gutter: clamp(1.15rem, 4vw, 3rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);           /* ease-out-quint-ish */
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--gold-2); outline-offset: 3px; border-radius: 6px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------------------------------------------------- typography */
h1, h2, h3, h4 { line-height: 1.12; font-weight: 700; letter-spacing: -0.01em; }

.display { font-family: var(--font-display); font-weight: 400; letter-spacing: 0; }

.eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
  background: oklch(0.765 0.128 79 / 0.14);
  padding: 0.4em 1em;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.section-head { max-width: 46rem; margin-inline: auto; text-align: center; margin-bottom: clamp(1.3rem, 3.2vw, 2.2rem); }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.95rem, 5.2vw, 3.1rem);
}
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin-top: 0.7rem; }

/* ------------------------------------------------------------------ layout */
.wrap { width: min(var(--wrap), 100% - (var(--gutter) * 2)); margin-inline: auto; }
.section { padding-block: clamp(2.1rem, 5vw, 3.8rem); }
.section--tint { background: var(--cream-2); }

/* ------------------------------------------------------------------ buttons */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: oklch(0.22 0.02 66);
  display: inline-flex; align-items: center; gap: 0.55em;
  font-weight: 600; font-size: 1rem;
  padding: 0.85em 1.6em;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); background: var(--gold-2); }
.btn:active { transform: translateY(-1px); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border-color: var(--line); box-shadow: none;
}
.btn--ghost:hover { background: oklch(0.765 0.128 79 / 0.12); border-color: var(--gold); }
.btn--wa { --btn-bg: oklch(0.72 0.16 155); --btn-fg: oklch(0.99 0.01 155); }
.btn--wa:hover { --btn-bg: oklch(0.66 0.16 155); }
.btn--dark { --btn-bg: var(--dark); --btn-fg: var(--white); }
.btn--lg { padding: 1em 1.9em; font-size: 1.08rem; }
.btn__ic { width: 1.15em; height: 1.15em; }

/* ------------------------------------------------------------------ navbar */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: oklch(0.974 0.013 85 / 0.82);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.nav.is-stuck { box-shadow: 0 8px 24px -18px oklch(0.4 0.05 66 / 0.5); }
.nav__inner {
  width: min(var(--wrap), 100% - (var(--gutter) * 2));
  margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; padding-block: 0.7rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 700; }
.brand__logo {
  height: 52px; width: auto; display: block;
  transition: transform 0.4s var(--ease);
}
.brand:hover .brand__logo { transform: scale(1.06) rotate(-3deg); }
.brand:active .brand__logo { transform: scale(0.97); }
.brand__mark {
  display: grid; place-items: center;
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--gold); color: var(--dark);
  font-family: var(--font-display); font-size: 1.6rem; line-height: 1;
  transition: transform 0.4s var(--ease);
}
.brand:hover .brand__mark { transform: scale(1.06) rotate(-3deg); }
.brand:active .brand__mark { transform: scale(0.97); }
.brand__text { font-size: 1.28rem; letter-spacing: -0.02em; }
.brand__text span { color: var(--gold-deep); }

/* navbar identical on mobile & desktop: logo on top, menu wrapped & centered below */
.nav__links { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.3rem 0.4rem; }
.nav__links a {
  padding: 0.5em 0.85em; border-radius: 999px;
  font-weight: 500; color: var(--ink); white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}
.nav__links a:hover { background: oklch(0.765 0.128 79 / 0.16); color: var(--gold-deep); }
.nav__links a.is-active { color: var(--gold-deep); font-weight: 600; }
.nav__cta { margin-inline-start: 0.2rem; }
.nav__toggle { display: none; }

/* narrow screens: shrink so the full menu still fits (same layout, just smaller) */
@media (max-width: 560px) {
  .nav__links { gap: 0.2rem 0.28rem; }
  .nav__links a { padding: 0.38em 0.62em; font-size: 0.82rem; }
  .nav__cta { font-size: 0.82rem; padding: 0.5em 0.9em; }
  .brand__logo { height: 44px; }
}

/* ------------------------------------------------------- image placeholders */
/* Real files (assets/hero-*.jpg …) sit on top; until they exist the warm
   placeholder shows through. Client just drops files with these names in. */
.ph {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 120% at 20% 10%, oklch(0.80 0.10 82 / 0.55), transparent 60%),
    linear-gradient(135deg, var(--cream-2), oklch(0.88 0.06 78));
  isolation: isolate;
}
.ph::after {
  content: "🎾 " attr(data-label);
  position: absolute; inset: 0; z-index: 1;
  display: grid; place-content: center; text-align: center;
  padding: 1rem;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.02em;
  color: oklch(0.45 0.06 66 / 0.75);
}
.ph img {
  position: relative; z-index: 2;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.ph img:not([src]), .ph img[src=""] { display: none; }

/* ------------------------------------------------------------------ hero (full-width banner) */
.hero {
  position: relative; overflow: hidden;
  min-height: clamp(160px, 23vw, 290px);
  display: grid; place-items: center;
  border-block: 3px solid var(--gold);
  background: var(--dark);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; display: flex; gap: 3px; background: var(--gold); }
.hero__bg img { flex: 1 1 0; min-width: 0; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, oklch(0.16 0.02 70 / 0.22) 0%, transparent 30% 70%, oklch(0.15 0.02 70 / 0.22) 100%),
    radial-gradient(120% 100% at 50% 50%, transparent 60%, oklch(0.14 0.02 70 / 0.25) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  width: min(var(--wrap), 100% - (var(--gutter) * 2));
  text-align: center; padding-block: clamp(2rem, 6vw, 4rem);
}
.hero__title {
  font-family: var(--font-display); font-weight: 400;
  color: var(--white);
  font-size: clamp(1.7rem, 4.6vw, 3.2rem);
  line-height: 1.12; letter-spacing: -0.01em;
  text-shadow: 0 4px 24px oklch(0.12 0.02 70 / 0.6), 0 2px 6px oklch(0.12 0.02 70 / 0.5);
  max-width: 20ch; margin-inline: auto;
}

/* ------------------------------------------------------------- contact form */
.contact { position: relative; }
.contact__grid {
  display: grid; gap: clamp(1rem, 2.5vw, 1.8rem);
  grid-template-columns: 1fr;
  max-width: 940px; margin-inline: auto;
}
@media (min-width: 860px) { .contact__grid { grid-template-columns: 1.2fr 0.85fr; } }

.form-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.1rem, 3vw, 1.7rem);
  box-shadow: var(--shadow);
}
.form-card h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.35rem, 3.2vw, 1.8rem); }
.form-card > p { color: var(--ink-soft); font-size: 0.92rem; margin-top: 0.3rem; margin-bottom: 1rem; }
.field { margin-bottom: 0.8rem; }
.field label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.35rem; }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line);
  border-radius: var(--r-sm); padding: 0.6em 0.9em;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.field textarea { min-height: 82px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  background: var(--card);
  box-shadow: 0 0 0 4px oklch(0.765 0.128 79 / 0.2);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: oklch(0.6 0.17 25); }
.field .err { display: none; color: oklch(0.55 0.17 25); font-size: 0.82rem; margin-top: 0.35rem; }
.field.invalid .err { display: block; }
.field.invalid input, .field.invalid textarea { border-color: oklch(0.6 0.17 25); }
.form-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.4rem; }
.form-status { margin-top: 1rem; font-weight: 600; min-height: 1.4em; }
.form-status.ok { color: oklch(0.55 0.14 155); }

.contact__aside { display: flex; flex-direction: column; gap: 0.6rem; }
.info-card {
  display: flex; align-items: center; gap: 0.8rem;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 0.7rem 0.9rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.25s ease;
}
a.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--gold); }
.info-card__ic {
  flex: none; display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 11px;
  background: oklch(0.765 0.128 79 / 0.18); color: var(--gold-deep);
}
.info-card__ic svg { width: 20px; height: 20px; }
.info-card b { display: block; font-size: 0.92rem; }
.info-card span { font-size: 0.85rem; color: var(--ink-soft); }

/* --------------------------------------------------------- founder message */
/* דבר המייסד — text (start/right in RTL) + portrait; stays 2-col on mobile too */
.founder__grid {
  display: grid; align-items: center;
  gap: clamp(0.9rem, 3.5vw, 2.8rem);
  grid-template-columns: 0.9fr 1.1fr;   /* photo (right) · text (left) */
  max-width: 1010px; margin-inline: auto;
}
.founder__grid > * { min-width: 0; }     /* let columns shrink, never overflow */
.founder__body .eyebrow { margin-bottom: clamp(0.7rem, 2vw, 1.1rem); }
.founder__quote {
  font-size: clamp(0.82rem, 2.3vw, 1.16rem);
  line-height: 1.85;
  color: oklch(0.32 0.018 66);
  position: relative;
  quotes: "\201D" "\201C";
}
.founder__quote::before {
  content: open-quote;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.5em; line-height: 0;
  vertical-align: -0.35em;
  margin-inline-end: 0.12em;
}
.founder__sign {
  margin-top: clamp(0.9rem, 2.5vw, 1.4rem);
  padding-top: clamp(0.7rem, 2vw, 1.1rem);
  border-top: 1px solid var(--line);
}
.founder__sign b {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1rem, 2.6vw, 1.28rem); color: var(--ink);
}
.founder__sign span {
  display: block; color: var(--gold-deep);
  font-size: clamp(0.72rem, 1.9vw, 0.92rem); margin-top: 0.15rem;
}
.founder__media {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.founder__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%; }
@media (min-width: 720px) {
  .founder__grid { gap: clamp(2rem, 4vw, 3.4rem); grid-template-columns: minmax(0, 350px) 1fr; }
  .founder__media { width: 100%; max-width: 350px; }
}

/* ------------------------------------------------------------- categories */
.cats {
  display: grid; gap: clamp(0.7rem, 2.5vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
}
.cat {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.cat:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cat__media { aspect-ratio: 4 / 3; }
.cat:hover .cat__media img { transform: scale(1.06); }
.cat__media img { transition: transform 0.7s var(--ease); }
.cat__body { padding: 1.25rem 1.3rem 1.5rem; text-align: center; }
.cat__body h3 { font-size: 1.28rem; }
.cat__body p { color: var(--ink-soft); margin-top: 0.5rem; }

/* ------------------------------------------------------------ testimonials */
.tstm {
  display: grid; gap: clamp(1rem, 2.5vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.tstm__card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.6rem;
  display: flex; flex-direction: column; gap: 1rem;
  box-shadow: var(--shadow-sm);
}
.tstm__quote { font-size: 2.4rem; line-height: 0.6; color: var(--gold); font-family: var(--font-display); }
.tstm__body { color: var(--ink-soft); flex: 1; font-style: italic; }
.tstm__who { display: flex; align-items: center; gap: 0.8rem; }
.tstm__ava { width: 46px; height: 46px; border-radius: 50%; }
.tstm__ava.ph::after { content: "👤"; font-size: 1.2rem; }
.tstm__who b { font-size: 0.95rem; }
.tstm__who span { font-size: 0.82rem; color: var(--ink-soft); }

/* --------------------------------------------------------------------- FAQ */
.faq { max-width: 52rem; margin-inline: auto; }
.faq__item {
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--card); margin-bottom: 0.8rem; overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq__item.is-open { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.faq__q {
  width: 100%; text-align: right;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.3rem; font-weight: 600; font-size: 1.06rem; background: none;
}
.faq__q .ico {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: oklch(0.765 0.128 79 / 0.18); color: var(--gold-deep);
  transition: transform 0.4s var(--ease), background 0.25s ease;
  font-size: 1.2rem; line-height: 1;
}
.faq__item.is-open .faq__q .ico { transform: rotate(45deg); background: var(--gold); color: oklch(0.22 0.02 66); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 1.3rem 1.3rem; color: var(--ink-soft); }

/* ------------------------------------------------------------------ footer */
.footer { background: var(--dark); color: oklch(0.86 0.01 80); padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem; }
.footer a { transition: color 0.2s ease; }
.footer a:hover { color: var(--gold); }
.footer__grid {
  display: grid; gap: clamp(1.6rem, 4vw, 3rem);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__brand .brand__text { color: var(--white); }
.footer__cta { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.2rem); color: var(--white); margin: 1rem 0 0.6rem; }
.footer__brand p { color: oklch(0.74 0.01 80); max-width: 34ch; }
.footer h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 1rem; }
.footer__list li { margin-bottom: 0.7rem; }
.footer__list a, .footer__list span { display: inline-flex; align-items: center; gap: 0.55rem; color: oklch(0.80 0.01 80); }
.footer__list svg { width: 18px; height: 18px; color: var(--gold); flex: none; }
.footer__partners { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 0.4rem; }
.footer__partner {
  height: 46px; min-width: 100px; padding-inline: 1rem;
  display: grid; place-items: center;
  border: 1px dashed var(--dark-line); border-radius: 10px;
  color: oklch(0.66 0.01 80); font-size: 0.82rem; text-align: center;
}
.footer__social { display: flex; gap: 0.6rem; margin-top: 0.4rem; }
.footer__social a {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--dark-2); border: 1px solid var(--dark-line); color: oklch(0.86 0.01 80);
}
.footer__social a:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.footer__social svg { width: 20px; height: 20px; }
.footer__bar {
  margin-top: clamp(2rem, 5vw, 3rem); padding-top: 1.4rem;
  border-top: 1px solid var(--dark-line);
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; justify-content: space-between;
  font-size: 0.85rem; color: oklch(0.66 0.01 80);
}
.footer__bar a { color: var(--gold); }

/* ---------------------------------------------------------- page hero (sub) */
.pagehero { position: relative; padding-block: clamp(2.6rem, 6vw, 4.4rem) clamp(2rem, 5vw, 3.2rem); overflow: clip; }
.pagehero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(70% 80% at 88% 0%, oklch(0.83 0.10 82 / 0.5), transparent 55%), var(--cream);
}
.pagehero__inner { text-align: center; max-width: 48rem; margin-inline: auto; }
.pagehero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.4rem, 6.5vw, 3.8rem); }
.pagehero p { color: var(--ink-soft); font-size: 1.1rem; margin-top: 0.8rem; }

/* --------------------------------------------------------------- TP page */
.tp-layout {
  display: grid; gap: clamp(1.8rem, 4vw, 3.4rem);
  grid-template-columns: 1fr; align-items: start;
}
@media (min-width: 900px) {
  .tp-layout { grid-template-columns: minmax(300px, 0.82fr) 1fr; }
  .tp-media { position: sticky; top: 96px; }
}
.tp-media { display: grid; gap: clamp(1rem, 2vw, 1.4rem); }
.tp-card {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--card);
  box-shadow: var(--shadow);
}
.tp-merch-card img { width: 100%; height: auto; display: block; }
.tp-logo-card {
  display: grid; place-items: center; text-align: center;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  background: radial-gradient(circle at 50% 32%, oklch(0.99 0.01 88), var(--cream-2));
  border-color: oklch(0.86 0.05 82);
}
.tp-logo-card img { max-height: 150px; width: auto; }
.tp-logo-card .brand__mark { width: 116px; height: 116px; border-radius: 26px; font-size: 3rem; }
.tp-logo-card b { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.35rem; margin-top: 0.9rem; color: var(--ink); }
.tp-logo-card span { color: var(--ink-soft); font-size: 0.9rem; margin-top: 0.15rem; }

.tp-text .eyebrow { margin-bottom: 0.9rem; }
.tp-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.1rem); line-height: 1.08;
  letter-spacing: -0.01em; margin-bottom: 0.4rem;
}
.tp-title::after {
  content: ""; display: block; width: 64px; height: 4px; border-radius: 4px;
  background: var(--gold); margin-top: 1rem;
}
.tp-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }

.prose { max-width: 62ch; margin-inline: auto; }
.prose--flush { max-width: none; margin-inline: 0; }
.prose h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.6rem, 4vw, 2.2rem); margin: 2rem 0 0.8rem; }
.prose h3 { font-size: 1.2rem; color: var(--gold-deep); margin: 1.6rem 0 0.4rem; }
.prose p { color: oklch(0.34 0.018 66); margin-bottom: 1rem; }
.prose .lead { font-size: 1.2rem; color: var(--ink); }
.prose ul.ticks { display: grid; gap: 0.9rem; margin: 0.6rem 0 1.4rem; }
.prose ul.ticks li {
  position: relative; padding-inline-start: 2.1rem; color: oklch(0.34 0.018 66);
}
.prose ul.ticks li::before {
  content: "🎾"; position: absolute; inset-inline-start: 0; top: 0.05em; font-size: 1.05rem;
}
.prose ul.ticks li b { color: var(--ink); }

/* ------------------------------------------------------------- pricing */
.pricing {
  display: grid; gap: clamp(1.2rem, 3vw, 2rem);
  grid-template-columns: 1fr; max-width: 860px; margin-inline: auto;
}
@media (min-width: 720px) { .pricing { grid-template-columns: 1fr 1fr; } }
.price-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: clamp(1.8rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card--feature { background: var(--dark); border-color: var(--dark); color: var(--white); }
.price-card--feature .price-card__amt, .price-card--feature h3 { color: var(--white); }
.price-card--feature .price-card__per { color: oklch(0.78 0.01 80); }
.price-card__tag {
  position: absolute; inset-inline-start: clamp(1.8rem, 4vw, 2.6rem); top: -0.9rem;
  background: var(--gold); color: oklch(0.22 0.02 66);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 0.35em 0.9em; border-radius: 999px;
}
.price-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.6rem; }
.price-card__amt { font-family: var(--font-display); font-size: clamp(2.6rem, 8vw, 3.4rem); line-height: 1; margin: 0.9rem 0 0.2rem; }
.price-card__amt small { font-size: 1.1rem; }
.price-card__per { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.4rem; }
.price-card ul { display: grid; gap: 0.7rem; margin-bottom: 1.8rem; }
.price-card li { display: flex; gap: 0.6rem; align-items: flex-start; }
.price-card li svg { width: 20px; height: 20px; flex: none; color: var(--gold); margin-top: 0.15rem; }
.price-card .btn { margin-top: auto; justify-content: center; }
.price-card--feature .btn--ghost { border-color: var(--dark-line); color: var(--white); }
.price-card--feature .btn--ghost:hover { background: oklch(1 0 0 / 0.08); border-color: var(--gold); }

/* ------------------------------------------- מחירון: כרטיס קהילה + פריטים */
.price-wrap { max-width: 900px; }

/* --- החבילה המובילה --- */
.join-card {
  position: relative;
  margin-top: 2.4rem;                        /* מקום למדליה שגולשת מעל הכרטיס */
  background:
    /* אבק זהב מרוכז בפינה התחתונה־שמאלית, כמו בעיצוב הייחוס */
    radial-gradient(1.4px 1.4px at 9% 92%,  oklch(0.88 0.11 86 / 0.85), transparent 100%),
    radial-gradient(1px 1px   at 15% 84%,  oklch(0.88 0.11 86 / 0.65), transparent 100%),
    radial-gradient(1.6px 1.6px at 21% 94%, oklch(0.88 0.11 86 / 0.75), transparent 100%),
    radial-gradient(1px 1px   at 6% 78%,   oklch(0.88 0.11 86 / 0.5),  transparent 100%),
    radial-gradient(1.2px 1.2px at 27% 86%, oklch(0.88 0.11 86 / 0.6),  transparent 100%),
    radial-gradient(1px 1px   at 12% 70%,  oklch(0.88 0.11 86 / 0.42), transparent 100%),
    radial-gradient(1.5px 1.5px at 33% 95%, oklch(0.88 0.11 86 / 0.55), transparent 100%),
    radial-gradient(1px 1px   at 24% 76%,  oklch(0.88 0.11 86 / 0.38), transparent 100%),
    radial-gradient(1.3px 1.3px at 40% 90%, oklch(0.88 0.11 86 / 0.45), transparent 100%),
    radial-gradient(1px 1px   at 4% 88%,   oklch(0.88 0.11 86 / 0.5),  transparent 100%),
    radial-gradient(1.2px 1.2px at 18% 66%, oklch(0.88 0.11 86 / 0.3),  transparent 100%),
    radial-gradient(1px 1px   at 47% 96%,  oklch(0.88 0.11 86 / 0.35), transparent 100%),
    radial-gradient(55% 65% at 12% 96%, oklch(0.62 0.09 70 / 0.28), transparent 72%),
    radial-gradient(130% 140% at 80% 0%, oklch(0.30 0.025 74) 0%, transparent 62%),
    var(--dark);
  color: var(--white);
  border-radius: 26px;
  padding: clamp(1.7rem, 4.6vw, 2.4rem) clamp(1.4rem, 4vw, 2.6rem) clamp(1.8rem, 4vw, 2.4rem);
  box-shadow:
    var(--shadow-lg),
    0 0 34px -12px oklch(0.75 0.12 80 / 0.55);        /* זוהר זהב מסביב */
}
.join-card::before {           /* מסגרת זהב עבה ומוארת */
  content: ""; position: absolute; inset: -4px; border-radius: 30px;
  padding: 4px; pointer-events: none; z-index: 1;
  background: linear-gradient(150deg, oklch(0.90 0.10 88), var(--gold) 28%, oklch(0.52 0.08 64) 58%, oklch(0.88 0.11 86) 82%, var(--gold-2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.join-card__seal {              /* מדליית זהב משוננת בפינה */
  position: absolute; z-index: 3;
  inset-inline-start: clamp(0.8rem, 3vw, 1.8rem); top: clamp(-2.6rem, -7vw, -2rem);
  width: clamp(5.4rem, 16vw, 6.4rem); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-content: center; text-align: center; line-height: 1.2;
  /* שוליים משוננים */
  background: repeating-conic-gradient(from 0deg,
    oklch(0.89 0.115 88) 0deg 5deg, oklch(0.67 0.11 70) 5deg 10deg);
  color: oklch(0.24 0.03 66);
  filter: drop-shadow(0 10px 18px oklch(0.3 0.05 70 / 0.7));
}
.join-card__seal::before {      /* דיסקית הזהב הפנימית */
  content: ""; position: absolute; inset: 11%; border-radius: 50%;
  background:
    radial-gradient(circle at 32% 26%, oklch(0.95 0.07 92), transparent 58%),
    linear-gradient(145deg, oklch(0.87 0.12 87), var(--gold-2) 55%, oklch(0.64 0.10 68));
  box-shadow: inset 0 0 0 1.5px oklch(0.58 0.09 66 / 0.75);
}
.join-card__seal b,
.join-card__seal i {
  position: relative; z-index: 1;
  display: block; font-style: normal; font-weight: 800;
  font-size: clamp(0.7rem, 2.1vw, 0.78rem);
}
.join-card__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.75rem, 6vw, 2.6rem); color: var(--white);
  padding-inline-start: clamp(4.4rem, 14vw, 5.4rem);   /* מפנה מקום למדליה */
  min-height: 2.6rem;
}
.join-card__amt {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 9vw, 3.4rem); line-height: 1;
  margin: 0.55rem 0 1.5rem;
  display: flex; align-items: baseline; gap: 0.5rem; flex-wrap: wrap;
}
.join-card__amt small { font-size: 0.5em; }
.join-card__amt span {
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  color: oklch(0.80 0.01 80);
}
.join-card__list { display: grid; gap: 0.9rem; }
.join-card__list li {
  display: flex; gap: 0.7rem; align-items: flex-start;
  font-size: clamp(0.95rem, 2.6vw, 1.06rem);
}
.join-card__list svg { width: 20px; height: 20px; flex: none; color: var(--gold); margin-top: 0.2rem; }

/* --- כל הפריטים במחירון --- */
.ratecard {
  margin-top: clamp(1.6rem, 4vw, 2.4rem);
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-xl); box-shadow: var(--shadow-sm);
  padding: clamp(1.4rem, 4vw, 2.6rem);
}
.ratecard__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.5rem, 4.4vw, 2rem); text-align: center;
  margin-bottom: clamp(1.2rem, 3vw, 1.8rem);
}
.ratecard__list { list-style: none; padding: 0; display: grid; }
.rate {
  display: flex; gap: clamp(0.7rem, 2.4vw, 1.1rem);
  padding-block: clamp(1rem, 2.6vw, 1.3rem);
  border-top: 1px solid var(--line-soft);
}
.rate:first-child { border-top: 0; padding-top: 0; }
.rate__num {
  font-family: var(--font-display); font-size: 1.35rem; line-height: 1;
  color: var(--gold); flex: none; width: 1.4em; padding-top: 0.15em;
}
.rate__body { flex: 1; min-width: 0; }
.rate__body h3 { font-size: clamp(1.05rem, 3.2vw, 1.2rem); font-weight: 700; }
.rate__rows { margin-top: 0.25rem; display: grid; gap: 0.3rem; }
.rate__row {
  display: flex; align-items: baseline; gap: 0.55rem; justify-content: space-between;
}
.rate__label { color: var(--ink-soft); font-size: clamp(0.83rem, 2.3vw, 0.98rem); }
.rate__price {
  font-weight: 700; color: var(--ink); white-space: nowrap;
  font-size: clamp(0.92rem, 2.5vw, 1.1rem);
}
@media (max-width: 620px) {
  .rate__row { flex-wrap: wrap; row-gap: 0.1rem; }
  .rate__label { flex: 1 1 auto; min-width: 0; }
}

/* ------------------------------------------------------------- gallery */
.gallery {
  display: grid; gap: clamp(0.7rem, 1.6vw, 1rem);
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-auto-flow: dense;
}
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--r);
  aspect-ratio: 1; cursor: zoom-in; border: 1px solid var(--line);
  background: var(--cream-2);
}
.gallery__item.tall { aspect-ratio: 3 / 4; }
.gallery__item.wide { grid-column: span 2; aspect-ratio: 3 / 2; }
@media (max-width: 560px) { .gallery__item.wide { grid-column: span 1; aspect-ratio: 1; } }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, oklch(0.2 0.02 66 / 0.35), transparent 45%);
  opacity: 0; transition: opacity 0.35s ease;
}
.gallery__item:hover::after { opacity: 1; }

/* lightbox */
.lb {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center;
  background: oklch(0.16 0.01 74 / 0.92);
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lb.is-open { opacity: 1; visibility: visible; }
.lb__img { max-width: min(1000px, 92vw); max-height: 84vh; border-radius: var(--r); box-shadow: var(--shadow-lg); }
.lb__btn {
  position: absolute; width: 52px; height: 52px; border-radius: 50%;
  background: oklch(1 0 0 / 0.12); border: 1px solid oklch(1 0 0 / 0.25);
  color: var(--white); font-size: 1.5rem; display: grid; place-items: center;
  backdrop-filter: blur(6px); transition: background 0.2s ease;
}
.lb__btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.lb__close { top: clamp(1rem, 4vw, 2rem); inset-inline-end: clamp(1rem, 4vw, 2rem); }
.lb__prev { inset-inline-end: 1rem; top: 50%; transform: translateY(-50%); }
.lb__next { inset-inline-start: 1rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 560px) { .lb__prev { inset-inline-end: auto; inset-inline-start: 1rem; top: auto; bottom: 1rem; transform: none; } .lb__next { inset-inline-start: auto; inset-inline-end: 1rem; top: auto; bottom: 1rem; transform: none; } }

/* -------------------------------------------------------------- reveal */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease-soft), transform 0.7s var(--ease-soft); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }

/* -------------------------------------------------------------- misc */
.skip {
  position: absolute; inset-inline-start: 1rem; top: -60px; z-index: 200;
  background: var(--dark); color: var(--white); padding: 0.7em 1.2em; border-radius: 10px;
  transition: top 0.25s ease;
}
.skip:focus { top: 1rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.center { text-align: center; }
.mt-lg { margin-top: clamp(2rem, 5vw, 3rem); }

/* --------------------------------------------------------- about (קצת עלינו) */
.about {
  position: relative; overflow: hidden;
  display: grid; align-items: center; justify-content: center;
  gap: clamp(1.2rem, 3vw, 2.6rem); grid-template-columns: 1fr;
  min-height: calc(100svh - 118px);
  padding-block: clamp(1rem, 3vw, 2rem);
  background:
    radial-gradient(60% 55% at 50% 50%, oklch(0.985 0.008 88) 0%, transparent 70%),
    radial-gradient(120% 70% at 50% -10%, oklch(0.87 0.06 82 / 0.35), transparent 60%),
    var(--cream);
}
@media (min-width: 980px) {
  .about { grid-template-columns: minmax(240px, 1fr) minmax(0, 34rem) minmax(240px, 1fr); }
}
.about__copy { text-align: center; max-width: 40rem; margin-inline: auto; align-self: center; padding-block: clamp(0.5rem, 2vw, 1.5rem); }
.about__copy .eyebrow { margin-bottom: 1rem; }
.about__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.9rem, 4.6vw, 3rem); line-height: 1.1; margin-bottom: 1rem;
}
.about__text {
  font-size: clamp(1.04rem, 1.5vw, 1.24rem); line-height: 1.9;
  color: oklch(0.3 0.02 66);
}
.about__text b { color: var(--ink); font-weight: 700; }
.about__copy .btn { margin-top: 1.8rem; }

/* side photo walls — every photo fully visible, framed & tilted */
.about__wall {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(0.55rem, 1.2vw, 0.95rem); align-content: center;
}
.about__wall img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  background: #fff; border: 5px solid #fff; border-radius: 4px;
  box-shadow: 0 12px 26px -14px oklch(0.34 0.04 66 / 0.5);
  transition: transform 0.45s var(--ease), box-shadow 0.3s ease;
}
/* scalable scattered tilt for any number of photos */
.about__wall img:nth-child(3n+1) { transform: rotate(-5deg); }
.about__wall img:nth-child(3n+2) { transform: rotate(4deg); margin-top: 1rem; }
.about__wall img:nth-child(3n+3) { transform: rotate(-3deg); margin-top: -0.3rem; }
.about__wall img:hover { transform: scale(1.06) rotate(0deg); box-shadow: var(--shadow); z-index: 2; position: relative; }
@media (max-width: 979px) {
  .about__copy { order: -1; }
  .about__wall { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .about__wall img { transform: rotate(0) !important; margin: 0 !important; border-width: 4px; }
}

/* ------------------------------------------------------- floating WhatsApp */
.wa-float {
  position: fixed; z-index: 90;
  inset-block-end: clamp(1rem, 3vw, 1.7rem);
  inset-inline-start: clamp(1rem, 3vw, 1.7rem);
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: oklch(0.72 0.16 155); color: oklch(0.99 0.02 155);
  box-shadow: 0 12px 28px -8px oklch(0.5 0.13 155 / 0.6);
  transition: transform 0.4s var(--ease), box-shadow 0.3s ease;
}
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  animation: waPulse 2.6s ease-out infinite;
}
.wa-float:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 18px 34px -8px oklch(0.5 0.13 155 / 0.7); }
.wa-float:active { transform: translateY(-1px) scale(1); }
.wa-float svg { width: 32px; height: 32px; position: relative; }
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 oklch(0.72 0.16 155 / 0.5); }
  70%  { box-shadow: 0 0 0 16px oklch(0.72 0.16 155 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.72 0.16 155 / 0); }
}
@media (prefers-reduced-motion: reduce) { .wa-float::before { animation: none; } }

/* colored contact icons (צור קשר) */
.info-card__ic--phone { background: oklch(0.76 0.13 79 / 0.18);  color: var(--gold-deep); }
.info-card__ic--wa    { background: oklch(0.72 0.16 155 / 0.16); color: oklch(0.55 0.15 155); }
.info-card__ic--fb    { background: oklch(0.55 0.16 260 / 0.15); color: oklch(0.50 0.17 260); }
.info-card__ic--loc   { background: oklch(0.62 0.19 25 / 0.15);  color: oklch(0.55 0.19 25); }

/* colored social + contact icons in the footer (למטה) */
.footer__social a[aria-label="וואטסאפ"] {
  background: oklch(0.62 0.15 155); border-color: oklch(0.62 0.15 155); color: oklch(0.99 0.02 155);
}
.footer__social a[aria-label="וואטסאפ"]:hover { background: oklch(0.56 0.15 155); border-color: oklch(0.56 0.15 155); }
.footer__social a[aria-label="פייסבוק"] {
  background: oklch(0.52 0.17 260); border-color: oklch(0.52 0.17 260); color: oklch(0.99 0.02 260);
}
.footer__social a[aria-label="פייסבוק"]:hover { background: oklch(0.47 0.17 260); border-color: oklch(0.47 0.17 260); }
.footer__list a[href*="whatsapp"] svg { color: oklch(0.66 0.15 155); }

/* ==========================================================================
   TTP — טופ תומפאדל | premium pro-division page (dark, cinematic)
   Everything scoped under .ttp-main so the community pages stay untouched.
   ========================================================================== */
.ttp-main {
  --ttp-bg:     oklch(0.185 0.012 74);
  --ttp-bg-2:   oklch(0.223 0.013 74);
  --ttp-ink:    oklch(0.945 0.008 82);
  --ttp-soft:   oklch(0.735 0.012 82);
  --ttp-gold:   oklch(0.825 0.128 84);
  --ttp-line:   oklch(0.985 0.01 82 / 0.14);
  --ttp-line-2: oklch(0.985 0.01 82 / 0.07);
  --ttp-r:      3px;
  background: var(--ttp-bg);
  color: var(--ttp-ink);
  border-top: 2px solid var(--ttp-gold);
  overflow: clip;
}

/* dark navbar — only on the TTP page, so entering TTP shifts the whole
   chrome to "another level" and returning to the community pages is light again */
.nav--dark {
  background: oklch(0.185 0.012 74 / 0.82);
  border-bottom-color: oklch(0.985 0.01 82 / 0.10);
}
.nav--dark.is-stuck { box-shadow: 0 10px 26px -18px oklch(0.10 0.01 74 / 0.8); }
.nav--dark .nav__links a { color: oklch(0.9 0.008 82); }
.nav--dark .nav__links a:hover { background: oklch(0.825 0.128 84 / 0.16); color: oklch(0.86 0.128 86); }
.nav--dark .nav__links a.is-active { color: oklch(0.85 0.128 85); }
.nav--dark .brand__mark { background: var(--gold); color: oklch(0.2 0.02 74); }
/* TTP gold-pill CTA keeps dark text on the gold, even on the dark navbar */
.nav--dark .nav__links a.btn { color: var(--btn-fg); }
.nav--dark .nav__links a.btn:hover { background: oklch(0.87 0.128 86); color: var(--btn-fg); }
.ttp-wrap { width: min(1180px, 100% - (var(--gutter) * 2)); margin-inline: auto; }
.ttp-section { padding-block: clamp(3rem, 8vw, 6rem); }
.ttp-section--panel { background: var(--ttp-bg-2); }

.ttp-kicker {
  display: inline-flex; align-items: center;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.24em;
  color: var(--ttp-gold); text-transform: uppercase;
}

/* ---- hero: editorial split (text start/right · photo end/left) ---- */
.ttp-hero { position: relative; display: grid; grid-template-columns: 1fr; }
@media (min-width: 900px) { .ttp-hero { grid-template-columns: 1.08fr 0.92fr; min-height: min(86svh, 740px); } }
.ttp-hero__text {
  display: flex; flex-direction: column; justify-content: center;
  gap: clamp(0.9rem, 2vw, 1.4rem);
  padding: clamp(2.6rem, 6vw, 5rem) var(--gutter);
}
.ttp-hero__mark {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(4.6rem, 17vw, 9.5rem); line-height: 0.82; letter-spacing: 0.03em;
}
.ttp-hero__mark i { font-style: normal; color: var(--ttp-gold); }
.ttp-hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.5rem, 4vw, 2.35rem); line-height: 1.15;
}
.ttp-hero__rule { width: 68px; height: 2px; background: var(--ttp-gold); margin: 0.2rem 0; }
.ttp-hero__lead { max-width: 44ch; color: var(--ttp-soft); font-size: clamp(1rem, 1.5vw, 1.14rem); line-height: 1.85; }
.ttp-hero__lead b { color: var(--ttp-ink); font-weight: 600; }
.ttp-hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.7rem 1.4rem; margin-top: 0.8rem; }
.ttp-hero__media { position: relative; min-height: 58vh; }
@media (min-width: 900px) { .ttp-hero__media { min-height: 0; } }
.ttp-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }
.ttp-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to right, transparent 58%, var(--ttp-bg) 99%),
    linear-gradient(to top, oklch(0.16 0.01 74 / 0.5), transparent 46%);
}
@media (max-width: 899px) {
  .ttp-hero__media::after { background: linear-gradient(to bottom, transparent 55%, var(--ttp-bg) 99%), linear-gradient(to top, oklch(0.16 0.01 74 / 0.35), transparent 40%); }
}

/* ---- buttons (dark register: refined, near-rectangular) ---- */
.ttp-btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-weight: 600; font-size: 1rem; padding: 0.9em 1.7em;
  border: 1px solid transparent; border-radius: var(--ttp-r);
  transition: transform 0.4s var(--ease), background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.ttp-btn--gold { background: var(--ttp-gold); color: oklch(0.2 0.02 74); }
.ttp-btn--gold:hover { transform: translateY(-3px); background: oklch(0.87 0.128 86); }
.ttp-btn--line { border-color: var(--ttp-line); color: var(--ttp-ink); }
.ttp-btn--line:hover { transform: translateY(-3px); border-color: var(--ttp-gold); color: var(--ttp-gold); }
.ttp-link {
  display: inline-flex; align-items: center; gap: 0.5em; font-weight: 600;
  color: var(--ttp-ink); border-bottom: 1px solid var(--ttp-line); padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.ttp-link:hover { color: var(--ttp-gold); border-color: var(--ttp-gold); }
.ttp-link svg { width: 0.9em; height: 0.9em; transition: transform 0.35s var(--ease); }
.ttp-link:hover svg { transform: translateX(-4px); }

/* ---- intro head ---- */
.ttp-head { max-width: 62ch; }
.ttp-head h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.95rem, 5.2vw, 3.1rem); line-height: 1.08; margin-top: 0.9rem; }
.ttp-head p { color: var(--ttp-soft); font-size: clamp(1.02rem, 1.6vw, 1.16rem); line-height: 1.85; margin-top: 1rem; max-width: 56ch; }
.ttp-head p b { color: var(--ttp-ink); font-weight: 600; }

/* ---- method + shots: text (start/right) beside photos (end/left) ---- */
.ttp-method-layout { display: grid; grid-template-columns: 1fr; gap: clamp(1.8rem, 5vw, 2.8rem); }
.ttp-method-layout > * { min-width: 0; }
@media (min-width: 900px) {
  .ttp-method-layout { grid-template-columns: 1.05fr 0.92fr; gap: clamp(2rem, 4vw, 3.6rem); align-items: start; }
}

/* numbered editorial list, hairline rules (no cards) */
.ttp-method { margin-top: clamp(1.5rem, 4vw, 2.3rem); border-top: 1px solid var(--ttp-line); }
.ttp-method__row {
  display: grid; grid-template-columns: auto 1fr; gap: 0.25rem 1.1rem; align-items: baseline;
  padding: clamp(1.05rem, 2.4vw, 1.5rem) 0; border-bottom: 1px solid var(--ttp-line);
}
.ttp-method__n { font-family: var(--font-display); font-weight: 400; color: var(--ttp-gold); font-size: 1.1rem; letter-spacing: 0.05em; }
.ttp-method__t { font-size: clamp(1.1rem, 2.2vw, 1.32rem); font-weight: 600; color: var(--ttp-ink); transition: color 0.3s var(--ease); }
.ttp-method__d { color: var(--ttp-soft); line-height: 1.7; grid-column: 2 / -1; }
.ttp-method__row:hover .ttp-method__t { color: var(--ttp-gold); }

/* photo column beside the method */
.ttp-shots { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(0.5rem, 1.1vw, 0.75rem); align-content: start; }
.ttp-shots figure { position: relative; overflow: hidden; border-radius: var(--ttp-r); aspect-ratio: 3 / 4; background: var(--ttp-bg-2); }
.ttp-shots img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.ttp-shots figure:hover img { transform: scale(1.06); }

/* ---- full-bleed feature band ---- */
.ttp-band { position: relative; min-height: min(72svh, 600px); display: grid; align-items: end; overflow: clip; }
.ttp-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%; }
.ttp-band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--ttp-bg) 3%, oklch(0.15 0.01 74 / 0.5) 42%, transparent 78%);
}
.ttp-band__inner { position: relative; padding: clamp(2rem, 5vw, 4rem) var(--gutter); max-width: 48rem; }
.ttp-band h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.9rem, 5.4vw, 3.3rem); line-height: 1.08; }
.ttp-band p { color: oklch(0.86 0.012 82); font-size: clamp(1.02rem, 1.6vw, 1.16rem); line-height: 1.8; margin-top: 0.9rem; max-width: 42ch; }

/* ---- closing CTA ---- */
.ttp-cta { text-align: center; }
.ttp-cta h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 6vw, 3.4rem); line-height: 1.06; }
.ttp-cta p { color: var(--ttp-soft); max-width: 42ch; margin: 1.1rem auto 2rem; font-size: 1.08rem; line-height: 1.75; }
.ttp-cta__row { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }
