:root {
  --bg: hsl(274 58% 97%);
  --bg-soft: hsl(42 72% 92%);
  --surface: hsla(0 0% 100% / 0.9);
  --surface-strong: hsl(42 74% 96%);
  --stroke: hsla(276 34% 48% / 0.3);
  --stroke-strong: hsla(42 70% 40% / 0.42);
  --text: hsl(276 26% 12%);
  --muted: hsl(276 12% 34%);
  --accent: hsl(42 70% 49%);
  --accent-soft: hsl(43 82% 88%);
  --accent-deep: hsl(278 38% 24%);
  --lilac: hsl(272 52% 66%);
  --lilac-soft: hsl(272 68% 92%);
  --plum: hsl(278 38% 22%);
  --pink: hsl(332 56% 70%);
  --pink-soft: hsl(334 76% 94%);
  --gold: hsl(42 70% 49%);
  --gold-soft: hsl(43 82% 88%);
  --champagne: hsl(44 82% 93%);
  --shadow-lg: 0 22px 58px rgba(64, 40, 82, 0.14);
  --shadow-md: 0 14px 32px rgba(64, 40, 82, 0.1);
  --radius-lg: 8px;
  --radius-md: 8px;
  --radius-sm: 8px;
  --container: min(1180px, calc(100% - 2.4rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  background:
    linear-gradient(
      132deg,
      hsla(272 68% 93% / 0.96) 0%,
      hsla(334 76% 95% / 0.92) 28%,
      hsla(44 82% 94% / 0.98) 58%,
      hsla(272 60% 95% / 0.9) 100%
    ),
    linear-gradient(180deg, hsl(274 58% 97%), hsl(42 62% 95%));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(
      90deg,
      hsla(272 52% 66% / 0.12),
      transparent 30%,
      hsla(332 56% 70% / 0.1) 58%,
      hsla(42 70% 49% / 0.16) 78%,
      transparent
    ),
    repeating-linear-gradient(135deg, transparent 0 18px, hsla(0 0% 100% / 0.2) 18px 19px);
  opacity: 0.52;
  z-index: -1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 4px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.section-compact {
  padding: 1.25rem 0 3rem;
}

.section-tight {
  padding: clamp(2.4rem, 4vw, 3.8rem) 0;
}

.section-showcase {
  padding-top: clamp(2.7rem, 4.5vw, 4rem);
}

.section-tint {
  background: linear-gradient(
    125deg,
    hsla(272 68% 93% / 0.9),
    hsla(334 76% 95% / 0.88) 44%,
    hsla(44 82% 92% / 0.9)
  );
  border-block: 1px solid var(--stroke);
}

.eyebrow {
  margin: 0;
  color: var(--accent-deep);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 3.15rem;
}

h3 {
  font-size: 1.7rem;
  line-height: 1.12;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.lead {
  max-width: 42rem;
  font-size: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.78rem 1.28rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: hsl(44 70% 97%);
  background: linear-gradient(135deg, var(--plum), hsl(332 46% 48%) 52%, hsl(42 66% 46%));
  box-shadow: 0 14px 28px rgba(98, 58, 124, 0.22);
}

.button-secondary {
  color: var(--plum);
  background: linear-gradient(135deg, hsla(43 82% 88% / 0.94), hsla(334 76% 96% / 0.86));
  border-color: hsla(42 70% 49% / 0.42);
  box-shadow: var(--shadow-md);
}

.button-tertiary {
  color: var(--accent-deep);
  background: linear-gradient(135deg, hsla(272 68% 92% / 0.62), hsla(334 76% 94% / 0.58));
  border-color: hsla(332 56% 70% / 0.42);
}

.section-heading {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow) {
  max-width: 42rem;
}

.section-heading-inline {
  margin-bottom: 1.5rem;
}

.editorial-grid > .reveal,
.founder-grid > .reveal,
.cta-grid > .reveal {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.card-surface,
.info-card,
.fact-card,
.journey-card,
.proof-card,
.contact-card,
.faq-item,
.editorial-panel,
.location-card,
.cta-panel {
  background: linear-gradient(
    145deg,
    hsla(0 0% 100% / 0.9),
    hsla(272 68% 94% / 0.78) 54%,
    hsla(334 76% 96% / 0.7)
  );
  backdrop-filter: blur(22px);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-md);
}

.site-header-shell {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: 0.8rem;
}

.site-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.site-header-shell.is-scrolled .site-header-inner,
.site-header-inner {
  background: linear-gradient(
    135deg,
    hsla(0 0% 100% / 0.8),
    hsla(272 68% 94% / 0.74) 58%,
    hsla(334 76% 96% / 0.62)
  );
  backdrop-filter: blur(18px);
  border: 1px solid var(--stroke);
  box-shadow: 0 14px 28px rgba(64, 40, 82, 0.08);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--gold-soft),
    var(--pink-soft) 42%,
    var(--lilac-soft) 72%,
    hsl(42 66% 60%)
  );
  color: var(--accent-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 0.95rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav-link {
  padding: 0.64rem 0.9rem;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    background-color 220ms ease,
    color 220ms ease;
}

.site-nav-link:hover,
.site-nav-link.is-active {
  color: var(--text);
  background: linear-gradient(135deg, hsla(43 82% 88% / 0.76), hsla(334 76% 94% / 0.68));
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.4rem;
}

.nav-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  margin: 0.25rem 0;
  border-radius: 999px;
  background: var(--accent-deep);
}

.hero {
  padding: clamp(5.4rem, 8vw, 7.2rem) 0 2.8rem;
}

.hero-grid,
.split-grid,
.editorial-grid,
.founder-grid,
.map-grid,
.cta-grid {
  display: grid;
  gap: clamp(1.6rem, 3vw, 3rem);
  align-items: center;
}

.editorial-grid,
.founder-grid,
.cta-grid {
  align-items: start;
}

.hero-grid,
.editorial-grid,
.cta-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
}

.hero-copy,
.hero-visual,
.journey-card,
.editorial-panel,
.location-card,
.cta-panel {
  position: relative;
}

.hero-copy {
  display: grid;
  gap: 0.95rem;
  max-width: 38rem;
}

.hero-actions,
.hero-trust,
.rating-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.42rem 0.82rem;
  border-radius: 8px;
  background: linear-gradient(135deg, hsla(43 82% 88% / 0.84), hsla(334 76% 94% / 0.76));
  border: 1px solid var(--stroke);
  color: var(--accent-deep);
  font-size: 0.83rem;
  font-weight: 800;
}

.hero-trust .pill:nth-child(2n),
.badge-row .pill:nth-child(2n) {
  background: linear-gradient(135deg, hsla(272 68% 92% / 0.9), hsla(0 0% 100% / 0.74));
  border-color: hsla(272 52% 66% / 0.42);
  color: var(--plum);
}

.hero-trust .pill:nth-child(3n),
.badge-row .pill:nth-child(3n) {
  background: linear-gradient(135deg, hsla(334 76% 94% / 0.9), hsla(42 70% 49% / 0.22));
  border-color: hsla(42 70% 49% / 0.4);
}

.hero-visual {
  min-height: 23rem;
}

.hero-image-frame,
.image-frame {
  overflow: hidden;
  padding: 0.65rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    var(--champagne),
    var(--pink-soft) 34%,
    var(--lilac-soft) 64%,
    hsl(42 66% 64%)
  );
  border: 1px solid hsla(42 70% 49% / 0.4);
  box-shadow: var(--shadow-lg);
}

.hero-image-frame img,
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 700ms ease;
}

.hero-image-frame img {
  min-height: 25rem;
  max-height: 31rem;
}

.hero-image-frame:hover img,
.image-frame:hover img {
  transform: scale(1.025);
}

.floating-card {
  position: absolute;
  min-width: 10.5rem;
  max-width: 17rem;
  padding: 0.85rem 0.95rem;
  border-radius: 8px;
  background: linear-gradient(
    145deg,
    hsla(0 0% 100% / 0.8),
    hsla(272 68% 94% / 0.72),
    hsla(334 76% 96% / 0.62)
  );
  backdrop-filter: blur(16px);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-md);
}

.founder-chip {
  left: -0.5rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.founder-chip img {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid hsla(0 0% 100% / 0.92);
}

.founder-chip strong,
.founder-chip span {
  display: block;
}

.founder-chip span {
  color: var(--muted);
}

.fact-grid,
.info-grid,
.journey-grid,
.proof-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.fact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.editorial-panel .fact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.journey-grid,
.proof-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fact-card,
.info-card,
.journey-card,
.proof-card,
.contact-card {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  padding: 1.2rem;
  border-radius: var(--radius-sm);
}

.fact-card strong,
.proof-card strong {
  display: block;
  color: var(--accent-deep);
  font-size: 1.05rem;
}

.journey-card {
  min-height: 100%;
  transition:
    transform 240ms ease,
    border-color 240ms ease;
}

.fact-card:nth-child(3n + 1),
.info-card:nth-child(3n + 1),
.journey-card:nth-child(3n + 1),
.proof-card:nth-child(3n + 1),
.contact-card:nth-child(3n + 1),
.review-card:nth-child(3n + 1) {
  background: linear-gradient(145deg, hsla(272 68% 93% / 0.92), hsla(0 0% 100% / 0.74));
  border-color: hsla(272 52% 66% / 0.44);
}

.fact-card:nth-child(3n + 2),
.info-card:nth-child(3n + 2),
.journey-card:nth-child(3n + 2),
.proof-card:nth-child(3n + 2),
.contact-card:nth-child(3n + 2),
.review-card:nth-child(3n + 2) {
  background: linear-gradient(145deg, hsla(334 76% 94% / 0.92), hsla(0 0% 100% / 0.74));
  border-color: hsla(332 56% 70% / 0.42);
}

.fact-card:nth-child(3n),
.info-card:nth-child(3n),
.journey-card:nth-child(3n),
.proof-card:nth-child(3n),
.contact-card:nth-child(3n),
.review-card:nth-child(3n) {
  background: linear-gradient(145deg, hsla(44 82% 92% / 0.92), hsla(272 68% 94% / 0.78));
  border-color: hsla(42 70% 49% / 0.36);
}

.journey-card:hover {
  transform: translateY(-5px);
  border-color: var(--stroke-strong);
}

.journey-card span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.journey-card .inline-link,
.contact-card .inline-link {
  margin-top: auto;
}

.rating-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem;
  border-radius: calc(var(--radius-lg) - 4px);
}

.rating-band h2 span {
  color: var(--gold);
}

.editorial-panel,
.location-card,
.cta-panel {
  display: grid;
  gap: 0.75rem;
  align-content: start;
  padding: 1.3rem;
  border-radius: var(--radius-md);
}

.pre-visit-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.2rem, 3vw, 1.65rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    hsla(0 0% 100% / 0.88),
    hsla(272 68% 94% / 0.74) 48%,
    hsla(43 82% 92% / 0.72)
  );
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-lg);
}

.pre-visit-copy {
  display: grid;
  gap: 0.72rem;
}

.pre-visit-list {
  display: grid;
  gap: 0.72rem;
  align-self: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pre-visit-list li {
  position: relative;
  min-height: 3rem;
  padding: 0.82rem 0.9rem 0.82rem 2.25rem;
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: linear-gradient(145deg, hsla(0 0% 100% / 0.72), hsla(334 76% 94% / 0.66));
  border: 1px solid hsla(272 52% 66% / 0.28);
}

.pre-visit-list li::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 0.9rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lilac), var(--pink), var(--gold));
  box-shadow: 0 0 0 4px hsla(42 70% 49% / 0.12);
}

.founder-grid,
.map-grid {
  grid-template-columns: 0.92fr 1.08fr;
}

.map-grid {
  align-items: start;
}

.map-grid .map-frame {
  margin-top: clamp(4.75rem, 7vw, 5.9rem);
}

.founder-grid {
  min-height: auto;
}

.founder-grid-balanced {
  align-items: center;
}

.founder-grid > .reveal:last-child,
.editorial-grid > .reveal:last-child,
.cta-grid > .reveal:last-child {
  justify-self: stretch;
}

.founder-portrait {
  width: min(15.5rem, 58vw);
  aspect-ratio: 1;
  border-radius: 50%;
  margin-bottom: 0.2rem;
  object-fit: cover;
  object-position: center;
  border: 4px solid hsla(43 82% 88% / 0.92);
  box-shadow:
    0 0 0 1px hsla(272 52% 66% / 0.34),
    0 18px 40px rgba(64, 40, 82, 0.16);
}

.founder-portrait-full {
  object-position: 48% 50%;
}

.founder-panel {
  display: grid;
  gap: 1rem;
  align-content: center;
  max-width: 38rem;
}

.insight-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-block: 1px solid hsla(272 52% 66% / 0.24);
}

.insight-list li {
  padding: 0.86rem 0;
}

.insight-list li + li {
  border-top: 1px solid hsla(272 52% 66% / 0.18);
}

.insight-list strong,
.insight-list span {
  display: block;
}

.insight-list strong {
  color: var(--accent-deep);
  font-size: 0.96rem;
  line-height: 1.35;
}

.insight-list span {
  margin-top: 0.22rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.image-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.showcase-card {
  display: grid;
  gap: 0.62rem;
  align-content: start;
  min-width: 0;
  margin: 0;
  padding: 0.62rem;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, hsla(0 0% 100% / 0.86), hsla(272 68% 94% / 0.68));
  border: 1px solid hsla(272 52% 66% / 0.32);
  box-shadow: var(--shadow-md);
}

.showcase-card:nth-child(2n) {
  background: linear-gradient(145deg, hsla(334 76% 94% / 0.84), hsla(0 0% 100% / 0.72));
  border-color: hsla(332 56% 70% / 0.36);
}

.showcase-card-studio {
  background: linear-gradient(145deg, hsla(44 82% 92% / 0.9), hsla(272 68% 94% / 0.7));
  border-color: hsla(42 70% 49% / 0.36);
}

.showcase-card img,
.mini-gallery img,
.studio-mini-gallery img {
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid hsla(0 0% 100% / 0.82);
  box-shadow: 0 12px 24px rgba(64, 40, 82, 0.12);
}

.showcase-card img {
  height: clamp(9.5rem, 15vw, 12.5rem);
}

.showcase-card figcaption {
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.4;
}

.compact-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: center;
}

.mini-gallery,
.studio-mini-gallery {
  display: grid;
  gap: 0.75rem;
}

.mini-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mini-gallery img {
  height: clamp(9rem, 14vw, 12rem);
}

.studio-mini-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.35rem;
}

.studio-mini-gallery img {
  height: auto;
  aspect-ratio: 243 / 304;
}

.studio-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center;
}

.studio-photo-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 243px));
  gap: 0.85rem;
  justify-content: start;
}

.studio-photo-pair figure {
  display: grid;
  gap: 0.56rem;
  margin: 0;
}

.studio-photo-pair img {
  width: 100%;
  max-width: 243px;
  max-height: 17rem;
  aspect-ratio: 243 / 304;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid hsla(42 70% 49% / 0.34);
  box-shadow: var(--shadow-md);
}

.studio-photo-pair figcaption {
  color: var(--accent-deep);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.4;
}

.proof-shell {
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    hsla(272 68% 93% / 0.9),
    hsla(334 76% 94% / 0.84) 42%,
    hsla(44 82% 92% / 0.9)
  );
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-lg);
}

.proof-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.rolling-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.25rem 0.15rem 0.55rem;
  scrollbar-width: none;
}

.rolling-carousel::-webkit-scrollbar {
  display: none;
}

.rolling-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.rolling-carousel.is-animated .rolling-track {
  animation: review-marquee 150s linear infinite;
  will-change: transform;
}

.rolling-carousel.is-animated:hover .rolling-track,
.rolling-carousel.is-animated:focus-within .rolling-track {
  animation-play-state: paused;
}

@keyframes review-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.review-card {
  display: grid;
  gap: 0.78rem;
  align-content: start;
  flex: 0 0 min(24rem, calc(100vw - 4rem));
  min-height: 19rem;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: hsla(0 0% 100% / 0.74);
  border: 1px solid var(--stroke);
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card-top > div {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.review-avatar {
  display: inline-grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--accent-deep);
  background: linear-gradient(135deg, var(--gold-soft), var(--pink-soft) 48%, var(--lilac-soft));
  border: 1px solid hsla(42 70% 49% / 0.42);
  font-size: 0.85rem;
  font-weight: 800;
}

.review-stars {
  display: block;
  color: var(--gold);
  letter-spacing: 0;
  font-size: 0.9rem;
  line-height: 1;
}

.review-quote {
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.68;
}

.review-meta {
  display: grid;
  gap: 0.18rem;
  margin-top: auto;
}

.review-card-top strong,
.review-meta strong {
  color: var(--text);
  line-height: 1.25;
}

.review-card-top small,
.review-meta small {
  color: var(--muted);
  line-height: 1.4;
}

.inline-link {
  color: var(--accent-deep);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  padding: 0 1.25rem;
  border-radius: var(--radius-sm);
}

.faq-item summary {
  padding: 1.15rem 0;
  color: var(--text);
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding-bottom: 1.2rem;
}

.note-list,
.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.note-list {
  display: grid;
  gap: 0.65rem;
}

.note-list li,
.footer-list li {
  color: var(--muted);
}

.location-details {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.location-details article {
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, hsla(0 0% 100% / 0.72), hsla(334 76% 94% / 0.64));
  border: 1px solid hsla(272 52% 66% / 0.28);
}

.location-details strong,
.location-details span {
  display: block;
}

.location-details strong {
  color: var(--accent-deep);
  font-size: 0.92rem;
  line-height: 1.35;
}

.location-details span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.map-frame {
  overflow: hidden;
  min-height: 18.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid hsla(42 70% 49% / 0.42);
  box-shadow: var(--shadow-lg);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 18.5rem;
  border: 0;
}

.cta-panel {
  overflow: hidden;
}

.site-footer {
  padding: 0 0 2.5rem;
}

.site-footer-grid,
.site-footer-meta {
  display: grid;
  gap: 1rem;
}

.site-footer-grid {
  grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
  padding: 2rem 0 1.5rem;
  border-top: 1px solid var(--stroke);
}

.site-footer-grid h3 {
  margin-bottom: 0.55rem;
  font-size: 1.35rem;
}

.site-footer-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 1rem;
  border-top: 1px solid var(--stroke);
}

.floating-actions {
  position: fixed;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 45;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.floating-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: hsl(44 70% 97%);
  background: linear-gradient(135deg, var(--plum), hsl(332 46% 48%) 52%, hsl(42 66% 46%));
  box-shadow: 0 14px 28px rgba(98, 58, 124, 0.24);
  font-weight: 800;
}

.floating-instagram {
  background: linear-gradient(135deg, hsl(278 38% 22%), hsl(332 56% 50%) 58%, hsl(42 66% 46%));
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .hero-grid,
  .editorial-grid,
  .founder-grid,
  .map-grid,
  .cta-grid,
  .pre-visit-panel,
  .compact-gallery-grid,
  .studio-feature-grid,
  .site-footer-grid,
  .site-footer-meta,
  .fact-grid,
  .journey-grid,
  .proof-grid,
  .contact-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-image-frame img {
    min-height: 21rem;
  }

  .image-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mini-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .site-footer-grid {
    padding-top: 1.5rem;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 17rem;
  }

  .map-grid .map-frame {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 1.1rem, 1180px);
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  h3 {
    font-size: 1.45rem;
  }

  .site-header-inner {
    border-radius: 8px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .site-nav-wrap {
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.9rem;
    border-radius: 8px;
    background: linear-gradient(135deg, hsla(274 58% 97% / 0.96), hsla(334 76% 96% / 0.92));
    backdrop-filter: blur(18px);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow-lg);
  }

  .site-nav-wrap.is-open {
    display: flex;
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    padding-top: 5rem;
  }

  .section {
    padding: 2.85rem 0;
  }

  .section-compact {
    padding: 1rem 0 2.2rem;
  }

  .section-tight,
  .section-showcase {
    padding: 2.55rem 0;
  }

  .hero-copy h1 {
    max-width: 15ch;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-image-frame img {
    min-height: 18rem;
    max-height: 24rem;
  }

  .floating-card {
    position: static;
    margin-top: 1rem;
  }

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

  .rolling-carousel {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .rolling-track {
    gap: 0.75rem;
  }

  .review-card {
    flex-basis: min(19rem, calc(100vw - 2rem));
    min-height: 18rem;
    padding: 1rem;
  }

  .image-showcase {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.2rem 0.05rem 0.7rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .image-showcase::-webkit-scrollbar {
    display: none;
  }

  .showcase-card {
    flex: 0 0 min(17rem, 82vw);
    scroll-snap-align: start;
  }

  .showcase-card img {
    height: 12rem;
  }

  .compact-gallery-grid {
    gap: 1.2rem;
  }

  .mini-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .mini-gallery img {
    height: clamp(8.8rem, 43vw, 12rem);
  }

  .studio-mini-gallery img {
    height: auto;
  }

  .studio-photo-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pre-visit-panel {
    padding: 1.1rem;
  }

  .proof-shell,
  .editorial-panel,
  .cta-panel,
  .location-card {
    padding: 1.35rem;
  }

  .floating-actions {
    display: none;
  }
}
