:root {
  --paper: #f9f7f2;
  --paper-alt: #f2efe7;
  --ink: #141414;
  --peat: #0d0d0d;
  --stone: #6b6b63;
  --line: rgba(20, 20, 20, .13);
  --line-shell: rgba(249, 247, 242, .2);
  --accent: #4b5a33;
  --accent-dark: #3a4527;
  --shell: #f9f7f2;
  --serif: "Italiana", Georgia, serif;
  --sans: "Questrial", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --gutter: clamp(20px, 5vw, 72px);
  --maxw: 1360px;
  --ease: cubic-bezier(.16, .5, .3, 1);
  /* One consistent grade applied to every real photo (drone stills, phone
     interiors, different times of day) so the whole shoot reads as a single
     considered edit rather than a stitched-together mix of sources. */
  --film: saturate(.93) contrast(1.05) brightness(1.02) sepia(.035);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--ink); color: var(--paper); }

/* Fine paper grain over the whole page — a print-editorial texture instead
   of flat digital colour. Fixed so it doesn't scroll/tile-repeat visibly. */
body::before {
  content: "";
  position: fixed; inset: 0;
  z-index: 90;
  opacity: .035;
  mix-blend-mode: multiply;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Load-in curtain */
.curtain {
  position: fixed; inset: 0; z-index: 200;
  background: var(--peat);
  display: flex; align-items: center; justify-content: center;
  transition: transform 1.1s var(--ease) .15s, opacity 1s ease .15s;
}
.curtain__mark {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.3rem; color: rgba(249,247,242,.6); letter-spacing: .12em; text-transform: uppercase;
  opacity: 0; transition: opacity .6s ease .2s;
}
.curtain.is-ready .curtain__mark { opacity: 1; }
.curtain.is-hidden {
  transform: translateY(-100%);
  opacity: 1;
  pointer-events: none;
}

/* Scroll progress hairline */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 210;
  background: rgba(20,20,20,.08);
}
.progress__fill {
  display: block; height: 100%; width: 0%;
  background: var(--accent);
  transition: width .1s linear;
}

/* Custom cursor (pointer devices only — see html.has-cursor) */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 220;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width .3s var(--ease), height .3s var(--ease), background .3s ease, opacity .2s ease;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
}
html.has-cursor .cursor { opacity: 1; }
.cursor__label {
  font-family: var(--sans); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--shell); opacity: 0; transition: opacity .2s ease; white-space: nowrap;
}
.cursor--view { width: 68px; height: 68px; background: rgba(13,13,13,.88); }
.cursor--view .cursor__label { opacity: 1; }
.cursor--link { width: 26px; height: 26px; background: rgba(75,90,51,.35); }
html.has-cursor a, html.has-cursor .tour__media { cursor: none; }

.mono { font-family: var(--sans); }
.eyebrow {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--stone);
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: 780px; }
.band { padding: clamp(80px, 13vh, 170px) 0; }

/* Fixed chrome: placeholder banner + header stack together so the header
   never has to guess the banner's height. */
.site-chrome {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
}

/* Placeholder banner */
.placeholder-banner {
  background: var(--peat);
  color: var(--shell);
  text-align: center;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
}

/* Header */
#site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px var(--gutter);
  transition: background .6s ease, color .6s ease, padding .6s ease, border-color .6s ease;
  border-bottom: 1px solid transparent;
  color: var(--shell);
  text-shadow: 0 1px 16px rgba(0, 0, 0, .3);
  background: linear-gradient(180deg, rgba(0, 0, 0, .34), rgba(0, 0, 0, 0));
}
#site-header.solid {
  background: rgba(249, 247, 242, .9);
  backdrop-filter: blur(10px);
  color: var(--ink);
  text-shadow: none;
  border-bottom: 1px solid var(--line);
  padding-top: 11px;
  padding-bottom: 11px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--shell);
}
.wordmark__v {
  height: 54px;
  width: auto;
  flex: none;
  display: block;
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, .3));
}
.wordmark__lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.wordmark__name {
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: .16em;
}
.wordmark__tag {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .22em;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid currentColor;
  align-self: stretch;
  text-align: center;
}
/* Adaptive: cream monochrome over the hero, true brand colours on the solid bar */
#site-header.solid .wordmark { color: var(--ink); }
#site-header.solid .wordmark__v { color: var(--accent); filter: none; }
#site-header.solid .wordmark__tag { color: var(--accent); border-top-color: var(--accent); }
.wordmark__type {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1;
}
.wordmark__type span {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .34em;
  display: block;
  margin-top: 3px;
  opacity: .7;
}
.nav-right { display: flex; align-items: center; gap: clamp(16px, 3vw, 40px); }
.coord { font-size: 11px; letter-spacing: .16em; }
.enquire {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
}
.langswitch { display: flex; align-items: center; gap: 9px; font-size: 11px; letter-spacing: .12em; }
.langswitch a { opacity: .55; transition: opacity .3s ease; }
.langswitch a:hover { opacity: 1; }
.langswitch__current { opacity: 1; text-decoration: none; }
.agency { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; opacity: .8; transition: opacity .3s ease; white-space: nowrap; }
.agency:hover { opacity: 1; }
@media (max-width: 720px) { .coord { display: none; } .langswitch { gap: 7px; letter-spacing: .06em; } .agency { display: none; } }

/* Hero */
.hero { position: relative; height: 100svh; min-height: 620px; overflow: hidden; background: var(--peat); }
.hero__image {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: var(--film);
  transform: scale(1.06);
  animation: hero-settle 2s var(--ease) forwards;
}
@keyframes hero-settle { from { transform: scale(1.1); } to { transform: scale(1.02); } }
.hero__placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #23291b, var(--peat) 70%);
  display: flex; align-items: center; justify-content: center;
}
.hero__placeholder span {
  font-family: var(--sans);
  color: rgba(249, 247, 242, .6);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero__grain {
  position: absolute; inset: 0;
  opacity: .25;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(13,13,13,.82) 0%, rgba(13,13,13,.2) 46%, rgba(13,13,13,.06) 62%, rgba(13,13,13,.3) 100%);
}
.hero__inner {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--gutter) clamp(44px, 7vh, 90px);
  color: var(--shell);
}
.hero__meta { display: flex; gap: 24px; margin-bottom: 20px; color: rgba(249,247,242,.85); font-size: 11px; letter-spacing: .2em; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 7.2vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: .03em;
  text-transform: uppercase;
  max-width: 18ch;
}
.hero__sub {
  max-width: 40ch;
  margin-top: 22px;
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(249,247,242,.88);
  font-weight: 400;
}
.hero__cta { display: flex; align-items: center; gap: 2.25rem; flex-wrap: wrap; margin-top: 2rem; }
.price-block { display: flex; flex-direction: column; gap: .3rem; }
.price-kicker {
  font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: rgba(249,247,242,.65);
}
.price-value {
  font-family: var(--serif); font-weight: 400; letter-spacing: .04em;
  font-size: clamp(1.5rem, 2.4vw, 2rem); color: var(--shell);
  font-variant-numeric: tabular-nums;
}
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .85rem 1.7rem;
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.btn:hover { background: var(--shell); color: var(--ink); transform: translateY(-1px); }
.hero .btn:hover { background: var(--shell); color: var(--peat); }

.scrollcue {
  position: absolute; right: var(--gutter); bottom: clamp(40px, 7vh, 84px); z-index: 3;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(249,247,242,.75);
  writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 14px;
}
.scrollcue::after {
  content: ""; width: 1px; height: 54px; background: rgba(249,247,242,.5);
  animation: cue 2.6s ease-in-out infinite;
}
@keyframes cue { 0%,100% { transform: scaleY(.3); transform-origin: top; opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }
@media (max-width: 720px) { .scrollcue { display: none; } }

/* Flyover video break */
.flyover { position: relative; height: 62vh; min-height: 380px; overflow: hidden; background: var(--peat); }
.flyover__video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: var(--film);
}
.flyover__veil {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(13,13,13,.5) 0%, rgba(13,13,13,0) 35%, rgba(13,13,13,0) 75%, rgba(13,13,13,.3) 100%);
}
.flyover__caption {
  position: absolute; left: var(--gutter); bottom: 20px; z-index: 2;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(249,247,242,.85);
}
.flyover__play {
  position: absolute; inset: 0; z-index: 3;
  width: 100%; height: 100%;
  background: rgba(13,13,13,.25);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.flyover__play span {
  width: 74px; height: 74px; border-radius: 50%;
  border: 1px solid rgba(249,247,242,.7);
  background: rgba(13,13,13,.5);
  position: relative;
}
.flyover__play span::before {
  content: "";
  position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%);
  border-style: solid; border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--shell);
}
@media (max-width: 720px) { .flyover { height: 46vh; min-height: 300px; } }

/* Statement */
.statement .wrap { display: grid; grid-template-columns: 1fr 2.3fr; gap: clamp(30px, 6vw, 90px); }
.lede {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.5;
  color: var(--ink);
}
.statement .body { margin-top: 2rem; max-width: 56ch; color: #47473f; font-size: 1rem; }
@media (max-width: 820px) { .statement .wrap { grid-template-columns: 1fr; gap: 22px; } }

/* Gallery */
.gallery { border-top: 1px solid var(--line); background: var(--paper); }
.gallery h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.5rem); color: var(--ink);
  margin: .5rem 0 clamp(28px, 4vw, 52px);
}
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.gallery__item {
  position: relative; aspect-ratio: 3 / 2; overflow: hidden;
  cursor: zoom-in; border: 0; padding: 0; background: var(--paper-alt);
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: var(--film); transition: transform 1s var(--ease);
}
.gallery__item:hover img { transform: scale(1.045); }
@media (max-width: 820px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 6px; } }

/* Promenade */
.promenade { border-top: 1px solid var(--line); }
.tour__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(52px, 8vh, 110px) 0;
  border-bottom: 1px solid var(--line);
}
.tour__item:nth-child(even) .tour__media { order: 2; }
.tour__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(160deg, #d8d5c8, #b0ad9f 55%, #8c8a7c 100%);
  cursor: zoom-in;
}
.tour__media img { filter: var(--film); transition: transform 1.3s var(--ease); }
.tour__item:hover .tour__media img { transform: scale(1.05); }
.tour__media--slides img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.5s ease; }
.tour__media--slides img.is-active { opacity: 1; }
.tour__mark {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-size: 10px; letter-spacing: .2em; color: rgba(255,255,255,.9); text-transform: uppercase;
}
.tour__idx { font-size: 12px; letter-spacing: .24em; color: var(--stone); font-family: var(--sans); }
.tour__title {
  font-family: var(--serif); font-weight: 400; text-transform: uppercase;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  line-height: 1.15; margin: 14px 0 18px; letter-spacing: .03em;
  color: var(--accent);
}
.tour__text { max-width: 44ch; color: #47473f; font-size: 1rem; }
.tour__tags {
  margin-top: 24px; padding-top: 14px; border-top: 1px solid var(--line);
  font-size: 11px; letter-spacing: .1em; color: var(--stone);
  display: flex; gap: 20px; flex-wrap: wrap;
}
@media (max-width: 820px) {
  .tour__item { grid-template-columns: 1fr; gap: 22px; }
  .tour__item:nth-child(even) .tour__media { order: 0; }
  .tour__media { aspect-ratio: 4 / 3; }
}

/* Specification */
.spec { background: var(--paper-alt); }
.spec .wrap { display: block; }
.spec .reveal { max-width: 820px; }
.spec .floorplan { position: static; max-width: 1080px; margin: clamp(48px, 7vw, 90px) 0 0; }
.spec h2 {
  font-family: var(--serif); font-weight: 400; text-transform: uppercase;
  font-size: clamp(1.7rem, 3vw, 2.5rem); letter-spacing: .04em; margin: 12px 0 26px;
}
.spectable { width: 100%; border-collapse: collapse; }
.spectable tr { border-top: 1px solid var(--line); }
.spectable tr:last-child { border-bottom: 1px solid var(--line); }
.spectable th {
  text-align: left; font-family: var(--sans); font-weight: 400; font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--stone); padding: 15px 0; width: 40%; vertical-align: top;
}
.spectable td { padding: 15px 0; font-size: 15px; color: var(--ink); }

.amenities {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .7rem 2rem;
}
.amenities li { font-size: .92rem; color: var(--ink); padding-left: 1.1rem; position: relative; }
.amenities li::before {
  content: ""; position: absolute; left: 0; top: .6em; width: 7px; height: 1px; background: var(--accent);
}

.sketch { position: sticky; top: 110px; }
.sketch svg { width: 100%; height: auto; display: block; }
.floorplan { margin: 0; }
.floorplan__frame {
  display: block;
  width: 100%;
  padding: clamp(12px, 1.6vw, 22px);
  background: #fff;
  border: 1px solid var(--line);
  cursor: zoom-in;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .5s var(--ease);
}
.floorplan__frame:hover { border-color: var(--stone); }
.floorplan__frame img { width: 100%; height: auto; object-fit: contain; display: block; }
.sketch__cap { margin-top: 14px; display: flex; justify-content: space-between; }
.sketch__cap span { font-size: 10px; letter-spacing: .18em; color: var(--stone); }
@media (max-width: 820px) {
  .spec .wrap { grid-template-columns: 1fr; gap: 30px; }
  .amenities { grid-template-columns: 1fr; }
  .sketch { position: static; order: -1; }
}

/* Dusk break */
.dusk { position: relative; height: 76vh; min-height: 460px; overflow: hidden; background: var(--peat); }
.dusk__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: var(--film) brightness(.82); }
.dusk__veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,13,13,.72), rgba(13,13,13,.18) 55%, rgba(13,13,13,.45)); }
.dusk__inner { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; padding: 0 var(--gutter); color: var(--shell); }
.dusk q {
  font-family: var(--serif); font-weight: 400; quotes: none; text-transform: uppercase;
  font-size: clamp(1.4rem, 3.2vw, 2.5rem); line-height: 1.3; letter-spacing: .02em; max-width: 22ch; display: block;
}
.dusk .attr { margin-top: 22px; color: rgba(249,247,242,.7); font-size: 11px; letter-spacing: .2em; }

/* Enquiry */
.enquiry { background: var(--peat); color: var(--shell); }
.enquiry .wrap { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(30px, 6vw, 80px); align-items: end; }
.enquiry .eyebrow { color: var(--stone); }
.enquiry h2 {
  font-family: var(--serif); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.2rem, 5.4vw, 4.2rem); line-height: 1.05; letter-spacing: .03em; margin: 16px 0 0;
}
.enquiry h2 em { font-style: normal; color: var(--accent); filter: brightness(1.5) saturate(1.3); }
.contact { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.contact dt { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--stone); margin-bottom: -6px; }
.contact dd { font-family: var(--serif); font-size: 1.05rem; letter-spacing: .04em; text-transform: uppercase; color: #fff; margin: 0; }
.contact a {
  font-size: 12px; letter-spacing: .12em; padding-bottom: 4px;
  border-bottom: 1px solid var(--line-shell); transition: border-color .35s ease;
}
.contact a:hover { border-color: var(--shell); }
.contact .label { font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--stone); }
.contact .wa-btn {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 8px; padding: .72rem 1.25rem;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid #25d366; color: #fff;
  transition: background .25s ease, color .25s ease;
}
.contact .wa-btn:hover { background: #25d366; color: var(--peat); }
.contact .wa-btn svg { width: 17px; height: 17px; flex: none; fill: #25d366; transition: fill .25s ease; }
.contact .wa-btn:hover svg { fill: var(--peat); }
@media (max-width: 820px) { .enquiry .wrap { grid-template-columns: 1fr; gap: 40px; align-items: start; } }

/* Footer */
.foot { background: var(--peat); color: var(--stone); border-top: 1px solid var(--line-shell); }
.foot .wrap {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; padding-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.foot .mono { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--stone); }
.foot__agency { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--shell); text-decoration: none; border-bottom: 1px solid var(--line-shell); padding-bottom: 3px; transition: border-color .3s ease; }
.foot__agency:hover { border-color: var(--shell); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(13,13,13,.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .3s ease; padding: 2rem;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__image { max-width: 100%; max-height: 100%; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox__close {
  position: absolute; top: 1.5rem; right: 1.75rem;
  background: none; border: none; color: #fff; font-size: 2.2rem; line-height: 1; cursor: pointer; opacity: .8;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__rotate-hint {
  display: none;
  position: absolute; left: 50%; bottom: clamp(20px, 6vh, 40px); transform: translateX(-50%);
  z-index: 4;
  align-items: center; gap: 10px;
  color: var(--shell); font-family: var(--sans); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(13,13,13,.7);
  padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(249,247,242,.25);
  pointer-events: none; white-space: nowrap;
}
.lightbox.show-rotate-hint .lightbox__rotate-hint { display: flex; }
.lightbox__rotate-icon {
  width: 14px; height: 22px; flex-shrink: 0;
  border: 1.5px solid var(--shell); border-radius: 3px;
  position: relative;
  animation: rotate-hint 3s ease-in-out infinite;
}
.lightbox__rotate-icon::after {
  content: ""; position: absolute; left: 50%; bottom: 3px;
  width: 2px; height: 2px; border-radius: 50%;
  background: var(--shell); transform: translateX(-50%);
}
@keyframes rotate-hint {
  0%, 15% { transform: rotate(0deg); }
  45%, 65% { transform: rotate(-90deg); }
  95%, 100% { transform: rotate(0deg); }
}
@media (prefers-reduced-motion: reduce) {
  .lightbox__rotate-icon { animation: none; transform: rotate(-90deg); }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 1.05s var(--ease), transform 1.05s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.hero-load { opacity: 0; transform: translateY(20px); }
.hero-load.in { opacity: 1; transform: none; transition: opacity 1.4s ease, transform 1.4s var(--ease); }

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

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal, .hero-load { opacity: 1; transform: none; transition: none; }
  .tour__item:hover .tour__media img { transform: none; }
}
