:root {
  --bg: #F7F4EF;
  --bg-warm: #F4F0E8;
  --ink: #1a1412;
  --ink-soft: #302019;
  --muted: #7A6A60;
  --line: rgba(26, 20, 18, 0.12);
  --line-soft: rgba(26, 20, 18, 0.07);
  --cocoa: #302019;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, sans-serif;
  --wa: https://wa.me/971505202466?text=Hi%20Julia%2C%20I%27d%20like%20to%20book%3A%0AService%3A%20Powder%20Brows%20/%20Lip%20Blush%0APreferred%20date%3A%0APreferred%20time%3A%0APrevious%20PMU%3A%20Yes%20/%20No%0AIf%20yes%2C%20I%20have%20attached%20a%20clear%20daylight%20photo.;
  --pad: clamp(1.5rem, 4.5vw, 2.75rem);
  --max: 1180px;
  --header-h: 4.1rem;
  --gap-spread: clamp(2rem, 5vw, 4.5rem);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

h1, h2, h3, .hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.hero h1 {
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.08;
  margin: 0 0 0.85rem;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 8vw, 4.6rem); font-weight: 300; }
h2 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); font-weight: 400; }
p { margin: 0 0 1rem; }
.wrap {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin-inline: auto;
}
.muted { color: var(--muted); }
.lead {
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 28rem;
  line-height: 1.8;
  letter-spacing: 0.015em;
}

/* Header — dark chocolate sticky (site chrome only; not nested page headers) */
body > header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #302019;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.45rem 0;
}
.logo {
  display: flex;
  flex-direction: column;
  gap: 0.06rem;
  min-width: 0;
  padding: 0.1rem 0;
}
.logo-img {
  display: block;
  height: 30px;
  width: auto;
  max-width: 132px;
  object-fit: contain;
  object-position: left center;
  /* Dark PNG → white via filter; white PNG assets skip filter (see .logo-img-white) */
  filter: brightness(0) invert(1);
}
.logo-img[src*="logo-julia-white"] {
  filter: none;
}
@media (min-width: 700px) {
  .logo-img { height: 34px; max-width: 148px; }
}
.logo-sub {
  font-size: 0.5rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.72);
  font-weight: 400;
  margin-top: 0.1rem;
}
.nav-actions { display: flex; align-items: center; gap: 0.45rem; flex-shrink: 0; }
.nav-links {
  display: none;
  gap: 1.35rem;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: #F7F4EF;
}
.nav-links a { opacity: 0.78; transition: opacity 0.2s; color: #F7F4EF; }
.nav-links a:hover { opacity: 1; }
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}
.nav-toggle {
  border: 0;
  background: transparent;
  min-height: 2.2rem;
  padding: 0.35rem 0.55rem;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F7F4EF;
  cursor: pointer;
  opacity: 0.85;
}
.nav-toggle:hover { opacity: 1; }
.nav-panel {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem var(--pad) 1.25rem;
  background: #302019;
}
.nav-panel.open { display: block; }
.nav-panel a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: #F7F4EF;
  opacity: 0.85;
}

/* Buttons — ghost outline + solid cocoa */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.6rem 1.35rem;
  border: 1px solid var(--cocoa);
  background: var(--cocoa);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.btn:hover { opacity: 0.88; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
  opacity: 1;
}
.btn-nav {
  background: transparent;
  color: #F7F4EF;
  border: 1px solid rgba(247, 244, 239, 0.85);
  border-radius: 999px;
  min-height: 2.35rem;
  padding: 0.4rem 1.1rem;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  opacity: 1;
}
.btn-nav:hover { background: rgba(247, 244, 239, 0.1); opacity: 1; }
.btn-pill {
  border-radius: 999px;
}
.btn-hero-solid {
  background: #F7F4EF;
  color: #302019;
  border-color: #F7F4EF;
  border-radius: 999px;
}
.btn-hero-solid:hover { opacity: 0.92; }
.btn-hero-ghost {
  background: transparent;
  color: #F7F4EF;
  border: 1px solid rgba(247, 244, 239, 0.75);
  border-radius: 999px;
}
.btn-hero-ghost:hover {
  background: rgba(247, 244, 239, 0.1);
  opacity: 1;
}
.btn-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }

/* Section kickers (no guide numbering) */
.section-kicker {
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin: 0 0 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line-soft);
}

/* Photo frames — editorial, edge-to-edge on mobile */
.photo {
  margin: 0;
  overflow: hidden;
  background: #e6e0d6;
  border-radius: 0;
}
.photo img,
.photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-tall { aspect-ratio: 4 / 5; }
.photo-wide { aspect-ratio: 16 / 10; }
.photo-sq { aspect-ratio: 1 / 1; }
.photo-portrait { aspect-ratio: 3 / 4; }
/* Prepared promotional cards — show FULL frame, never crop baked-in text */
.promo-card {
  margin: 1.4rem 0 0;
  max-width: 420px;
  background: transparent;
  overflow: visible;
}
.promo-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  aspect-ratio: auto;
}
.promo-cards {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.6rem;
}
@media (min-width: 700px) {
  .promo-cards.cols-2 { grid-template-columns: 1fr 1fr; align-items: start; }
  .promo-cards .promo-card { margin-top: 0; max-width: 460px; }
}
@media (min-width: 900px) {
  .promo-cards.cols-3 { grid-template-columns: 1fr 1fr 1fr; align-items: start; }
}

/* Editorial spreads — magazine gaps */
section.editorial {
  padding: clamp(3.2rem, 8vw, 6.5rem) 0;
  border-top: 1px solid var(--line-soft);
}
section.editorial:first-of-type { border-top: 0; }
.spread {
  display: grid;
  gap: var(--gap-spread);
}
@media (min-width: 900px) {
  .spread {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.8rem, 6vw, 5rem);
    align-items: center;
  }
  .spread.reverse .spread-visual { order: 2; }
  .spread.reverse .spread-copy { order: 1; }
  .spread.align-start { align-items: start; }
}
.spread-copy h2 { margin-bottom: 1rem; }
.spread-copy .lead { margin-bottom: 1.1rem; }

/* Hero — full-bleed photo + HTML text overlay */
.hero {
  padding: 0;
  border-top: 0;
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #9A8570;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: right center;
}
@media (max-width: 699px) {
  .hero-media img { object-position: 68% center; }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(48, 32, 25, 0.72) 0%, rgba(48, 32, 25, 0.42) 42%, rgba(48, 32, 25, 0.12) 68%, transparent 100%),
    linear-gradient(180deg, rgba(48, 32, 25, 0.28) 0%, transparent 28%, transparent 70%, rgba(48, 32, 25, 0.35) 100%);
}
@media (max-width: 699px) {
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(48, 32, 25, 0.55) 0%, rgba(48, 32, 25, 0.35) 38%, rgba(48, 32, 25, 0.15) 58%, rgba(48, 32, 25, 0.45) 100%);
  }
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: clamp(3.2rem, 8vw, 5.5rem) 0 clamp(3.5rem, 9vw, 6rem);
  min-height: inherit;
}
.hero-copy {
  max-width: 32rem;
  color: #F7F4EF;
}
.hero-copy h1 {
  color: #F7F4EF;
  font-size: clamp(2.35rem, 6.2vw, 3.85rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  text-shadow: 0 1px 18px rgba(26, 20, 18, 0.25);
}
.hero-lead {
  font-family: var(--sans);
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: rgba(247, 244, 239, 0.92);
  max-width: 28rem;
  margin: 0 0 1rem;
}
.hero-meta {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.72);
  margin: 0 0 1.6rem;
  font-weight: 400;
}
.hero-copy .btn-row { margin-top: 0; }
@media (max-width: 699px) {
  .hero { min-height: min(92vh, 820px); }
  .hero-inner {
    align-items: flex-end;
    padding-bottom: 2.8rem;
    padding-top: 5rem;
  }
  .hero-copy { max-width: 100%; }
}

/* Trust strip under hero */
.trust-strip {
  background: #F7F4EF;
  border-top: 0;
  border-bottom: 1px solid var(--line-soft);
  padding: 1.15rem 0;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1.6rem;
  text-align: center;
}
.trust-strip-inner span {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.4rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-soft);
}
.trust span {
  display: inline-block;
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  font-weight: 400;
}

/* Open layout — no white cards, hairline dividers */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--line-soft);
}
@media (min-width: 700px) {
  .info-grid.cols-2 { grid-template-columns: 1fr 1fr; }
  .info-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
}
.info-card {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  padding: 1.5rem 0 1.35rem;
}
@media (min-width: 700px) {
  .info-grid.cols-2 .info-card,
  .info-grid.cols-3 .info-card {
    padding: 1.6rem 1.4rem 1.5rem 0;
    border-right: 1px solid var(--line-soft);
  }
  .info-grid.cols-2 .info-card:nth-child(2n),
  .info-grid.cols-3 .info-card:nth-child(3n) {
    border-right: 0;
    padding-right: 0;
  }
  .info-grid.cols-2 .info-card:nth-child(odd) {
    padding-right: 1.6rem;
  }
}
.info-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.info-card p:last-child { margin-bottom: 0; }
.info-card .label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
  font-weight: 400;
}
/* Inline price callouts without card box */
.spread-copy > .info-card {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  margin-top: 1.4rem !important;
  padding: 1.25rem 0;
}
.time-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin: 1.4rem 0 0.5rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.time-row strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  display: block;
  line-height: 1.1;
}
.time-row span {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bullet {
  margin: 0.55rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.7;
}
.bullet li { margin: 0.4rem 0; }

/* Compare table — hairline */
.compare {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: 0.88rem;
}
.compare th, .compare td {
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  padding: 0.85rem 0.7rem 0.85rem 0;
  text-align: left;
  vertical-align: top;
}
.compare th {
  background: transparent;
  font-weight: 400;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.compare thead th {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.95rem;
}
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Before / after */
.ba-pair, .ba-trio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin: 1.6rem 0 0.5rem;
}
@media (min-width: 720px) {
  .ba-trio { grid-template-columns: 1fr 1fr 1fr; }
  .ba-pair, .ba-trio { gap: 0.55rem; }
}
.ba-pair figure, .ba-trio figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #ddd;
  aspect-ratio: 4 / 5;
  border-radius: 0;
}
.ba-pair img, .ba-trio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.ba-pair figcaption, .ba-trio figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.55rem 0.65rem;
  background: linear-gradient(transparent, rgba(26, 20, 18, 0.55));
  color: var(--bg);
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
}
.note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.7rem;
  line-height: 1.65;
}

/* Light blocks */
section.light {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  border-top: 1px solid var(--line-soft);
}
.light-kicker {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin: 0 0 0.7rem;
}
.price-block {
  display: grid;
  gap: 0;
  margin-top: 1.8rem;
  border-top: 1px solid var(--line);
}
@media (min-width: 700px) {
  .price-block { grid-template-columns: 1fr 1fr; }
  .price-block .price-item:last-child { grid-column: 1 / -1; }
}
.price-item {
  border-top: 0;
  border-bottom: 1px solid var(--line-soft);
  padding: 1.5rem 1.2rem 1.4rem 0;
}
@media (min-width: 700px) {
  .price-item:nth-child(odd) { padding-right: 2rem; }
  .price-item:nth-child(even):not(:last-child) {
    border-left: 1px solid var(--line-soft);
    padding-left: 2rem;
  }
}
.price-item .amount {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
  margin: 0.35rem 0 0.55rem;
}
.price-item .amount small {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--muted);
  margin-left: 0.3rem;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.price-note {
  margin-top: 1.6rem;
  max-width: 38rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}

/* Reviews */
.reviews-top {
  display: grid;
  gap: 2rem;
  margin-top: 1.6rem;
}
@media (min-width: 800px) {
  .reviews-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}
.review-video {
  width: 100%;
  max-width: 360px;
  margin-top: 1.2rem;
  overflow: hidden;
  background: transparent;
}
.review-video video {
  width: 100%;
  height: auto;
  border-radius: 0;
  background: var(--bg, #F7F4EF);
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center center;
}
.portrait-video {
  margin: 1.2rem 0 0;
  max-width: 360px;
  background: #111;
  overflow: hidden;
}
.portrait-video video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #111;
  max-height: 640px;
}
.service-cards {
  display: grid;
  gap: 1.6rem;
  margin-top: 1.6rem;
}
@media (min-width: 800px) {
  .service-cards { grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
}
.service-card {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line-soft);
  padding: 1.5rem 0 1.6rem;
}
.service-card .amount {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  margin: 0.45rem 0 0.7rem;
}
.service-card .amount small {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--muted);
  margin-left: 0.25rem;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.process-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.35rem;
  margin-top: 1.4rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  align-items: center;
}
.process-strip span {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 400;
}
.process-strip .sep {
  color: var(--muted);
  opacity: 0.55;
  letter-spacing: 0;
  padding: 0 0.15rem;
}
.about-portrait-slot {
  margin: 1.4rem 0 0;
  max-width: 280px;
  aspect-ratio: 3 / 4;
  border: 1px dashed var(--line);
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  text-align: center;
}
.about-portrait-slot p {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.6;
}
.quote-card {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 1.8rem 0;
}
.quote-card .quote {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.6vw, 1.55rem);
  line-height: 1.45;
  font-style: italic;
  font-weight: 300;
  margin: 0 0 1rem;
}
.quote-meta {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

/* FAQ accordion */
.faq details {
  border-bottom: 1px solid var(--line-soft);
  padding: 1.15rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 400;
  list-style: none;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding-right: 1.8rem;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--muted);
}
.faq details[open] summary::after { content: "–"; }
.faq p { margin: 0.7rem 0 0; color: var(--muted); max-width: 40rem; line-height: 1.75; }
.faq a { border-bottom: 1px solid rgba(26, 20, 18, 0.22); }

footer {
  padding: 2.5rem 0 7rem;
  font-size: 0.78rem;
  color: var(--muted);
  border-top: 1px solid var(--line-soft);
  letter-spacing: 0.04em;
}
footer a { border-bottom: 1px solid rgba(26, 20, 18, 0.2); }
footer strong { color: var(--ink); font-weight: 500; }

section[id] { scroll-margin-top: 4.8rem; }

/* Floating WhatsApp — quieter */
.wa-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.6rem;
  padding: 0.55rem 1rem;
  background: var(--cocoa);
  color: var(--bg);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 0;
  box-shadow: 0 4px 18px rgba(26, 20, 18, 0.12);
  opacity: 0.78;
  border-radius: 999px;
}
.wa-float:hover { opacity: 1; }
.wa-float svg { width: 1rem; height: 1rem; fill: currentColor; flex-shrink: 0; }

/* Feature lists — calm, no shouting uppercase */
.feature-list {
  list-style: none;
  margin: 1.3rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line-soft);
}
.feature-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink);
  font-weight: 400;
}
.feature-list li:last-child { border-bottom: 0; }
.steps-plain {
  list-style: none;
  margin: 1.3rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line-soft);
}
.steps-plain li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}
.steps-plain li strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
  letter-spacing: 0.02em;
}

/* Mobile — vertical luxury guide, 24–28px pad, full-bleed photos */
@media (max-width: 899px) {
  :root { --pad: 1.5rem; }
  .wrap { width: calc(100% - 48px); max-width: none; }
  section.editorial { padding: 3rem 0; }
  .hero { padding: 0; }
  /* Edge-to-edge photography */
  .spread > .photo,
  .spread-visual.photo {
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-right: -24px;
  }
  .ba-pair, .ba-trio {
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-right: -24px;
    gap: 0.25rem;
  }
  .photo-wide {
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-right: -24px;
    max-height: none !important;
  }
}
@media (max-width: 400px) {
  :root { --pad: 1.375rem; }
  .wrap { width: calc(100% - 44px); }
  .spread > .photo,
  .spread-visual.photo,
  .ba-pair, .ba-trio,
  .photo-wide {
    width: calc(100% + 44px);
    margin-left: -22px;
    margin-right: -22px;
  }
}

/* Shared label (service cards, prices, page heads) */
.label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
  font-weight: 400;
}

/* Active nav */
.nav-links a.active,
.nav-panel a.active {
  opacity: 1;
}
.nav-links a.active {
  border-bottom: 1px solid rgba(247, 244, 239, 0.55);
  padding-bottom: 0.12rem;
}

/* Inner page title */
.page-head {
  padding: clamp(2.6rem, 6.5vw, 4.2rem) 0 0.4rem;
}
.page-head h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.4rem);
  font-weight: 300;
  margin-bottom: 0.85rem;
}
.page-head + .editorial {
  padding-top: clamp(1.5rem, 4vw, 2.6rem);
  border-top: 0;
}

.text-link {
  border-bottom: 1px solid rgba(26, 20, 18, 0.22);
}
.text-link:hover { border-bottom-color: var(--ink); }

/* Soft image reveal — IntersectionObserver, not a slider */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* Prices page — PMU SERVICES full-bleed poster (page-specific) */
body.page-prices {
  background: #F4F0E8;
}
.prices-poster {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100vh - var(--header-h));
  color: var(--ink);
}
.prices-poster-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.prices-poster-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 40%;
  filter: saturate(0.9) contrast(0.97) brightness(1.05);
}
.prices-poster-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg,
      rgba(247, 244, 239, 0.96) 0%,
      rgba(247, 244, 239, 0.9) 40%,
      rgba(244, 240, 232, 0.58) 64%,
      rgba(244, 240, 232, 0.32) 100%),
    linear-gradient(180deg,
      rgba(247, 244, 239, 0.6) 0%,
      transparent 18%,
      transparent 72%,
      rgba(244, 240, 232, 0.72) 100%);
}
.prices-poster-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-inline: auto;
  padding: clamp(2.2rem, 5.5vw, 3.6rem) 0 clamp(2.8rem, 6vw, 4.2rem);
}
.prices-poster-brand {
  margin: 0 0 2rem;
}
.prices-poster-logo {
  display: block;
  height: 42px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
  object-position: left center;
  margin: 0 0 0.45rem;
}
.prices-poster-eyebrow {
  margin: 0;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}
.prices-poster-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 0.55rem;
  color: var(--ink);
}
.prices-poster-sub {
  margin: 0 0 2.2rem;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.prices-poster-block {
  padding: 1.35rem 0;
  border-top: 1px solid rgba(26, 20, 18, 0.14);
}
.prices-panel .prices-poster-block:last-of-type {
  border-bottom: 1px solid rgba(26, 20, 18, 0.14);
  margin-bottom: 1.5rem;
}
.prices-poster-heading {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 1rem;
  color: var(--ink-soft);
}
.prices-poster-heading-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1rem;
}
.prices-poster-heading-row .prices-poster-heading {
  margin: 0;
}
.prices-poster-when {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  white-space: nowrap;
}
.prices-poster-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.prices-poster-list > li + li {
  margin-top: 0.95rem;
}
.prices-poster-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.2rem;
}
.prices-poster-name {
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.prices-poster-price {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--ink);
}
.prices-poster-meta {
  margin: 0.22rem 0 0;
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.prices-poster-note {
  margin: 0 0 1.6rem;
}
.prices-poster-tagline {
  margin: 0 0 0.45rem;
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
}
.prices-poster-vary {
  margin: 0;
  max-width: 28rem;
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--muted);
}
.prices-poster-help {
  margin: 0 0 1.8rem;
}
.prices-poster-help-q {
  margin: 0 0 0.35rem;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}
.prices-poster-help-a {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 400;
}
.prices-poster-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.2rem;
  margin: 0 0 2.2rem;
}
.prices-poster-wa {
  background: var(--cocoa);
  color: #F7F4EF;
  border-color: var(--cocoa);
  min-height: 2.7rem;
  padding: 0.65rem 1.5rem;
}
.prices-poster-pay {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.prices-poster-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1.2rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(26, 20, 18, 0.14);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}
.prices-poster-strip a {
  color: var(--muted);
  transition: color 0.2s;
}
.prices-poster-strip a:hover { color: var(--ink); }
.prices-poster-end {
  margin: 1.1rem 0 0;
  text-align: center;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (min-width: 900px) {
  .prices-poster-content {
    margin-inline: 0;
    margin-left: max(0px, calc((100% - var(--max)) / 2));
    padding-right: 2rem;
  }
  .prices-poster-bg img {
    object-position: 55% 38%;
  }
  .prices-poster-overlay {
    background:
      linear-gradient(100deg,
        rgba(247, 244, 239, 0.96) 0%,
        rgba(247, 244, 239, 0.9) 34%,
        rgba(244, 240, 232, 0.45) 58%,
        rgba(244, 240, 232, 0.18) 100%),
      linear-gradient(180deg,
        rgba(247, 244, 239, 0.4) 0%,
        transparent 20%,
        transparent 75%,
        rgba(244, 240, 232, 0.55) 100%);
  }
}

@media (max-width: 720px) {
  /* Short hero + soft cream fade into card; mobile uses pre-cropped photo */
  .prices-poster {
    min-height: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }
  .prices-poster-bg {
    position: relative;
    inset: auto;
    z-index: auto;
    width: 100%;
    height: 56vw;
    min-height: 220px;
    max-height: 320px;
    flex-shrink: 0;
    overflow: hidden;
  }
  .prices-poster-bg picture,
  .prices-poster-bg img {
    width: 100%;
    height: 100%;
    display: block;
  }
  .prices-poster-bg img {
    object-fit: cover;
    object-position: center 40%;
  }
  .prices-poster-bg::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 58%;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(180deg,
      rgba(247, 244, 239, 0) 0%,
      rgba(247, 244, 239, 0.12) 28%,
      rgba(247, 244, 239, 0.38) 55%,
      rgba(247, 244, 239, 0.72) 82%,
      #F7F4EF 100%);
  }
  .prices-poster-overlay {
    display: none;
  }
  .prices-poster-content {
    position: relative;
    z-index: auto;
    margin: 0;
    margin-inline: 0;
    max-width: none;
    width: 100%;
    box-sizing: border-box;
    background: #F7F4EF;
    color: var(--ink);
    padding: 1.5rem var(--pad) 2.4rem;
  }
  .prices-poster-brand,
  .prices-poster-logo {
    display: none !important;
  }
  .prices-poster-pay { display: none !important; }
  .prices-poster-sub { margin-bottom: 1.25rem; }
  .prices-poster-block { padding: 1rem 0; }
  .prices-poster-strip { justify-content: flex-start; }
}

@media (min-width: 721px) {
  /* Desktop: keep classic poster overlay over full-bleed photo */
  .prices-poster-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: auto;
    min-height: 0;
    max-height: none;
  }
  .prices-poster-bg::after {
    display: none;
  }
  .prices-poster-overlay {
    display: block;
  }
  .prices-poster-content {
    background: transparent;
    z-index: 2;
  }
  .prices-poster-logo {
    display: block;
  }
}


/* Prices page — Studio / Home Service toggle */
.prices-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.85rem;
}
.prices-toggle-btn {
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.2;
  padding: 0.72rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 178, 158, 0.85);
  background: rgba(247, 244, 239, 0.72);
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.prices-toggle-btn:hover {
  border-color: rgba(48, 32, 25, 0.35);
}
.prices-toggle-btn.is-active,
.prices-toggle-btn[aria-selected="true"] {
  background: var(--cocoa);
  color: #F7F4EF;
  border-color: var(--cocoa);
}
.prices-toggle-btn:focus-visible {
  outline: 2px solid var(--cocoa);
  outline-offset: 2px;
}
.prices-panel[hidden] {
  display: none !important;
}
.prices-panel-intro {
  margin: 0 0 0.35rem;
}
.prices-panel-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.35rem, 3.2vw, 1.75rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0 0 0.55rem;
  color: var(--ink);
}
.prices-panel-partner {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.prices-panel-lead {
  margin: 0 0 1.35rem;
  max-width: 30rem;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}
.prices-home-coord {
  margin: -0.85rem 0 1.1rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
}
.prices-home-note {
  margin: 0 0 1.6rem;
  max-width: 30rem;
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--muted);
  letter-spacing: 0.01em;
}
@media (max-width: 720px) {
  .prices-toggle { margin-bottom: 1.4rem; }
  .prices-toggle-btn {
    flex: 1 1 auto;
    text-align: center;
    padding: 0.7rem 0.7rem;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }
  .prices-panel-title { font-size: 1.25rem; }
}

/* Home — Appointment options (Studio vs Premium Home) */
.appt-options {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line-soft);
}
.appt-options h2 {
  max-width: 28rem;
  font-size: clamp(1.55rem, 3.2vw, 2.05rem);
  font-weight: 400;
  margin: 0 0 1.75rem;
  color: var(--ink);
}
.appt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}
@media (min-width: 800px) {
  .appt-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.35rem;
    align-items: stretch;
  }
}
.appt-card {
  display: flex;
  flex-direction: column;
  padding: 1.55rem 1.45rem 1.5rem;
  min-height: 100%;
  border-radius: 2px;
}
.appt-card--studio {
  background: #F7F4EF;
  border: 1px solid #D9CFC0;
  color: var(--ink);
}
.appt-card--home {
  background: var(--cocoa);
  border: 1px solid var(--cocoa);
  color: #F7F4EF;
}
.appt-card-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 0.7rem;
}
.appt-card--home .appt-card-title { color: #F7F4EF; }
.appt-card-partner {
  margin: -0.15rem 0 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(247, 244, 239, 0.72);
}
.appt-card-lead {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}
.appt-card--home .appt-card-lead {
  color: rgba(247, 244, 239, 0.82);
}
.appt-price-list {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  border-top: 1px solid var(--line-soft);
}
.appt-card--home .appt-price-list {
  border-top-color: rgba(247, 244, 239, 0.18);
}
.appt-price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.92rem;
}
.appt-card--home .appt-price-list li {
  border-bottom-color: rgba(247, 244, 239, 0.18);
}
.appt-price-list li span:last-child {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.appt-card-btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
  border-radius: 999px;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  padding: 0.75rem 1rem;
}
.appt-card--studio .appt-card-btn {
  background: var(--cocoa);
  color: #F7F4EF;
  border-color: var(--cocoa);
}
.appt-card-btn--home {
  background: #F7F4EF;
  color: var(--cocoa);
  border-color: #F7F4EF;
}
.appt-card-btn--home:hover { opacity: 0.92; }
.appt-card-note {
  margin: 0.85rem 0 0;
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(247, 244, 239, 0.68);
}
.appt-prices-link {
  margin: 1.6rem 0 0;
  text-align: center;
}
.appt-prices-link a {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 0.15rem;
  transition: color 0.2s, border-color 0.2s;
}
.appt-prices-link a:hover {
  color: var(--ink);
  border-bottom-color: var(--line);
}

/* Home — services teaser */
.home-services {
  padding: clamp(2.5rem, 5.5vw, 4rem) 0;
  border-bottom: 1px solid var(--line-soft);
}
.home-service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  margin-top: 1.5rem;
}
@media (min-width: 720px) {
  .home-service-grid { grid-template-columns: 1fr 1fr; gap: 1.35rem; }
}
.home-service-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-warm);
  border: 1px solid var(--line-soft);
  overflow: hidden;
}
.home-service-card img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  display: block;
  background: var(--bg-warm);
}
.home-service-body {
  padding: 1.25rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
}
.home-service-body h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 400;
}
.home-service-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
}
.home-service-body .btn-row { margin-top: auto; padding-top: 0.85rem; }

/* Home — best results */
.home-results {
  padding: clamp(2.5rem, 5.5vw, 4rem) 0;
  border-bottom: 1px solid var(--line-soft);
}
.home-results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  margin-top: 1.6rem;
}
@media (min-width: 800px) {
  .home-results-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
}
.home-result-case h3 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.home-results-cta {
  margin-top: 1.85rem;
  text-align: center;
}

/* Results gallery sections */
.gallery-section {
  margin-top: 2.4rem;
}
.gallery-section:first-of-type { margin-top: 0.4rem; }
.gallery-section > h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 400;
}
.gallery-section > .muted {
  margin: 0 0 0.5rem;
  max-width: 36rem;
}

/* Home — short FAQ + final CTA */
.home-faq {
  padding: clamp(2.25rem, 5vw, 3.5rem) 0;
  border-bottom: 1px solid var(--line-soft);
}
.home-faq .faq { margin-top: 1.1rem; }
.final-cta {
  padding: clamp(2.75rem, 6vw, 4.25rem) 0;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
}
.final-cta h2 {
  margin: 0 auto 0.75rem;
  max-width: 22rem;
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  font-weight: 400;
}
.final-cta .lead {
  margin: 0 auto 1.4rem;
  max-width: 28rem;
  color: var(--muted);
}
.final-cta .btn-row { justify-content: center; }

.experience-teaser {
  padding: clamp(2.25rem, 5vw, 3.5rem) 0;
  border-bottom: 1px solid var(--line-soft);
}
.experience-teaser .lead { max-width: 34rem; }

.footer-line {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}


/* About */
.about-story { max-width: 38rem; margin: 0 0 1.6rem; }
.about-story p { margin: 0 0 0.85rem; line-height: 1.7; }

/* Official Ambassadorship — quiet luxury, milk/ivory + chocolate */
.ambassador {
  padding: clamp(2.6rem, 6vw, 4.5rem) 0 clamp(3.2rem, 7vw, 5rem);
  background: #F4F0E8;
  border-top: 1px solid var(--line-soft);
}
.ambassador-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.8rem, 4vw, 2.8rem);
  align-items: start;
}
.ambassador-copy {
  max-width: 34rem;
}
.ambassador-copy .section-kicker {
  margin-bottom: 1.1rem;
}
.ambassador-copy h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.45rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
  margin: 0 0 1.15rem;
}
.ambassador-logo {
  display: block;
  height: 18px;
  width: auto;
  max-width: 148px;
  margin: 0 0 1.25rem;
  opacity: 0.78;
}
.ambassador-body {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.8;
  letter-spacing: 0.015em;
  margin: 0 0 1.4rem;
  max-width: 32rem;
}
.ambassador-cta {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(48, 32, 25, 0.35);
  padding-bottom: 0.18rem;
  transition: border-color 0.2s, opacity 0.2s;
}
.ambassador-cta:hover {
  border-bottom-color: var(--ink);
  opacity: 0.9;
}
.ambassador-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.ambassador-media .photo {
  margin: 0;
  max-width: none;
  background: #ebe5db;
}
.ambassador-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.ambassador-media .note {
  margin-top: 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.ambassador-certificate {
  border: 1px solid rgba(26, 20, 18, 0.08);
  padding: 0.55rem;
  background: #F7F4EF;
}
.ambassador-certificate img {
  aspect-ratio: 4 / 5;
}
@media (min-width: 720px) {
  .ambassador-media {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.15rem;
    align-items: start;
  }
  .ambassador-certificate {
    margin-top: 1.6rem;
  }
}
@media (min-width: 960px) {
  .ambassador-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: clamp(2.2rem, 4vw, 3.6rem);
    align-items: center;
  }
}


/* Editorial photos in ambassador media — full frame, no crop */
.ambassador-media .promo-card,
.ambassador-media .photo-card-full {
  background: transparent;
  aspect-ratio: auto;
  max-width: none;
}
.ambassador-media .promo-card img,
.ambassador-media .photo-card-full img {
  object-fit: contain;
  aspect-ratio: auto;
  height: auto;
}

/* Prepared promo cards with baked-in text — never crop */
.photo-card-full,
.photo.photo-card-full {
  aspect-ratio: auto;
  max-width: 520px;
}
.photo-card-full img,
.photo.photo-card-full img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  display: block;
}


/* Home — Premium Home Service + Marsal video */
.home-marsal {
  padding: clamp(2.4rem, 5vw, 3.8rem) 0;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg);
}
.home-marsal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  align-items: center;
}
@media (min-width: 800px) {
  .home-marsal-grid {
    grid-template-columns: 1.1fr minmax(220px, 280px);
    gap: 2.4rem;
  }
}
.home-marsal-collab {
  margin: 0.35rem 0 0.85rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.home-marsal-prices {
  list-style: none;
  margin: 1.1rem 0 1.35rem;
  padding: 0;
  max-width: 22rem;
  border-top: 1px solid var(--line-soft);
}
.home-marsal-prices li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.95rem;
}
.home-marsal-media {
  max-width: 280px;
  margin: 0 auto;
  width: 100%;
}
.home-marsal-video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 512 / 910;
  object-fit: cover;
  background: #F7F4EF;
  border-radius: 0;
}
.home-marsal-caption {
  margin: 0.55rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.45;
  text-align: center;
}
