/* ============================================================
   Stone Health + Aesthetics
   Palette hierarchy (dominant → accent):
     1. Archive Paper      #F3EDE4  (dominant background)
     2. Apothecary Brass   #C4B08A  (primary accent / CTAs)
     3. Vintage Ink        #3A3A3A  (text + deep surfaces)
     4. Compassion Pink    #E5C7C3
     5. Mauve Petal        #D8A5B3
     6. Mural Heather      #BF95A3
     7. Deep Forest Green  #2F4F2F  (sparing signature accent)
   ============================================================ */

:root {
  /* 1 — Archive Paper (base) */
  --cream: #F3EDE4;
  --cream-soft: #FAF6EF;
  /* 2 — Apothecary Brass */
  --brass: #C4B08A;
  /* 3 — Vintage Ink */
  --ink: #3A3A3A;
  --ink-night: #2B2B2B;   /* deep charcoal surfaces (nav, marquee, footer) */
  /* 4–6 — pinks */
  --rose: #E5C7C3;
  --mauve: #D8A5B3;
  --heather: #BF95A3;
  --heather-deep: #8C5F70; /* darkened for small text on paper (WCAG contrast) */
  /* 7 — Deep Forest Green (sparing accent) */
  --forest: #2F4F2F;
  --forest-deep: #233D23;
  --forest-night: #1B301B;

  --font-display: "Italiana", serif;
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Jost", sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 4.5rem;
  --radius: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

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

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

.container {
  width: min(100% - 3rem, 75rem);
  margin-inline: auto;
}

em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

::selection { background: var(--brass); color: var(--ink-night); }

/* visible keyboard focus everywhere */
:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 1100;
  background: var(--forest-night);
  color: var(--cream);
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  transition: top 0.3s var(--ease-out);
}
.skip-link:focus-visible { top: 1rem; }

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.45s var(--ease-out), background-color 0.45s, color 0.45s, border-color 0.45s, box-shadow 0.45s;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn--cream { background: var(--cream); color: var(--forest-deep); }
.btn--cream:hover { background: #fff; box-shadow: 0 14px 30px rgba(0,0,0,0.25); }

.btn--brass { background: var(--brass); color: var(--forest-night); }
.btn--brass:hover { background: #d4c2a0; box-shadow: 0 10px 24px rgba(196,176,138,0.35); }

.btn--forest { background: var(--forest); color: var(--cream); }
.btn--forest:hover { background: var(--forest-deep); box-shadow: 0 14px 30px rgba(47,79,47,0.3); }

.btn--ghost { background: transparent; color: var(--cream); border-color: rgba(243,237,228,0.55); }
.btn--ghost:hover { background: rgba(243,237,228,0.12); border-color: var(--cream); }

.btn--lg { padding: 1.15rem 2.8rem; font-size: 0.85rem; }

/* ============ Navigation ============ */
.nav {
  position: sticky;
  top: 1rem;
  z-index: 999;
  padding-inline: clamp(0.75rem, 3vw, 3.75rem);
  transition: top 0.5s var(--ease-out);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: rgba(43, 43, 43, 0.32);
  border: 1px solid rgba(243,237,228,0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background-color 0.5s, box-shadow 0.5s, padding 0.5s var(--ease-out);
}

.nav.is-scrolled .nav__inner {
  background: rgba(43, 43, 43, 0.9);
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
  padding-block: 0.65rem;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  color: var(--cream);
}
.nav__logo-img {
  height: clamp(2.9rem, 6vw, 3.6rem);
  width: auto;
  display: block;
}
.nav__logo-o { color: var(--brass); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.2rem);
}

.nav__link {
  position: relative;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-block: 0.3rem;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta { padding: 0.7rem 1.6rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  height: 88svh;
  min-height: 640px;
  max-height: 880px;
  margin-top: calc(-1 * (var(--nav-h) + 1rem));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--cream);
}

.hero__media { position: absolute; inset: 0; }
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  animation: heroZoom 2.4s var(--ease-out) forwards;
  will-change: transform;
}
@keyframes heroZoom { to { transform: scale(1.02); } }

.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31,31,31,0.5) 0%, rgba(31,31,31,0.12) 35%, rgba(31,31,31,0.8) 100%),
    linear-gradient(90deg, rgba(31,31,31,0.45) 0%, transparent 60%);
}
/* subtle film grain for atmosphere */
.hero__veil::after {
  content: "";
  position: absolute; inset: 0;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 3rem, 75rem);
  margin-inline: auto;
  padding-bottom: clamp(5rem, 12vh, 8.5rem);
}

.hero__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.4rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.9rem, 7.5vw, 6.2rem);
  line-height: 1.04;
  letter-spacing: 0.015em;
  margin-bottom: 1.6rem;
  color: #fff;
}
.hero__title em { color: var(--rose); }

.hero__statement {
  max-width: 36rem;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  color: rgba(243,237,228,0.88);
  margin-bottom: 2.2rem;
}

.hero__actions span { display: inline-flex; flex-wrap: wrap; gap: 0.9rem; }

/* line-reveal animation */
.reveal-line { display: block; overflow: hidden; }
.reveal-line > span {
  display: inline-block;
  transform: translateY(115%);
  animation: lineUp 1.1s var(--ease-out) forwards;
  animation-delay: calc(var(--d, 0) * 1s);
}
.hero .reveal-line:nth-of-type(1) > span { --d: 0.15; }
.hero__title .reveal-line:nth-child(1) > span { --d: 0.3; }
.hero__title .reveal-line:nth-child(2) > span { --d: 0.42; }
.hero__title .reveal-line:nth-child(3) > span { --d: 0.54; }
.hero__statement > span { --d: 0.75; }
.hero__actions > span { --d: 0.9; }

/* the buttons live inside a reveal-line clip; once the slide-up reveal has
   finished, JS adds .is-revealed to unclip so the hover lift + shadow
   aren't cut off (see js/main.js) */
.hero__actions.reveal-line.is-revealed { overflow: visible; }
@keyframes lineUp { to { transform: translateY(0); } }

.hero__scrollcue {
  position: absolute;
  right: clamp(1.5rem, 4vw, 3.75rem);
  bottom: 2.2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: rgba(243,237,228,0.8);
  text-decoration: none;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
.hero__scrollcue-text { writing-mode: vertical-rl; }
.hero__scrollcue-line {
  width: 1px; height: 56px;
  background: rgba(243,237,228,0.4);
  position: relative;
  overflow: hidden;
}
.hero__scrollcue-line::after {
  content: "";
  position: absolute;
  left: 0; top: -100%;
  width: 100%; height: 100%;
  background: var(--brass);
  animation: cueDrop 2.2s var(--ease-out) infinite;
}
@keyframes cueDrop {
  0% { top: -100%; }
  55% { top: 0; }
  100% { top: 110%; }
}

/* ============ Marquee ============ */
.marquee {
  background: var(--ink-night);
  color: var(--brass);
  overflow: hidden;
  padding-block: 1.1rem;
  border-block: 1px solid rgba(196,176,138,0.25);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__track i { font-style: normal; font-size: 0.7rem; color: var(--heather); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ Section heads ============ */
.section-head { max-width: 44rem; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.section-head__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--heather-deep);
  margin-bottom: 1rem;
}
.section-head__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.section-head__title em { color: var(--heather-deep); }
.section-head__copy { font-size: 1.05rem; color: var(--ink); }

.section-head--light .section-head__title { color: var(--cream); }
.section-head--light .section-head__copy { color: rgba(243,237,228,0.8); }
.section-head--light .section-head__eyebrow { color: var(--rose); }

/* ============ Services ============ */
.services {
  background: var(--cream);
  padding-block: clamp(4.5rem, 10vw, 7.5rem);
}

.services__list { border-top: 1px solid rgba(58,58,58,0.18); }

.service { border-bottom: 1px solid rgba(58,58,58,0.18); }

.service__head {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  width: 100%;
  padding: clamp(1.4rem, 3vw, 2rem) 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: padding-left 0.5s var(--ease-out);
}
.service__head:hover { padding-left: 1rem; }

.service__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--brass);
  min-width: 2rem;
}

.service__name {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: color 0.4s;
}
.service__name small {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.55em;
  color: var(--heather-deep);
  letter-spacing: 0.02em;
}
.service__head:hover .service__name { color: var(--heather-deep); }

.service__icon {
  position: relative;
  width: 2.6rem; height: 2.6rem;
  border: 1px solid rgba(58,58,58,0.3);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background-color 0.45s, border-color 0.45s, transform 0.6s var(--ease-out);
}
.service__icon::before,
.service__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--ink);
  transition: background-color 0.45s, transform 0.45s var(--ease-out);
}
.service__icon::before { width: 12px; height: 1px; transform: translate(-50%, -50%); }
.service__icon::after { width: 1px; height: 12px; transform: translate(-50%, -50%); }

.service.is-open .service__icon {
  background: var(--forest);
  border-color: var(--forest);
  transform: rotate(135deg);
}
.service.is-open .service__icon::before,
.service.is-open .service__icon::after { background: var(--cream); }

.service__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.7s var(--ease-out);
}
.service.is-open .service__body { grid-template-rows: 1fr; }

.service__body-inner {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.service__body-inner img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}
.service__body-inner p {
  max-width: 38rem;
  font-size: 1.05rem;
  color: rgba(58,58,58,0.85);
  padding-bottom: 2rem;
}

.services__cta {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--rose);
  border-radius: calc(var(--radius) * 1.25);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.services__cta p {
  max-width: 32rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.45;
  color: var(--ink);
}

/* ============ About ============ */
.about {
  background: var(--cream-soft);
  padding-block: clamp(4.5rem, 10vw, 7.5rem);
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}

.about__media { position: relative; }

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

.about__accent {
  position: absolute;
  right: -2rem;
  bottom: -2.5rem;
  width: 46%;
  border: 6px solid var(--cream-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transform: rotate(3deg);
}
.about__accent img { aspect-ratio: 1; object-fit: cover; }

.about__copy > p {
  font-size: 1.08rem;
  color: rgba(58,58,58,0.85);
  margin-bottom: 2rem;
  max-width: 36rem;
}

.about__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-block: 1.8rem;
  border-block: 1px solid rgba(58,58,58,0.15);
  margin-bottom: 2.2rem;
}
.stat { display: grid; grid-template-columns: auto auto; align-items: baseline; }
.stat__num, .stat__plus {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--forest);
  line-height: 1;
}
.stat__plus { color: var(--brass); }
.stat__label {
  grid-column: 1 / -1;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(58,58,58,0.75);
  margin-top: 0.5rem;
}

.about__approach h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 1rem;
}

.approach {
  border-bottom: 1px solid rgba(58,58,58,0.15);
  padding-block: 0.9rem;
}
.approach summary {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}
.approach summary::-webkit-details-marker { display: none; }
.approach summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--brass);
  transition: transform 0.45s var(--ease-out);
}
.approach[open] summary::after { transform: rotate(45deg); }
.approach summary:hover { color: var(--heather); }
.approach p {
  padding-top: 0.7rem;
  font-size: 0.98rem;
  color: rgba(58,58,58,0.8);
  max-width: 34rem;
}

/* ============ Testimonials ============ */
.testimonials {
  background: var(--ink-night);
  background-image: radial-gradient(ellipse at 90% -5%, rgba(216,165,179,0.14), transparent 55%),
                    radial-gradient(ellipse at 0% 105%, rgba(196,176,138,0.12), transparent 55%);
  padding-block: clamp(4.5rem, 10vw, 7.5rem);
}

.testimonials__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(270px, 30vw, 360px);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  overflow-x: auto;
  padding-bottom: 1.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--brass) transparent;
}
.testimonials__rail::-webkit-scrollbar { height: 4px; }
.testimonials__rail::-webkit-scrollbar-thumb { background: var(--brass); border-radius: 2px; }

.tcard {
  scroll-snap-align: start;
  background: rgba(243,237,228,0.06);
  border: 1px solid rgba(243,237,228,0.14);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0,0,0,0.28);
  transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}
.tcard:hover {
  transform: translateY(-6px);
  border-color: rgba(196,176,138,0.55);
  box-shadow: 0 22px 50px rgba(0,0,0,0.36);
}

/* before/after slider */
.ba {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
  --pos: 50%;
}
.ba, .ba * {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}
/* while dragging a slider, suppress selection anywhere on the page */
body.ba-dragging {
  -webkit-user-select: none;
  user-select: none;
  cursor: ew-resize;
}
.ba:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: -3px;
  border-radius: 0;
}
.ba img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba__before-wrap {
  position: absolute;
  inset: 0;
  /* clip instead of resizing so before/after crops align exactly */
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.ba__before-wrap img {
  filter: saturate(0.55) contrast(0.92) brightness(0.94);
}
.ba__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 2px;
  background: var(--cream);
  transform: translateX(-1px);
}
.ba__handle span {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 2.4rem; height: 2.4rem;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
.ba__handle span::before {
  content: "◂ ▸";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--forest);
}
.ba__tag {
  position: absolute;
  top: 0.8rem;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.ba__tag--before { left: 0.8rem; background: rgba(27,48,27,0.55); color: var(--cream); }
.ba__tag--after { right: 0.8rem; background: rgba(243,237,228,0.8); color: var(--forest-deep); }

.tcard__meta { padding: 1.4rem 1.5rem 1.6rem; }
.tcard__quote {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 1.1rem;
}
.tcard__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.tcard__service { color: var(--rose); }
.tcard__invest { color: var(--brass); }

/* ============ CTA band ============ */
.cta-band {
  background: var(--cream);
  padding-block: clamp(4.5rem, 10vw, 7rem);
}
.cta-band__inner {
  background: linear-gradient(135deg, var(--forest-deep), var(--forest) 55%, #3d5f3d);
  border-radius: calc(var(--radius) * 1.5);
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.75rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(229,199,195,0.18), transparent 45%),
              radial-gradient(circle at 85% 80%, rgba(196,176,138,0.18), transparent 45%);
}
.cta-band__inner h2 {
  position: relative;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 2.2rem;
}
.cta-band__inner h2 em { color: var(--rose); }
.cta-band__inner .btn { position: relative; }

/* ============ Footer ============ */
.footer {
  background: var(--ink-night);
  color: rgba(243,237,228,0.85);
  padding-top: clamp(4rem, 8vw, 6rem);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.footer__logo-img {
  height: clamp(3.4rem, 7vw, 4.6rem);
  width: auto;
  max-width: 100%;
  display: block;
}
.footer__tagline {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  color: rgba(243,237,228,0.72);
  max-width: 18rem;
}

.footer h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--cream);
  margin-bottom: 0.9rem;
}
.footer__info h3 + h3, .footer__info h3:not(:first-child) { margin-top: 2rem; }

/* Right-align the studio info column on desktop (2-col footer) */
.footer__info { text-align: right; }
.footer__hours { margin-left: auto; }

.footer address {
  font-style: normal;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}
.footer__link {
  color: var(--brass);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.footer__link:hover { border-color: var(--brass); }

.footer__hours { list-style: none; max-width: 16rem; }
.footer__hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding-block: 0.45rem;
  border-bottom: 1px solid rgba(243,237,228,0.12);
}
.footer__hours li span:first-child { color: rgba(243,237,228,0.6); }

.footer__form form { display: grid; gap: 1rem; }
.footer__form label { display: grid; gap: 0.35rem; }
.footer__form label span {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(243,237,228,0.78);
}
.footer__form input,
.footer__form textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--cream);
  background: rgba(243,237,228,0.07);
  border: 1px solid rgba(243,237,228,0.18);
  border-radius: 0.8rem;
  padding: 0.8rem 1rem;
  transition: border-color 0.3s, background-color 0.3s;
  resize: vertical;
}
.footer__form input:focus,
.footer__form textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: rgba(243,237,228,0.11);
}
.footer__form input.has-error,
.footer__form textarea.has-error {
  border-color: var(--mauve);
  background: rgba(216,165,179,0.12);
}
.footer__form .btn { justify-self: start; border: none; }
.footer__form .btn:disabled { opacity: 0.6; cursor: progress; }

/* honeypot — visually + functionally hidden, still in the DOM for bots */
.footer__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer__status {
  font-size: 0.88rem;
  line-height: 1.5;
  min-height: 1.2em;
  margin-top: 0.2rem;
}
.footer__status.is-success { color: var(--rose); }
.footer__status.is-error { color: var(--mauve); }

.footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block: 1.6rem;
  border-top: 1px solid rgba(243,237,228,0.12);
  font-size: 0.8rem;
  color: rgba(243,237,228,0.7);
}
.footer__top {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer__top:hover { color: var(--brass); }

/* ============ Scroll reveal ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: calc(var(--stagger, 0) * 90ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .reveal-line > span { transform: none; }
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 26rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__form { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav { padding-inline: 0.75rem; top: 0.75rem; }

  .nav__toggle { display: flex; }

  .nav__links {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0.75rem; right: 0.75rem;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 0.4rem;
    background: rgba(27,48,27,0.96);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(243,237,228,0.14);
    border-radius: 1.5rem;
    padding: 1.25rem;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.4s, transform 0.45s var(--ease-out);
  }
  .nav.menu-open .nav__links {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav__link { padding-block: 0.65rem; }
  .nav__cta { margin-top: 0.5rem; }

  .nav.menu-open .nav__toggle span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .nav.menu-open .nav__toggle span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

  .service__body-inner { grid-template-columns: 1fr; gap: 1rem; }
  .service__body-inner img { margin-bottom: 0; max-width: 22rem; }
  .service__body-inner p { padding-bottom: 1.75rem; }

  .services__cta { flex-direction: column; align-items: flex-start; }

  .about__accent { right: 0; }

  .footer__grid { grid-template-columns: 1fr; }
  /* stacked footer — return studio info to left-aligned */
  .footer__info { text-align: left; }
  .footer__hours { margin-left: 0; }
}
