:root {
  --ink: #0c100f;
  --ink-soft: #17201d;
  --ivory: #f4f0e7;
  --paper: #fbfaf6;
  --stone: #d8d0c1;
  --gold: #c6a66a;
  --gold-light: #dec794;
  --white: #fff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --max: 1380px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.lightbox-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 9999;
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--ink);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.2);
  transition: background .35s ease, color .35s ease, height .35s ease;
}
.site-header.scrolled {
  height: 74px;
  color: var(--ink);
  background: rgba(251,250,246,.96);
  border-color: rgba(12,16,15,.12);
}
.brand { display: flex; align-items: center; gap: .85rem; line-height: 1.05; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  font-family: var(--serif);
  font-size: .86rem;
  letter-spacing: .08em;
}
.brand-name { font-family: var(--serif); font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 2.8rem); }
.main-nav a { font-size: .71rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.main-nav a:not(.nav-cta) { position: relative; }
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.45rem;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}
.main-nav a:hover::after { right: 0; }
.nav-cta { padding: .85rem 1.15rem; border: 1px solid currentColor; }
.menu-toggle { display: none; border: 0; padding: .4rem; background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 1px; margin: 5px 0; background: currentColor; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--white); overflow: hidden; }
.hero-media { position: absolute; inset: 0; background: url("fotos_antiguas/dsc-1894-scaled.jpg") 58% center / cover no-repeat; transform: scale(1.02); animation: hero-in 1.8s ease-out both; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,9,8,.67) 0%, rgba(5,9,8,.28) 55%, rgba(5,9,8,.12) 100%), linear-gradient(0deg, rgba(5,9,8,.5) 0%, transparent 48%); }
.hero-content { position: relative; z-index: 2; width: min(920px, calc(100% - 2.5rem)); margin: 0 0 clamp(5rem, 11vh, 8.5rem) clamp(1.25rem, 8vw, 9rem); }
.eyebrow { margin: 0 0 1.3rem; color: #7c6950; font-size: .68rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; }
.eyebrow.light { color: var(--gold-light); }
.hero h1, h2 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: .9; letter-spacing: -.035em; }
.hero h1 { max-width: 850px; font-size: clamp(4rem, 9vw, 9rem); }
.hero-copy { max-width: 620px; margin: 2rem 0 0; font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.7rem); line-height: 1.35; }
.hero-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 1.7rem; border: 1px solid transparent; background: transparent; cursor: pointer; font-size: .69rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; transition: background .25s ease, color .25s ease, border .25s ease, transform .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--ink); }
.button-gold:hover { background: var(--gold-light); }
.button-outline { border-color: rgba(12,16,15,.35); }
.button-outline:hover { background: var(--ink); color: var(--white); }
.text-link { font-size: .71rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.text-link span { margin-left: .4rem; color: var(--gold-light); }
.hero-scroll { position: absolute; z-index: 2; right: 3.5rem; bottom: 3rem; display: flex; align-items: center; gap: .85rem; font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-scroll span { width: 1px; height: 54px; background: rgba(255,255,255,.65); }

.facts { display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--max); margin: 0 auto; padding: 2.8rem clamp(1.25rem, 4vw, 4rem); border-bottom: 1px solid var(--stone); }
.facts div { display: flex; align-items: baseline; justify-content: center; gap: .8rem; border-right: 1px solid var(--stone); }
.facts div:last-child { border-right: 0; }
.facts strong { font-family: var(--serif); font-size: 2.6rem; font-weight: 400; }
.facts span { color: #5c615f; font-size: .67rem; letter-spacing: .12em; text-transform: uppercase; }

.section { max-width: var(--max); margin: 0 auto; padding: clamp(6rem, 11vw, 10rem) clamp(1.25rem, 5vw, 5rem); }
.section-label { color: #7d7e79; font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; }
.intro { display: grid; grid-template-columns: .52fr 1.15fr 1fr; gap: clamp(2rem, 5vw, 6rem); }
.intro h2, .details h2, .rooms h2, .gallery-heading h2, .location h2, .enquire h2 { font-size: clamp(3.2rem, 6vw, 6.3rem); }
.intro-body { padding-top: 2.1rem; }
.intro-body > p { margin: 0 0 1.25rem; color: #4f5653; }
.intro-body strong { color: var(--ink); font-weight: 600; }
.price-note { margin-top: 2.5rem; padding: 1.5rem 0 0; border-top: 1px solid var(--stone); }
.price-note span, .price-note small { display: block; color: #757974; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.price-note strong { display: block; margin: .4rem 0; font-family: var(--serif); font-size: 2rem; font-weight: 500; }

.feature-images { max-width: 1600px; margin: 0 auto; padding: 0 clamp(1.25rem, 3vw, 3rem) clamp(6rem, 10vw, 10rem); display: grid; grid-template-columns: 1.6fr .7fr; align-items: end; gap: clamp(1.25rem, 3vw, 3.5rem); }
.feature-main img { aspect-ratio: 1.45; object-fit: cover; }
.feature-small { margin: 0 0 -3.5rem; }
.feature-small img { aspect-ratio: .9; object-fit: cover; }
.feature-small figcaption { max-width: 340px; margin-top: 1.2rem; color: #666c68; font-family: var(--serif); font-size: 1.1rem; font-style: italic; line-height: 1.35; }

.conversion-strip { display: flex; align-items: center; justify-content: space-between; gap: 2rem; max-width: var(--max); margin: 0 auto clamp(6rem, 10vw, 9rem); padding: 2rem clamp(1.25rem, 5vw, 5rem); color: var(--white); background: var(--ink-soft); }
.conversion-strip div { display: grid; gap: .35rem; }
.conversion-strip span { color: var(--gold-light); font-size: .61rem; letter-spacing: .15em; text-transform: uppercase; }
.conversion-strip strong { font-family: var(--serif); font-size: clamp(1.35rem, 2.2vw, 2rem); font-weight: 400; }

.dark-section { max-width: none; color: var(--ivory); background: var(--ink); }
.details { display: grid; grid-template-columns: .36fr 1fr; column-gap: 5vw; }
.details .section-label { color: #747c78; }
.details-heading { grid-column: 2; }
.amenities-grid { grid-column: 2; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 5rem; border-top: 1px solid rgba(255,255,255,.15); border-left: 1px solid rgba(255,255,255,.15); }
.amenity { min-height: 275px; padding: 2.2rem 1.8rem; border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.amenity > span { color: var(--gold); font-size: .62rem; letter-spacing: .15em; }
.amenity h3 { margin: 2.7rem 0 .8rem; font-family: var(--serif); font-size: 1.8rem; font-weight: 500; }
.amenity p { margin: 0; color: #aeb4b1; font-size: .88rem; }

.rooms-grid { grid-column: 1 / -1; display: grid; grid-template-columns: 1.08fr 1fr; gap: clamp(3rem, 8vw, 9rem); margin-top: 3.5rem; align-items: center; }
.rooms-image img { aspect-ratio: .95; object-fit: cover; }
.rooms-copy h2 { margin-bottom: 3.2rem; }
.level { display: grid; grid-template-columns: 120px 1fr; gap: 1.5rem; padding: 1.5rem 0; border-top: 1px solid var(--stone); }
.level span { color: #7b6a50; font-size: .65rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.level p { margin: 0; color: #555b58; }

.gallery-section { padding: 2rem 0 clamp(6rem, 10vw, 9rem); background: #eae5dc; }
.gallery-heading { display: flex; align-items: end; justify-content: space-between; padding-bottom: 4rem; }
.gallery-heading > p { max-width: 430px; margin: 0; color: #5d625f; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(240px, 32vw); gap: 3px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; background: #cbc5ba; cursor: zoom-in; }
.gallery-item img { height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.gallery-item::after { content: "+"; position: absolute; right: 1rem; bottom: 1rem; display: grid; place-items: center; width: 40px; height: 40px; color: var(--white); border: 1px solid rgba(255,255,255,.65); border-radius: 50%; opacity: 0; transform: translateY(8px); transition: .3s ease; }
.gallery-item:hover img { transform: scale(1.035); filter: brightness(.85); }
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }
.gallery-wide { grid-column: span 2; }
.gallery-tall { grid-row: span 2; }
.gallery-action { display: flex; justify-content: center; gap: 1rem; margin-top: 3.5rem; }

.location-grid { grid-column: 1 / -1; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 9rem); margin-top: 3.5rem; align-items: center; }
.location-copy > p:not(.eyebrow) { max-width: 570px; color: #555b58; margin: 2.2rem 0 3rem; }
.distance-list { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--stone); }
.distance-list div { padding: 1.5rem .8rem 0 0; }
.distance-list strong { display: block; font-family: var(--serif); font-size: 2.4rem; font-weight: 400; }
.distance-list span { display: block; color: #747874; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; line-height: 1.45; }
.location-image { position: relative; }
.location-image img { aspect-ratio: 1.1; object-fit: cover; }
.location-image span { position: absolute; left: 1.5rem; bottom: 1.5rem; padding: .6rem .9rem; background: rgba(12,16,15,.76); color: var(--white); font-size: .61rem; letter-spacing: .14em; text-transform: uppercase; backdrop-filter: blur(8px); }

.solar-section { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); position: relative; overflow: hidden; background: #e7e8df; }
.solar-photo-main { min-height: 760px; }
.solar-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.solar-content { align-self: center; padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 6vw, 6rem); }
.solar-content h2 { margin: 1rem 0 2rem; font-family: var(--serif); font-size: clamp(3.6rem, 6vw, 6.5rem); font-weight: 400; line-height: .9; letter-spacing: -.04em; }
.solar-content > p:not(.eyebrow) { max-width: 620px; color: #4e5650; }
.solar-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 3rem; background: rgba(12,16,15,.18); border: 1px solid rgba(12,16,15,.18); }
.solar-stats div { padding: 1.6rem; background: #e7e8df; }
.solar-stats strong { display: block; color: #263d31; font-family: var(--serif); font-size: 3rem; font-weight: 400; line-height: 1; }
.solar-stats small { font-family: var(--sans); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.solar-stats span { display: block; margin-top: .55rem; color: #667069; font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; }
.solar-photo-detail { position: absolute; left: clamp(1.5rem, 5vw, 5rem); bottom: clamp(1.5rem, 5vw, 5rem); width: min(20vw, 260px); margin: 0; padding: .65rem; background: #f6f4ef; box-shadow: 0 18px 50px rgba(10,20,15,.24); }
.solar-photo-detail img { width: 100%; aspect-ratio: .68; object-fit: cover; }
.solar-photo-detail figcaption { padding: .7rem .25rem .2rem; color: #626964; font-size: .58rem; line-height: 1.45; letter-spacing: .06em; text-transform: uppercase; }
.solar-cta { margin-top: 2rem; border-color: rgba(12,16,15,.35); }

.seller-section { display: grid; grid-template-columns: .28fr .78fr 1.25fr; gap: clamp(2rem, 5vw, 6rem); align-items: center; }
.seller-photo img { aspect-ratio: .77; object-fit: cover; object-position: center 22%; }
.seller-copy h2 { margin: 1rem 0 2rem; font-family: var(--serif); font-size: clamp(3.2rem, 5.5vw, 5.8rem); font-weight: 400; line-height: .91; letter-spacing: -.035em; }
.seller-copy h3 { margin: 0 0 .8rem; font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.seller-copy > p:not(.eyebrow) { max-width: 650px; color: #555b58; }
.seller-actions { display: flex; align-items: center; gap: 1.8rem; margin-top: 2.2rem; }
.seller-actions .text-link { color: #5b4d39; }

.questions { background: #f3f0ea; }
.questions-heading { grid-column: 4 / 8; }
.questions-heading > p:last-child { max-width: 560px; color: #5d625f; }
.questions-list { grid-column: 9 / 13; border-top: 1px solid var(--stone); }
.questions-list details { border-bottom: 1px solid var(--stone); }
.questions-list summary { position: relative; padding: 1.4rem 2.5rem 1.4rem 0; font-family: var(--serif); font-size: 1.28rem; cursor: pointer; list-style: none; }
.questions-list summary::-webkit-details-marker { display: none; }
.questions-list summary::after { content: "+"; position: absolute; right: .2rem; top: 1.15rem; color: var(--gold-dark); font-family: var(--sans); font-size: 1.5rem; font-weight: 300; }
.questions-list details[open] summary::after { content: "−"; }
.questions-list details p { margin: -.2rem 2.5rem 1.5rem 0; color: #555b58; }
.questions-list a, .form-note a, .site-footer a { text-decoration: underline; text-underline-offset: .2em; }

.enquire { position: relative; min-height: 850px; display: grid; place-items: center; padding: 8rem 1.25rem; color: var(--white); background: var(--ink); overflow: hidden; }
.enquire-backdrop { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,12,11,.96) 0%, rgba(8,12,11,.88) 48%, rgba(8,12,11,.55) 100%), url("fotos_antiguas/dsc-1932-scaled.jpg") center / cover; opacity: .85; }
.enquire-content { position: relative; z-index: 1; width: min(1050px, 100%); }
.enquire-content > p:not(.eyebrow) { max-width: 640px; margin: 2rem 0 3rem; color: #c5cac7; font-family: var(--serif); font-size: 1.25rem; }
.enquiry-form { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 1050px; }
.field { position: relative; }
.field label { position: absolute; left: 0; top: 0; color: var(--gold-light); font-size: .59rem; letter-spacing: .14em; text-transform: uppercase; }
.field label span { color: #929995; letter-spacing: .06em; }
.field input { width: 100%; height: 68px; padding: 1.25rem 0 .2rem; color: var(--white); border: 0; border-bottom: 1px solid rgba(255,255,255,.35); outline: 0; background: transparent; border-radius: 0; }
.field input:focus { border-color: var(--gold); }
.submit-button { grid-column: 1 / -1; width: fit-content; margin-top: 1rem; }
.form-note { grid-column: 1 / -1; margin: .2rem 0 0 !important; color: #8f9692 !important; font-family: var(--sans) !important; font-size: .68rem !important; }
.form-status { grid-column: 1 / -1; min-height: 1.5rem; color: var(--gold-light); font-size: .84rem; }
.form-status.error { color: #f2a39c; }
.contact-person { max-width: none !important; margin: 2.2rem 0 0 !important; color: #b6bdb9 !important; font-family: var(--sans) !important; font-size: .78rem !important; }
.contact-person strong { color: var(--white); }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.direct-contact { display: flex; gap: 3rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.18); }
.direct-contact a { font-family: var(--serif); font-size: 1.3rem; }
.direct-contact span { display: block; margin-bottom: .35rem; color: #8f9692; font-family: var(--sans); font-size: .57rem; letter-spacing: .16em; text-transform: uppercase; }

.site-footer { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 2rem; padding: 2rem clamp(1.25rem, 4vw, 4.5rem); color: #929995; background: #080b0a; border-top: 1px solid rgba(255,255,255,.1); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-brand { display: flex; align-items: center; gap: 1rem; color: var(--white); font-family: var(--serif); font-size: .9rem; }
.footer-brand .brand-mark { width: 34px; height: 34px; font-size: .68rem; }
.site-footer p { margin: 0; }

.whatsapp-float { position: fixed; z-index: 90; right: 1.4rem; bottom: 1.4rem; display: grid; place-items: center; width: 54px; height: 54px; color: var(--ink); background: var(--gold); border-radius: 50%; box-shadow: 0 10px 30px rgba(0,0,0,.24); transition: transform .25s ease, background .25s ease; }
.whatsapp-float:hover { transform: translateY(-3px); background: var(--gold-light); }
.whatsapp-float svg { width: 24px; height: 24px; fill: currentColor; }

.lightbox { width: 100vw; max-width: none; height: 100vh; max-height: none; margin: 0; padding: 0; color: var(--white); border: 0; background: rgba(5,8,7,.97); }
.lightbox[open] { display: grid; grid-template-columns: 90px 1fr 90px; align-items: center; }
.lightbox::backdrop { background: rgba(5,8,7,.97); }
.lightbox figure { margin: 0; display: grid; place-items: center; max-height: 100vh; }
.lightbox figure img { width: auto; max-width: 100%; max-height: 86vh; object-fit: contain; }
.lightbox figcaption { width: min(100%, 1100px); display: flex; justify-content: space-between; padding: .8rem 0; color: #adb3b0; font-size: .68rem; letter-spacing: .08em; }
.lightbox-close, .lightbox-nav { border: 0; background: transparent; color: var(--white); cursor: pointer; }
.lightbox-close { position: absolute; z-index: 2; top: 1.5rem; right: 1.7rem; font-size: 2.2rem; font-weight: 200; }
.lightbox-nav { height: 100%; font-family: var(--serif); font-size: 4rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes hero-in { from { transform: scale(1.08); filter: brightness(.75); } to { transform: scale(1.02); filter: brightness(1); } }

@media (max-width: 1020px) {
  .site-header { height: 76px; }
  .menu-toggle { display: block; z-index: 2; }
  .main-nav { position: fixed; top: 0; left: 0; width: 100vw; height: 100dvh; display: flex; flex-direction: column; justify-content: center; gap: 2rem; padding: 5rem 1.5rem; color: var(--white); background: var(--ink); opacity: 0; visibility: hidden; pointer-events: none; transform: translateX(100%); transition: transform .35s ease, opacity .35s ease, visibility 0s linear .35s; }
  .main-nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(0); transition-delay: 0s; }
  .main-nav a { font-family: var(--serif); font-size: 2.2rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
  .nav-cta { border: 0; padding: 0; color: var(--gold-light); }
  .site-header.menu-active { color: var(--white); background: transparent; }
  .facts { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 0; }
  .facts div:nth-child(2) { border-right: 0; }
  .intro { grid-template-columns: .25fr 1fr; }
  .intro-body { grid-column: 2; }
  .details { grid-template-columns: .25fr 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid, .location-grid { grid-template-columns: 1fr; }
  .location-image { order: -1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-heading { align-items: start; flex-direction: column; gap: 2rem; }
  .solar-section { grid-template-columns: 1fr; }
  .solar-photo-main { min-height: 58vw; }
  .solar-photo-detail { position: relative; inset: auto; grid-column: 1; width: min(42vw, 250px); margin: -7rem 2rem 2rem auto; }
  .solar-content { padding-top: 5rem; }
  .seller-section { grid-template-columns: .25fr 1fr; }
  .seller-photo { grid-column: 2; }
  .seller-copy { grid-column: 2; }
  .questions-heading { grid-column: 2 / -1; }
  .questions-list { grid-column: 2 / -1; margin-top: 2rem; }
}

@media (max-width: 680px) {
  .hero-content { margin-left: 1.25rem; margin-bottom: 6.5rem; }
  .hero h1 { font-size: clamp(3.7rem, 18vw, 5.2rem); }
  .hero-copy { font-size: 1.1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.2rem; }
  .hero-scroll { display: none; }
  .facts { padding: 2rem 1.25rem; }
  .facts div { align-items: center; flex-direction: column; gap: .1rem; text-align: center; }
  .facts strong { font-size: 2rem; }
  .facts span { font-size: .54rem; }
  .section { padding: 5.5rem 1.25rem; }
  .intro, .details { display: block; }
  .questions { display: block; }
  .questions-heading, .questions-list { margin-top: 2.5rem; }
  .intro-copy, .details-heading { margin-top: 2.5rem; }
  .intro-body { padding-top: 2rem; }
  .intro h2, .details h2, .rooms h2, .gallery-heading h2, .location h2, .enquire h2 { font-size: clamp(3rem, 14vw, 4.4rem); }
  .feature-images { display: block; padding: 0 1.25rem 5rem; }
  .solar-photo-main { min-height: 70vw; }
  .solar-photo-detail { position: relative; inset: auto; width: min(68%, 230px); margin: 0 1.25rem 2.5rem auto; }
  .solar-photo-detail figcaption { display: block; }
  .solar-content { padding: 5rem 1.25rem 3rem; }
  .solar-content h2 { font-size: clamp(3rem, 14vw, 4.4rem); }
  .solar-stats strong { font-size: 2.3rem; }
  .solar-stats div { padding: 1.2rem .9rem; }
  .feature-main img { aspect-ratio: .85; }
  .feature-small { width: 78%; margin: -4rem 0 0 auto; position: relative; }
  .amenities-grid { display: block; margin-top: 3rem; border-left: 0; }
  .amenity { min-height: 0; padding: 1.7rem 0; border-right: 0; }
  .amenity h3 { margin-top: 1rem; }
  .rooms-grid { margin-top: 2.5rem; gap: 3rem; }
  .rooms-image img { aspect-ratio: .82; }
  .level { grid-template-columns: 95px 1fr; gap: .8rem; }
  .gallery-heading { padding-bottom: 2.5rem; }
  .gallery-grid { grid-auto-rows: 58vw; }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: span 1; }
  .distance-list { gap: .6rem; }
  .distance-list strong { font-size: 2rem; }
  .enquire { padding: 6rem 1.25rem; }
  .enquiry-form { grid-template-columns: 1fr; }
  .submit-button, .form-note, .form-status { grid-column: 1; }
  .direct-contact { flex-direction: column; gap: 1.2rem; }
  .direct-contact a { font-size: 1.05rem; overflow-wrap: anywhere; }
  .site-footer { grid-template-columns: 1fr; gap: 1rem; text-align: center; }
  .conversion-strip { align-items: flex-start; flex-direction: column; margin-bottom: 5rem; }
  .gallery-action { align-items: stretch; flex-direction: column; padding: 0 1.25rem; }
  .seller-section { display: block; }
  .seller-photo { width: min(82%, 340px); margin: 2.5rem 0 3rem; }
  .seller-copy h2 { font-size: clamp(3rem, 14vw, 4.4rem); }
  .seller-actions { align-items: flex-start; flex-direction: column; }
  .footer-brand { justify-content: center; }
  .lightbox[open] { grid-template-columns: 48px 1fr 48px; }
  .lightbox figcaption { padding: .8rem; }
  .lightbox-nav { font-size: 2.7rem; }
}

@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; }
}

.legal-page { min-height: 100vh; color: var(--ink); background: #f3f0ea; }
.legal-content { width: min(780px, calc(100% - 2.5rem)); margin: 0 auto; padding: clamp(4rem, 10vw, 8rem) 0; }
.legal-content h1 { margin: 1rem 0 2rem; font-family: var(--serif); font-size: clamp(3.3rem, 8vw, 6rem); font-weight: 400; line-height: .92; }
.legal-content h2 { margin: 2.5rem 0 .7rem; font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.legal-content p { color: #505653; }
.legal-content a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: .2em; }
.legal-back { display: inline-block; margin-bottom: 3rem; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
