/* Artistry99 — boutique site styles
   Editorial luxury: large type, hand-fitted frames, lavender wash,
   sparkles, mobile-first responsive.
   ============================================================ */

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--off-white);
  color: var(--ink-900);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; opacity: 0; transition: opacity 500ms ease; }
a { color: inherit; }
button { font-family: inherit; }

:root {
  --gutter: clamp(20px, 5vw, 64px);
  --max: 1280px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Sparkle helpers ---------- */
.spark {
  position: absolute;
  color: var(--lavender-800);
  pointer-events: none;
  animation: twinkle 2.4s var(--ease) infinite;
}
.spark--alt { color: var(--lavender-700); animation-delay: 0.6s; }
.spark--dim { color: var(--lavender-500); animation-delay: 1.2s; }
.spark svg { width: 100%; height: 100%; display: block; }
@keyframes twinkle {
  0%, 100% { opacity: 0.85; transform: scale(1) rotate(0deg); }
  50% { opacity: 0.45; transform: scale(0.85) rotate(8deg); }
}

/* ---------- Announcement bar ---------- */
.announcement-bar {
  background: var(--ink-900);
  color: var(--white);
  text-align: center;
  padding: 10px var(--gutter);
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.announcement-bar__code {
  color: var(--lavender-500);
  font-weight: 700;
}

/* ---------- Top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--gutter);
  background: rgba(247, 243, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(22, 18, 20, 0.12);
}
.topbar__word {
  font-family: var(--font-display);
  color: var(--sage-500);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.topbar__nav { display: none; gap: 40px; }
.topbar__nav a {
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.24em; text-transform: uppercase;
  text-decoration: none; color: var(--ink-900);
  transition: color 200ms var(--ease);
  position: relative;
}
.topbar__nav a:hover { color: var(--sage-700); }
.topbar__nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -4px;
  height: 1.5px; background: var(--sage-700);
  transition: right 250ms var(--ease);
}
.topbar__nav a:hover::after { right: 0; }
.topbar__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border: 2px solid var(--border); background: var(--ink-900); color: var(--white);
  border-radius: 999px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: all 200ms var(--ease);
}
.topbar__cta:hover { background: transparent; color: var(--ink-900); }
.topbar__menu {
  width: 40px; height: 40px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; background: transparent; border: 0; cursor: pointer; padding: 0;
}
.topbar__menu span { width: 22px; height: 1.5px; background: var(--ink-900); display: block; }

@media (min-width: 900px) {
  .topbar { padding: 16px var(--gutter); }
  .topbar__nav { display: flex; }
  .topbar__menu { display: none; }
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 40;
  background: linear-gradient(160deg, var(--lavender-50) 0%, var(--lavender-200) 100%);
  display: flex; flex-direction: column;
  padding: 24px var(--gutter) 48px;
  transform: translateY(-100%);
  transition: transform 320ms var(--ease);
  box-shadow: 0 8px 40px rgba(22, 18, 20, 0.18);
}
.drawer.open { transform: translateY(0); }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(22, 18, 20, 0.1);
}
.drawer__close { font-size: 24px; background: transparent; border: 0; cursor: pointer; }
.drawer__nav { display: flex; flex-direction: column; }
.drawer__nav a {
  font-family: var(--font-display); color: var(--sage-500);
  font-size: 44px; line-height: 1; text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(22, 18, 20, 0.08);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.drawer__nav a:hover, .drawer__nav a:active { color: var(--lavender-400); }
.drawer__foot { margin-top: auto; }
.drawer__bullet {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-500); margin-top: 16px;
}

/* ---------- MARQUEE OPENER ---------- */
.opener {
  position: relative;
  border-bottom: 1.5px solid var(--border);
  background: var(--bg-gradient);
  overflow: hidden;
}

.marquee {
  display: flex;
  overflow: hidden;
  border-bottom: 2px solid var(--border);
  background: var(--ink-900);
  color: var(--lavender-200);
  padding: 14px 0;
}
.marquee__track {
  display: flex; flex-shrink: 0;
  animation: scroll 40s linear infinite;
  gap: 48px; padding-right: 48px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1;
  color: var(--lavender-300);
}
.marquee__track span { flex-shrink: 0; }
.marquee__track .star { color: var(--lavender-700); font-family: var(--font-sans); font-size: 0.6em; }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* Editorial intro grid */
.intro {
  padding: clamp(48px, 8vw, 96px) var(--gutter);
  display: grid; gap: clamp(32px, 5vw, 64px);
  grid-template-columns: 1fr;
  max-width: var(--max); margin: 0 auto;
  position: relative;
}
@media (min-width: 900px) {
  .intro { grid-template-columns: 7fr 5fr; align-items: end; }
}

.intro__lede {
  position: relative;
}
.intro__year {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-700);
  display: flex; gap: 12px; align-items: center;
  margin-bottom: 24px;
}
.intro__year::after {
  content: ""; height: 1.5px; background: var(--ink-900); flex: 1;
}
.intro__title {
  font-family: var(--font-display);
  color: var(--sage-500);
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.86;
  letter-spacing: -0.015em;
  margin: 0;
}
.intro__title em {
  font-style: normal; color: var(--ink-900);
  display: inline-block; position: relative;
}
.intro__title .ampersand {
  color: var(--lavender-700);
  display: inline-block;
  transform: translateY(0.06em);
}

.intro__aside {
  display: flex; flex-direction: column; gap: 28px;
  max-width: 420px;
}
.intro__manifesto {
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 28px 28px 24px;
  background: rgba(255, 255, 255, 0.55);
  position: relative;
}
.intro__manifesto p {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
  margin: 0 0 14px;
}
.intro__manifesto p:last-child { margin-bottom: 0; }
.intro__manifesto .spark { width: 28px; height: 28px; top: -16px; right: -14px; }
.intro__signature {
  font-family: var(--font-display);
  color: var(--sage-500);
  font-size: 24px;
  margin-top: 8px;
}

.intro__bullet {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-900);
  align-items: center;
}
.intro__bullet .dot { color: var(--lavender-700); font-size: 1.4em; line-height: 0.5; }

/* Sparkle positioning around intro */
.intro .spark--top { width: 36px; height: 36px; top: 8%; right: 8%; }
.intro .spark--mid { width: 22px; height: 22px; top: 38%; left: -6px; }
.intro .spark--bot { width: 30px; height: 30px; bottom: 14%; right: 38%; }

/* ---------- Opener variant: Editorial split ---------- */
.opener-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 80vh;
  position: relative;
}
@media (min-width: 900px) {
  .opener-split { grid-template-columns: 6fr 5fr; }
}
.opener-split__text {
  padding: clamp(40px, 6vw, 80px) var(--gutter);
  background: var(--bg-gradient);
  position: relative;
  display: flex; flex-direction: column; justify-content: center; gap: 24px;
}
.opener-split__title {
  font-family: var(--font-display);
  color: var(--sage-500);
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.88;
  letter-spacing: -0.015em;
  margin: 0;
}
.opener-split__sub {
  max-width: 460px;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.55;
}
.opener-split__photo {
  background: var(--ink-900);
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
@media (min-width: 900px) {
  .opener-split__photo { aspect-ratio: unset; min-height: unset; }
}
.opener-split__photo .ph {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  display: block;
}
.opener-split__photo .ph::after {
  content: "";
  position: absolute; inset: 24px;
  border: 2px solid rgba(255,255,255,0.4);
}
.opener-split__caption {
  position: absolute; bottom: 24px; left: 24px;
  color: var(--white);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
}

/* ---------- Opener variant: Manifesto ---------- */
.opener-manifesto {
  background: var(--bg-gradient);
  padding: clamp(64px, 10vw, 128px) var(--gutter);
  position: relative;
}
.opener-manifesto__inner {
  max-width: 920px; margin: 0 auto;
  border: 2px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,0.4);
  padding: clamp(32px, 5vw, 72px);
  position: relative;
}
.opener-manifesto__title {
  font-family: var(--font-display);
  color: var(--sage-500);
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: 0.95;
  margin: 0 0 24px;
}
.opener-manifesto__body {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  max-width: 640px;
  margin: 0 0 16px;
}
.opener-manifesto__body em {
  font-style: normal; color: var(--sage-700);
}

/* ============================================================
   SECTION CHROME
   ============================================================ */
.section { padding: clamp(48px, 7vw, 96px) var(--gutter); position: relative; }
.section--lav { background: var(--lavender-100); }
.section--white { background: var(--white); }
.section--dark { background: var(--ink-900); color: var(--white); }
.section__inner { max-width: var(--max); margin: 0 auto; position: relative; }

.eyebrow-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.eyebrow-row__line { flex: 1; height: 1.5px; background: var(--ink-900); opacity: 0.3; }
.section--dark .eyebrow-row__line { background: var(--lavender-300); opacity: 0.4; }
.eyebrow-row__num {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
}
.section-title {
  font-family: var(--font-display);
  color: var(--sage-500);
  font-size: clamp(48px, 7.5vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin: 0 0 32px;
  max-width: 14ch;
}
.section-title--sm {
  font-size: clamp(32px, 4.5vw, 64px);
  margin-bottom: 24px;
}
.section--dark .section-title { color: var(--lavender-300); }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  display: grid;
  grid-template-columns: 1fr;
  border: 2px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
@media (min-width: 700px) {
  .services { grid-template-columns: 1fr 1fr; }
  .services > .service:nth-child(odd) { border-right: 2px solid var(--border); }
}
@media (min-width: 1100px) {
  .services { grid-template-columns: repeat(3, 1fr); }
  .services > .service { border-right: 2px solid var(--border); }
  .services > .service:nth-child(3n) { border-right: 0; }
}
.service {
  padding: clamp(28px, 3.5vw, 48px);
  border-bottom: 2px solid var(--border);
  display: flex; flex-direction: column;
  gap: 16px;
  position: relative;
  background: var(--white);
  transition: background 280ms var(--ease);
  cursor: default;
}
.services > .service:last-child { border-bottom: 0; }
.service:hover { background: var(--lavender-50); }
.service__num {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-500);
}
.service__name {
  font-family: var(--font-display);
  color: var(--sage-500);
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 0.92;
  margin: 0;
}
.service__desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-700);
  max-width: 36ch;
  margin: 0;
}
.service__list {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; flex-direction: column;
}
.service__list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0;
  border-top: 1px dashed var(--ink-100);
  font-size: 13px; letter-spacing: 0.06em;
  gap: 16px;
}
.service__list li:first-child { border-top: 0; }
.service__list .nm { text-transform: uppercase; letter-spacing: 0.2em; font-size: 11px; }
.service__list .pr {
  font-family: var(--font-display); color: var(--ink-900); font-size: 22px; line-height: 1;
}
.service__cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-900); text-decoration: none;
  padding-top: 16px;
}
.service__cta .arrow { transition: transform 240ms var(--ease); display: inline-block; }
.service:hover .service__cta .arrow { transform: translateX(6px); }

.service .spark { width: 24px; height: 24px; top: 16px; right: 16px; }

/* ============================================================
   GALLERY (editorial irregular grid)
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (min-width: 700px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 10px;
  }
  .gallery__tile { aspect-ratio: 3/4; }
  .gallery__tile:first-child {
    grid-column: span 2;
    aspect-ratio: 4/3;
  }
}
@media (min-width: 1100px) {
  .gallery--extended {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}

/* Filmstrip layout — gallery page */
.gallery--strip {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 4px;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  user-select: none;
}
.gallery--strip::-webkit-scrollbar { display: none; }
.gallery--strip.is-dragging { cursor: grabbing; }
.gallery--strip .gallery__tile {
  flex: 0 0 auto;
  width: clamp(140px, 38vw, 240px);
  aspect-ratio: 2/3;
  border-radius: 0;
  border: none;
}
@media (min-width: 700px) {
  .gallery--strip .gallery__tile {
    width: clamp(180px, 20vw, 300px);
  }
}
.gallery--strip .gallery__tile:first-child {
  aspect-ratio: 2/3;
}
@media (min-width: 700px) {
  .gallery--home {
    gap: 28px;
  }
  .gallery--home .gallery__tile {
    border-radius: 4px;
    border-width: 1px;
  }
  .gallery--home .gallery__tile:nth-child(3n+3) {
    margin-top: 36px;
  }
}
.gallery__tile {
  aspect-ratio: 1 / 1;
  border: 2px solid var(--border);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background: var(--lavender-300);
  cursor: pointer;
  will-change: transform;
}
.gallery__tile:hover { border-width: 3px; }
.gallery__tile .gallery__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gallery__label {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(22, 18, 20, 0.65); color: var(--white);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0, 0, 0, 0.9);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 24px;
  cursor: pointer;
}
.lightbox__img {
  max-width: 90vw; max-height: 82vh;
  object-fit: contain;
  display: block;
  cursor: default;
}
.lightbox__close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  color: var(--white); font-size: 32px;
  cursor: pointer; line-height: 1; padding: 8px;
  opacity: 0.8;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__caption {
  margin-top: 14px;
  color: var(--lavender-300);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  cursor: default;
}
.lightbox__link {
  margin-top: 10px;
  color: var(--lavender-400);
  font-size: 12px; letter-spacing: 0.08em;
  text-decoration: none;
}
.lightbox__link:hover { color: var(--white); }

/* ============================================================
   GALLERY / CAROUSEL RESPONSIVE TOGGLE
   ============================================================ */
.gallery-mobile-only { display: block; }
.gallery-desktop-only { display: none; }
@media (min-width: 700px) {
  .gallery-mobile-only { display: none; }
  .gallery-desktop-only { display: block; }
}

/* ============================================================
   HOME CAROUSEL
   ============================================================ */
.carousel {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.carousel__track {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
}
@media (min-width: 700px) {
  .carousel__track { grid-template-columns: 1fr 1.5fr 1fr; }
}
.carousel__slide {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--border);
  aspect-ratio: 3/4;
  position: relative;
}
.carousel__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.carousel__slide--side {
  display: none;
  opacity: 0.35;
  cursor: pointer;
  transition: opacity 200ms ease;
}
.carousel__slide--side:hover { opacity: 0.55; }
@media (min-width: 700px) {
  .carousel__slide--side { display: block; }
}
.carousel__center-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--border);
  aspect-ratio: 3/4;
  position: relative;
}
.carousel__slide--center {
  position: absolute;
  inset: 0;
  border: none;
  border-radius: 0;
  aspect-ratio: unset;
  overflow: visible;
  z-index: 1;
}
.carousel__slide--exiting {
  z-index: 0;
}
.carousel__label {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.55);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}
@keyframes slideInFromRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
@keyframes slideInFromLeft {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}
@keyframes slideOutToLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
@keyframes slideOutToRight {
  from { transform: translateX(0); }
  to   { transform: translateX(100%); }
}
.carousel__slide--enter-right { animation: slideInFromRight 350ms var(--ease) forwards; }
.carousel__slide--enter-left  { animation: slideInFromLeft  350ms var(--ease) forwards; }
.carousel__slide--exit-left   { animation: slideOutToLeft   350ms var(--ease) forwards; }
.carousel__slide--exit-right  { animation: slideOutToRight  350ms var(--ease) forwards; }
.carousel__arrow {
  background: none;
  border: 2px solid var(--border);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: var(--ink-900);
  flex-shrink: 0;
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
}
.carousel__arrow:hover { background: var(--lavender-50); }
.section--dark .carousel__arrow { border-color: rgba(255,255,255,0.2); color: var(--lavender-300); }
.section--dark .carousel__arrow:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }

/* ============================================================
   ARTISTS / TEAM
   ============================================================ */
.artists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) { .artists { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .artists { grid-template-columns: repeat(4, 1fr); } }

.artist {
  display: flex; flex-direction: column; gap: 16px;
  cursor: default;
}
.artist__photo {
  aspect-ratio: 3/4;
  border: 2px solid var(--border);
  border-radius: 12px;
  position: relative; overflow: hidden;
  transition: border-width 200ms var(--ease);
}
.artist:hover .artist__photo { border-width: 3px; }
.artist__photo .ph { position: absolute; inset: 0; }
.artist__photo .ph::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(22,18,20,0.4));
}
.artist__role {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-500);
}
.artist__name {
  font-family: var(--font-display); color: var(--sage-500);
  font-size: 36px; line-height: 1; margin: 0;
}
.artist__spec {
  font-size: 13.5px; line-height: 1.5;
  color: var(--ink-700);
}

/* ============================================================
   TESTIMONIALS — scrolling row
   ============================================================ */
.quotes {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .quotes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .quotes { grid-template-columns: repeat(3, 1fr); } }

.quote {
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  background: var(--white);
  position: relative;
  display: flex; flex-direction: column; gap: 18px;
}
.quote__mark {
  font-family: var(--font-display);
  color: var(--lavender-700);
  font-size: 80px; line-height: 0.6;
  margin-bottom: -20px;
}
.quote__body {
  font-size: 16px; line-height: 1.55;
  margin: 0;
}
.quote__by {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto; padding-top: 18px;
  border-top: 1.5px solid var(--ink-100);
}
.quote__avatar {
  width: 44px; height: 44px; border-radius: 999px;
  background: linear-gradient(150deg, var(--lavender-400), var(--lavender-700));
  flex-shrink: 0;
  border: 1.5px solid var(--border);
}
.quote__avatar.av-2 { background: linear-gradient(150deg, var(--sage-300), var(--sage-700)); }
.quote__avatar.av-3 { background: linear-gradient(150deg, var(--blush), #d68fa6); }
.quote__name {
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 400;
}
.quote__svc { font-size: 11px; color: var(--ink-500); letter-spacing: 0.2em; text-transform: uppercase; }
.quote .spark { width: 22px; height: 22px; top: -10px; right: -10px; }

/* ============================================================
   BOOK CTA
   ============================================================ */
.book {
  position: relative;
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  text-align: center;
  background: var(--ink-900);
  color: var(--white);
  overflow: hidden;
}
.book__title {
  font-family: var(--font-display);
  color: var(--lavender-300);
  font-size: clamp(56px, 10vw, 144px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  max-width: 14ch;
  margin-inline: auto;
}
.book__sub {
  max-width: 560px; margin: 0 auto 40px;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.55;
  color: var(--lavender-200);
}
.book__ctas {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 32px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  border: 2px solid currentColor; background: transparent; color: var(--white);
  border-radius: 999px;
  text-decoration: none; cursor: pointer;
  transition: all 220ms var(--ease);
}
.btn:hover { background: var(--white); color: var(--ink-900); }
.btn:active { transform: scale(0.98); }
.btn--solid { background: var(--lavender-300); color: var(--ink-900); border-color: var(--lavender-300); }
.btn--solid:hover { background: var(--white); border-color: var(--white); }
.btn--ink { background: var(--ink-900); color: var(--white); border-color: var(--ink-900); }
.btn--ink:hover { background: transparent; color: var(--ink-900); }

.book .spark { color: var(--lavender-700); }
.book .spark--1 { width: 44px; height: 44px; top: 12%; left: 8%; }
.book .spark--2 { width: 28px; height: 28px; top: 24%; right: 12%; color: var(--lavender-500); }
.book .spark--3 { width: 36px; height: 36px; bottom: 18%; left: 22%; }
.book .spark--4 { width: 22px; height: 22px; bottom: 12%; right: 24%; color: var(--lavender-500); }
.book .spark--5 { width: 30px; height: 30px; top: 48%; right: 6%; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--lavender-100);
  border-top: 2px solid var(--border);
  padding: clamp(48px, 6vw, 96px) var(--gutter) 96px;
}
.footer__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer__word {
  font-family: var(--font-display); color: var(--sage-500);
  font-size: clamp(56px, 7vw, 96px); line-height: 1; margin: 0 0 12px;
}
.footer__tag {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-700);
}
.footer__col h4 {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  margin: 0 0 18px; font-weight: 400;
}
.footer__col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer__col li, .footer__col a {
  font-size: 14px; line-height: 1.4;
  color: var(--ink-700); text-decoration: none;
}
.footer__col a:hover { color: var(--ink-900); }
.footer__fine {
  max-width: var(--max); margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1.5px solid var(--ink-100);
  display: flex; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-500);
}


/* ============================================================
   QUICK BOOK MODAL (legacy — unused)
   ============================================================ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(22, 18, 20, 0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 280ms var(--ease);
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 16px;
  width: 100%; max-width: 520px;
  padding: clamp(24px, 4vw, 40px);
  position: relative;
  transform: translateY(12px);
  transition: transform 320ms var(--ease);
  max-height: 90vh; overflow-y: auto;
}
.modal-backdrop.open .modal { transform: translateY(0); }
.modal__close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border: 0; background: transparent;
  cursor: pointer; font-size: 22px; line-height: 1;
}
.modal__title {
  font-family: var(--font-display); color: var(--sage-500);
  font-size: clamp(40px, 5vw, 56px); line-height: 0.95;
  margin: 0 0 8px;
}
.modal__sub {
  font-size: 13px; color: var(--ink-700); line-height: 1.5;
  margin: 0 0 24px;
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label {
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-700);
}
.field select, .field input, .field textarea {
  font: inherit; font-size: 14px;
  padding: 12px 14px;
  border: 1.5px solid var(--border); background: var(--white);
  border-radius: 8px;
  color: var(--ink-900);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select:focus, .field input:focus, .field textarea:focus { outline: 2px solid var(--lavender-700); outline-offset: 2px; }
.modal__success {
  text-align: center; padding: 24px 0;
}
.modal__success h3 {
  font-family: var(--font-display); color: var(--sage-500);
  font-size: clamp(36px, 5vw, 56px); margin: 0 0 12px;
}
.modal__success p { font-size: 15px; line-height: 1.55; color: var(--ink-700); margin: 0 0 24px; }
.modal__success .check {
  width: 64px; height: 64px; margin: 0 auto 16px;
  border: 2px solid var(--sage-500);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: var(--sage-500); font-size: 30px;
}

/* ============================================================
   FEATURED STORY
   ============================================================ */
.feature-story {
  display: block;
  text-decoration: none;
  background: var(--ink-900);
  border-radius: 16px;
  padding: clamp(32px, 5vw, 64px);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.feature-story:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(22, 18, 20, 0.2);
}
.feature-story__label {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--lavender-500);
  margin-bottom: 20px;
}
.feature-story__title {
  font-family: var(--font-display);
  color: var(--lavender-300);
  font-size: clamp(32px, 4.5vw, 72px);
  line-height: 0.95;
  margin: 0 0 20px;
  max-width: 20ch;
}
.feature-story__sub {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.6;
  color: var(--lavender-200);
  max-width: 56ch;
  margin: 0 0 32px;
}
.feature-story__cta {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--lavender-400);
}

/* ============================================================
   UTIL
   ============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}
