/* ==========================================================================
   Boyana Vancheva — Yoga & Meditation Teacher
   ========================================================================== */

/* --- Reset ---------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
picture, svg { display: block; max-width: 100%; }
/* height:auto is essential — every <img> carries width/height attributes for CLS,
   and without it max-width:100% squashes them to the literal attribute height. */
img { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

/* --- Tokens --------------------------------------------------------------- */
:root {
  --ink:        #12180f;
  --ink-soft:   #1d251a;
  --bone:       #f8f4ec;
  --bone-dim:   #ece5d8;
  --sand:       #e2d5bd;
  --clay:       #a86a45;
  --clay-lit:   #c4855c;
  --gold:       #c19a3d;
  --sage:       #7c8d74;
  --muted:      #6c7566;

  --font-display: "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", serif;
  --font-body: "Jost", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --shell: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4.5rem, 11vw, 9.5rem);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --- Base ----------------------------------------------------------------- */
body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.75;
  letter-spacing: .01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.005em;
}

a { color: inherit; }

::selection { background: var(--clay); color: var(--bone); }

:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --- Layout helpers ------------------------------------------------------- */
.shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
}
.shell--wide { width: min(100% - (var(--gutter) * 2), 1500px); }

.section { padding-block: var(--section-y); position: relative; }
.section--dark { background: var(--ink); color: var(--bone); }
.section--sand { background: linear-gradient(180deg, #f2ece0 0%, #ece4d5 100%); }

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--ink); color: var(--bone);
  padding: .75rem 1.25rem; border-radius: 999px; font-size: .85rem;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* --- Eyebrow / headings --------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .7rem; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--clay); margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: ""; width: 2.25rem; height: 1px; background: currentColor; opacity: .55;
}
.section--dark .eyebrow { color: var(--gold); }

.h-display { font-size: clamp(2.5rem, 1.4rem + 5vw, 5.25rem); }
.h-section { font-size: clamp(2rem, 1.2rem + 3.2vw, 3.6rem); }
.h-card    { font-size: clamp(1.4rem, 1.15rem + .9vw, 1.95rem); }

.lede {
  font-size: clamp(1.075rem, 1rem + .45vw, 1.3rem);
  line-height: 1.75; color: var(--muted); max-width: 62ch;
}
.section--dark .lede { color: #c3ccbd; }

.section-head { max-width: 68ch; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.9rem;
  font-size: .78rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
  border-radius: 999px; border: 1px solid transparent;
  transition: background-color .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 1.05em; height: 1.05em; flex: none; }

.btn--primary { background: var(--clay); color: #fff; }
.btn--primary:hover { background: var(--clay-lit); }

.btn--ghost { border-color: currentColor; color: inherit; }
.btn--ghost:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.section--dark .btn--ghost:hover,
.hero .btn--ghost:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

.btn--wa { background: #1faa54; color: #fff; }
.btn--wa:hover { background: #17924a; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* --- Header --------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 1.25rem;
  transition: background-color .4s var(--ease), padding .4s var(--ease),
              box-shadow .4s var(--ease);
}
.site-header::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,14,9,.55), rgba(10,14,9,0));
  transition: opacity .4s var(--ease);
}
.site-header.is-stuck {
  background: rgba(248, 244, 236, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: .7rem;
  box-shadow: 0 1px 0 rgba(18, 24, 15, .09);
}
.site-header.is-stuck::after { opacity: 0; }

.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}

.brand {
  display: flex; align-items: center; gap: .7rem;
  text-decoration: none; color: var(--bone);
  transition: color .4s var(--ease);
}
.is-stuck .brand { color: var(--ink); }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display); font-size: 1.3rem; letter-spacing: .01em;
}
.brand__role {
  font-size: .56rem; letter-spacing: .28em; text-transform: uppercase; opacity: .75;
}

.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.1rem); }
.nav__link {
  position: relative; text-decoration: none; color: var(--bone);
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  transition: color .4s var(--ease), opacity .3s var(--ease);
}
.is-stuck .nav__link { color: var(--ink); }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav__cta { padding: .7rem 1.4rem; font-size: .72rem; }

.nav__toggle {
  display: none; width: 46px; height: 46px; border-radius: 50%;
  align-items: center; justify-content: center;
  border: 1px solid rgba(248,244,236,.5); color: var(--bone);
}
.is-stuck .nav__toggle { border-color: rgba(18,24,15,.25); color: var(--ink); }
.nav__toggle span {
  display: block; width: 18px; height: 1px; background: currentColor; position: relative;
  transition: background-color .2s var(--ease);
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1px; background: currentColor;
  transition: transform .3s var(--ease);
}
.nav__toggle span::before { top: -5px; }
.nav__toggle span::after  { top: 5px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; justify-content: center; gap: 1.75rem;
    background: var(--ink);
    opacity: 0; visibility: hidden;
    transition: opacity .4s var(--ease), visibility .4s var(--ease);
  }
  .nav__links.is-open { opacity: 1; visibility: visible; }
  .nav__link, .is-stuck .nav__link { color: var(--bone); font-size: 1.05rem; letter-spacing: .2em; }
  .nav__cta { margin-top: .5rem; }
}

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100svh;
  display: grid; align-items: end;
  padding-block: 9rem clamp(3rem, 7vw, 5.5rem);
  color: var(--bone); overflow: hidden; isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media picture { display: block; width: 100%; height: 100%; }
/* Source photo is a very tall portrait; the focal point (Boyana) sits low in the
   frame, so wide viewports need a low object-position to keep her in shot. */
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 82%; }
@media (max-aspect-ratio: 1/1) {
  .hero__media img { object-position: 50% 62%; }
}
@media (max-aspect-ratio: 3/5) {
  .hero__media img { object-position: 50% 50%; }
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(8,12,7,.55) 0%, rgba(8,12,7,.12) 32%, rgba(8,12,7,.72) 78%, rgba(8,12,7,.94) 100%);
}

.hero__inner { display: grid; gap: clamp(1.75rem, 4vw, 3rem); }
.hero__title { font-size: clamp(3rem, 1.1rem + 8.6vw, 8rem); line-height: .92; }
.hero__title span { display: block; }
.hero__title em {
  font-style: italic; color: var(--sand);
}
.hero__meta {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .55rem 1.1rem;
  font-size: .74rem; letter-spacing: .26em; text-transform: uppercase; color: var(--sand);
}
.hero__meta span:not(:last-child)::after { content: " ·"; margin-left: 1.1rem; opacity: .5; }
.hero__lede { max-width: 46ch; color: #e6ddcd; font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem); }

.hero__bottom {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 2rem;
}
.hero__scroll {
  display: inline-flex; align-items: center; gap: .7rem; text-decoration: none;
  font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: var(--sand);
}
.hero__scroll i {
  display: block; width: 1px; height: 46px; background: currentColor; opacity: .6;
  position: relative; overflow: hidden;
}
.hero__scroll i::after {
  content: ""; position: absolute; inset: 0; background: var(--bone);
  animation: trickle 2.6s var(--ease) infinite;
}
@keyframes trickle {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

/* --- Ticker --------------------------------------------------------------- */
.ticker {
  background: var(--ink); color: var(--sand);
  padding-block: 1.1rem; overflow: hidden;
  border-block: 1px solid rgba(226,213,189,.14);
}
.ticker__track {
  display: flex; width: max-content; gap: 3.5rem;
  animation: slide 42s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  display: inline-flex; align-items: center; gap: 3.5rem;
  font-size: .74rem; letter-spacing: .26em; text-transform: uppercase; white-space: nowrap;
}
.ticker__item::after { content: "✦"; color: var(--gold); letter-spacing: 0; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}

/* --- About ---------------------------------------------------------------- */
.about__grid {
  display: grid; gap: clamp(2.5rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}
@media (min-width: 900px) {
  .about__grid { grid-template-columns: minmax(0, .85fr) minmax(0, 1fr); }
}
.about__figure { position: relative; }
.about__figure img {
  width: 100%; border-radius: 4px;
  box-shadow: 0 30px 70px -40px rgba(18,24,15,.55);
}
.about__badge {
  position: absolute; right: -.75rem; bottom: -1.75rem;
  background: var(--ink); color: var(--bone);
  padding: 1.15rem 1.5rem; border-radius: 3px; max-width: 15rem;
  box-shadow: 0 24px 50px -30px rgba(18,24,15,.7);
}
@media (max-width: 899px) {
  /* keep the badge inside the photo on narrow screens instead of overhanging it */
  .about__badge { right: .9rem; bottom: .9rem; padding: .9rem 1.1rem; max-width: 12.5rem; }
}
.about__badge strong {
  display: block; font-family: var(--font-display); font-size: 2.4rem;
  line-height: 1; font-weight: 400; color: var(--gold);
}
.about__badge span {
  font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: #bfc8b8;
}
.about__body > * + * { margin-top: 1.35rem; }
.about__body p { color: #4a5245; }
.about__body a {
  color: var(--clay); text-decoration: none;
  border-bottom: 1px solid rgba(168,106,69,.45);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.about__body a:hover { color: var(--clay-lit); border-bottom-color: currentColor; }
.signature {
  font-family: var(--font-display); font-style: italic;
  font-size: 2rem; color: var(--clay); margin-top: 2rem;
}

.stat-row {
  display: grid; gap: 1px; margin-top: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  background: rgba(18,24,15,.12);
  border: 1px solid rgba(18,24,15,.12);
}
.stat { background: var(--bone); padding: 1.4rem 1.25rem; }
.stat strong {
  display: block; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.9rem, 1.5rem + 1.4vw, 2.6rem); line-height: 1; color: var(--ink);
}
.stat span {
  display: block; margin-top: .5rem;
  font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}

/* --- Practice / styles cards ---------------------------------------------- */
.practice-grid {
  display: grid; gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}
.practice {
  position: relative; padding: clamp(1.75rem, 3vw, 2.4rem);
  background: rgba(248,244,236,.04);
  border: 1px solid rgba(226,213,189,.16);
  border-radius: 4px; overflow: hidden;
  transition: background-color .45s var(--ease), border-color .45s var(--ease),
              transform .45s var(--ease);
  display: flex; flex-direction: column; gap: 1rem;
}
.practice:hover {
  background: rgba(248,244,236,.075);
  border-color: rgba(193,154,61,.5);
  transform: translateY(-4px);
}
.practice--feature {
  background: linear-gradient(160deg, rgba(168,106,69,.28), rgba(248,244,236,.03));
  border-color: rgba(196,133,92,.5);
}
.practice__tag {
  align-self: flex-start;
  font-size: .6rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ink); background: var(--gold);
  padding: .3rem .75rem; border-radius: 999px;
}
.practice__num {
  font-family: var(--font-display); font-size: .95rem;
  color: var(--gold); letter-spacing: .1em;
}
.practice h3 { color: var(--bone); }
.practice p { color: #bcc5b6; font-size: .96rem; line-height: 1.7; }
.practice__meta {
  margin-top: auto; padding-top: .5rem;
  font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sand);
  opacity: .8;
}

/* --- Journey / portfolio -------------------------------------------------- */
.journey { display: grid; gap: clamp(3.5rem, 8vw, 7rem); }
.chapter {
  display: grid; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 880px) {
  .chapter { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
  .chapter:nth-child(even) .chapter__media { order: 2; }
}
.chapter__media { position: relative; }
.chapter__media img {
  width: 100%; border-radius: 4px; aspect-ratio: 4 / 3; object-fit: cover;
  box-shadow: 0 30px 70px -45px rgba(18,24,15,.6);
}
.chapter__media--tall img { aspect-ratio: 3 / 4; }
/* let the image keep its own proportions instead of being cropped to a ratio */
.chapter__media--natural img { aspect-ratio: auto; object-fit: contain; }
.chapter__stack { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.chapter__stack img { aspect-ratio: 3 / 4; }
.chapter__place {
  display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem;
  font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--clay);
}
.chapter__place svg { width: 1rem; height: 1rem; }
.chapter__years {
  font-family: var(--font-display); font-size: 1rem; color: var(--muted);
  letter-spacing: .06em; margin-bottom: .35rem;
}
.chapter h3 { margin-bottom: 1rem; }
.chapter p { color: #4a5245; }
.chapter__tags {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem;
}
.tag {
  font-size: .64rem; letter-spacing: .16em; text-transform: uppercase;
  padding: .4rem .85rem; border: 1px solid rgba(18,24,15,.2); border-radius: 999px;
  color: var(--muted);
}
.section--dark .tag { border-color: rgba(226,213,189,.28); color: var(--sand); }

/* --- Gallery -------------------------------------------------------------- */
/* Uniform grid rather than masonry, so the block ends on a flush bottom edge.
   There are 22 tiles: 2 columns divides evenly, 3 and 4 leave 1 and 2 orphans,
   which the rules below widen into full-width closing strips. Change those rules
   if the number of tiles changes. */
.gallery {
  display: grid; gap: clamp(.6rem, 1.2vw, 1rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 1000px) { .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1400px) { .gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

@media (min-width: 1000px) and (max-width: 1399px) {
  .gallery__item:last-child { grid-column: span 3; }
  .gallery__item:last-child img { aspect-ratio: 24 / 7; }
}
@media (min-width: 1400px) {
  .gallery__item:nth-last-child(-n+2) { grid-column: span 2; }
  .gallery__item:nth-last-child(-n+2) img { aspect-ratio: 16 / 9; }
}
.gallery__item {
  position: relative; margin: 0; width: 100%;
  border-radius: 3px; overflow: hidden; background: var(--ink-soft);
}
.gallery__item img {
  width: 100%; height: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  transition: transform .8s var(--ease), filter .5s var(--ease);
}
.gallery__item:hover img { transform: scale(1.045); }
.gallery__item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.4rem 1.1rem .95rem;
  background: linear-gradient(180deg, rgba(8,12,7,0), rgba(8,12,7,.85));
  color: var(--bone); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gallery__item:hover figcaption,
.gallery__item:focus-visible figcaption { opacity: 1; transform: none; }

/* --- Lightbox ------------------------------------------------------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 150;
  display: grid; place-items: center; padding: clamp(1rem, 4vw, 3rem);
  background: rgba(8,12,7,.94);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%; max-height: 82svh; width: auto; border-radius: 3px;
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.9);
}
.lightbox__cap {
  margin-top: 1.1rem; text-align: center; color: var(--sand);
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
}
.lightbox__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 3rem; height: 3rem; border-radius: 50%;
  border: 1px solid rgba(226,213,189,.35); color: var(--bone);
  display: grid; place-items: center;
  transition: background-color .3s var(--ease);
}
.lightbox__btn:hover { background: rgba(226,213,189,.16); }
.lightbox__btn--prev { left: clamp(.5rem, 2vw, 2rem); }
.lightbox__btn--next { right: clamp(.5rem, 2vw, 2rem); }
.lightbox__close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); transform: none; }

/* --- Credentials ---------------------------------------------------------- */
.creds { display: grid; gap: clamp(2rem, 5vw, 4rem); }
@media (min-width: 900px) { .creds { grid-template-columns: minmax(0,1fr) minmax(0,1fr); } }
.cred-list { border-top: 1px solid rgba(226,213,189,.2); }
.cred {
  display: grid; gap: .3rem 2rem; padding-block: 1.5rem;
  border-bottom: 1px solid rgba(226,213,189,.2);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 560px) { .cred { grid-template-columns: 7rem minmax(0, 1fr); } }
.cred__year {
  font-family: var(--font-display); font-size: 1.05rem; color: var(--gold); letter-spacing: .05em;
}
.cred__name { font-size: 1.02rem; color: var(--bone); }
.cred__where { font-size: .85rem; color: #a4ae9c; }

/* --- Fit / lodge ---------------------------------------------------------- */
.fit-grid {
  display: grid; gap: clamp(1.25rem, 2.5vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}
.fit {
  padding: clamp(1.5rem, 3vw, 2.1rem);
  background: var(--bone); border: 1px solid rgba(18,24,15,.1); border-radius: 4px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.fit:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -35px rgba(18,24,15,.5); }
.fit__icon {
  width: 2.6rem; height: 2.6rem; margin-bottom: 1.1rem;
  display: grid; place-items: center; border-radius: 50%;
  background: rgba(168,106,69,.12); color: var(--clay);
}
.fit__icon svg { width: 1.25rem; height: 1.25rem; }
.fit h3 { font-size: 1.3rem; margin-bottom: .55rem; }
.fit p { font-size: .95rem; color: var(--muted); line-height: 1.65; }

/* --- Quote ---------------------------------------------------------------- */
.quote {
  position: relative; padding-block: clamp(5rem, 12vw, 9rem);
  color: var(--bone); text-align: center; isolation: isolate; overflow: hidden;
}
.quote__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.quote__media picture { display: block; width: 100%; height: 100%; }
.quote__media img { width: 100%; height: 100%; object-fit: cover; }
.quote::before {
  content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(10,15,9,.62);
}
.quote blockquote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.6rem, 1.1rem + 2.6vw, 3.1rem); line-height: 1.25;
  max-width: 22ch; margin-inline: auto;
}
.quote cite {
  display: block; margin-top: 2rem; font-style: normal;
  font-size: .7rem; letter-spacing: .28em; text-transform: uppercase; color: var(--sand);
}

/* --- FAQ ------------------------------------------------------------------ */
.faq { max-width: 58rem; }
.faq details {
  border-bottom: 1px solid rgba(18,24,15,.14);
}
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
  padding-block: 1.5rem; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: clamp(1.15rem, 1rem + .6vw, 1.5rem);
  transition: color .3s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--clay); }
.faq summary::after {
  content: "+"; flex: none; font-size: 1.5rem; line-height: 1; color: var(--clay);
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 1.6rem; color: var(--muted); max-width: 68ch; }

/* --- Contact -------------------------------------------------------------- */
.contact__grid {
  display: grid; gap: clamp(2.5rem, 6vw, 4.5rem); align-items: start;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 940px) {
  .contact__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
}
.contact-list { display: grid; gap: 1px; background: rgba(226,213,189,.2); margin-top: 2.5rem; }
.contact-item {
  display: flex; align-items: center; gap: 1.1rem; padding: 1.25rem .25rem;
  background: var(--ink); text-decoration: none;
  transition: padding-left .35s var(--ease);
}
.contact-item:hover { padding-left: 1rem; }
.contact-item__icon {
  width: 2.5rem; height: 2.5rem; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(226,213,189,.3); color: var(--gold);
}
.contact-item__icon svg { width: 1.05rem; height: 1.05rem; }
.contact-item__label {
  display: block; font-size: .64rem; letter-spacing: .22em;
  text-transform: uppercase; color: #98a291;
}
.contact-item__value { display: block; color: var(--bone); font-size: 1.02rem; }

.calendly {
  border: 1px solid rgba(226,213,189,.22); border-radius: 4px; overflow: hidden;
  background: rgba(248,244,236,.03);
}
.calendly__head { padding: 1.6rem clamp(1.25rem, 3vw, 2rem) 0; }
.calendly__head h3 { color: var(--bone); font-size: 1.7rem; margin-bottom: .5rem; }
.calendly__head p { color: #b3bdad; font-size: .95rem; }
.calendly__embed {
  min-width: 320px; height: 660px; margin-top: 1rem;
}
.calendly__embed iframe { width: 100%; height: 100%; border: 0; }
.calendly__fallback { padding: 1.5rem clamp(1.25rem, 3vw, 2rem) 2rem; }

/* --- Footer --------------------------------------------------------------- */
.site-footer {
  background: var(--ink); color: #9aa493;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem;
  border-top: 1px solid rgba(226,213,189,.14);
}
.footer__top {
  display: flex; flex-wrap: wrap; gap: 2rem;
  justify-content: space-between; align-items: flex-start;
  padding-bottom: 2.5rem;
}
.footer__word {
  font-family: var(--font-display); font-size: clamp(2rem, 1.2rem + 3vw, 3.4rem);
  color: var(--bone); line-height: 1.05; max-width: 14ch;
}
.footer__nav { display: flex; flex-wrap: wrap; gap: 1rem 2rem; }
.footer__nav a {
  text-decoration: none; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  transition: color .3s var(--ease);
}
.footer__nav a:hover { color: var(--gold); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: .75rem 2rem; justify-content: space-between;
  padding-top: 1.75rem; border-top: 1px solid rgba(226,213,189,.14);
  font-size: .74rem; letter-spacing: .06em;
}
.footer__bottom a { text-decoration: none; }
.footer__bottom a:hover { color: var(--gold); }

/* --- Floating WhatsApp ---------------------------------------------------- */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  z-index: 90; width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: #1faa54; color: #fff; display: grid; place-items: center;
  box-shadow: 0 14px 34px -12px rgba(31,170,84,.7);
  transition: transform .35s var(--ease), opacity .35s var(--ease);
  opacity: 0; transform: scale(.6); pointer-events: none;
}
.wa-float.is-shown { opacity: 1; transform: none; pointer-events: auto; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 1.6rem; height: 1.6rem; }

/* --- Reveal animation ----------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); }
.reveal.is-visible {
  opacity: 1; transform: none;
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* --- Print ---------------------------------------------------------------- */
@media print {
  .site-header, .wa-float, .hero__scroll, .lightbox, .ticker { display: none !important; }
  body { background: #fff; color: #000; }
  .section--dark { background: #fff; color: #000; }
}
