/* ==========================================================================
   PMZ PHOTOGRAPHY — Design System
   Palette, type, and motion drawn from the PMZ brand mark:
   warm gold line-art, ink-black script, gallery-white space.
   ========================================================================== */

:root {
  /* Brand palette */
  --ink:        #1c1a17;
  --ink-soft:   #4a463f;
  --ink-mute:   #7d786e;
  --paper:      #fdfcf9;
  --paper-warm: #f6f2ea;
  --gold:       #b8923a;
  --gold-deep:  #a37e2c;
  --gold-light: #dcb75e;
  --line:       rgba(28, 26, 23, .12);
  --line-gold:  rgba(184, 146, 58, .35);
  --gold-grad:  linear-gradient(120deg, #a37e2c 0%, #dcb75e 45%, #b8923a 100%);

  /* Type */
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body:    "Jost", "Segoe UI", sans-serif;
  --font-script:  "Caveat", cursive;

  /* Rhythm */
  --space-section: clamp(5rem, 10vw, 8.5rem);
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --measure: 62ch;

  /* Motion */
  --ease-lux: cubic-bezier(.22, .61, .21, 1);
  --dur: .7s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, .95rem + .2vw, 1.0625rem);
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

::selection { background: var(--gold-light); color: var(--ink); }

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 5.6vw, 4.6rem); letter-spacing: .01em; }
h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }

.script-accent {
  font-family: var(--font-script);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--gold);
  display: block;
  transform: rotate(-1.5deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: var(--gold-grad);
}

.lede { font-size: clamp(1.1rem, 1.4vw, 1.25rem); max-width: var(--measure); }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Layout primitives ---------- */
.container { width: min(1240px, 100% - var(--gutter) * 2); margin-inline: auto; }
.container--wide { width: min(1440px, 100% - var(--gutter) * 2); margin-inline: auto; }
.section { padding-block: var(--space-section); }
.section--warm { background: var(--paper-warm); }
.section--ink { background: var(--ink); color: #cfcabf; }
.section--ink h2, .section--ink h3 { color: var(--paper); }

.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { margin-block: .9rem 1rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head--center .eyebrow::after { display: none; }

.hairline { border: 0; height: 1px; background: var(--line); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: 1.05rem 2.4rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--gold);
  overflow: hidden;
  transition: color .45s var(--ease-lux);
  z-index: 0;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-lux);
  z-index: -1;
}
.btn:hover::before, .btn:focus-visible::before { transform: scaleX(1); }
.btn:hover, .btn:focus-visible { color: var(--paper); }

.btn--solid { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--solid::before { transform-origin: right; }

.btn--ghost-light { color: var(--paper); border-color: rgba(253, 252, 249, .55); }
.btn--ghost-light:hover { border-color: var(--gold); }

.btn .arrow { transition: transform .45s var(--ease-lux); }
.btn:hover .arrow { transform: translateX(6px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: .35rem;
  background: linear-gradient(var(--gold), var(--gold)) bottom left / 100% 1px no-repeat;
  transition: background-size .45s var(--ease-lux);
}
.text-link:hover { background-size: 0% 1px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .45s var(--ease-lux), box-shadow .45s var(--ease-lux), transform .45s var(--ease-lux);
}
.site-header.is-scrolled {
  background: rgba(253, 252, 249, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-gold);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1rem;
  transition: padding .45s var(--ease-lux);
}
.is-scrolled .site-header__inner { padding-block: .55rem; }

.brand { display: inline-flex; align-items: center; gap: .9rem; }
.brand__mark { width: 58px; height: 58px; transition: width .45s var(--ease-lux), height .45s var(--ease-lux); }
.is-scrolled .brand__mark { width: 46px; height: 46px; }
/* Real logo is transparent line art — back it with a paper disc so the black
   "PMZ" lettering stays legible over dark hero photos */
.brand__mark--img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 2px 14px rgba(28, 26, 23, .18);
}
.is-scrolled .brand__mark--img { width: 58px; height: 58px; box-shadow: none; }
@media (max-width: 920px) {
  .brand__mark--img { width: 76px; height: 76px; }
  .is-scrolled .brand__mark--img { width: 52px; height: 52px; }
}
.footer-brand__logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--paper);
  margin-bottom: 1.2rem;
}
.brand__name { display: flex; flex-direction: column; line-height: 1; }
.brand__pmz { font-family: var(--font-script); font-weight: 600; font-size: 1.9rem; color: var(--ink); }
.brand__caption { font-size: .58rem; letter-spacing: .42em; text-transform: uppercase; color: var(--gold-deep); margin-top: .2rem; }

/* On dark hero, header text starts light */
.header-on-dark .site-header:not(.is-scrolled) .brand__pmz,
.header-on-dark .site-header:not(.is-scrolled) .nav__link { color: var(--paper); }
.header-on-dark .site-header:not(.is-scrolled) .brand__caption { color: var(--gold-light); }

.nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.4rem); }
.nav__link {
  position: relative;
  font-size: .76rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  padding-block: .6rem;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .2rem;
  height: 1px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-lux);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--gold-deep); }
.header-on-dark .site-header:not(.is-scrolled) .nav__link[aria-current="page"] { color: var(--gold-light); }
.header-on-dark .site-header:not(.is-scrolled) .nav__cta { color: var(--paper); }

.nav__cta { margin-left: .6rem; padding: .7rem 1.6rem; }

/* Dropdown */
.nav__item--dropdown { position: relative; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + .4rem);
  left: 50%;
  translate: -50% 0;
  min-width: 15rem;
  background: var(--paper);
  border: 1px solid var(--line-gold);
  box-shadow: 0 24px 60px -24px rgba(28, 26, 23, .35);
  padding: .6rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .35s var(--ease-lux), transform .35s var(--ease-lux), visibility .35s;
}
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: .7rem 1.4rem;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color .3s, background .3s, padding-left .3s var(--ease-lux);
}
.nav__dropdown a:hover { color: var(--gold-deep); background: var(--paper-warm); padding-left: 1.7rem; }

/* Mobile nav */
.nav-toggle { display: none; z-index: 110; width: 44px; height: 44px; position: relative; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  position: absolute;
  left: 8px; right: 8px;
  height: 1.5px;
  background: currentColor;
  transition: transform .4s var(--ease-lux), opacity .3s;
}
.nav-toggle::before { top: 14px; }
.nav-toggle span { top: 21px; }
.nav-toggle::after { top: 28px; }
.nav-toggle { color: var(--ink); }
.header-on-dark .site-header:not(.is-scrolled) .nav-toggle { color: var(--paper); }

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: safe center;
    gap: 1.6rem;
    padding-block: 4.5rem 3.5rem;
    overflow-y: auto;
    background: rgba(253, 252, 249, .98);
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s var(--ease-lux), visibility .45s;
  }
  .nav__link { font-size: 1rem; color: var(--ink) !important; }
  .nav__dropdown {
    position: static;
    translate: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    box-shadow: none;
    background: transparent;
    text-align: center;
    display: none;
  }
  .nav__item--dropdown.is-open .nav__dropdown { display: block; }
  body.nav-open .nav { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-toggle { color: var(--ink) !important; }
  body.nav-open .nav-toggle::before { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span { opacity: 0; }
  body.nav-open .nav-toggle::after { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--paper);
  isolation: isolate;
  overflow: hidden;
}
.hero--short { min-height: 72svh; }
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 18s var(--ease-lux) both;
}
@keyframes kenburns {
  from { transform: scale(1.12); }
  to   { transform: scale(1); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 18, 15, .55) 0%, rgba(20, 18, 15, .25) 40%, rgba(20, 18, 15, .72) 100%);
}
.hero__content { padding: 8rem var(--gutter) 6rem; max-width: 60rem; }
.hero__content h1 { color: var(--paper); margin-block: 1rem 1.4rem; }
.hero__content .lede { margin-inline: auto; color: rgba(253, 252, 249, .85); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.6rem; }
.hero__rule {
  width: 5.5rem; height: 1px;
  margin: 1.8rem auto 0;
  background: var(--gold-grad);
}
.hero__scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  translate: -50%;
  font-size: .62rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(253, 252, 249, .7);
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px; height: 3rem;
  margin: .8rem auto 0;
  background: linear-gradient(var(--gold-light), transparent);
  animation: scrollhint 2.4s var(--ease-lux) infinite;
}
@keyframes scrollhint {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(17rem, 100%), 1fr));
  gap: 1.5rem;
}
.service-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--ink);
}
.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .92;
  transition: transform 1.1s var(--ease-lux), opacity .6s;
}
.service-card:hover img { transform: scale(1.07); opacity: .55; }
.service-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.8rem;
  color: var(--paper);
  background: linear-gradient(transparent, rgba(20, 18, 15, .82));
}
.service-card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .95rem;
  color: var(--gold-light);
  letter-spacing: .1em;
}
.service-card__body h3 { color: var(--paper); margin-block: .3rem .4rem; }
.service-card__body p {
  font-size: .92rem;
  color: rgba(253, 252, 249, .78);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .6s var(--ease-lux), opacity .5s .1s;
}
.service-card:hover .service-card__body p { max-height: 6rem; opacity: 1; }
.service-card__cta {
  display: inline-block;
  margin-top: .7rem;
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.service-card::after {
  content: "";
  position: absolute;
  inset: .9rem;
  border: 1px solid rgba(220, 183, 94, 0);
  transition: border-color .6s var(--ease-lux);
  pointer-events: none;
}
.service-card:hover::after { border-color: rgba(220, 183, 94, .55); }

/* ---------- Stats band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(13rem, 100%), 1fr));
  gap: 2.5rem;
  text-align: center;
}
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1;
  color: var(--paper);
}
.stat__value .suffix { color: var(--gold-light); }
.stat__label {
  margin-top: .7rem;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(207, 202, 191, .8);
}

/* ---------- Gallery grid + lightbox ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.8rem;
  margin-bottom: 2.6rem;
}
.filter-bar button {
  font-size: .74rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-block: .5rem;
  border-bottom: 1px solid transparent;
  transition: color .3s, border-color .3s;
}
.filter-bar button:hover { color: var(--ink); }
.filter-bar button.is-active { color: var(--gold-deep); border-color: var(--gold); }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(19rem, 100%), 1fr));
  grid-auto-rows: 15rem;
  grid-auto-flow: dense;
  gap: 1rem;
}
.gallery__item { position: relative; overflow: hidden; cursor: zoom-in; background: var(--paper-warm); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
@media (max-width: 700px) { .gallery__item--wide { grid-column: span 1; } }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-lux), filter .6s;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.4rem 1.3rem .9rem;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--paper);
  background: linear-gradient(transparent, rgba(20, 18, 15, .75));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .45s var(--ease-lux), transform .45s var(--ease-lux);
}
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }
.gallery__item.is-hidden { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(20, 18, 15, .94);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease-lux), visibility .4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, .8);
  transition: opacity .45s var(--ease-lux), transform .55s var(--ease-lux);
}
.lightbox img.is-loading { opacity: 0; transform: scale(.965); }
.lightbox.is-open img:not(.is-loading) { opacity: 1; transform: scale(1); }
.lightbox__caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  translate: -50%;
  font-size: .74rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  color: var(--paper);
  font-size: 1.4rem;
  width: 3rem; height: 3rem;
  display: grid; place-items: center;
  border: 1px solid rgba(253, 252, 249, .25);
  border-radius: 50%;
  transition: border-color .3s, color .3s;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { border-color: var(--gold); color: var(--gold-light); }
.lightbox__close { top: 1.4rem; right: 1.4rem; }
.lightbox__prev { left: 1.4rem; top: 50%; translate: 0 -50%; }
.lightbox__next { right: 1.4rem; top: 50%; translate: 0 -50%; }

/* ---------- Before / After slider ---------- */
.ba {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--ink);
  --pos: 50%;
  touch-action: pan-y;
  user-select: none;
  container-type: inline-size;
}
.ba img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__before {
  position: absolute;
  inset: 0;
  width: var(--pos);
  overflow: hidden;
}
.ba__before img {
  /* Must match the slider's own width, not the viewport's, or the halves misalign */
  width: 100cqw;
  max-width: none;
  height: 100%;
}
/* Demo treatment: unstaged side rendered muted until real "before" photos are supplied */
.ba__before--demo img { filter: grayscale(.95) brightness(.92) contrast(.95); }
.ba__divider {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 1px;
  background: var(--gold-light);
  box-shadow: 0 0 24px rgba(0, 0, 0, .5);
}
.ba__handle {
  position: absolute;
  top: 50%;
  left: var(--pos);
  translate: -50% -50%;
  width: 3.2rem; height: 3.2rem;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  gap: 0;
  color: var(--gold-deep);
  font-size: .8rem;
  letter-spacing: .1em;
  box-shadow: 0 10px 30px -8px rgba(20, 18, 15, .55);
  pointer-events: none;
}
.ba__label {
  position: absolute;
  top: 1.1rem;
  padding: .45rem .9rem;
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(20, 18, 15, .55);
  backdrop-filter: blur(6px);
}
.ba__label--before { left: 1.1rem; }
.ba__label--after { right: 1.1rem; }
.ba__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
}

.ba-title {
  margin-bottom: 1rem;
  padding-left: 1.2rem;
  border-left: 2px solid var(--gold);
}

/* ---------- Floor plan figure ---------- */
.plan-figure {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border: 1px solid var(--line-gold);
  background: #fff;
  padding: clamp(.8rem, 2vw, 1.6rem);
}
.plan-figure img { width: 100%; height: auto; }
.plan-figure figcaption {
  padding-top: 1rem;
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--ink-mute);
  text-align: center;
}

/* ---------- Matterport / video embeds ---------- */
.embed-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  overflow: hidden;
}
.embed-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-frame__border {
  position: absolute;
  inset: .8rem;
  border: 1px solid rgba(220, 183, 94, .35);
  pointer-events: none;
}

/* ---------- Feature split ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(22rem, 100%), 1fr));
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.split__media::after {
  content: "";
  position: absolute;
  inset: 1.1rem -1.1rem -1.1rem 1.1rem;
  border: 1px solid var(--line-gold);
  z-index: -1;
}
.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: .9rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: .58em;
  width: 1.1rem; height: 1px;
  background: var(--gold-grad);
}

/* ---------- Testimonials ---------- */
.quote-card {
  border-top: 1px solid var(--line-gold);
  padding-top: 1.8rem;
}
.quote-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.5;
}
.quote-card figcaption {
  margin-top: 1.2rem;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(18rem, 100%), 1fr));
  gap: 2.5rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  text-align: center;
  color: var(--paper);
  isolation: isolate;
  padding-block: clamp(6rem, 12vw, 9rem);
  overflow: hidden;
}
.cta-band__media { position: absolute; inset: 0; z-index: -2; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(20, 18, 15, .72);
}
.cta-band h2 { color: var(--paper); margin-block: 1rem 1.2rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
  gap: clamp(2.5rem, 6vw, 5rem);
}
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding-block: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.contact-list .label {
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.contact-list a { color: var(--ink); font-size: 1.1rem; transition: color .3s; }
.contact-list a:hover { color: var(--gold-deep); }

.form-field { position: relative; margin-bottom: 1.9rem; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: .8rem 0 .6rem;
  transition: border-color .35s;
  border-radius: 0;
}
.form-field textarea { resize: vertical; min-height: 7rem; }
.form-field label {
  position: absolute;
  left: 0; top: .8rem;
  font-size: .95rem;
  color: var(--ink-mute);
  pointer-events: none;
  transition: all .3s var(--ease-lux);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
  top: -.9rem;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #a9a396;
  padding-block: 4.5rem 2rem;
  font-size: .92rem;
}
.site-footer a { transition: color .3s; }
.site-footer a:hover { color: var(--gold-light); }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(220, 183, 94, .18);
}
.footer-brand .brand__pmz { color: var(--paper); }
.footer-heading {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}
.footer-links li { margin-bottom: .6rem; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 1.6rem;
  font-size: .78rem;
  letter-spacing: .06em;
  color: #6f6a5f;
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease-lux), transform .9s var(--ease-lux);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Page transition veil ---------- */
.page-veil {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--paper);
  transform: translateY(101%);
  pointer-events: none;
}
.page-veil::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--gold-grad);
}
body.is-exiting .page-veil {
  transform: translateY(0);
  transition: transform .55s var(--ease-lux);
}
body.is-entering .page-veil {
  transform: translateY(0);
  animation: veil-out .8s var(--ease-lux) .1s forwards;
}
@keyframes veil-out {
  to { transform: translateY(-101%); }
}
body.is-entering main {
  animation: page-in 1s var(--ease-lux) .25s both;
}
@keyframes page-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- Page head (non-hero pages) ---------- */
.page-head {
  padding: clamp(8rem, 16vw, 11rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: var(--paper-warm);
}
.page-head h1 { margin-block: .6rem 1rem; max-width: 22ch; }
.page-head .lede a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
body:not(.header-on-dark) .site-header:not(.is-scrolled) {
  background: rgba(253, 252, 249, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Lighter hero scrim — let the photography read (conversion guideline) */
.hero--light-scrim::after {
  background: linear-gradient(180deg, rgba(20, 18, 15, .42) 0%, rgba(20, 18, 15, .18) 45%, rgba(20, 18, 15, .55) 100%);
}
.hero--light-scrim .hero__content h1,
.hero--light-scrim .hero__content .lede { text-shadow: 0 2px 24px rgba(20, 18, 15, .55); }

.price-chip {
  display: inline-block;
  margin-top: 1.2rem;
  padding: .55rem 1.2rem;
  border: 1px solid rgba(220, 183, 94, .6);
  background: rgba(20, 18, 15, .35);
  backdrop-filter: blur(6px);
  font-size: .95rem;
  letter-spacing: .04em;
}
.price-chip strong { color: var(--gold-light); font-weight: 500; }
.price-chip span { font-size: .8rem; opacity: .85; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  border-bottom: 1px solid var(--line);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding-block: .8rem;
  color: var(--ink-mute);
  background: var(--paper);
}
.breadcrumbs a { color: var(--gold-deep); }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs__sep { margin-inline: .7rem; color: var(--line-gold); }

/* ---------- Trust bar ---------- */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 2.2rem;
  justify-content: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.trust-bar span { display: inline-flex; align-items: center; gap: .55rem; }
.trust-bar span::before { content: ""; width: 5px; height: 5px; rotate: 45deg; background: var(--gold-grad); }

/* ---------- Package cards ---------- */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(16.5rem, 100%), 1fr));
  gap: 1.4rem;
  align-items: stretch;
}
.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2rem 1.7rem;
  transition: border-color .4s var(--ease-lux), transform .4s var(--ease-lux), box-shadow .4s var(--ease-lux);
}
.package-card:hover { border-color: var(--line-gold); transform: translateY(-4px); box-shadow: 0 24px 50px -30px rgba(28, 26, 23, .35); }
.package-card--featured { border-color: var(--gold); box-shadow: 0 24px 60px -30px rgba(163, 126, 44, .4); }
.package-card__flag {
  position: absolute;
  top: 0; right: 1.4rem;
  translate: 0 -50%;
  padding: .3rem .9rem;
  font-size: .62rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--gold-grad);
}
.package-card__price { font-family: var(--font-display); font-size: 1.9rem; color: var(--ink); line-height: 1.1; }
.package-card__price strong { font-weight: 500; }
.package-card__note { font-size: .78rem; color: var(--ink-mute); }
.package-card__list { margin-block: .8rem; }
.package-card__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .45rem;
  font-size: .92rem;
}
.package-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: .8rem; height: 1px;
  background: var(--gold-grad);
}
.package-card__best { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.package-card .btn { margin-top: auto; justify-content: center; }

/* ---------- Price tables ---------- */
.price-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(21rem, 100%), 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.price-table { width: 100%; border-collapse: collapse; margin-top: 1.2rem; }
.price-table td {
  padding: .85rem .2rem;
  border-bottom: 1px solid var(--line);
  font-size: .96rem;
}
.price-table td:last-child { text-align: right; font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); white-space: nowrap; }
.price-note-card {
  margin-top: 2rem;
  padding: 1.6rem;
  border: 1px solid var(--line-gold);
  background: var(--paper-warm);
}
.price-note-card h3 { margin-bottom: .6rem; }
.price-note-card a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- FAQ accordion (native details) ---------- */
.faq {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.3rem 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  transition: color .3s;
}
.faq summary:hover { color: var(--gold-deep); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--gold);
  transition: rotate .35s var(--ease-lux);
}
.faq[open] summary::after { rotate: 45deg; }
.faq__a { padding: 0 0 1.4rem; max-width: 60ch; }

/* ---------- Workflow steps ---------- */
.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr));
  gap: 2.5rem;
  list-style: none;
  counter-reset: step;
}
.step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.6rem;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: .8rem;
}
.step h3 { color: var(--paper); margin-bottom: .4rem; }
.step p { font-size: .95rem; }

/* ---------- Related services / add-on cards ---------- */
.related-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
  gap: 1.2rem;
}
.related-card {
  display: block;
  padding: 1.6rem;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: border-color .4s, transform .4s var(--ease-lux);
}
.related-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.related-card h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.related-card p { font-size: .88rem; color: var(--ink-mute); margin-bottom: .6rem; }
.related-card--dark { background: transparent; border-color: rgba(220, 183, 94, .25); }
.related-card--dark h3 { color: var(--paper); }
.related-card--dark:hover { border-color: var(--gold-light); }

/* ---------- Service area links ---------- */
.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
  margin-top: 1.6rem;
}
.area-links a, .area-links span {
  padding: .5rem 1.2rem;
  border: 1px solid var(--line);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.area-links a { border-color: var(--line-gold); color: var(--gold-deep); transition: background .3s, color .3s; }
.area-links a:hover { background: var(--gold); color: var(--paper); }

/* ---------- Portfolio cards ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
  gap: 1.6rem;
}
.portfolio-card { display: block; border: 1px solid var(--line); background: var(--paper); overflow: hidden; transition: border-color .4s; }
.portfolio-card:hover { border-color: var(--gold); }
.portfolio-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; transition: transform 1s var(--ease-lux); }
.portfolio-card:hover img { transform: scale(1.05); }
.portfolio-card__body { padding: 1.4rem 1.6rem 1.7rem; }
.portfolio-card__body h2 { font-size: 1.35rem; margin-bottom: .3rem; }
.portfolio-card__body p { font-size: .88rem; color: var(--ink-mute); }
.portfolio-card__services { margin-top: .5rem; color: var(--gold-deep) !important; font-size: .74rem !important; letter-spacing: .16em; text-transform: uppercase; }
.portfolio-meta { margin-top: 1rem; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); }

/* ---------- Booking form extras ---------- */
/* ---------- Booking map (pin the property) ---------- */
.map-block { margin-bottom: 1.9rem; }
.map-block__hint { font-size: .85rem; color: var(--ink-mute); margin-bottom: .8rem; }
#property-map {
  height: 320px;
  border: 1px solid var(--line-gold);
  margin-bottom: 1.4rem;
  z-index: 0; /* keep Leaflet panes under the sticky header/concierge */
}
.map-block__drive {
  margin: -.4rem 0 1rem;
  padding: .55rem 1rem;
  display: inline-block;
  font-size: .85rem;
  color: var(--gold-deep);
  border: 1px solid var(--line-gold);
  background: var(--paper-warm);
}
.map-block__links { display: flex; flex-wrap: wrap; gap: .6rem 1.8rem; margin-top: -.6rem; }
.map-block__links a {
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--line-gold);
  padding-bottom: .2rem;
  transition: color .3s, border-color .3s;
}
.map-block__links a:hover { color: var(--ink); border-color: var(--gold); }

.form-section-label {
  font-size: .74rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 2.4rem 0 1.4rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--line-gold);
}
.check-grid { display: flex; flex-wrap: wrap; gap: .7rem; }
.check-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem 1.1rem;
  border: 1px solid var(--line);
  font-size: .88rem;
  cursor: pointer;
  transition: border-color .3s, background .3s;
}
.check-pill:has(input:checked) { border-color: var(--gold); background: var(--paper-warm); }
.check-pill input { accent-color: var(--gold-deep); }
.form-field select {
  color: var(--ink);
  appearance: none;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23a37e2c' stroke-width='1.5'/%3E%3C/svg%3E") right center no-repeat;
}
.form-field select:invalid, .form-field select option[value=""] { color: var(--ink-mute); }

/* ---------- Sticky mobile CTA bar ---------- */
.sticky-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(28, 26, 23, .97);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(220, 183, 94, .35);
  padding-bottom: env(safe-area-inset-bottom);
}
.sticky-cta a {
  padding: 1rem 0;
  text-align: center;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--paper);
}
.sticky-cta a + a { border-left: 1px solid rgba(253, 252, 249, .12); }
.sticky-cta__book { background: var(--gold-grad); color: var(--ink) !important; font-weight: 500; }
.header-call { display: none; }
@media (max-width: 920px) {
  .sticky-cta { display: grid; }
  body { padding-bottom: 3.2rem; }
  .header-call {
    display: inline-block;
    margin-left: auto;
    margin-right: .6rem;
    font-size: .74rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-deep);
    border: 1px solid var(--line-gold);
    padding: .5rem 1rem;
  }
  .header-on-dark .site-header:not(.is-scrolled) .header-call { color: var(--gold-light); }
}

/* ---------- AI Concierge ---------- */
.concierge { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 95; }
@media (max-width: 920px) {
  .concierge { bottom: 4.4rem; }
  /* Compact icon launcher on small screens so it never covers page CTAs */
  .concierge__launcher { padding: 0; width: 3.4rem; height: 3.4rem; justify-content: center; border-radius: 50%; font-size: 1.15rem; }
  .concierge__label { display: none; }
}
.concierge__launcher {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.4rem;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid rgba(220, 183, 94, .5);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  box-shadow: 0 18px 40px -14px rgba(28, 26, 23, .55);
  transition: border-color .3s, transform .3s var(--ease-lux);
}
.concierge__launcher:hover { border-color: var(--gold-light); transform: translateY(-2px); }
.concierge__launcher span { color: var(--gold-light); }
.concierge__panel[hidden] { display: none; }
.concierge__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + .8rem);
  width: min(24rem, calc(100vw - 2.4rem));
  max-height: min(34rem, 72vh);
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line-gold);
  box-shadow: 0 40px 90px -30px rgba(28, 26, 23, .5);
}
.concierge__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.3rem;
  background: var(--ink);
  color: var(--paper);
  font-size: .82rem;
  letter-spacing: .1em;
}
.concierge__close { color: var(--paper); font-size: 1rem; }
.concierge__body { padding: 1.3rem; overflow-y: auto; font-size: .92rem; }
.concierge__note {
  font-size: .74rem;
  color: var(--ink-mute);
  border-left: 2px solid var(--gold);
  padding-left: .8rem;
  margin-bottom: 1rem;
}
.concierge__actions { display: grid; gap: .6rem; margin-top: 1rem; }
.concierge__actions button, .concierge__actions a {
  display: block;
  text-align: left;
  padding: .8rem 1rem;
  border: 1px solid var(--line);
  font-size: .85rem;
  transition: border-color .3s, background .3s;
}
.concierge__actions button:hover, .concierge__actions a:hover { border-color: var(--gold); background: var(--paper-warm); }
.concierge__result {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--line-gold);
  background: var(--paper-warm);
}
.concierge__result h4 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: .3rem; }
.concierge__result .est { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-deep); }
.concierge__body .form-field { margin-block: 1.6rem 1.1rem; }
.concierge__back { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: .8rem; display: inline-block; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
