/* ==========================================================
   megsinjectibles — design tokens + base
   Two directions live in the same document, toggled via
   data-direction="A" | "B" on the root.
   ========================================================== */

:root {
  /* Direction A — Clinical Blush (default) */
  --bg: #FDFBF8;
  --bg-2: #F6EDE8;
  --paper: #FFFFFF;
  --ink: #1A1414;
  --ink-2: #6B5F5F;
  --rule: rgba(26, 20, 20, 0.10);
  --blush: #F8E1E7;
  --blush-2: #EFC9D2;
  --rose: #C97B8A;
  --rose-deep: #9C4A5C;
  --accent: #B8505E;

  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --display-tracking: -0.01em;
  --display-italic-tracking: 0em;
  --hero-weight: 400;

  --radius-s: 4px;
  --radius-m: 8px;
  --radius-l: 16px;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

[data-direction="B"] {
  /* Direction B — Editorial Rose */
  --bg: #F5EFE8;
  --bg-2: #E9D9D2;
  --paper: #FBF6F1;
  --ink: #2A1F1F;
  --ink-2: #6E5A55;
  --rule: rgba(42, 31, 31, 0.12);
  --blush: #ECCFCE;
  --blush-2: #DDB5B7;
  --rose: #B8757A;
  --rose-deep: #6F2C39;
  --accent: #8B3A4A;

  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", system-ui, sans-serif;
  --display-tracking: -0.02em;
  --hero-weight: 500;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; }
a { color: inherit; }

/* ----- type helpers ----- */
.display { font-family: var(--font-display); font-weight: var(--hero-weight); letter-spacing: var(--display-tracking); line-height: 0.96; }
.display em, .italic { font-style: italic; letter-spacing: var(--display-italic-tracking); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-2);
}
.eyebrow-dot::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose);
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}
.lead { font-size: 18px; line-height: 1.55; color: var(--ink); }

/* ----- layout ----- */
.container { max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }
.section--paper { background: var(--paper); }
.section--bg2 { background: var(--bg-2); }

/* ----- buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.btn:hover { background: var(--accent); border-color: var(--accent); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--rose { background: var(--accent); border-color: var(--accent); }
.btn--rose:hover { background: var(--rose-deep); border-color: var(--rose-deep); }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(3px); }

.link-underline {
  position: relative;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.link-underline:hover { color: var(--accent); border-color: var(--accent); }

/* ----- nav ----- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .3s, color .3s, border-color .3s;
}
.nav--over-hero { color: var(--paper); }
.nav--scrolled {
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.nav__logo em { font-style: italic; font-weight: 400; color: currentColor; opacity: 0.9; }
.nav__logo .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--rose); margin: 0 4px 3px 4px; align-self: center; }
.nav__links {
  display: flex;
  gap: clamp(16px, 2.4vw, 32px);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav__links a {
  text-decoration: none;
  color: inherit;
  opacity: 0.85;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: opacity .2s, border-color .2s;
}
.nav__links a:hover { opacity: 1; border-bottom-color: currentColor; }
.nav__cta { padding: 10px 18px; font-size: 11px; }
.nav__cta--over-hero { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.nav__cta--over-hero:hover { background: var(--accent); color: var(--paper); border-color: var(--accent); }

@media (max-width: 880px) {
  .nav__links { display: none; }
}

/* ----- hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px var(--gutter) clamp(48px, 6vw, 88px);
  color: var(--paper);
  overflow: hidden;
  background: var(--ink);
}
.hero__media {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.32) 0%, rgba(0,0,0,.05) 35%, rgba(0,0,0,.55) 100%),
              linear-gradient(135deg, #2a1820 0%, #5a3845 50%, #8a5b62 100%);
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.14) 40%, rgba(0,0,0,.68) 100%),
              linear-gradient(90deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.10) 56%, rgba(0,0,0,.05) 100%);
  pointer-events: none;
}
.hero__media image-slot { position: absolute; inset: 0; }
.hero__media image-slot::part(empty) { background: transparent; }
.hero__content { position: relative; max-width: 1100px; }
.hero__eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0.9;
}
.hero__eyebrow .rule { display: inline-block; width: 56px; height: 1px; background: currentColor; opacity: 0.6; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.92;
  font-weight: var(--hero-weight);
  letter-spacing: var(--display-tracking);
  margin: 0 0 30px;
}
.hero__title em { font-style: italic; font-weight: 300; }
.hero__title .lock { display: inline-block; }
.hero__row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.hero__sub { max-width: 460px; font-size: 16px; line-height: 1.55; opacity: 0.92; }
.hero__sub strong { font-weight: 500; }
.hero__meta {
  display: flex; gap: 28px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  align-items: center;
}
.hero__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--blush); }
.hero__scroll {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  opacity: 0.7;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll::after { content: ""; width: 1px; height: 32px; background: currentColor; }

/* ----- marquee ----- */
.marquee {
  background: var(--blush);
  color: var(--ink);
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.marquee__track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 400;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 64px; }
.marquee__track .star { color: var(--accent); font-style: normal; font-family: var(--font-body); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ----- about ----- */
.about__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 880px) { .about__grid { grid-template-columns: 1fr; } }
.about__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--blush);
}
.about__photo image-slot { position: absolute; inset: 0; }
.about__photo::before {
  content: "";
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 1px solid var(--rose);
  pointer-events: none;
  z-index: 0;
}
.about__heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: var(--hero-weight);
  line-height: 1;
  letter-spacing: var(--display-tracking);
  margin: 0 0 36px;
}
.about__heading em { font-style: italic; }
.about__body p { margin: 0 0 20px; font-size: 16px; line-height: 1.65; color: var(--ink); max-width: 52ch; }
.about__sig {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 38px;
  font-weight: 400;
  color: var(--accent);
  margin: 8px 0 24px;
  letter-spacing: -0.01em;
}
.about__creds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  margin-top: 36px;
}
.about__cred {
  padding: 24px 24px 24px 0;
  border-right: 1px solid var(--rule);
}
.about__cred:last-child { border-right: 0; padding-right: 0; }
.about__cred .num { font-family: var(--font-display); font-size: 44px; line-height: 1; font-weight: 400; }
.about__cred .num em { font-style: italic; color: var(--accent); }
.about__cred .lab { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-2); margin-top: 8px; }

/* ----- section heading ----- */
.s-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  margin-bottom: clamp(40px, 6vw, 72px);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.s-head__left { max-width: 720px; }
.s-head__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 84px);
  font-weight: var(--hero-weight);
  line-height: 1;
  letter-spacing: var(--display-tracking);
  margin: 14px 0 0;
}
.s-head__title em { font-style: italic; }
.s-head__num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}

/* ----- services ----- */
.svc-list { display: flex; flex-direction: column; }
.svc-row {
  display: grid;
  grid-template-columns: 60px minmax(170px, 1.2fr) minmax(260px, 2.4fr) 96px 96px 56px;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  cursor: pointer;
  position: relative;
  transition: background .25s, padding .25s;
}
.svc-row:last-child { border-bottom: 1px solid var(--rule); }
.svc-row:hover { background: var(--blush); padding-left: 16px; padding-right: 16px; }
.svc-row__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-2);
}
.svc-row__name {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
  font-weight: var(--hero-weight);
}
.svc-row__name em { font-style: italic; }
.svc-row__short { font-size: 13px; color: var(--ink-2); letter-spacing: 0.06em; }
.svc-row__blurb { font-size: 15px; line-height: 1.5; color: var(--ink); max-width: 38ch; }
.svc-row__meta { font-size: 12px; color: var(--ink-2); letter-spacing: 0.08em; text-transform: uppercase; }
.svc-row__price {
  width: 96px;
  justify-self: start;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
}
.svc-row__price em {
  font-style: italic;
  color: var(--accent);
  font-size: 14px;
  display: block;
  margin-top: 6px;
}
.svc-row__arrow {
  width: 44px; height: 44px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  justify-self: center;
  display: inline-flex;
  align-items: center; justify-content: center;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.svc-row:hover .svc-row__arrow { background: var(--ink); color: var(--paper); transform: rotate(-45deg); }

@media (max-width: 880px) {
  .svc-row {
    grid-template-columns: 40px minmax(0, 1fr) 96px 56px;
    column-gap: 18px;
    row-gap: 8px;
  }
  .svc-row__short, .svc-row__blurb, .svc-row__meta { grid-column: 2 / 3; }
  .svc-row__price {
    grid-column: 3 / 4;
    grid-row: 1 / span 4;
    align-self: center;
  }
  .svc-row__arrow {
    grid-column: 4 / 5;
    grid-row: 1 / span 4;
    align-self: center;
  }
}

/* ----- service detail modal ----- */
.svc-modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20, 14, 14, 0.5);
  backdrop-filter: blur(8px);
  display: flex; justify-content: flex-end;
  animation: fadein .3s;
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.svc-modal__panel {
  width: min(720px, 100%);
  height: 100%;
  background: var(--bg);
  overflow-y: auto;
  padding: 32px clamp(28px, 5vw, 72px) 64px;
  animation: slideup .35s cubic-bezier(.2,.7,.2,1);
}
@keyframes slideup { from { transform: translateX(40px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.svc-modal__close {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg);
  padding: 16px 0;
  margin: 0 0 24px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
}
.svc-modal__close button {
  border: 1px solid var(--ink);
  background: var(--bg);
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
}
.svc-modal__hero {
  aspect-ratio: 16 / 9;
  background: var(--paper);
  position: relative;
  margin-bottom: 36px;
}
.svc-modal__hero image-slot { position: absolute; inset: 0; }
.svc-modal__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  font-weight: var(--hero-weight);
  margin: 0 0 16px;
}
.svc-modal__title em { font-style: italic; }
.svc-modal__meta {
  display: flex; gap: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 24px 0 32px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  flex-wrap: wrap;
}
.svc-modal__meta .lab { color: var(--ink-2); display: block; margin-bottom: 4px; }
.svc-modal__meta .val { font-family: var(--font-display); font-size: 22px; text-transform: none; letter-spacing: 0; color: var(--ink); }
.svc-modal__body p { font-size: 16px; line-height: 1.65; max-width: 56ch; }
.svc-modal h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  margin: 36px 0 16px;
}
.svc-modal ul.areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.svc-modal ul.areas li {
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.svc-modal ul.areas li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
}
.svc-modal ol.protocol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.svc-modal ol.protocol li {
  counter-increment: step;
  padding: 16px 0 16px 56px;
  border-top: 1px solid var(--rule);
  position: relative;
  font-size: 15px;
}
.svc-modal ol.protocol li:last-child { border-bottom: 1px solid var(--rule); }
.svc-modal ol.protocol li::before {
  content: "0" counter(step);
  position: absolute; left: 0; top: 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
}

/* ----- gallery / B&A ----- */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.section--studio-strip {
  background: var(--bg-2);
  padding-top: clamp(56px, 7vw, 92px);
  padding-bottom: clamp(56px, 7vw, 92px);
}
.s-head--compact {
  margin-bottom: 26px;
}
.s-head--compact .s-head__title {
  font-size: clamp(34px, 4.8vw, 64px);
}
.ba-grid--condensed {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.ba-card { position: relative; overflow: hidden; background: var(--blush); }
.ba-card image-slot { position: absolute; inset: 0; }
.ba-card image-slot[fit="contain"]::part(frame),
.svc-modal__hero image-slot::part(frame) {
  background: var(--paper);
}
.ba-card__cap {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  color: var(--paper);
  background: rgba(20, 14, 14, 0.7);
  backdrop-filter: blur(6px);
  padding: 10px 14px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  display: flex; justify-content: space-between; gap: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s;
}
.ba-card:hover .ba-card__cap { opacity: 1; transform: translateY(0); }
.ba-card__cap em { font-style: italic; opacity: 0.85; }
.ba-card--tall { grid-column: span 4; aspect-ratio: 4 / 5; }
.ba-card--wide { grid-column: span 8; aspect-ratio: 16 / 9; }
.ba-card--square { grid-column: span 4; aspect-ratio: 1 / 1; }
.ba-card--strip { aspect-ratio: 4 / 5; }
@media (max-width: 880px) {
  .ba-card--tall, .ba-card--wide, .ba-card--square { grid-column: span 12; }
  .ba-grid--condensed { grid-template-columns: repeat(2, 1fr); }
  .ba-card--strip { grid-column: auto; }
}
@media (max-width: 540px) {
  .ba-grid--condensed { gap: 8px; }
  .ba-card--strip { aspect-ratio: 1 / 1; }
  .ba-card__cap {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 8px 10px;
    font-size: 10px;
  }
}

/* ----- testimonials ----- */
.testimonials {
  position: relative;
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
}
.testimonials .s-head { margin-bottom: clamp(28px, 4vw, 48px); }
.t-track { position: relative; min-height: 190px; }
.t-quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.15;
  font-weight: var(--hero-weight);
  max-width: 900px;
  margin: 0 0 26px;
}
.t-quote::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 84px;
  line-height: 0;
  color: var(--rose);
  margin-right: 10px;
  position: relative; top: 18px;
}
.t-meta {
  display: flex; gap: 16px; align-items: center;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-2);
}
.t-meta strong { font-weight: 600; color: var(--ink); letter-spacing: 0.14em; }
.review-link {
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.review-link:hover { color: var(--accent); }
.t-controls {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.t-dots { display: flex; gap: 10px; }
.t-dot {
  width: 8px; height: 8px;
  border: 1px solid var(--ink);
  background: transparent;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  transition: background .2s;
}
.t-dot.is-on { background: var(--ink); }
.t-arrows { display: flex; gap: 8px; }
.t-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.t-arrow:hover { background: var(--ink); color: var(--paper); }

/* ----- instagram ----- */
.ig-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 40px; }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.ig-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--blush);
  overflow: hidden;
}
.ig-tile image-slot { position: absolute; inset: 0; }
.ig-tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.6) 100%);
  display: flex; align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity .25s;
  color: var(--paper);
  font-size: 12px;
}
.ig-tile:hover .ig-tile__overlay { opacity: 1; }
.ig-tile__heart { color: var(--blush); margin-right: 6px; }
@media (max-width: 880px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }

/* ----- instagram follow banner ----- */
.ig-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  margin-bottom: 28px;
  background: var(--paper, #fff);
  border: 1px solid var(--rule, #e5dcd6);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, transform .2s;
}
.ig-banner:hover {
  border-color: var(--accent, #B8505E);
  transform: translateY(-1px);
}
.ig-banner__avatar {
  flex: 0 0 auto;
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(45deg, #fd1d1d, #fcb045, #833ab4);
  padding: 2px;
  display: block;
}
.ig-banner__avatar img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  display: block;
}
.ig-banner__text {
  flex: 1;
  display: flex; flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.ig-banner__handle {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 600;
  color: var(--ink, #1a1416);
}
.ig-banner__handle svg { width: 18px; height: 18px; color: var(--accent, #B8505E); flex: 0 0 auto; }
.ig-banner__name {
  font-size: 13px;
  color: var(--ink-2, #6f5f63);
  letter-spacing: 0.01em;
}
.ig-banner__cta {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent, #B8505E);
  display: inline-flex; align-items: center; gap: 8px;
}
.ig-banner__cta .arr {
  transition: transform .2s;
  display: inline-block;
}
.ig-banner:hover .ig-banner__cta .arr { transform: translateX(4px); }
@media (max-width: 540px) {
  .ig-banner { padding: 14px 16px; gap: 14px; }
  .ig-banner__avatar { width: 44px; height: 44px; }
  .ig-banner__handle { font-size: 14px; }
  .ig-banner__name { font-size: 12px; }
  .ig-banner__cta { font-size: 12px; }
}

/* ----- instagram profile preview ----- */
.ig-preview {
  max-width: 935px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #262626;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(0,0,0,0.08);
}
.ig-preview__bar {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid #dbdbdb;
  background: #fafafa;
}
.ig-preview__bar svg { width: 22px; height: 22px; }
.ig-preview__bar .handle {
  font-weight: 600; font-size: 14px;
  display: flex; align-items: center; gap: 6px;
}
.ig-preview__bar .verified {
  width: 14px; height: 14px;
  background: #1d9bf0;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 9px; font-weight: 700;
}
.ig-preview__bar .spacer { flex: 1; }
.ig-preview__bar .menu { font-size: 18px; color: #262626; opacity: .8; }

.ig-preview__header {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  padding: 28px 28px 20px;
}
.ig-preview__avatar {
  width: 160px; height: 160px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(45deg, #fd1d1d, #fcb045, #833ab4);
  padding: 4px;
  position: relative;
}
.ig-preview__avatar > div {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  position: relative;
}
.ig-preview__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ig-preview__info { display: flex; flex-direction: column; gap: 18px; padding-top: 8px; }
.ig-preview__row1 { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.ig-preview__username { font-size: 22px; font-weight: 300; letter-spacing: .3px; }
.ig-preview__follow {
  background: #0095f6; color: #fff;
  border: 0; border-radius: 8px;
  padding: 7px 24px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.ig-preview__follow:hover { background: #1877f2; }
.ig-preview__message {
  background: #efefef; color: #262626;
  border: 0; border-radius: 8px;
  padding: 7px 16px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
.ig-preview__stats { display: flex; gap: 36px; font-size: 16px; }
.ig-preview__stats strong { font-weight: 600; margin-right: 4px; }
.ig-preview__links {
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
}
.ig-preview__links a {
  color: #00376b;
  text-decoration: none;
  font-weight: 600;
  background: #f3f5f7;
  border-radius: 999px;
  padding: 7px 12px;
}
.ig-preview__links a:hover { text-decoration: underline; }
.ig-preview__bio { font-size: 14px; line-height: 1.45; max-width: 540px; }
.ig-preview__bio .name { font-weight: 600; display: block; margin-bottom: 2px; }
.ig-preview__bio .biolink { color: #00376b; text-decoration: none; font-weight: 500; }
.ig-preview__bio .biolink:hover { text-decoration: underline; }

.ig-preview__tabs {
  display: flex; justify-content: center; gap: 60px;
  border-top: 1px solid #dbdbdb;
  padding-top: 4px;
}
.ig-preview__tab {
  display: flex; align-items: center; gap: 6px;
  padding: 16px 0;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  color: #8e8e8e;
  border-top: 1px solid transparent;
  margin-top: -1px;
}
.ig-preview__tab.is-active {
  color: #262626;
  border-top-color: #262626;
}
.ig-preview__tab svg { width: 14px; height: 14px; }

.ig-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  background: #fff;
}
.ig-preview__tile {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #efefef;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.ig-preview__tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.ig-preview__tile:hover img { transform: scale(1.03); }
.ig-preview__tile-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
  gap: 26px;
  color: #fff;
  font-size: 15px; font-weight: 600;
  opacity: 0;
  transition: opacity .2s;
}
.ig-preview__tile-overlay svg { width: 18px; height: 18px; fill: currentColor; margin-right: 6px; vertical-align: -3px; }
.ig-preview__tile:hover .ig-preview__tile-overlay { opacity: 1; }
.ig-preview__tile-badge {
  position: absolute; top: 8px; right: 8px;
  color: #fff;
}
.ig-preview__tile-badge svg { width: 18px; height: 18px; filter: drop-shadow(0 1px 2px rgba(0,0,0,.5)); }

.ig-preview__footer {
  display: flex; justify-content: center;
  padding: 18px;
  border-top: 1px solid #efefef;
}
.ig-preview__footer a {
  font-size: 13px; font-weight: 600;
  color: #00376b; text-decoration: none;
  letter-spacing: .2px;
}
.ig-preview__footer a:hover { text-decoration: underline; }

.ig-preview__tile--cta {
  background: linear-gradient(135deg, var(--blush, #F8E1E7) 0%, var(--blush-2, #EFC9D2) 100%);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--rose-deep, #9C4A5C);
}
.ig-preview__tile--cta:hover img { transform: none; }
.ig-preview__cta {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 12px;
  text-align: center;
}
.ig-preview__cta-plus {
  font-size: 38px; font-weight: 200; line-height: 0.9;
  color: var(--rose-deep, #9C4A5C);
}
.ig-preview__cta-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  line-height: 1.4;
}

@media (max-width: 935px) {
  .ig-preview { border-left: 0; border-right: 0; border-radius: 0; }
}
@media (max-width: 735px) {
  .ig-preview__header {
    grid-template-columns: 86px 1fr;
    gap: 24px;
    padding: 16px;
  }
  .ig-preview__avatar { width: 86px; height: 86px; }
  .ig-preview__info { gap: 14px; padding-top: 4px; }
  .ig-preview__username { font-size: 16px; }
  .ig-preview__row1 { gap: 8px; }
  .ig-preview__follow, .ig-preview__message { padding: 5px 12px; font-size: 12px; border-radius: 6px; }
  .ig-preview__stats {
    gap: 0;
    font-size: 13px;
    padding: 10px 0;
    border-top: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
    justify-content: space-around;
    text-align: center;
  }
  .ig-preview__links { justify-content: flex-start; gap: 8px; border: 0; padding: 0; }
  .ig-preview__links a { font-size: 12px; padding: 6px 10px; }
  .ig-preview__stats > span { display: flex; flex-direction: column; gap: 2px; }
  .ig-preview__stats strong { display: block; margin: 0; font-size: 14px; }
  .ig-preview__bio { font-size: 13px; padding: 4px 0; }
  .ig-preview__bio br { display: inline; content: " "; }
  .ig-preview__tabs { gap: 0; justify-content: space-around; }
  .ig-preview__tab { font-size: 11px; padding: 14px 0; }
  .ig-preview__grid { gap: 2px; padding: 2px; }
  .ig-preview__tile-overlay { font-size: 13px; gap: 14px; }
  .ig-preview__cta-plus { font-size: 28px; }
  .ig-preview__cta-label { font-size: 9px; letter-spacing: 0.08em; }
}

/* mobile-only stats bar that replaces the desktop stats row */
.ig-preview__mstats {
  display: none;
}
@media (max-width: 735px) {
  .ig-preview__mstats {
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    border-top: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
    font-size: 12px;
    text-align: center;
  }
  .ig-preview__mstats > div { display: flex; flex-direction: column; gap: 2px; }
  .ig-preview__mstats strong { font-weight: 600; font-size: 14px; }
}

/* ----- mouse-tracking pink dot ----- */
#meg-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent, #B8505E);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity .35s ease, width .25s cubic-bezier(.2,.7,.2,1), height .25s cubic-bezier(.2,.7,.2,1), background-color .2s, mix-blend-mode .2s;
  will-change: transform, width, height;
  mix-blend-mode: multiply;
  box-shadow: 0 0 0 1px rgba(184, 80, 94, 0.18);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.meg-cursor__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity .2s ease, transform .2s cubic-bezier(.2,.7,.2,1);
}
#meg-cursor[data-state="hover"] {
  width: auto;
  min-width: 60px;
  height: 40px;
  padding: 0 18px;
  border-radius: 100px;
  mix-blend-mode: normal;
  background: var(--accent, #B8505E);
  box-shadow: 0 6px 22px rgba(184, 80, 94, 0.28);
}
#meg-cursor[data-state="hover"] .meg-cursor__label {
  opacity: 1;
  transform: scale(1);
}
@media (pointer: coarse), (max-width: 880px) {
  #meg-cursor { display: none !important; }
}

/* ----- parallax-friendly hero image ----- */
.hero__media image-slot[data-parallax] {
  will-change: transform;
  top: -10%;
  bottom: -10%;
  height: 120%;
}

/* ----- FAQ ----- */
.faq-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--rule);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-item__btn {
  background: transparent;
  border: 0;
  padding: 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: var(--hero-weight);
  color: var(--ink);
  line-height: 1.2;
}
.faq-item__plus {
  width: 28px; height: 28px;
  position: relative;
  flex-shrink: 0;
  margin-top: 4px;
}
.faq-item__plus::before, .faq-item__plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  left: 0; top: 50%;
  width: 100%; height: 1px;
  transition: transform .3s;
}
.faq-item__plus::after { transform: rotate(90deg); }
.faq-item.is-open .faq-item__plus::after { transform: rotate(0); }
.faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s;
}
.faq-item.is-open .faq-item__body { grid-template-rows: 1fr; }
.faq-item__body > div { overflow: hidden; }
.faq-item__body p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 16px 0 0;
  max-width: 60ch;
}

/* ----- contact ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.contact-block:last-child { border-bottom: 0; }
.contact-block__lab {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 12px;
}
.contact-block__val {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.2;
}
.contact-block__val a { text-decoration: none; }
.contact-block__val a:hover { color: var(--accent); }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  font-size: 15px;
  border-bottom: 1px dashed var(--rule);
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .lab { font-family: var(--font-display); font-style: italic; }

.map-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  margin: -8px 0 32px;
  overflow: hidden;
  border-radius: 4px;
}
.map-card a {
  display: block;
}
.map-card iframe {
  width: 100%;
  height: 320px;
  display: block;
  border: 0;
}
.map-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-2);
  border-top: 1px solid var(--rule);
}
.map-card__meta strong {
  color: var(--ink);
  font-weight: 600;
}
.map-card__meta a {
  display: inline-flex;
  text-decoration: none;
  color: var(--accent, #B8505E);
  transition: color .2s;
}
.map-card__meta a:hover { color: var(--rose-deep, #9C4A5C); }
@media (max-width: 640px) {
  .map-card iframe { height: 240px; }
  .map-card__meta { flex-direction: column; gap: 6px; align-items: flex-start; }
}

.book-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
}
.book-card::before {
  content: "";
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 1px solid var(--rose);
  pointer-events: none;
}
.book-card__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  font-weight: var(--hero-weight);
  margin: 0 0 16px;
}
.book-card__title em { font-style: italic; }
.book-card p { font-size: 15px; line-height: 1.6; color: var(--ink-2); margin: 0 0 24px; }
.book-card__actions { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.book-card__actions .btn { justify-content: space-between; }
.book-card__hours {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.book-card__hours .hours-list li {
  font-size: 14px;
}

/* ----- footer ----- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px var(--gutter) 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
@media (max-width: 880px) { .footer__top { grid-template-columns: 1fr 1fr; } }
.footer__brand {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  margin: 0 0 16px;
}
.footer__brand em { font-style: italic; opacity: 0.85; }
.footer__col h5 {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  margin: 0 0 16px;
  opacity: 0.7;
  font-weight: 500;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { text-decoration: none; font-size: 14px; opacity: 0.85; }
.footer__col a:hover { opacity: 1; color: var(--blush); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  font-size: 12px;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 16px;
}

/* ----- placeholder image-slot styles ----- */
image-slot {
  width: 100%;
  height: 100%;
  --is-empty-bg: linear-gradient(135deg, var(--blush) 0%, var(--blush-2) 100%);
  --is-empty-color: var(--rose-deep);
  --is-empty-border: none;
  --is-empty-font: var(--font-display);
  --is-empty-label-size: 13px;
  --is-empty-label-weight: 400;
  --is-empty-label-italic: italic;
  --is-empty-label-tt: none;
  --is-empty-label-letter: 0;
}

/* tweaks panel quality of life */
.tweaks-handle, .tweaks-panel { z-index: 200; }
