/* =========================================================
   BODY BY BRYHER — modern editorial fitness site
   Palette: ink black, warm bone, copper accent
   ========================================================= */

:root {
  --ink:        #0d0d0e;
  --ink-soft:   #161618;
  --ink-line:   #26262a;
  --bone:       #f4efe7;
  --bone-soft:  #ebe5d8;
  --paper:      #faf7f1;
  --copper:     #c08552;
  --copper-2:   #d99a63;
  --copper-deep:#8d5a36;
  --rose:       #c97062;
  --muted:      #8a8579;

  --ff-display: "Fraunces", "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --ff-body:    "Inter", "Helvetica Neue", Arial, sans-serif;
  --ff-mono:    "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1280px;
  --pad:  clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--copper); color: var(--paper); }

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0;
}

h1 { font-size: clamp(2.6rem, 7.5vw, 6.4rem); font-style: italic; font-weight: 300; }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.7rem); }

p  { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--copper);
  display: inline-block;
}

.lead {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: #2c2c2e;
  max-width: 56ch;
}

/* ---------- Buttons ---------- */

.btn {
  --bg: var(--ink);
  --fg: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform .35s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--ghost    { --bg: transparent; --fg: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.btn--ghost:hover { --bg: var(--ink); --fg: var(--paper); }

.btn--copper   { --bg: var(--copper); --fg: var(--ink); }
.btn--copper:hover { --bg: var(--copper-deep); --fg: var(--paper); }

.btn--bone     { --bg: var(--bone); --fg: var(--ink); }

/* ---------- Layout helpers ---------- */

.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section   { padding-block: clamp(80px, 12vw, 160px); }
.section--tight { padding-block: clamp(60px, 8vw, 110px); }
.section--dark  { background: var(--ink); color: var(--bone); }
.section--bone  { background: var(--bone); }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--bone);
  border-block: 1px solid #1d1d1f;
  overflow: hidden;
  padding-block: 18px;
}
.marquee__track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: scroll 35s linear infinite;
  width: max-content;
}
.marquee__item {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  color: var(--bone);
  display: flex;
  align-items: center;
  gap: 56px;
}
.marquee__item::after {
  content: "✦";
  color: var(--copper);
  font-style: normal;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad);
  transition: background .3s var(--ease), backdrop-filter .3s var(--ease), color .3s var(--ease);
  color: var(--bone);
}
.nav.is-scrolled {
  background: rgba(13,13,14,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(244,239,231,0.08);
}
.nav.is-light:not(.is-scrolled) { color: var(--ink); }

.nav__brand {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.nav__brand .mark {
  font-family: var(--ff-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav__links a { position: relative; padding-block: 4px; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--copper);
  color: var(--ink);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background .25s var(--ease), color .25s var(--ease), transform .35s var(--ease);
}
.nav__cta:hover { background: var(--bone); transform: translateY(-2px); }
.nav__cta::after { content: "→"; }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
}
.nav__burger span {
  display: block; width: 18px; height: 1px;
  background: currentColor;
  position: relative;
}
.nav__burger span::before,
.nav__burger span::after {
  content: ""; position: absolute; left: 0;
  width: 18px; height: 1px; background: currentColor;
  transition: transform .3s var(--ease);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after  { top:  6px; }
body.nav-open .nav__burger span { background: transparent; }
body.nav-open .nav__burger span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav__burger span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .mobile-menu {
    position: fixed; inset: 0; z-index: 49;
    background: var(--ink);
    color: var(--bone);
    display: flex; flex-direction: column;
    align-items: flex-start; justify-content: center;
    padding: 0 var(--pad);
    gap: 28px;
    transform: translateY(-100%);
    transition: transform .55s var(--ease);
  }
  .mobile-menu a {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 8vw, 3.4rem);
    font-style: italic;
  }
  .mobile-menu .btn {
    margin-top: 16px;
    font-family: var(--ff-mono);
    font-style: normal;
    font-size: 11px;
    letter-spacing: 0.16em;
    padding: 14px 22px;
  }
  body.nav-open .mobile-menu { transform: translateY(0); }
  body.nav-open { overflow: hidden; }
}
@media (min-width: 881px) { .mobile-menu { display: none; } }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  color: var(--bone);
  background: var(--ink);
  overflow: hidden;
}

.hero__copy {
  padding: 140px var(--pad) 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  position: relative;
  z-index: 2;
}

.hero__title { color: var(--bone); }
.hero__title em {
  font-style: italic;
  background: linear-gradient(120deg, var(--copper-2) 0%, var(--rose) 60%, var(--copper) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  max-width: 46ch;
  color: rgba(244,239,231,0.78);
  font-size: clamp(1.02rem, 1.15vw, 1.15rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}
.hero__actions .btn--ghost { box-shadow: inset 0 0 0 1px var(--bone); color: var(--bone); }
.hero__actions .btn--ghost:hover { background: var(--bone); color: var(--ink); }

.hero__meta {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(244,239,231,0.12);
  max-width: 540px;
}
.hero__meta .stat { display: grid; gap: 6px; }
.hero__meta .num {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-style: italic;
  color: var(--copper-2);
}
.hero__meta .lbl {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,239,231,0.6);
}

.hero__visual {
  position: relative;
  overflow: hidden;
}
.hero__visual::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(13,13,14,0.4) 30%, transparent 60%);
  z-index: 2;
  pointer-events: none;
}
.hero__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  transition: transform 1.2s var(--ease);
}
.hero.is-loaded .hero__visual img { transform: scale(1); }

.hero__sticker {
  position: absolute;
  right: var(--pad);
  bottom: 38px;
  z-index: 3;
  width: 132px; height: 132px;
  display: grid;
  place-items: center;
  color: var(--bone);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: spin 24s linear infinite;
}
.hero__sticker svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__sticker .core {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--copper);
  display: grid; place-items: center;
  color: var(--ink);
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 26px;
  animation: spin-rev 24s linear infinite;
}
@keyframes spin     { to { transform: rotate(360deg); } }
@keyframes spin-rev { to { transform: rotate(-360deg); } }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__copy { padding: 120px var(--pad) 60px; }
  .hero__visual { height: 70vh; min-height: 480px; order: -1; }
  .hero__visual::before {
    background: linear-gradient(0deg, var(--ink) 0%, rgba(13,13,14,0.35) 35%, transparent 70%);
  }
  .hero__visual img { object-position: center 25%; }
  .hero__sticker { right: 20px; bottom: 20px; width: 96px; height: 96px; }
  .hero__sticker .core { width: 42px; height: 42px; font-size: 20px; }
}

/* =========================================================
   ABOUT / INTRO
   ========================================================= */

.about {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
}
.about__visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}
.about__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.about__visual:hover img { transform: scale(1.04); }

.about__visual::after {
  content: "BIKINI \A BODYBUILDER";
  white-space: pre;
  position: absolute;
  right: -10px; bottom: 30px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--copper);
  background: var(--ink);
  padding: 14px 8px;
}

.about__copy { display: grid; gap: 20px; }
.about__copy h2 em {
  font-style: italic;
  color: var(--copper-deep);
}
.about__sig {
  margin-top: 16px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
}
.about__sig small {
  display: block;
  font-family: var(--ff-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

@media (max-width: 880px) {
  .about { grid-template-columns: 1fr; }
}

/* =========================================================
   PILLARS
   ========================================================= */
.pillars__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 60px;
}
.pillars__head h2 { max-width: 16ch; }
.pillars__head p  { color: rgba(244,239,231,0.7); max-width: 50ch; }

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(244,239,231,0.1);
  border: 1px solid rgba(244,239,231,0.1);
}
.pillar {
  background: var(--ink);
  padding: 48px 32px;
  display: grid;
  gap: 18px;
  align-content: start;
  position: relative;
  transition: background .4s var(--ease);
}
.pillar:hover { background: var(--ink-soft); }
.pillar__num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--copper);
}
.pillar__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid rgba(244,239,231,0.18);
  border-radius: 999px;
  color: var(--copper-2);
}
.pillar h3 { color: var(--bone); font-style: italic; }
.pillar p  { color: rgba(244,239,231,0.7); font-size: 15px; }
.pillar__tag {
  margin-top: 10px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,239,231,0.5);
}

@media (max-width: 980px) { .pillars__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .pillars__grid { grid-template-columns: 1fr; } .pillars__head { grid-template-columns: 1fr; } }

/* =========================================================
   QUOTE BANNER
   ========================================================= */
.quote {
  background: var(--bone);
  color: var(--ink);
  text-align: center;
  padding-block: clamp(80px, 11vw, 130px);
}
.quote blockquote {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.1;
  max-width: 22ch;
  margin: 16px auto 28px;
  letter-spacing: -0.02em;
}
.quote blockquote em {
  background: linear-gradient(120deg, var(--copper-deep), var(--copper));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.quote cite {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--muted);
}

/* =========================================================
   APPROACH / METHOD
   ========================================================= */
.method__head { display: grid; gap: 20px; max-width: 720px; margin-bottom: 70px; }

.method__list { display: grid; gap: 0; border-top: 1px solid var(--ink-line); }
.method__row {
  display: grid;
  grid-template-columns: 90px 1fr 1fr 60px;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--ink-line);
  align-items: start;
  cursor: pointer;
  transition: padding .35s var(--ease);
}
.method__row:hover { padding-inline: 16px; }
.method__row .num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--copper);
  padding-top: 8px;
}
.method__row h3 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-style: italic;
  font-weight: 400;
}
.method__row p { color: #3a3a3d; max-width: 56ch; margin: 0; }
.method__row .arrow {
  font-family: var(--ff-display);
  font-size: 30px;
  color: var(--copper);
  justify-self: end;
  transition: transform .35s var(--ease);
}
.method__row:hover .arrow { transform: translateX(8px) rotate(-12deg); }

@media (max-width: 720px) {
  .method__row { grid-template-columns: 60px 1fr; gap: 12px 20px; }
  .method__row p { grid-column: 2 / -1; }
  .method__row .arrow { display: none; }
}

/* =========================================================
   GALLERY / RESULTS
   ========================================================= */
.gallery__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.gtile {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-radius: 4px;
}
.gtile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.gtile:hover img { transform: scale(1.06); }
.gtile__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  background: linear-gradient(0deg, rgba(13,13,14,0.85), transparent);
  color: var(--bone);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: end;
}
.gtile__cap em { color: var(--copper-2); font-style: normal; }

.gtile.t1 { grid-column: span 5; aspect-ratio: 4/5; }
.gtile.t2 { grid-column: span 7; aspect-ratio: 16/11; }
.gtile.t3 { grid-column: span 4; aspect-ratio: 1/1; }
.gtile.t4 { grid-column: span 4; aspect-ratio: 1/1; }
.gtile.t5 { grid-column: span 4; aspect-ratio: 1/1; }

@media (max-width: 880px) {
  .gallery__head { grid-template-columns: 1fr; }
  .gtile.t1 { grid-column: span 12; aspect-ratio: 4/5; }
  .gtile.t2 { grid-column: span 12; aspect-ratio: 16/10; }
  .gtile.t3, .gtile.t4, .gtile.t5 { grid-column: span 12; aspect-ratio: 4/3; }
}

/* =========================================================
   COFFEE / SUPPORT CTA
   ========================================================= */
.coffee {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--ink);
  color: var(--bone);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--ink-line);
}
.coffee__copy { padding: clamp(40px, 6vw, 80px); display: grid; gap: 22px; align-content: center; }
.coffee__copy h2 em { color: var(--copper-2); font-style: italic; }
.coffee__visual { position: relative; min-height: 360px; overflow: hidden; }
.coffee__visual img { width: 100%; height: 100%; object-fit: cover; }
.coffee__visual::after {
  content: "☕";
  position: absolute;
  top: 24px; right: 24px;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--copper);
  color: var(--ink);
  border-radius: 999px;
  font-size: 22px;
}
@media (max-width: 880px) {
  .coffee { grid-template-columns: 1fr; }
  .coffee__visual { min-height: 320px; order: -1; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: var(--bone);
  padding: 80px var(--pad) 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(244,239,231,0.1);
}
.footer__brand {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.footer__brand small {
  display: block;
  font-family: var(--ff-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 16px;
}
.footer h4 {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(244,239,231,0.5);
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { color: var(--bone); transition: color .2s var(--ease); }
.footer ul a:hover { color: var(--copper-2); }
.footer__bottom {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding-top: 28px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,239,231,0.5);
}

@media (max-width: 720px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__top { grid-template-columns: 1fr; } }

/* =========================================================
   SERVICES PAGE
   ========================================================= */

.page-hero {
  position: relative;
  min-height: 70svh;
  display: grid;
  align-items: end;
  padding: 180px var(--pad) 60px;
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url("images/training-mirror.jpg") center 25% / cover no-repeat;
  opacity: 0.55;
  filter: grayscale(20%);
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,14,0.7) 0%, rgba(13,13,14,0.4) 50%, var(--ink) 100%);
}
.page-hero__inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.page-hero h1 { color: var(--bone); max-width: 14ch; }
.page-hero h1 em { font-style: italic; color: var(--copper-2); }
.page-hero p  { max-width: 50ch; color: rgba(244,239,231,0.78); margin-top: 18px; }

.service-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--ink-line);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 28px;
}
.service-card:nth-child(even) { grid-template-columns: 1.4fr 1fr; }
.service-card:nth-child(even) .service-card__visual { order: 2; }

.service-card__visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--ink);
}
.service-card__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.service-card:hover .service-card__visual img { transform: scale(1.05); }
.service-card__badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--copper);
  color: var(--ink);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
}

.service-card__body {
  padding: clamp(36px, 4.5vw, 64px);
  display: grid;
  align-content: center;
  gap: 22px;
}
.service-card__body h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.service-card__body h2 em { font-style: italic; color: var(--copper-deep); }
.service-card__price {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 26px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--ink);
}
.service-card__price small {
  font-family: var(--ff-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.service-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.service-card__list li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: #2c2c2e;
}
.service-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 16px; height: 1px;
  background: var(--copper);
}

@media (max-width: 880px) {
  .service-card,
  .service-card:nth-child(even) { grid-template-columns: 1fr; }
  .service-card:nth-child(even) .service-card__visual { order: -1; }
  .service-card__visual { min-height: 320px; }
}

/* FAQ */
.faq {
  max-width: 880px;
  margin: 0 auto;
}
.faq__item {
  border-top: 1px solid rgba(13,13,14,0.12);
  padding: 22px 0;
}
.faq__item:last-child { border-bottom: 1px solid rgba(13,13,14,0.12); }
.faq__q {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  font-family: var(--ff-display);
  font-style: normal;
  font-size: 28px;
  color: var(--copper);
  transition: transform .35s var(--ease);
}
.faq__item[open] .faq__q::after { content: "−"; }
.faq__a { color: #3a3a3d; padding-top: 14px; max-width: 68ch; }

/* =========================================================
   CONNECT (Buy Me a Coffee redirect block)
   ========================================================= */
.connect {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 24px;
  justify-items: center;
}
.connect .eyebrow::before,
.connect .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--copper);
  display: inline-block;
}
.connect h2 {
  max-width: 18ch;
}
.connect h2 em { font-style: italic; color: var(--copper-deep); }
.connect .lead { margin: 0 auto; }

.connect__actions {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.btn--lg {
  padding: 20px 36px;
  font-size: 13px;
  letter-spacing: 0.22em;
}

.connect__meta {
  margin: 28px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(13,13,14,0.12);
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  width: 100%;
  max-width: 600px;
}
.connect__meta li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4a4a4d;
}
.connect__meta li svg { color: var(--copper); flex-shrink: 0; }

@media (max-width: 640px) {
  .connect__meta { flex-direction: column; align-items: center; gap: 14px; }
}

/* =========================================================
   CONTACT FORM (legacy — no longer used on live pages,
   kept so old anchors and historical builds still render cleanly)
   ========================================================= */
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.contact__copy { display: grid; gap: 22px; }
.contact__copy h2 em { font-style: italic; color: var(--copper-deep); }
.contact__copy .lead { max-width: 46ch; }

.contact__meta {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
  border-top: 1px solid rgba(13,13,14,0.12);
  padding-top: 22px;
}
.contact__meta li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2c2c2e;
}
.contact__meta li svg { color: var(--copper); flex-shrink: 0; }
.contact__meta li a { color: inherit; border-bottom: 1px solid rgba(192,133,82,0.4); padding-bottom: 1px; }
.contact__meta li a:hover { color: var(--copper-deep); border-color: var(--copper-deep); }

.contact__form {
  display: grid;
  gap: 18px;
  background: var(--bone);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 6px;
  border: 1px solid rgba(13,13,14,0.08);
}

/* Honeypot — visually hidden, off the focus order */
.hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.field {
  display: grid;
  gap: 8px;
  position: relative;
}
.field--row { grid-column: 1 / -1; }

.field label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(13,13,14,0.14);
  border-radius: 4px;
  padding: 14px 16px;
  width: 100%;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.5; font-family: var(--ff-body); }

.field input:hover,
.field select:hover,
.field textarea:hover { border-color: rgba(13,13,14,0.3); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--copper);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(192,133,82,0.18);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%238a8579' stroke-width='1.5'><path d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.field__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact__form .btn {
  justify-self: start;
  margin-top: 4px;
}

.contact__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #555;
  line-height: 1.5;
}
.contact__consent input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--copper); }

.contact__note {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.contact__note a { color: var(--copper-deep); border-bottom: 1px solid var(--copper-deep); padding-bottom: 1px; }

.contact__status {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink);
}
.contact__status.is-success {
  padding: 14px 16px;
  background: rgba(192,133,82,0.12);
  border-left: 3px solid var(--copper);
  color: var(--copper-deep);
}
.contact__status.is-error {
  padding: 14px 16px;
  background: rgba(201,112,98,0.12);
  border-left: 3px solid var(--rose);
  color: #a14a3d;
}

@media (max-width: 880px) {
  .contact { grid-template-columns: 1fr; }
  .field__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
[data-reveal-delay="5"] { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
