/* ─── RESET ──────────────────────────────────────────────── */

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

:root {
      --ivory:       #faf7f2;
      --ivory-warm:  #f5ede2;
      --ivory-deep:  #ede3d6;
      --rose:        #c4927a;
      --rose-deep:   #a97360;
      --rose-pale:   #f3e4dc;
      --rose-mist:   #fdf6f3;
      --taupe:       #8a7868;
      --stone:       #b5a898;
      --mid:         #6b5f52;
      --ink:         #2a2018;
      --ink-soft:    #3d3025;
      --rule:        #e8ddd4;
      --white:       #fffefb;

      --font-serif:  'Frank Ruhl Libre', 'David Libre', Georgia, serif;
      --font-sans:   'Alef', system-ui, sans-serif;

      --nav-h: 72px;
      --max:   1140px;
      --r:     4px;
      --r-lg:  12px;
    }

html { scroll-behavior: smooth; }

body {
      font-family: var(--font-sans);
      font-weight: 400;
      background: var(--white);
      color: var(--ink-soft);
      line-height: 1.85;
      -webkit-font-smoothing: antialiased;
      direction: rtl;
      text-align: right;
    }

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

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

/* ─── NAV ────────────────────────────────────────────────── */

.nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,254,251,0.96);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--rule);
      height: var(--nav-h);
    }

.nav__inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 2rem;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }

/* Logo on the right (RTL) */

.nav__logo img { height: 46px; width: auto; }

/* Links on the left (RTL) */

.nav__links {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0;
      list-style: none;
    }

.nav__links > li > a {
      display: block;
      font-family: var(--font-sans);
      font-size: 0.88rem;
      font-weight: 400;
      color: var(--taupe);
      padding: 0.5rem 0.85rem;
      border-radius: var(--r);
      transition: color 0.15s, background 0.15s;
      white-space: nowrap;
    }

.nav__links > li > a:hover {
      color: var(--ink);
      background: var(--rose-mist);
    }

.nav__register {
      font-family: var(--font-sans);
      font-size: 0.84rem;
      font-weight: 700;
      color: var(--white);
      background: var(--rose);
      padding: 0.55rem 1.3rem;
      border-radius: var(--r);
      white-space: nowrap;
      transition: background 0.2s, transform 0.15s;
      flex-shrink: 0;
    }

.nav__register:hover {
      background: var(--rose-deep);
      transform: translateY(-1px);
    }

/* Mobile toggle */

.nav__toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      flex-direction: column;
      gap: 5px;
    }

.nav__toggle span {
      display: block;
      width: 24px;
      height: 1.5px;
      background: var(--ink-soft);
      border-radius: 2px;
      transition: transform 0.25s, opacity 0.25s;
    }

.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }

.nav__toggle.open span:nth-child(2) { opacity: 0; }

.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
      display: none;
      flex-direction: column;
      background: var(--white);
      border-top: 1px solid var(--rule);
      padding: 1rem 2rem 2rem;
    }

.nav__mobile.open { display: flex; }

.nav__mobile a {
      padding: 0.65rem 0;
      font-size: 0.92rem;
      color: var(--taupe);
      border-bottom: 1px solid var(--rule);
      transition: color 0.15s;
    }

.nav__mobile a:hover { color: var(--ink); }

/* ─── HERO ───────────────────────────────────────────────── */

.hero {
      position: relative;
      overflow: hidden;
      background: var(--ink);
    }

.hero__picture {
      position: relative;
      display: block;
    }

.hero__picture img {
      width: 100%;
      max-height: 580px;
      object-fit: cover;
      object-position: center top;
      opacity: 0.72;
    }

/* Dark gradient overlay bottom-up */

.hero__picture::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(42,32,24,0.75) 0%, rgba(42,32,24,0.15) 55%, transparent 100%);
    }

.hero__text {
      position: absolute;
      bottom: 0;
      right: 0;
      left: 0;
      z-index: 1;
      padding: 3rem 4rem;
      text-align: right;
    }

.hero__label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      color: var(--rose-pale);
      text-transform: uppercase;
      margin-bottom: 0.75rem;
      opacity: 0.9;
    }

.hero__heading {
      font-family: var(--font-serif);
      font-size: clamp(2.2rem, 5vw, 4rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      letter-spacing: -0.01em;
    }

.hero__heading em {
      font-style: normal;
      color: var(--rose-pale);
    }

/* ─── INTRO ──────────────────────────────────────────────── */

.intro {
      padding: 6rem 2rem;
      background: var(--white);
    }

.intro__inner {
      max-width: 780px;
      margin: 0 auto;
      text-align: center;
    }

.section-tag {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: 1rem;
    }

.section-h2 {
      font-family: var(--font-serif);
      font-size: clamp(1.8rem, 3.5vw, 3rem);
      font-weight: 700;
      color: var(--ink);
      line-height: 1.25;
      margin-bottom: 1.5rem;
    }

.section-text {
      font-size: 1rem;
      color: var(--mid);
      line-height: 1.9;
      margin-bottom: 1.1rem;
    }

.btn-rose {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-sans);
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--white);
      background: var(--rose);
      padding: 0.9rem 2rem;
      border-radius: var(--r);
      transition: background 0.2s, transform 0.15s;
      margin-top: 1rem;
    }

.btn-rose:hover {
      background: var(--rose-deep);
      transform: translateY(-1px);
    }

.btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-sans);
      font-size: 0.9rem;
      font-weight: 400;
      color: var(--rose);
      border: 1.5px solid var(--rose);
      padding: 0.85rem 1.8rem;
      border-radius: var(--r);
      transition: background 0.2s, color 0.2s;
      margin-top: 1rem;
    }

.btn-outline:hover {
      background: var(--rose);
      color: var(--white);
    }

/* ─── SELF IMAGE ─────────────────────────────────────────── */

.selfimage {
      padding: 6rem 2rem;
      background: var(--ivory);
    }

.selfimage__inner {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

.selfimage__img img {
      width: 100%;
      border-radius: var(--r-lg);
      aspect-ratio: 4/3;
      object-fit: cover;
    }

.selfimage__sub {
      display: block;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: 0.8rem;
    }

.selfimage__h2 {
      font-family: var(--font-serif);
      font-size: clamp(1.7rem, 3vw, 2.8rem);
      font-weight: 700;
      color: var(--ink);
      line-height: 1.25;
      margin-bottom: 1.4rem;
    }

.selfimage__text {
      font-size: 0.97rem;
      color: var(--mid);
      line-height: 1.95;
      margin-bottom: 1rem;
    }

/* ─── PERSONALIZED ───────────────────────────────────────── */

.personal {
      padding: 6rem 2rem;
      background: var(--white);
    }

.personal__inner {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

.personal__img img {
      width: 100%;
      border-radius: var(--r-lg);
      aspect-ratio: 4/3;
      object-fit: cover;
    }

.personal__badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--rose);
      background: var(--rose-pale);
      padding: 0.35rem 0.85rem;
      border-radius: 100px;
      margin-bottom: 1rem;
    }

.personal__h2 {
      font-family: var(--font-serif);
      font-size: clamp(1.7rem, 3vw, 2.8rem);
      font-weight: 700;
      color: var(--ink);
      line-height: 1.25;
      margin-bottom: 1.4rem;
    }

.personal__text {
      font-size: 0.97rem;
      color: var(--mid);
      line-height: 1.95;
      margin-bottom: 1rem;
    }

/* ─── BENEFITS ───────────────────────────────────────────── */

.benefits {
      padding: 6rem 2rem;
      background: var(--ivory-warm);
    }

.benefits__inner { max-width: var(--max); margin: 0 auto; }

.section-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

.section-header__h2 {
      font-family: var(--font-serif);
      font-size: clamp(1.7rem, 3vw, 2.8rem);
      font-weight: 700;
      color: var(--ink);
      line-height: 1.25;
      margin-top: 0.75rem;
    }

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

/* ─── BENEFIT CARD ───────────────────────────────────────── */

.bcard {
      background: var(--white);
      border: 1px solid var(--rule);
      border-radius: var(--r-lg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.25s, transform 0.25s;
    }

.bcard:hover {
      box-shadow: 0 10px 36px rgba(42,32,24,0.09);
      transform: translateY(-3px);
    }

.bcard__img {
      width: 100%;
      aspect-ratio: 3/2;
      object-fit: cover;
      border-radius: var(--r-lg) var(--r-lg) 0 0;
    }

.bcard__body {
      padding: 1.4rem 1.5rem;
      flex: 1;
      display: flex;
      flex-direction: column;
      border-top: 2px solid var(--rose-pale);
    }

.bcard:hover .bcard__body { border-top-color: var(--rose); }

.bcard__title {
      font-family: var(--font-serif);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 0.6rem;
    }

.bcard__text {
      font-size: 0.88rem;
      color: var(--mid);
      line-height: 1.8;
      flex: 1;
    }

/* ─── ANAT + FORM ────────────────────────────────────────── */

.anat {
      padding: 6rem 2rem;
      background: var(--white);
    }

.anat__inner {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

.anat__img img {
      width: 100%;
      border-radius: var(--r-lg);
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: top;
    }

.anat__label {
      display: block;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: 0.8rem;
    }

.anat__h2 {
      font-family: var(--font-serif);
      font-size: clamp(1.6rem, 2.5vw, 2.4rem);
      font-weight: 700;
      color: var(--ink);
      line-height: 1.25;
      margin-bottom: 1.25rem;
    }

.anat__text {
      font-size: 0.95rem;
      color: var(--mid);
      line-height: 1.9;
      margin-bottom: 1rem;
    }

/* Cognito form wrapper */

.anat__form-wrap {
      background: var(--ivory);
      border: 1px solid var(--rule);
      border-radius: var(--r-lg);
      padding: 1.5rem;
    }

.anat__form-wrap .cognito { min-height: 340px; }

/* ─── CTA BAND ───────────────────────────────────────────── */

.ctaband {
      background: var(--ink);
      padding: 5rem 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

.ctaband::before {
      content: '';
      position: absolute;
      top: -50%;
      right: 10%;
      width: 60%;
      height: 200%;
      background: radial-gradient(ellipse, rgba(196,146,122,0.12) 0%, transparent 65%);
      pointer-events: none;
    }

.ctaband__inner {
      position: relative;
      z-index: 1;
      max-width: 640px;
      margin: 0 auto;
    }

.ctaband__h2 {
      font-family: var(--font-serif);
      font-size: clamp(1.8rem, 3.5vw, 3rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.25;
      margin-bottom: 1rem;
    }

.ctaband__sub {
      font-size: 0.97rem;
      color: var(--stone);
      line-height: 1.9;
      margin-bottom: 2.5rem;
    }

/* ─── EMAIL CTA ──────────────────────────────────────────── */

.emailcta {
      padding: 3rem 2rem;
      background: var(--ivory-warm);
      text-align: center;
      border-top: 1px solid var(--rule);
    }

.emailcta__inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }

.emailcta__icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--rose-pale);
      display: flex;
      align-items: center;
      justify-content: center;
    }

.emailcta__icon svg {
      width: 24px; height: 24px;
      stroke: var(--rose);
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

.emailcta__text {
      font-size: 0.9rem;
      color: var(--taupe);
    }

.emailcta__link {
      font-size: 1rem;
      font-weight: 700;
      color: var(--rose-deep);
      transition: color 0.2s;
    }

.emailcta__link:hover { color: var(--rose); }

/* ─── FOOTER ─────────────────────────────────────────────── */

footer {
      background: var(--ink);
      padding: 4rem 2rem 2rem;
    }

.footer__inner { max-width: var(--max); margin: 0 auto; }

.footer__grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

.footer__brand {
      font-family: var(--font-serif);
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.5rem;
    }

.footer__tagline {
      font-size: 0.84rem;
      color: var(--stone);
      line-height: 1.75;
      margin-bottom: 1rem;
    }

.footer__contact {
      font-size: 0.84rem;
      color: var(--stone);
      line-height: 2.1;
    }

.footer__contact a { color: var(--stone); transition: color 0.2s; }

.footer__contact a:hover { color: var(--rose-pale); }

.footer__col-title {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: 1.1rem;
    }

.footer__links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

.footer__links a {
      font-size: 0.86rem;
      color: var(--stone);
      transition: color 0.2s;
    }

.footer__links a:hover { color: var(--white); }

.footer__bottom {
      padding-top: 1.5rem;
      text-align: center;
    }

.footer__copy {
      font-size: 0.78rem;
      color: var(--taupe);
      line-height: 1.8;
    }

/* ─── RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 960px) {
      .selfimage__inner  { grid-template-columns: 1fr; gap: 3rem; }
      .personal__inner   { grid-template-columns: 1fr; gap: 3rem; }
      /* Flip image order on mobile for personal section */
      .personal__img     { order: -1; }
      .anat__inner       { grid-template-columns: 1fr; gap: 3rem; }
      .benefits__grid    { grid-template-columns: 1fr 1fr; }
      .footer__grid      { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .hero__text        { padding: 2rem; }
    }

@media (max-width: 680px) {
      .nav__links         { display: none; }
      .nav__register-desk { display: none; }
      .nav__toggle        { display: flex; }
      .benefits__grid     { grid-template-columns: 1fr; }
      .footer__grid       { grid-template-columns: 1fr; }
      .hero__heading      { font-size: 1.9rem; }
    }

/* ─── FADE-IN ─────────────────────────────────────────────── */

.fade-up {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }

.fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

/* ── Contact page ── */

.body-text { font-size: 1rem; color: var(--mid); line-height: 1.9; margin-bottom: 1rem; }

.contact-intro { padding: 5rem 2rem 3rem; background: var(--white); text-align: center; }

.contact-intro__inner { max-width: 700px; margin: 0 auto; }

.contact-cards { padding: 2rem 2rem 4rem; background: var(--white); }

.contact-cards__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }

.ccard { background: var(--ivory); border: 1px solid var(--rule); border-radius: var(--r-lg); padding: 1.5rem 1.6rem; display: flex; align-items: flex-start; gap: 1rem; transition: border-color 0.2s, box-shadow 0.2s; }

.ccard:hover { border-color: var(--rose); box-shadow: 0 4px 20px rgba(196,146,122,0.1); }

.ccard__icon { width: 40px; height: 40px; border-radius: 10px; background: var(--rose-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }

.ccard__icon svg { width: 18px; height: 18px; stroke: var(--rose); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.ccard__label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.3rem; }

.ccard__value { font-size: 0.92rem; font-weight: 400; color: var(--ink-soft); line-height: 1.6; }

.ccard__value a { color: var(--ink-soft); transition: color 0.2s; }

.ccard__value a:hover { color: var(--rose-deep); }

.contact-main { padding: 4rem 2rem 6rem; background: var(--ivory-warm); }

.contact-main__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.contact-main__photo img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 3/4; object-fit: cover; object-position: top; }

.contact-main__label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.8rem; }

.contact-main__h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 2.5vw, 2.4rem); font-weight: 700; color: var(--ink); line-height: 1.25; margin-bottom: 1.25rem; }

.contact-main__text { font-size: 0.97rem; color: var(--mid); line-height: 1.9; margin-bottom: 1rem; }

.contact-form-wrap { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-lg); padding: 1.5rem; margin-top: 1.5rem; }

/* ── FAQ page ── */

.faq-intro { padding: 5.5rem 2rem 3rem; background: var(--white); text-align: center; }

.faq-intro__inner { max-width: 700px; margin: 0 auto; }

.faq-intro__h1 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; color: var(--ink); line-height: 1.25; margin-bottom: 1rem; }

.faq-intro__text { font-size: 1rem; color: var(--mid); line-height: 1.9; }

.faq-banner { padding: 0 2rem 4rem; background: var(--white); }

.faq-banner__inner { max-width: var(--max); margin: 0 auto; }

.faq-banner__img { width: 100%; border-radius: var(--r-lg); max-height: 380px; object-fit: cover; object-position: center; }

.faq-section { padding: 2rem 2rem 5rem; background: var(--ivory); }

.faq-section__inner { max-width: 860px; margin: 0 auto; }

.faq-item { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-lg); margin-bottom: 0.75rem; overflow: hidden; transition: box-shadow 0.2s; }

.faq-item:hover { box-shadow: 0 4px 20px rgba(42,32,24,0.07); }

.faq-item.open  { box-shadow: 0 6px 24px rgba(196,146,122,0.1); border-color: var(--rose-pale); }

.faq-item__q { width: 100%; background: none; border: none; cursor: pointer; padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: right; }

.faq-item__q-text { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700; color: var(--ink); line-height: 1.4; flex: 1; }

.faq-item.open .faq-item__q-text { color: var(--rose-deep); }

.faq-item__icon { width: 28px; height: 28px; border-radius: 50%; background: var(--rose-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; }

.faq-item__icon svg { width: 14px; height: 14px; stroke: var(--rose); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.3s; }

.faq-item.open .faq-item__icon { background: var(--rose); }

.faq-item.open .faq-item__icon svg { stroke: var(--white); transform: rotate(180deg); }

.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }

.faq-item.open .faq-item__a { max-height: 600px; }

.faq-item__a-inner { padding: 0 1.5rem 1.4rem; border-top: 1px solid var(--rule); }

.faq-item__a-inner p { font-size: 0.97rem; color: var(--mid); line-height: 1.95; padding-top: 1.1rem; }

.gallery { padding: 5rem 2rem; background: var(--white); }

.gallery__inner { max-width: var(--max); margin: 0 auto; }

.gallery__header { text-align: center; margin-bottom: 2.5rem; }

.gallery__h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--ink); margin-top: 0.6rem; }

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

.gallery__item { border-radius: var(--r-lg); overflow: hidden; transition: box-shadow 0.25s, transform 0.25s; }

.gallery__item:hover { box-shadow: 0 10px 36px rgba(42,32,24,0.12); transform: translateY(-3px); }

.gallery__item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

.cta-form { padding: 6rem 2rem; background: var(--ivory-warm); }

.cta-form__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.cta-form__img img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 4/3; object-fit: cover; }

.cta-form__label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.8rem; }

.cta-form__h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 2.5vw, 2.4rem); font-weight: 700; color: var(--ink); line-height: 1.25; margin-bottom: 1.25rem; }

.cta-form__text { font-size: 0.97rem; color: var(--mid); line-height: 1.9; margin-bottom: 1rem; }

.cta-form__form-wrap { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-lg); padding: 1.5rem; margin-top: 1.5rem; }

/* ── Jogging page ── */

.intro-strip { background: var(--ink); padding: 3.5rem 2rem; }

.intro-strip__inner { max-width: 820px; margin: 0 auto; text-align: center; }

.intro-strip__tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose-pale); margin-bottom: 1rem; }

.intro-strip__h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 1rem; }

.intro-strip__text { font-size: 1rem; font-weight: 300; color: var(--stone); line-height: 1.9; }

.highlights { background: var(--ivory); padding: 3rem 2rem 1rem; border-bottom: 1px solid var(--rule); }

.highlights__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.hcard { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-lg); padding: 1.5rem 1.6rem; text-align: center; transition: box-shadow 0.2s, transform 0.2s; }

.hcard:hover { box-shadow: 0 8px 28px rgba(42,32,24,0.08); transform: translateY(-2px); }

.hcard__icon { width: 48px; height: 48px; border-radius: 50%; background: var(--rose-pale); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }

.hcard__icon svg { width: 22px; height: 22px; stroke: var(--rose); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.hcard__title { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; }

.hcard__text { font-size: 0.85rem; color: var(--mid); line-height: 1.7; }

.story { padding: 6rem 2rem; }

.story--white { background: var(--white); }

.story--ivory { background: var(--ivory-warm); }

.story__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.story__h2 { font-family: var(--font-serif); font-size: clamp(1.7rem, 3vw, 2.8rem); font-weight: 700; color: var(--ink); line-height: 1.25; margin-bottom: 1.4rem; }

.story__text { font-size: 0.97rem; color: var(--mid); line-height: 1.9; margin-bottom: 1rem; }

.story__img img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 4/3; object-fit: cover; }

.join { padding: 6rem 2rem; background: var(--ivory); }

.join__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.join__label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.8rem; }

.join__h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 2.5vw, 2.4rem); font-weight: 700; color: var(--ink); line-height: 1.25; margin-bottom: 1.25rem; }

.join__text { font-size: 0.97rem; color: var(--mid); line-height: 1.9; margin-bottom: 1rem; }

.join__form-wrap { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-lg); padding: 1.5rem; }

.schedule-box { background: var(--white); border: 1px solid var(--rule); border-right: 4px solid var(--rose); border-radius: 0 var(--r-lg) var(--r-lg) 0; padding: 1.25rem 1.5rem; margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.5rem; }

.schedule-box__row { display: flex; align-items: center; gap: 0.65rem; font-size: 0.9rem; color: var(--ink-soft); }

.schedule-box__row svg { width: 16px; height: 16px; stroke: var(--rose); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.schedule-box__row strong { color: var(--rose-deep); font-weight: 700; }

/* ── Pilates page ── */

.intro__h1 { font-family: var(--font-serif); font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 700; color: var(--ink); line-height: 1.25; margin-bottom: 1.25rem; }

.intro__text { font-size: 1rem; color: var(--mid); line-height: 1.9; }

.pills { padding: 2rem 2rem 4rem; background: var(--white); }

.pills__inner { max-width: var(--max); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

.pill { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.86rem; font-weight: 700; color: var(--rose-deep); background: var(--rose-pale); border: 1px solid var(--rose-pale); padding: 0.45rem 1rem; border-radius: 100px; }

.pill::before { content: '✦'; font-size: 0.6rem; color: var(--rose); }

.quote-band { background: var(--ink); padding: 5rem 2rem; position: relative; overflow: hidden; }

.quote-band::before { content: ''; position: absolute; top: -40%; right: 5%; width: 55%; height: 180%; background: radial-gradient(ellipse, rgba(196,146,122,0.14) 0%, transparent 65%); pointer-events: none; }

.quote-band__inner { position: relative; z-index: 1; max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: auto 1fr; gap: 3rem; align-items: center; }

.quote-band__label { font-family: var(--font-serif); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; color: var(--rose-pale); white-space: nowrap; }

.quote-band__divider { width: 2px; min-height: 80px; background: var(--rose); opacity: 0.5; border-radius: 2px; }

.quote-band__text { font-size: 1rem; font-weight: 300; color: var(--stone); line-height: 1.95; }

.professionalism { padding: 6rem 2rem; background: var(--ivory); text-align: center; }

.professionalism__inner { max-width: 760px; margin: 0 auto; }

.professionalism__h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; color: var(--ink); line-height: 1.25; margin-bottom: 1.25rem; }

.professionalism__text { font-size: 1rem; color: var(--mid); line-height: 1.9; margin-bottom: 2rem; }

/* ── Prices page ── */

.pricing-section { padding: 5rem 2rem 6rem; background: var(--white); }

.pricing-section__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

.prices-col__label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.75rem; }

.prices-col__h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 700; color: var(--ink); line-height: 1.2; margin-bottom: 1.75rem; }

.price-cards { display: flex; flex-direction: column; gap: 0.85rem; }

.price-card { background: var(--ivory); border: 1px solid var(--rule); border-radius: var(--r-lg); padding: 1.1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; transition: border-color 0.2s, box-shadow 0.2s; }

.price-card:hover { border-color: var(--rose); box-shadow: 0 4px 16px rgba(196,146,122,0.1); }

.price-card--trial { background: var(--rose-pale); border-color: var(--rose); }

.price-card--featured { background: var(--ink); border-color: var(--ink); }

.price-card--featured .price-card__name { color: var(--ivory); }

.price-card--featured .price-card__price { color: var(--rose-pale); }

.price-card--featured .price-card__per { color: var(--stone); }

.price-card__name { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700; color: var(--ink); flex: 1; }

.price-card__badge { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); background: var(--rose); padding: 0.2rem 0.6rem; border-radius: 100px; flex-shrink: 0; }

.price-card__right { display: flex; flex-direction: column; align-items: flex-start; flex-shrink: 0; }

.price-card__price { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--rose-deep); line-height: 1; }

.price-card__per { font-size: 0.72rem; color: var(--taupe); margin-top: 2px; }

.prices-note { margin-top: 1.25rem; padding: 1rem 1.25rem; background: var(--ivory-warm); border-right: 3px solid var(--rose); border-radius: 0 var(--r-lg) var(--r-lg) 0; font-size: 0.88rem; color: var(--mid); line-height: 1.75; }

.prices-img img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 4/5; object-fit: cover; }

.hours-section { padding: 5rem 2rem 6rem; background: var(--ivory-warm); }

.hours-section__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.hours-col__h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 700; color: var(--ink); line-height: 1.2; margin-bottom: 1.75rem; }

.hours-table { width: 100%; border-collapse: collapse; border-radius: var(--r-lg); overflow: hidden; }

.hours-table tr { border-bottom: 1px solid var(--rule); }

.hours-table tr:last-child { border-bottom: none; }

.hours-table tr:nth-child(odd)  { background: var(--white); }

.hours-table tr:nth-child(even) { background: var(--ivory); }

.hours-table td { padding: 0.85rem 1.1rem; font-size: 0.92rem; color: var(--ink-soft); vertical-align: middle; }

.hours-table td:first-child { font-weight: 700; color: var(--rose-deep); width: 28%; white-space: nowrap; }

.hours-table td:not(:first-child) { font-family: 'Alef', system-ui, sans-serif; direction: ltr; text-align: left; }

.policy-note { margin-top: 1.5rem; padding: 1.1rem 1.4rem; background: var(--ink); border-radius: var(--r-lg); display: flex; align-items: flex-start; gap: 0.75rem; }

.policy-note__icon { width: 20px; height: 20px; stroke: var(--rose-pale); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 1px; }

.policy-note__text { font-size: 0.88rem; font-weight: 700; color: var(--rose-pale); line-height: 1.65; }

.hours-right { display: flex; flex-direction: column; gap: 2rem; }

.hours-right__img img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 4/5; object-fit: cover; object-position: top; }

.hours-right__cta { background: var(--rose-pale); border: 1px solid var(--rose); border-radius: var(--r-lg); padding: 1.5rem; text-align: center; }

.hours-right__cta p { font-size: 0.95rem; color: var(--mid); line-height: 1.75; margin-bottom: 1.25rem; }

.form-section { padding: 5rem 2rem 6rem; background: var(--white); }

.form-section__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.form-section__img img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 3/4; object-fit: cover; object-position: top; }

.form-section__label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.8rem; }

.form-section__h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 2.5vw, 2.4rem); font-weight: 700; color: var(--ink); line-height: 1.25; margin-bottom: 1.25rem; }

.form-section__text { font-size: 0.97rem; color: var(--mid); line-height: 1.9; margin-bottom: 1rem; }

.form-wrap { background: var(--ivory); border: 1px solid var(--rule); border-radius: var(--r-lg); padding: 1.5rem; margin-top: 1.5rem; }

/* ── Profile page ── */

.stat-strip { background: var(--ink); padding: 0; border-bottom: 1px solid rgba(196,146,122,0.2); }

.stat-strip__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }

.stat-item { padding: 1.75rem 1.5rem; border-left: 1px solid rgba(255,255,255,0.07); text-align: center; }

.stat-item:last-child { border-left: none; }

.stat-item__num { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; font-style: italic; color: var(--rose-pale); line-height: 1; margin-bottom: 0.3rem; }

.stat-item__label { font-size: 0.78rem; color: var(--stone); }

.anat-section { padding: 6rem 2rem; background: var(--ivory); }

.anat-section__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.anat-section__photo-wrap { display: flex; flex-direction: column; gap: 1.5rem; }

.anat-section__photo img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 3/4; object-fit: cover; object-position: top; }

.anat-quote { background: var(--ink); border-radius: var(--r-lg); padding: 1.5rem; position: relative; }

.anat-quote::before { content: '"'; font-family: var(--font-serif); font-size: 4rem; color: var(--rose); line-height: 1; position: absolute; top: 0.5rem; right: 1rem; opacity: 0.5; }

.anat-quote__text { font-family: var(--font-serif); font-size: 1rem; font-style: italic; color: var(--stone); line-height: 1.8; padding-top: 1.25rem; }

.anat-quote__sig { font-size: 0.78rem; color: var(--rose-pale); margin-top: 0.75rem; font-weight: 700; }

.anat-section__label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.8rem; }

.anat-section__h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 2.5vw, 2.4rem); font-weight: 700; color: var(--ink); line-height: 1.25; margin-bottom: 1.25rem; }

.anat-section__text { font-size: 0.97rem; color: var(--mid); line-height: 1.9; margin-bottom: 1rem; }

.anat-section__form-wrap { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-lg); padding: 1.5rem; margin-top: 1.5rem; }

.invitation { padding: 6rem 2rem; background: var(--rose-pale); text-align: center; }

.invitation__inner { max-width: 700px; margin: 0 auto; }

.invitation__h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; color: var(--ink); line-height: 1.25; margin-bottom: 1.25rem; }

.invitation__text { font-size: 1rem; color: var(--mid); line-height: 1.9; margin-bottom: 1rem; }

/* ── Thanks page ── */

.thanks { min-height: calc(100vh - var(--nav-h)); background: var(--ivory-warm); display: flex; align-items: center; justify-content: center; padding: 5rem 2rem; position: relative; overflow: hidden; }

.thanks::before { content: ''; position: absolute; top: -20%; right: 5%; width: 55%; height: 140%; background: radial-gradient(ellipse, rgba(196,146,122,0.15) 0%, transparent 65%); pointer-events: none; }

.thanks__inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }

.thanks__check { width: 88px; height: 88px; border-radius: 50%; background: var(--rose-pale); border: 2px solid var(--rose); display: flex; align-items: center; justify-content: center; animation: pop-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both; }

@keyframes pop-in { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.thanks__check svg { width: 40px; height: 40px; stroke: var(--rose-deep); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; animation: draw-check 0.4s 0.3s ease both; stroke-dasharray: 60; stroke-dashoffset: 60; }

@keyframes draw-check { to { stroke-dashoffset: 0; } }

.thanks__tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rose); }

.thanks__h1 { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; color: var(--ink); line-height: 1.2; }

.thanks__text { font-size: 1.05rem; color: var(--mid); line-height: 1.9; max-width: 520px; }

.thanks__contact { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-lg); padding: 1.25rem 2rem; display: flex; flex-direction: column; gap: 0.5rem; width: 100%; max-width: 380px; }

.thanks__contact-row { display: flex; align-items: center; justify-content: center; gap: 0.6rem; font-size: 0.9rem; color: var(--mid); }

.thanks__contact-row svg { width: 16px; height: 16px; stroke: var(--rose); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.thanks__contact-row a { color: var(--rose-deep); font-weight: 700; transition: color 0.2s; }

.thanks__contact-row a:hover { color: var(--rose); }

.thanks__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 0.5rem; }

.btn-outline { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-sans); font-size: 0.92rem; font-weight: 700; color: var(--rose-deep); border: 1.5px solid var(--rose); padding: 0.85rem 1.8rem; border-radius: var(--r); transition: background 0.2s, color 0.2s; }

.btn-outline:hover { background: var(--rose); color: var(--white); }

/* ── Why Us page ── */

.reasons { padding: 2rem 2rem 5rem; background: var(--white); }

.reasons__inner { max-width: var(--max); margin: 0 auto; }

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

.reason-card { background: var(--ivory); border: 1px solid var(--rule); border-radius: var(--r-lg); padding: 1.75rem 1.6rem 2rem; display: flex; flex-direction: column; gap: 0.85rem; opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s, border-color 0.25s; }

.reason-card:hover { box-shadow: 0 10px 36px rgba(42,32,24,0.08); transform: translateY(-3px); border-color: var(--rose); }

.reason-card.visible { opacity: 1; transform: translateY(0); }

.reason-card__num { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; font-style: italic; color: var(--rose-pale); line-height: 1; border-bottom: 1px solid var(--rose-pale); padding-bottom: 0.75rem; }

.reason-card__icon { width: 44px; height: 44px; border-radius: 50%; background: var(--rose-pale); display: flex; align-items: center; justify-content: center; }

.reason-card__icon svg { width: 20px; height: 20px; stroke: var(--rose); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.reason-card__title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--ink); line-height: 1.3; }

.reason-card__text { font-size: 0.9rem; color: var(--mid); line-height: 1.8; flex: 1; }

.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; }

.dark-strip { background: var(--ink); padding: 4rem 2rem; text-align: center; position: relative; overflow: hidden; }

.dark-strip::before { content: ''; position: absolute; top: -40%; right: 5%; width: 55%; height: 180%; background: radial-gradient(ellipse, rgba(196,146,122,0.12) 0%, transparent 65%); pointer-events: none; }

.dark-strip__inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

.dark-strip__h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--white); line-height: 1.25; margin-bottom: 1rem; }

.dark-strip__text { font-size: 0.97rem; font-weight: 300; color: var(--stone); line-height: 1.9; margin-bottom: 2rem; }

.join-section { padding: 6rem 2rem; background: var(--ivory-warm); }

.join-section__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.join-section__img img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 4/3; object-fit: cover; }

.join-section__label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.8rem; }

.join-section__h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 2.5vw, 2.4rem); font-weight: 700; color: var(--ink); line-height: 1.25; margin-bottom: 1.25rem; }

.join-section__text { font-size: 0.97rem; color: var(--mid); line-height: 1.9; margin-bottom: 1rem; }

.join-section__form-wrap { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-lg); padding: 1.5rem; margin-top: 1.5rem; }
