/* ==========================================================================
   AP Suites — Boutique luxury short-stay, Melbourne CBD
   Design system: warm ivory + near-black ink + brand gold
   ========================================================================== */

/* ---- Tokens ------------------------------------------------------------- */
:root {
  /* Palette */
  --ink: #16130F;          /* primary text / near-black */
  --ink-soft: #423B31;     /* secondary text */
  --ink-faint: #7A7264;    /* muted / captions */
  --ivory: #FAF7F1;        /* page background */
  --surface: #FFFFFF;      /* cards */
  --sand: #EFE9DE;         /* soft blocks */
  --line: rgba(22, 19, 15, 0.12);
  --line-strong: rgba(22, 19, 15, 0.22);

  /* Gold family */
  --gold: #A9812F;         /* gold for small text on ivory (AA) */
  --gold-bright: #C9A24B;
  --gold-hi: #E7CE8A;
  --gold-grad: linear-gradient(135deg, #E7CE8A 0%, #C9A24B 45%, #A9812F 100%);

  /* On-dark */
  --on-dark: #F5F1E8;
  --on-dark-soft: rgba(245, 241, 232, 0.72);

  /* Type */
  --f-brand: "Cinzel", "Times New Roman", serif;
  --f-display: "Cormorant Garamond", Georgia, serif;
  --f-body: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Fluid type scale */
  --t-eyebrow: 0.78rem;
  --t-body: clamp(1rem, 0.97rem + 0.15vw, 1.075rem);
  --t-lead: clamp(1.12rem, 1.05rem + 0.4vw, 1.35rem);
  --t-h3: clamp(1.35rem, 1.2rem + 0.7vw, 1.7rem);
  --t-h2: clamp(1.9rem, 1.5rem + 1.9vw, 3rem);
  --t-h1: clamp(2.6rem, 1.7rem + 4.2vw, 5.4rem);
  --t-mega: clamp(3.2rem, 1.6rem + 7vw, 8rem);

  /* Spacing rhythm (8pt) */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4rem;
  --sp-7: 6rem;
  --sp-8: 8rem;
  --section: clamp(4.5rem, 3rem + 6vw, 9rem);

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(1.25rem, 0.6rem + 3vw, 3.5rem);
  --radius: 4px;
  --radius-lg: 8px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(22, 19, 15, 0.06), 0 2px 8px rgba(22, 19, 15, 0.05);
  --shadow-md: 0 10px 30px rgba(22, 19, 15, 0.10), 0 2px 8px rgba(22, 19, 15, 0.06);
  --shadow-lg: 0 30px 70px rgba(22, 19, 15, 0.20);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.5s;

  /* z-scale */
  --z-nav: 100;
  --z-overlay: 900;
  --z-modal: 1000;
}

/* ---- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  font-family: var(--f-body);
  font-size: var(--t-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
::selection { background: var(--gold-hi); color: var(--ink); }

/* ---- Type helpers ------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 500; line-height: 1.05; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--f-brand);
  font-size: var(--t-eyebrow);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.85em;
}
.eyebrow::before {
  content: "";
  width: 2.4em;
  height: 1px;
  background: var(--gold-bright);
  display: inline-block;
}
.eyebrow.is-centered::after {
  content: "";
  width: 2.4em;
  height: 1px;
  background: var(--gold-bright);
  display: inline-block;
}

/* ---- Layout ------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(3rem, 2rem + 4vw, 5rem); }
.center { text-align: center; }
.section-head { max-width: 46rem; margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--t-h2); margin-top: var(--sp-3); }
.section-head p { color: var(--ink-soft); margin-top: var(--sp-2); font-size: var(--t-lead); }

/* ---- Icons -------------------------------------------------------------- */
.ic { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; flex: none; }
.ic--fill { fill: currentColor; stroke: none; }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  --btn-py: 0.95rem;
  --btn-px: 1.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  min-height: 48px;
  padding: var(--btn-py) var(--btn-px);
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    background-color 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  will-change: transform;
}
.btn .ic { width: 1.05em; height: 1.05em; }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn--gold {
  background: var(--gold-grad);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(169, 129, 47, 0.34); }
.btn--gold:active { transform: translateY(0); }

.btn--ink { background: var(--ink); color: var(--on-dark); }
.btn--ink:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--ghost { border: 1px solid var(--line-strong); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--on-dark); }

.btn--on-dark { border: 1px solid rgba(245, 241, 232, 0.4); color: var(--on-dark); }
.btn--on-dark:hover { background: var(--on-dark); color: var(--ink); border-color: var(--on-dark); }

.btn--block { width: 100%; }
.btn--sm { min-height: 42px; --btn-py: 0.7rem; --btn-px: 1.3rem; font-size: 0.82rem; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  padding-bottom: 2px;
  position: relative;
}
.textlink .ic { transition: transform 0.4s var(--ease); }
.textlink::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold-bright);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.textlink:hover::after { transform: scaleX(1); }
.textlink:hover .ic { transform: translateX(4px); }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: 1.1rem var(--gutter);
  transition: background-color 0.5s var(--ease), box-shadow 0.5s var(--ease),
    padding 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-solid {
  background: rgba(250, 247, 241, 0.86);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom-color: var(--line);
  padding-block: 0.7rem;
}
.nav__brand { display: inline-flex; align-items: center; z-index: 2; }
.nav__logo { width: auto; height: 58px; object-fit: contain; transition: transform 0.5s var(--ease), height 0.5s var(--ease); }
.nav.is-solid .nav__logo { height: 50px; }
.nav__brand:hover .nav__logo { transform: scale(1.05); }
/* light logo (white wordmark) over the dark hero; dark logo once nav turns solid */
.nav__logo--dark { display: none; }
.nav.is-solid .nav__logo--light { display: none; }
.nav.is-solid .nav__logo--dark { display: block; }
/* When over a dark hero, invert link colours */
.nav--over-hero:not(.is-solid) .nav__links a { color: var(--on-dark); }
.nav--over-hero:not(.is-solid) .nav__toggle { color: var(--on-dark); }

.nav__links { display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.6rem); }
.nav__links a {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.35s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__cta { display: inline-flex; align-items: center; gap: 1.4rem; }
.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  color: var(--ink);
  z-index: 2;
}
.nav__toggle .ic { width: 26px; height: 26px; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--ink);
  color: var(--on-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s var(--ease-out);
  pointer-events: none;
}
.mobile-menu.is-open { clip-path: inset(0 0 0 0); pointer-events: auto; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.4rem; }
.mobile-menu a {
  font-family: var(--f-display);
  font-size: clamp(2rem, 8vw, 3rem);
  color: var(--on-dark);
  padding: 0.4rem 0;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}
.mobile-menu.is-open a { animation: menuIn 0.6s var(--ease-out) forwards; }
.mobile-menu.is-open a:nth-child(1) { animation-delay: 0.1s; }
@keyframes menuIn { to { opacity: 1; transform: none; } }
.mobile-menu__foot { margin-top: var(--sp-5); color: var(--on-dark-soft); font-size: 0.85rem; letter-spacing: 0.05em; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img,
.hero__video { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.hero__video { display: block; background: var(--ink); }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 8, 6, 0.46) 0%, rgba(10, 8, 6, 0) 30%),
    linear-gradient(0deg, rgba(10, 8, 6, 0.84) 0%, rgba(10, 8, 6, 0.34) 52%, rgba(10, 8, 6, 0) 80%);
}
.hero__inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding: 0 var(--gutter) clamp(4.5rem, 11vh, 8rem); color: var(--on-dark); }
.hero .eyebrow {
  color: #F6E7BE;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-shadow: 0 1px 3px rgba(10, 8, 6, 0.6), 0 2px 18px rgba(10, 8, 6, 0.65);
}
.hero .eyebrow::before { background: var(--gold-hi); box-shadow: 0 0 6px rgba(10, 8, 6, 0.5); }
.hero__title { font-size: var(--t-h1); font-weight: 500; margin: var(--sp-3) 0 var(--sp-3); max-width: 16ch; }
.hero__title em { font-style: italic; color: var(--gold-hi); }
.hero__sub { font-size: var(--t-lead); max-width: 40ch; color: var(--on-dark-soft); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-4); }
.hero__scroll {
  position: absolute;
  left: 50%; bottom: 1rem;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--on-dark-soft);
  font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(10, 8, 6, 0.6);
}
.hero__scroll span { width: 1px; height: 30px; background: linear-gradient(var(--gold-hi), transparent); position: relative; overflow: hidden; }
.hero__scroll span::after { content:""; position:absolute; top:0; left:0; width:100%; height:40%; background: var(--gold-hi); animation: scrollDot 2.4s var(--ease) infinite; }
@keyframes scrollDot { 0% { transform: translateY(-100%);} 60%,100% { transform: translateY(250%);} }

/* Split-flap style reveal words */
.reveal-line { display: block; overflow: hidden; }
.reveal-line > span { display: block; }

/* ==========================================================================
   Marquee / trust strip
   ========================================================================== */
.trust { border-block: 1px solid var(--line); background: var(--surface); }
.trust__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--sp-4); padding-block: var(--sp-4); }
.trust__item { display: flex; align-items: center; gap: 0.85rem; color: var(--ink-soft); font-size: 0.9rem; letter-spacing: 0.03em; }
.trust__item .ic { width: 1.5rem; height: 1.5rem; color: var(--gold); }
.trust__item strong { color: var(--ink); font-weight: 500; }

/* ==========================================================================
   Intro / statement
   ========================================================================== */
.statement { text-align: center; max-width: 52rem; margin-inline: auto; }
.statement p {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 1.1rem + 2vw, 2.6rem);
  line-height: 1.28;
  color: var(--ink);
  font-weight: 500;
}
.statement .word { display: inline-block; }
.statement em { font-style: italic; color: var(--gold); }

/* ==========================================================================
   Property collection
   ========================================================================== */
.collection { display: grid; gap: clamp(2.5rem, 4vw, 4.5rem); }
.pcard {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}
.pcard:nth-child(even) .pcard__media { order: 2; }
.pcard__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}
.pcard__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
  will-change: transform;
}
.pcard:hover .pcard__media img { transform: scale(1.05); }
/* Parallax wrapper fills the media box (with margin for the scroll shift) so
   no ivory gap shows behind the photo. */
.pcard__media > [data-parallax],
.locale__figure > [data-parallax] {
  position: absolute;
  left: 0; right: 0; top: -8%;
  height: 116%;
}
.pcard__media > [data-parallax] img,
.locale__figure > [data-parallax] img { width: 100%; height: 100%; object-fit: cover; }
.pcard__badge {
  position: absolute; top: 1rem; left: 1rem;
  z-index: 2;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(6px);
  color: var(--ink);
  font-family: var(--f-brand);
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  border-radius: 2px;
}
.pcard__index { font-family: var(--f-display); font-size: 0.95rem; color: var(--gold); letter-spacing: 0.1em; }
.pcard__region { font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-faint); margin-top: 0.4rem; }
.pcard__name { font-size: var(--t-h2); margin-top: 0.6rem; }
.pcard__addr { color: var(--ink-soft); margin-top: 0.5rem; font-size: 1rem; }
.pcard__tag { color: var(--ink-soft); margin-top: var(--sp-2); font-size: var(--t-lead); max-width: 34ch; }
.pcard__specs { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: var(--sp-3); }
.spec { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--ink-soft); font-size: 0.92rem; }
.spec .ic { width: 1.25rem; height: 1.25rem; color: var(--gold); }
.pcard__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem; margin-top: var(--sp-4); }

/* ==========================================================================
   Amenities / experience
   ========================================================================== */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); }
.feature {
  padding: var(--sp-4);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--sand);
  color: var(--gold);
  margin-bottom: var(--sp-3);
}
.feature__icon .ic { width: 1.5rem; height: 1.5rem; }
.feature h3 { font-size: var(--t-h3); font-family: var(--f-display); }
.feature p { color: var(--ink-soft); margin-top: 0.5rem; font-size: 0.98rem; }

/* ==========================================================================
   Location band (dark)
   ========================================================================== */
.band-dark { background: var(--ink); color: var(--on-dark); }
.band-dark .eyebrow { color: var(--gold-hi); }
.band-dark .eyebrow::before { background: var(--gold-hi); }
.locale { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.locale__col h2 { font-size: var(--t-h2); color: var(--on-dark); margin-top: var(--sp-3); }
.locale__col p { color: var(--on-dark-soft); margin-top: var(--sp-3); font-size: var(--t-lead); }
.locale__list { margin-top: var(--sp-4); display: grid; gap: 0; }
.locale__list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(245, 241, 232, 0.16);
  font-size: 1.05rem;
}
.locale__list li:last-child { border-bottom: 1px solid rgba(245, 241, 232, 0.16); }
.locale__list .dist { color: var(--gold-hi); font-family: var(--f-display); font-size: 1.1rem; }
.locale__figure { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3 / 4; box-shadow: var(--shadow-lg); }
.locale__figure img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.quotes { columns: 3; column-gap: clamp(1.5rem, 3vw, 2.5rem); }
.quote {
  break-inside: avoid;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  padding: var(--sp-4);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
}
.quote__stars { display: flex; gap: 0.2rem; color: var(--gold-bright); margin-bottom: var(--sp-3); }
.quote__stars .ic { width: 1.05rem; height: 1.05rem; }
.quote p {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.28rem);
  line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
}
.quote__by { margin-top: var(--sp-3); font-size: 0.9rem; color: var(--ink-faint); letter-spacing: 0.03em; }
.quote__by strong { color: var(--ink); font-weight: 500; display: block; letter-spacing: 0.04em; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { position: relative; overflow: hidden; background: var(--ink); color: var(--on-dark); text-align: center; }
.cta-band__glow {
  position: absolute; inset: auto 50% -40% 50%;
  width: 80vw; height: 80vw; max-width: 900px; max-height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201, 162, 75, 0.22), transparent 62%);
  pointer-events: none;
}
.cta-band__inner { position: relative; max-width: 44rem; margin-inline: auto; }
.cta-band h2 { font-size: var(--t-h1); color: var(--on-dark); }
.cta-band h2 em { font-style: italic; color: var(--gold-hi); }
.cta-band p { color: var(--on-dark-soft); margin-top: var(--sp-3); font-size: var(--t-lead); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); justify-content: center; margin-top: var(--sp-4); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: #100D0A; color: var(--on-dark-soft); padding-block: var(--sp-6) var(--sp-4); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: var(--sp-5); }
.footer__brand img { width: auto; height: 64px; object-fit: contain; }
.footer__brand p { margin-top: var(--sp-2); max-width: 34ch; font-size: 0.95rem; line-height: 1.7; }
.footer h4 { font-family: var(--f-brand); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-hi); margin-bottom: var(--sp-2); }
.footer__links { display: grid; gap: 0.7rem; }
.footer__links a { color: var(--on-dark-soft); font-size: 0.95rem; transition: color 0.35s var(--ease); }
.footer__links a:hover { color: var(--on-dark); }
.footer__bottom {
  margin-top: var(--sp-5); padding-top: var(--sp-3);
  border-top: 1px solid rgba(245, 241, 232, 0.12);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--sp-2);
  font-size: 0.82rem; letter-spacing: 0.03em;
}

/* ==========================================================================
   Property detail page
   ========================================================================== */
.pd-hero { position: relative; min-height: 92svh; display: flex; align-items: flex-end; overflow: hidden; }
.pd-hero__media { position: absolute; inset: 0; z-index: -2; }
.pd-hero__media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.pd-hero__scrim { position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(10,8,6,0.82) 0%, rgba(10,8,6,0.1) 52%, rgba(10,8,6,0.35) 100%); }
.pd-hero__inner { color: var(--on-dark); padding-bottom: clamp(2.5rem, 6vh, 5rem); }
.pd-hero__back { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--on-dark-soft); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: var(--sp-3); transition: gap 0.4s var(--ease), color 0.35s; }
.pd-hero__back:hover { gap: 0.85rem; color: var(--on-dark); }
.pd-hero__region { color: var(--gold-hi); }
.pd-hero__title { font-size: var(--t-h1); color: var(--on-dark); margin: var(--sp-2) 0; max-width: 18ch; }
.pd-hero__addr { color: var(--on-dark-soft); font-size: var(--t-lead); display: flex; align-items: center; gap: 0.5rem; }
.pd-hero__specs { display: flex; flex-wrap: wrap; gap: 1.8rem; margin-top: var(--sp-4); }
.pd-hero__specs .spec { color: var(--on-dark); font-size: 1rem; }
.pd-hero__specs .spec .ic { color: var(--gold-hi); }

.pd-layout { display: grid; grid-template-columns: 1fr 380px; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.pd-body h2 { font-size: var(--t-h2); }
.pd-body > * + * { margin-top: var(--sp-3); }
.pd-body p { color: var(--ink-soft); font-size: var(--t-lead); line-height: 1.75; }
.pd-highlights { margin-top: var(--sp-4); display: grid; gap: 0; }
.pd-highlights li { display: flex; gap: 0.9rem; align-items: flex-start; padding: 0.9rem 0; border-top: 1px solid var(--line); }
.pd-highlights li:last-child { border-bottom: 1px solid var(--line); }
.pd-highlights .ic { width: 1.25rem; height: 1.25rem; color: var(--gold); margin-top: 0.25rem; flex: none; }
.pd-features { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: var(--sp-3); }
.pd-features li {
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  padding: 0.5rem 1.1rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* Sticky booking card */
.book-card {
  position: sticky; top: 96px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  box-shadow: var(--shadow-md);
}
.book-card__label { font-family: var(--f-brand); font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.book-card__name { font-family: var(--f-display); font-size: 1.5rem; margin-top: 0.4rem; line-height: 1.15; }
.book-card__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem 1rem; margin: var(--sp-3) 0; padding: var(--sp-3) 0; border-block: 1px solid var(--line); }
.book-card__specs .spec { font-size: 0.9rem; }
.book-card__note { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--ink-faint); margin-top: var(--sp-2); }
.book-card__note .ic { width: 1.1rem; height: 1.1rem; color: var(--gold); }

/* Gallery */
.gallery { columns: 3; column-gap: 14px; }
.gallery__item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--radius); overflow: hidden;
  position: relative;
  cursor: zoom-in;
  background: var(--sand);
}
.gallery__item img { width: 100%; transition: transform 0.9s var(--ease), filter 0.5s var(--ease); }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(16, 13, 10, 0);
  transition: background 0.4s var(--ease);
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item:hover::after { background: rgba(16, 13, 10, 0.12); }
.gallery__zoom {
  position: absolute; right: 0.7rem; bottom: 0.7rem;
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(250, 247, 241, 0.9);
  color: var(--ink);
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.gallery__item:hover .gallery__zoom { opacity: 1; transform: none; }

/* What's nearby */
.nearby { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(2rem, 5vw, 4rem); max-width: 64rem; }
.nearby li {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 0;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
}
.nearby__place { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--ink); }
.nearby__place .ic { width: 1.15rem; height: 1.15rem; color: var(--gold); flex: none; }
.nearby__t { color: var(--gold); font-family: var(--f-display); font-size: 1.1rem; white-space: nowrap; }
@media (max-width: 640px) { .nearby { grid-template-columns: 1fr; } }

/* Other properties strip */
.mini-collection { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: var(--sp-3); }
.mini {
  display: block;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.mini:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mini__media { aspect-ratio: 4/3; overflow: hidden; }
.mini__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.mini:hover .mini__media img { transform: scale(1.06); }
.mini__body { padding: var(--sp-3); }
.mini__region { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.mini__name { font-family: var(--f-display); font-size: 1.25rem; margin-top: 0.3rem; }
.mini__meta { color: var(--ink-faint); font-size: 0.85rem; margin-top: 0.4rem; }

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: var(--z-modal);
  background: rgba(12, 10, 8, 0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img { max-width: min(92vw, 1400px); max-height: 86vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__btn {
  position: absolute;
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245, 241, 232, 0.1);
  color: var(--on-dark);
  transition: background 0.35s var(--ease);
}
.lightbox__btn:hover { background: rgba(245, 241, 232, 0.24); }
.lightbox__btn .ic { width: 24px; height: 24px; }
.lightbox__close { top: 1.4rem; right: 1.4rem; }
.lightbox__prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__count { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); color: var(--on-dark-soft); font-size: 0.85rem; letter-spacing: 0.15em; }

/* ==========================================================================
   Scroll-reveal (JS toggles .is-in)
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .pd-layout { grid-template-columns: 1fr; }
  .book-card { position: static; order: -1; }
  .gallery { columns: 2; }
  .quotes { columns: 2; }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: flex; }
  .pcard { grid-template-columns: 1fr; gap: var(--sp-3); }
  .pcard:nth-child(even) .pcard__media { order: 0; }
  .locale { grid-template-columns: 1fr; }
  .locale__figure { aspect-ratio: 16/10; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-4); }
}
@media (max-width: 560px) {
  .gallery { columns: 1; }
  .quotes { columns: 1; }
  .hero__scroll { display: none; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .trust__row { justify-content: flex-start; gap: var(--sp-3) var(--sp-4); }
  .pd-hero__specs { gap: 1rem 1.4rem; }
}

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