:root {
  --paper: #faf8f3;
  --ink: #203c33;
  --muted: #657069;
  --line: #dcded5;
  --wash: #f0f0e8;
  --accent: #ac5135;
  --inverse-muted: #c3cec8;
  --inverse-accent: #edaa88;
  --title: clamp(34px, 3.6vw, 48px);
  --page-title: clamp(40px, 4.5vw, 64px);
  --card-title: clamp(28px, 2.5vw, 32px);
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --gutter: 48px;
  --section-space: 64px;
  --column-gap: 40px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; scrollbar-gutter: stable; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 15px/1.65 var(--sans); -webkit-font-smoothing: antialiased; }
body:has(dialog[open]) { overflow: hidden; }
[hidden] { display: none !important; }
h1, h2, h3, h4, p, figure { margin: 0; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.1; text-wrap: balance; }
h1 { font-size: var(--page-title); }
h2 { font-size: var(--title); }
h3 { font-size: var(--card-title); }
h4 { font-size: 23px; }
em { font-weight: inherit; color: inherit; }
p { color: var(--muted); }
p + p { margin-top: 16px; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; max-width: 100%; height: auto; object-fit: cover; }
button, input, select, textarea { font: inherit; color: inherit; }
button, summary { cursor: pointer; }
button { border: 0; }
button:disabled { opacity: .6; cursor: wait; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.wrap { width: calc(100% - var(--gutter) * 2); max-width: 1320px; margin-inline: auto; }
.section { padding-block: var(--section-space); }
.eyebrow { font: 600 10px/1.6 var(--sans); letter-spacing: .13em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.small { font-size: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 13px 24px; border: 1px solid var(--ink); border-radius: 0; background: var(--ink); color: white; font: 600 12px/1.4 var(--sans); text-align: center; transition: background .2s, border-color .2s, color .2s; }
.button:hover { background: #395449; }
.button.secondary { background: transparent; color: var(--ink); }
.button.secondary:hover { background: var(--wash); }
.text-link { display: inline-flex; align-items: center; width: fit-content; min-height: 36px; border-bottom: 1px solid var(--ink); font: 500 12px/1.5 var(--sans); }
.text-link:hover { color: var(--muted); border-color: var(--muted); }
.icon-button { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex: none; padding: 10px; border: 0; border-radius: 0; background: transparent; }
.icon-button:hover { background: var(--wash); }
svg.lucide, i[data-lucide] { display: inline-block; width: 20px; height: 20px; flex: none; stroke-width: 1.5; }
.skip-link { position: fixed; z-index: 100; top: 8px; left: 8px; padding: 12px; background: var(--ink); color: white; transform: translateY(-160%); }
.skip-link:focus { transform: none; }
.site-header { position: sticky; top: 0; z-index: 30; background: var(--paper); border-bottom: 1px solid var(--line); }
.header-inner { max-width: 1320px; width: calc(100% - var(--gutter) * 2); height: 80px; margin: auto; display: flex; align-items: center; gap: 40px; }
.brand { flex: none; margin-right: auto; }
.header-inner > nav { display: flex; gap: 28px; font-size: 12px; }
.header-inner > nav a { padding-block: 12px; white-space: nowrap; }
.header-inner > nav a:hover { color: var(--muted); }
.header-book { display: inline-flex; align-items: center; min-height: 44px; padding-block: 10px; font: 500 12px/1.5 var(--sans); text-decoration: underline; text-underline-offset: 6px; text-decoration-color: var(--line); white-space: nowrap; }
.header-book:hover { text-decoration-color: var(--ink); }

/* The same columns, image edges and type scale carry through the homepage. */
.original-hero { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: var(--column-gap); padding-block: 40px var(--section-space); }
.hero-copy { display: grid; gap: 28px; min-width: 0; }
.original-hero h1 { font-size: clamp(48px, 5.5vw, 78px); font-weight: 400; line-height: 1.06; text-wrap: initial; }
.original-hero h1 em { color: var(--accent); font-weight: 400; }
.hero-intro > p { font-size: 15px; line-height: 1.65; }
.hero-actions { display: flex; gap: 12px; margin-top: 28px; }
.hero-image-wrap { position: relative; height: 400px; min-height: 0; overflow: hidden; }
.hero-image-wrap img { height: 100%; object-position: 58% center; }
.hero-image-wrap::after, .card-image::after, .location-chapter figure::after { content: ""; position: absolute; inset: 75% 0 0; background: linear-gradient(transparent, #10231e70); pointer-events: none; }
.hero-image-wrap figcaption, .card-image > span, .location-chapter figcaption { position: absolute; z-index: 1; inset: auto 20px 16px; color: white; font: 500 10px/1.5 var(--sans); text-transform: uppercase; text-shadow: 0 1px 4px #0008; }
.hero-image-wrap figcaption { display: flex; justify-content: space-between; gap: 16px; }
.home-chapter { border-top: 1px solid var(--line); }
/* Every chapter starts on the same two-column grid as the hero and homes. */
.collection-heading, .gallery-heading, .location-heading { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: end; gap: var(--column-gap); margin-bottom: 32px; }
.location-heading { margin-bottom: 0; }
.collection-heading .chapter-label, .gallery-heading .chapter-label, .location-heading .chapter-label { margin-bottom: 16px; }
.collection-heading h2, .gallery-heading h2, .location-heading h2 { font-size: var(--title); }
.chapter-intro { max-width: 440px; }
.chapter-intro > p { font-size: 14px; line-height: 1.75; }
.chapter-intro .text-link { margin-top: 16px; }
.gallery-heading .chapter-intro > p { color: var(--inverse-muted); }
.chapter-label { font: 600 10px/1.6 var(--sans); letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }
.gallery-chapter { padding-block: var(--section-space); background: var(--ink); color: var(--paper); }
.gallery-heading .chapter-label { color: var(--inverse-muted); }
.gallery-heading h2 em { color: var(--inverse-accent); }
.gallery-view { align-self: end; padding: 0; border-color: #b5c3bb; background: transparent; color: var(--paper); }
.gallery-view:hover { color: var(--inverse-accent); border-color: var(--inverse-accent); }
.gallery-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--column-gap); }
.gallery-tile { display: block; min-width: 0; padding: 0; background: transparent; text-align: left; color: var(--paper); }
.gallery-tile img { aspect-ratio: 1.15; transition: opacity .2s; }
.gallery-tile:hover img { opacity: .9; }
.gallery-tile > span { display: block; padding-top: 12px; font-size: 11px; }
.gallery-chapter + .location-chapter { border-top: 0; }
.home-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--column-gap); }
.home-card { min-width: 0; }
.card-image { display: block; position: relative; overflow: hidden; }
.card-image img { aspect-ratio: 1.45; transition: transform .35s; }
.card-image:hover img { transform: scale(1.02); }
.card-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-top: 20px; }
.card-heading h3 { font-size: var(--card-title); overflow-wrap: anywhere; }
.card-heading .text-link { flex: none; min-height: 30px; font-size: 11px; }
.card-meta { display: flex; flex-wrap: wrap; gap: 8px 0; margin-top: 8px; font-size: 12px; line-height: 1.5; }
.card-meta span + span::before { content: "·"; padding-inline: 12px; color: #8e9990; }
.location-chapter { display: grid; grid-template-columns: minmax(0, 1fr); gap: 32px; border-top: 1px solid var(--line); }
.location-chapter figure { position: relative; }
.location-chapter figure img { height: clamp(280px, 32vw, 420px); object-position: center 58%; }

.site-footer { background: var(--ink); color: var(--paper); }
.site-footer .button { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.site-footer .button:hover { background: #e4eae4; }
.site-footer .text-link { border-color: #b5c3bb; }
.site-footer .text-link:hover { color: var(--inverse-accent); border-color: var(--inverse-accent); }
.footer-main { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: var(--column-gap); padding-block: 44px; }
.footer-brand { display: block; padding-block: 8px 40px; border-bottom: 1px solid #ffffff30; font: 400 clamp(64px, 13vw, 180px)/1 var(--serif); letter-spacing: -.045em; }
.footer-main p { font-size: 12px; color: var(--inverse-muted); }
.footer-main nav { display: flex; flex-wrap: wrap; gap: 28px; font-size: 12px; }
.footer-main nav a { padding-block: 8px; }
.footer-main nav a:hover { text-decoration: underline; text-underline-offset: 5px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid #ffffff30; padding-block: 20px; color: #b5c3bb; font-size: 10px; }

/* Shared content and form controls. */
.facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 24px 0; padding: 18px 0; border-block: 1px solid var(--line); }
.facts > div { padding-left: 24px; border-left: 1px solid var(--line); }
.facts > div:first-child { padding: 0; border: 0; }
.facts dt { color: var(--muted); font-size: 11px; }
.facts dd { margin: 6px 0 0; font: 400 24px/1.2 var(--serif); white-space: nowrap; }
.property-gallery { display: grid; height: 340px; grid-template-columns: 1.7fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; position: relative; }
.property-shot { padding: 0; overflow: hidden; background: var(--wash); }
.property-shot img { width: 100%; height: 100%; }
.shot-0 { grid-row: 1 / 3; }
.gallery-open { position: absolute; right: 16px; bottom: 16px; min-height: 40px; padding: 10px 16px; background: var(--paper); color: var(--ink); border-color: var(--paper); }
.gallery-open:hover { background: white; }
.amenities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.amenities-grid h3 { font: 500 13px/1.5 var(--sans); }
.amenity-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; color: var(--muted); font-size: 13px; }
.practical-highlights { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; padding-block: 24px; border-block: 1px solid var(--line); }
.practical-highlights h2 { font-size: 24px; margin-bottom: 12px; }
.practical-highlights p { font-size: 13px; }
.faq { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; min-height: 60px; padding-block: 16px; list-style: none; font-size: 14px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { width: 16px; }
.faq[open] summary svg { transform: rotate(45deg); }
.faq > div { padding-bottom: 20px; }
.faq p, .faq li { font-size: 13px; }
.request-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; border-top: 1px solid var(--line); padding-top: 24px; }
.request-form > h2, .full { grid-column: 1 / -1; }
.field { display: grid; gap: 8px; min-width: 0; }
.field label { font-size: 12px; font-weight: 500; }
.field label span { font-weight: 400; color: var(--muted); }
input, select, textarea { width: 100%; min-width: 0; max-width: 100%; min-height: 48px; border: 1px solid var(--line); border-radius: 0; padding: 12px; background: #fff; font-size: 16px; }
textarea { resize: vertical; }
.request-form > .button { justify-self: start; min-width: 160px; }
.form-status { font-size: 13px; }
.form-status:empty { display: none; }
.form-status.is-error { color: #a43829; }
.form-status.is-success { color: var(--ink); }
#booking-widget { min-height: 240px; }
#sirvoy-mount iframe { width: 100%; border: 0; }
.widget-status, .booking-error { font-size: 14px; padding-block: 16px; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 20px; }
.lightbox { position: fixed; inset: 0; width: calc(100% - 48px); max-width: 1400px; height: calc(100dvh - 48px); max-height: 100dvh; margin: auto; border: 0; border-radius: 0; padding: 0; background: #15241e; color: white; }
.lightbox::backdrop { background: #102019dc; }
.lightbox-toolbar { display: flex; align-items: center; gap: 20px; height: 64px; padding: 10px 20px; font-size: 13px; }
.lightbox-toolbar > span:first-child { margin-right: auto; }
.lightbox .icon-button { color: white; background: #ffffff12; }
.lightbox-stage { position: relative; height: calc(100% - 116px); display: flex; align-items: center; justify-content: center; padding-inline: 64px; }
.lightbox-stage img { width: 100%; height: 100%; object-fit: contain; }
.gallery-prev, .gallery-next { position: absolute; top: calc(50% - 22px); }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }
.photo-caption { height: 52px; padding: 12px 24px; text-align: center; font-size: 12px; color: white; }

/* Shared surfaces and interaction states. */
::selection { background: #edaa8860; color: var(--ink); }
.header-inner > nav a { position: relative; }
.header-inner > nav a[aria-current="page"] { color: var(--accent); }
.header-book { border-bottom: 1px solid var(--ink); text-decoration: none; padding-block: 8px; min-height: 40px; }
.header-book:hover { color: var(--accent); border-color: var(--accent); }
.home-card { padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.card-heading a:hover { color: var(--accent); }
.card-image > span, .hero-image-wrap figcaption, .location-chapter figcaption { letter-spacing: .09em; }
.gallery-tile > span { color: var(--inverse-muted); }
.gallery-tile img, .property-shot img { transition: transform .35s ease; }
.gallery-tile:hover img, .property-shot:hover img { transform: scale(1.02); }
.gallery-tile { overflow: hidden; }
.practical-highlights { gap: 0; background: var(--wash); border: 1px solid var(--line); }
.practical-highlights article { padding: 0 24px; }
.practical-highlights article + article { border-left: 1px solid var(--line); }
.faq summary { transition: color .2s; }
.faq summary:hover, .faq[open] summary { color: var(--accent); }
.faq > div { max-width: 68ch; }
.request-form { background: var(--wash); border: 1px solid var(--line); padding: 28px; gap: 24px 20px; }
input, select, textarea { transition: border-color .2s, background .2s; }
input:hover, select:hover, textarea:hover { border-color: #a3aca2; }
input:focus, select:focus, textarea:focus { border-color: var(--ink); background: #fff; }
.sirvoy-only { padding-bottom: 40px; }
.widget-status { display: flex; gap: 12px; align-items: center; }
.widget-status::before { content: ""; width: 16px; height: 16px; border: 1px solid var(--line); border-top-color: var(--ink); border-radius: 50%; animation: booking-spin 1s linear infinite; }
@keyframes booking-spin { to { transform: rotate(360deg); } }
.booking-error { background: var(--wash); border: 1px solid var(--line); padding: 24px; }
.lightbox .icon-button:hover { background: #ffffff28; }

@media (max-width: 1250px) {
  .original-hero h1 { font-size: 68px; }
}
@media (max-width: 1100px) {
  .original-hero h1 { font-size: 60px; }
}
@media (max-width: 1000px) {
  :root { --gutter: 32px; --section-space: 56px; --column-gap: 32px; }
  .header-inner { gap: 24px; }
  .header-inner > nav { gap: 20px; font-size: 11px; }
  .original-hero { gap: 32px; }
  .original-hero h1 { font-size: 54px; }
  .hero-image-wrap { height: 420px; min-height: 0; }
  .hero-actions .button { padding-inline: 16px; }
  .location-chapter, .home-grid, .footer-main { gap: 32px; }
}
@media (max-width: 900px) {
  .footer-brand { font-size: 100px; }
  .header-inner { height: 72px; gap: 16px; }
  .header-inner > nav { display: none; position: absolute; top: 71px; left: 0; right: 0; padding: 16px var(--gutter) 24px; background: var(--paper); border-bottom: 1px solid var(--line); max-height: calc(100dvh - 72px); overflow-y: auto; }
  .header-inner > nav a { padding-block: 14px; font-size: 14px; border-bottom: 1px solid var(--line); }
  .original-hero h1 { font-size: 48px; }
  .hero-actions { flex-wrap: wrap; }
  .hero-image-wrap figcaption { font-size: 9px; gap: 8px; inset-inline: 14px; }
  .footer-main nav { gap: 20px; }
  html:not(.js) .header-inner { height: auto; flex-wrap: wrap; padding-block: 12px; }
  html:not(.js) .header-inner > nav { position: static; display: flex; flex-wrap: wrap; width: 100%; padding: 0; order: 4; }
}
@media (max-width: 640px) {
  .collection-heading, .gallery-heading, .location-heading { grid-template-columns: minmax(0, 1fr); gap: 20px; margin-bottom: 24px; }
  .location-heading { margin-bottom: 0; }
  .collection-heading .chapter-label, .gallery-heading .chapter-label, .location-heading .chapter-label { margin-bottom: 12px; }

  .gallery-chapter { padding-block: var(--section-space); }
  .gallery-view { font-size: 10px; white-space: nowrap; }
  .gallery-strip { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 82%; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; scrollbar-color: #789589 var(--ink); }
  .gallery-tile { scroll-snap-align: start; }
  .gallery-tile img { aspect-ratio: 1.15; }
  :root { --gutter: 20px; --section-space: 48px; --column-gap: 24px; }
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  h3 { font-size: var(--card-title); }
  .header-inner { height: 68px; gap: 12px; }
  .header-book { padding-inline: 0; font-size: 11px; }
  .header-inner > nav { top: 67px; }
  .original-hero { grid-template-columns: minmax(0, 1fr); gap: 28px; padding-block: 36px 48px; }
  .hero-copy { gap: 20px; }
  .hero-title-wrap .eyebrow { font-size: 9px; margin-bottom: 20px; }
  .original-hero h1 { font-size: 44px; line-height: 1.03; }
  .hero-intro > p { font-size: 14px; line-height: 1.7; }
  .hero-actions { display: grid; grid-template-columns: 1.2fr 1fr; gap: 10px; margin-top: 20px; }
  .hero-actions .button { min-width: 0; min-height: 44px; padding-inline: 10px; font-size: 11px; }
  .hero-image-wrap { height: auto; aspect-ratio: 1.3; min-height: 0; }
  .hero-image-wrap figcaption { inset: auto 12px 12px; font-size: 9px; }
  .home-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .card-image img { aspect-ratio: 1.45; }
  .card-image > span { inset: auto 14px 12px; font-size: 9px; }
  .card-heading { margin-top: 16px; gap: 14px; }
  .card-heading h3 { font-size: var(--card-title); }
  .card-meta { font-size: 11px; margin-top: 6px; }
  .card-meta span + span::before { padding-inline: 10px; }
  .location-chapter { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .location-chapter figure img { height: 230px; }
  .location-chapter figcaption { inset: auto 14px 12px; font-size: 9px; }
  .footer-main { grid-template-columns: 1.1fr 1fr; align-items: start; gap: 24px; padding-block: 32px; }
  .footer-brand { font-size: 64px; padding-bottom: 24px; }
  .footer-main p { font-size: 11px; }
  .footer-main nav { display: grid; gap: 8px; font-size: 11px; }
  .footer-bottom { font-size: 9px; padding-block: 16px; }
  .facts { padding-block: 14px; margin-block: 20px; }
  .facts > div { padding-left: 12px; }
  .facts dt { font-size: 10px; }
  .facts dd { font-size: 21px; }
  .property-gallery { height: 296px; grid-template-columns: 1fr 1fr; grid-template-rows: 200px 90px; gap: 6px; }
  .shot-0 { grid-row: 1; grid-column: 1 / -1; }
  .gallery-open { bottom: 108px; right: 12px; font-size: 10px; min-height: 36px; padding: 8px 12px; }
  .amenities-grid { gap: 24px 20px; }
  .amenities-grid h3 { font-size: 12px; }
  .amenity-list { font-size: 12px; }
  .practical-highlights { grid-template-columns: 1fr; gap: 20px; }
  .practical-highlights article + article { border-top: 1px solid var(--line); padding-top: 20px; }
  .practical-highlights h2 { font-size: 24px; margin-bottom: 10px; }
  .request-form { gap: 18px 12px; }
  .field label { font-size: 12px; }
  .request-form > .button { width: 100%; }
  .lightbox { width: 100%; height: 100dvh; max-width: 100%; }
  .lightbox-toolbar { padding-inline: 12px; gap: 12px; font-size: 11px; }
  .lightbox-stage { padding-inline: 8px; }
  .gallery-prev, .gallery-next { top: auto; bottom: 8px; }
  .photo-caption { font-size: 11px; padding-inline: 16px; }
}
@media (max-width: 640px) {
  .practical-highlights article { padding: 0 20px; }
  .practical-highlights article + article { border-left: 0; margin-inline: 20px; padding: 20px 0 0; }
  .request-form { padding: 20px; gap: 20px 12px; }
}
@media (max-width: 480px) {
  .request-form { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 360px) {
  .footer-brand { font-size: 56px; }
  :root { --gutter: 16px; }
  .header-inner { gap: 8px; }
  .header-book { font-size: 10px; }
  .original-hero { gap: 16px; padding-block: 22px 28px; }
  .hero-copy { gap: 16px; }
  .original-hero h1 { font-size: 38px; }
  .hero-image-wrap { height: auto; }
  .hero-image-wrap figcaption { font-size: 8px; }
  .card-meta span + span::before { padding-inline: 8px; }
  .footer-main { grid-template-columns: 1fr; gap: 24px; }
  .footer-main nav { display: flex; flex-wrap: wrap; gap: 20px; }
  .facts > div { padding-left: 6px; }
  .facts dt { font-size: 9px; }
  .facts dd { font-size: 19px; }
  .request-form { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after { animation: none !important; transition: none !important; }
}
/* The single-page editorial composition. Homes retain their approved card layout. */
:root { --deep-green: #0d2924; }
html { scroll-padding-top: 112px; }
.brand img { width: 112px; height: 64px; object-fit: contain; }
.header-inner { height: 88px; gap: 40px; }
.header-inner > nav { display: flex; gap: 28px; font-size: 12px; font-weight: 500; }
.header-book { padding: 13px 20px; min-height: 46px; background: var(--deep-green); border: 1px solid var(--deep-green); color: var(--paper); text-decoration: none; }
.header-book:hover { color: white; background: #204b40; border-color: #204b40; }
.original-hero.wrap { position: relative; display: flex; isolation: isolate; width: 100%; max-width: none; min-height: 560px; padding: 72px 0 88px; background: var(--deep-green); color: white; border: 0; }
.hero-copy { position: relative; z-index: 2; width: calc(100% - var(--gutter) * 2); max-width: 1320px; margin: auto; display: grid; gap: 26px; }
.original-hero h1 { max-width: 760px; font-size: clamp(56px, 6.2vw, 88px); line-height: 1.02; }
.original-hero h1 em { font-weight: 400; color: #edc4a5; }
.hero-title-wrap .eyebrow { color: #f5eade; font-size: 10px; margin-bottom: 24px; }
.hero-intro > p { color: #fffdf8; font-size: 15px; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; margin-top: 24px; }
.hero-actions .button { background: var(--paper); border-color: var(--paper); color: var(--deep-green); }
.hero-actions .button.secondary { background: #0d292433; color: white; border-color: #ffffffaa; }
.hero-actions .button:hover { background: white; color: var(--deep-green); }
.hero-image-wrap { position: absolute; z-index: -1; inset: 0; width: 100%; height: 100%; min-height: 0; aspect-ratio: auto; }
.hero-image-wrap img { height: 100%; object-position: center 61%; }
.hero-image-wrap::after { inset: 0; background: linear-gradient(90deg, #09231de8 0%, #09231d99 36%, #09231d1a 75%), linear-gradient(0deg, #09231d80, transparent 50%); }
.hero-image-wrap figcaption { inset: auto var(--gutter) 28px; justify-content: flex-end; gap: 28px; font-size: 9px; }
.home-chapter { border-top: 0; }
.home-detail-list { margin-top: 32px; }
.inline-home { border-top: 1px solid var(--line); scroll-margin-top: 112px; }
.inline-home:last-child { border-bottom: 1px solid var(--line); }
.inline-home > summary, .rules-group > summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 22px; list-style: none; }
.inline-home > summary::-webkit-details-marker, .rules-group > summary::-webkit-details-marker { display: none; }
.inline-home > summary > span:first-child { font: 400 26px/1.2 var(--serif); }
.inline-home > summary > span:last-child { display: flex; align-items: center; gap: 16px; font-size: 12px; }
.inline-home[open] > summary svg, .rules-group[open] > summary > svg { transform: rotate(45deg); }
.inline-home-content { padding-bottom: 40px; }
.gallery-chapter { background: var(--deep-green); padding-block: 72px; }
.gallery-heading { grid-template-columns: 1.2fr 1fr; align-items: end; margin-bottom: 36px; }
.gallery-heading h2 { font-size: clamp(40px, 4.3vw, 60px); max-width: 580px; }
.gallery-heading .chapter-intro { justify-self: end; max-width: 360px; }
.gallery-strip { display: grid; grid-auto-flow: row; grid-auto-columns: auto; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; overflow: visible; padding: 0; }
.gallery-tile { position: relative; overflow: hidden; }
.gallery-tile img { width: 100%; aspect-ratio: 1.25; }
.gallery-tile::after { content: ""; position: absolute; inset: 65% 0 0; background: linear-gradient(transparent, #061b16b3); pointer-events: none; }
.gallery-tile > span { position: absolute; z-index: 1; inset: auto 18px 14px; display: flex; justify-content: space-between; gap: 12px; padding: 0; color: white; font-size: 10px; }
.location-chapter { padding-block: 72px; }
.chapter-heading { display: grid; grid-template-columns: 1fr 1fr; gap: var(--column-gap); align-items: end; margin-bottom: 36px; }
.chapter-heading .chapter-label { margin-bottom: 16px; }
.chapter-heading > p { max-width: 440px; font-size: 14px; }
.practical-chapter { background: #f0eee6; border-top: 1px solid var(--line); }
.practical-chapter .practical-highlights { background: transparent; border: 0; padding: 0; margin-bottom: 32px; }
.practical-chapter .practical-highlights article { padding-inline: 28px; }
.practical-chapter .practical-highlights article:first-child { padding-left: 0; }
.practical-chapter .practical-highlights h3 { font-size: 26px; margin-bottom: 14px; }
.practical-rules { display: grid; grid-template-columns: 1fr 1fr; gap: var(--column-gap); }
.rules-group { border-block: 1px solid var(--line); align-self: start; }
.rules-group > summary { font-size: 14px; font-weight: 500; }
.rules-group > div { padding-bottom: 24px; }
.rules-group > div > p { font-size: 13px; margin-bottom: 20px; }
.contact-chapter { background: var(--deep-green); color: var(--paper); padding-block: 72px; }
.contact-chapter .chapter-label { color: var(--inverse-muted); }
.contact-chapter h2 em { color: var(--inverse-accent); }
.contact-chapter .chapter-heading { margin-bottom: 36px; }
.enquiry-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--column-gap); align-items: start; }
.enquiry-intro { min-width: 0; }
.enquiry-intro > p { color: var(--inverse-muted); font-size: 14px; max-width: 460px; }
.enquiry-intro > img { height: 270px; margin-block: 28px; }
.contact-chapter .request-form { background: transparent; color: var(--paper); border: 1px solid #ffffff40; padding: 32px; }
.contact-chapter .request-form > h2 { font-size: 30px; }
.contact-chapter .field label span, .contact-chapter .small { color: var(--inverse-muted); }
.contact-chapter input, .contact-chapter select, .contact-chapter textarea { color: var(--paper); border-color: #ffffff55; background: #ffffff08; color-scheme: dark; }
.contact-chapter select option { background: var(--deep-green); color: white; }
.contact-chapter input:focus, .contact-chapter select:focus, .contact-chapter textarea:focus { background: #ffffff12; border-color: var(--inverse-accent); }
.contact-chapter .button { background: var(--paper); border-color: var(--paper); color: var(--deep-green); }
.contact-chapter .button:hover { background: white; }
.contact-chapter .form-status.is-error { color: #ffc1aa; }
.contact-chapter .form-status.is-success { color: var(--paper); }
.site-footer { background: var(--deep-green); color: var(--paper); }
.footer-main { display: grid; grid-template-columns: .8fr 1fr 1.2fr; gap: 32px; align-items: center; padding-block: 32px; border-top: 1px solid #ffffff30; }
.footer-brand { padding: 0; margin: 0; border: 0; font-size: 42px; line-height: 1; }
.footer-main nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 20px; }
.footer-main p { font-size: 11px; }
.footer-bottom { font-size: 10px; }
@media (max-width: 900px) {
  html { scroll-padding-top: 142px; }
  .header-inner { height: auto; min-height: 76px; display: flex; flex-wrap: wrap; gap: 0; padding-top: 8px; }
  .brand img { width: 94px; height: 56px; }
  .header-book { margin-left: auto; padding: 10px 16px; font-size: 11px; }
  .header-inner > nav { position: static; display: flex; order: 3; width: 100%; gap: 16px; justify-content: space-between; padding: 5px 0 8px; max-height: none; overflow: visible; border: 0; }
  .header-inner > nav a { padding-block: 10px; border: 0; font-size: 11px; }
  .original-hero.wrap { min-height: 500px; padding-block: 60px 80px; }
  .original-hero h1 { font-size: 64px; }
  .inline-home { scroll-margin-top: 142px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main nav { grid-column: 1 / -1; justify-content: flex-start; }
}
@media (max-width: 640px) {
  .original-hero.wrap { min-height: 510px; padding-block: 56px 76px; }
  .original-hero h1 { font-size: clamp(42px, 10vw, 60px); }
  .hero-title-wrap .eyebrow { font-size: 9px; }
  .hero-copy { gap: 22px; }
  .hero-image-wrap img { object-position: 62% center; }
  .hero-image-wrap::after { background: linear-gradient(90deg, #09231ddb, #09231d55), linear-gradient(0deg, #09231d88, transparent); }
  .hero-image-wrap figcaption { justify-content: space-between; gap: 12px; font-size: 8px; bottom: 22px; }
  .hero-intro > p { font-size: 14px; }
  .hero-actions { display: flex; flex-wrap: wrap; }
  .hero-actions .button { padding-inline: 16px; min-height: 46px; }
  .gallery-chapter, .location-chapter, .contact-chapter { padding-block: 48px; }
  .gallery-heading, .chapter-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 28px; }
  .gallery-heading h2 { font-size: 38px; }
  .gallery-heading .chapter-intro { justify-self: start; max-width: none; }
  .gallery-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .gallery-tile img { aspect-ratio: .85; }
  .gallery-tile > span { inset: auto 10px 10px; font-size: 9px; flex-direction: column; gap: 4px; }
  .practical-chapter .practical-highlights article { margin: 0; padding: 20px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .practical-chapter .practical-highlights article:first-child { padding-top: 0; }
  .practical-chapter .practical-highlights article + article { border-top: 0; }
  .practical-chapter .practical-highlights { gap: 0; margin-bottom: 24px; }
  .practical-rules, .enquiry-layout { grid-template-columns: 1fr; gap: 24px; }
  .practical-rules { gap: 0; }
  .rules-group + .rules-group { border-top: 0; }
  .enquiry-intro > img { height: 220px; }
  .contact-chapter .request-form { padding: 24px 20px; }
  .contact-chapter .chapter-heading h2 { font-size: 38px; }
  .inline-home > summary { gap: 12px; }
  .inline-home > summary > span:first-child { font-size: 23px; }
  .inline-home > summary > span:last-child { font-size: 10px; gap: 8px; }
  .footer-brand { font-size: 36px; }
  .footer-main { gap: 20px; }
}
@media (max-width: 360px) {
  .header-inner > nav { gap: 8px; }
  .header-inner > nav a { font-size: 10px; }
  .original-hero.wrap { min-height: 490px; }
  .original-hero h1 { font-size: 39px; }
  .gallery-heading h2, .contact-chapter .chapter-heading h2 { font-size: 34px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after { animation: none !important; transition: none !important; }
}
/* Fields respond to their available column, including tablet layouts. */
.request-form { container-type: inline-size; }
@container (max-width: 380px) {
  .request-form .field { grid-column: 1 / -1; }
}

/* Apartment details read as one compact overview, followed by the essentials. */
p { text-wrap: pretty; }
.home-detail-list { margin-top: 36px; }
.inline-home > summary { padding: 24px 0; transition: color .2s; }
.inline-home > summary:hover { color: var(--accent); }
.inline-home > summary > .home-summary { display: grid; gap: 6px; font-family: var(--sans); }
.home-summary-title { font: 400 28px/1.15 var(--serif); }
.home-summary-meta { color: var(--muted); font: 400 11px/1.6 var(--sans); }
.inline-home > summary > .home-summary-action { display: flex; gap: 20px; font-size: 12px; }
.detail-toggle-icon { display: grid; place-items: center; flex: none; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; }
.home-summary-action svg { width: 18px; height: 18px; transition: transform .2s; }
.detail-close-label { display: none; }
.inline-home[open] .detail-open-label { display: none; }
.inline-home[open] .detail-close-label { display: inline; }
.inline-home[open] > summary { border-bottom: 1px solid var(--line); }
.inline-home-content { padding-block: 32px 36px; }
.home-overview { display: grid; grid-template-columns: 1.15fr 1fr; gap: var(--column-gap); align-items: start; }
.home-overview .property-gallery { height: 420px; grid-template-columns: 1fr 1fr; grid-template-rows: 280px 132px; }
.home-overview .shot-0 { grid-column: 1 / -1; grid-row: 1; }
.home-overview .gallery-open { bottom: 156px; right: 16px; }
.home-overview-copy { min-width: 0; }
.home-overview-copy .eyebrow { margin-bottom: 14px; }
.home-overview-copy h3 { font-size: clamp(28px, 2.6vw, 36px); max-width: 20ch; }
.home-overview-copy .facts { margin-block: 24px; }
.home-overview-copy .facts > div { padding-left: 16px; }
.home-overview-copy .facts > div:first-child { padding-left: 0; }
.home-overview-copy > p:not(.eyebrow) { font-size: 14px; }
.home-overview-copy .home-distance { display: flex; align-items: center; gap: 8px; margin-top: 24px; color: var(--ink); font-size: 12px; }
.home-distance svg { width: 16px; height: 16px; }
.home-amenities { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.home-amenities > h3 { font-size: 28px; margin-bottom: 24px; }
.home-amenities .amenities-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.home-amenities h4 { font: 600 12px/1.5 var(--sans); margin-bottom: 12px; }
.home-amenities .amenity-list { font-size: 12px; line-height: 1.7; }
.home-detail-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.home-detail-actions .actions { margin: 0; }
.home-detail-actions > .text-link { font-size: 11px; }
/* The area is a single photograph and a connected local guide. */
.area-layout { display: grid; grid-template-columns: 1.15fr 1fr; gap: var(--column-gap); align-items: stretch; }
.area-layout > figure { min-width: 0; }
.location-chapter .area-layout > figure img { width: 100%; height: 100%; min-height: 420px; max-height: 580px; object-position: 40% center; }
.area-guide { display: flex; flex-direction: column; min-width: 0; }
.area-guide article { display: grid; grid-template-columns: 24px minmax(0, 1fr); gap: 16px; padding-block: 24px; border-top: 1px solid var(--line); }
.area-guide article:first-child { padding-top: 0; border-top: 0; }
.area-index { color: var(--accent); font-size: 10px; padding-top: 5px; }
.area-guide h3 { font-size: 28px; margin-bottom: 12px; }
.area-guide p { font-size: 14px; line-height: 1.75; max-width: 48ch; }
.area-guide > .text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: auto; align-self: start; }
.area-guide > .text-link svg { width: 16px; height: 16px; }
@media (max-width: 1000px) {
  .home-overview, .area-layout { grid-template-columns: 1fr 1fr; gap: 28px; }
  .home-overview-copy .facts > div { padding-left: 8px; }
  .home-overview-copy .facts dd { font-size: 22px; }
  .home-overview-copy .facts dt { font-size: 10px; }
  .home-amenities .amenities-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .area-guide h3 { font-size: 26px; }
}
@media (max-width: 760px) {
  .home-overview, .area-layout { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .home-overview-copy h3 { max-width: none; }
  .location-chapter .area-layout > figure img { height: 300px; min-height: 0; max-height: none; }
  .area-guide > .text-link { margin-top: 4px; }
}
@media (max-width: 480px) {
  .inline-home > summary { padding-block: 20px; gap: 16px; }
  .home-summary-title { font-size: 25px; }
  .home-summary-meta { font-size: 10px; }
  .inline-home > summary > .home-summary-action { gap: 10px; }
  .detail-open-label, .inline-home[open] .detail-close-label { display: none; }
  .inline-home-content { padding-block: 24px; }
  .home-overview .property-gallery { height: 318px; grid-template-rows: 220px 90px; }
  .home-overview .gallery-open { bottom: 110px; right: 12px; }
  .home-amenities .amenities-grid { gap: 24px 20px; }
  .home-detail-actions { align-items: flex-start; }
  .home-detail-actions .actions { width: 100%; gap: 12px; }
  .home-detail-actions .button { padding-inline: 16px; }
  .home-detail-actions .text-link { font-size: 11px; }
  .area-guide article { gap: 12px; padding-block: 22px; }
  .area-guide h3 { font-size: 26px; }
  .location-chapter .area-layout > figure img { height: 260px; }
}

/* Each row opens the complete gallery for one home. */
.gallery-home-row { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: inherit; }
.gallery-tile:focus-visible { outline: 2px solid var(--paper); outline-offset: 3px; }
@media (max-width: 640px) {
  .gallery-home-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-home-row > .gallery-tile:first-child { grid-column: 1 / -1; }
  .gallery-home-row > .gallery-tile:first-child img { aspect-ratio: 1.65; }
  .gallery-home-row + .gallery-home-row { margin-top: 12px; }
}

/* A dedicated, spacious booking drawer. */
html.booking-open { overflow: hidden; }
.booking-drawer { position: fixed; inset: 0 0 0 auto; width: min(820px, calc(100% - 48px)); max-width: none; height: 100dvh; max-height: none; margin: 0; padding: 0; border: 0; background: var(--paper); color: var(--ink); overflow-y: auto; overscroll-behavior: contain; box-shadow: -24px 0 80px #061b1626; }
.booking-drawer::backdrop { background: #061b1680; backdrop-filter: blur(5px); }
.booking-drawer[open] { animation: booking-enter .3s ease-out; }
.booking-drawer-header { padding: 28px 48px 36px; background: var(--deep-green); color: var(--paper); }
.booking-drawer-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.booking-drawer-top .chapter-label { margin: 0; color: var(--paper); }
.booking-drawer-top .icon-button { flex: none; border: 1px solid #ffffff55; color: var(--paper); width: 44px; height: 44px; border-radius: 50%; }
.booking-drawer-header h2 { font-size: clamp(36px, 4vw, 54px); line-height: 1.04; margin-bottom: 18px; }
.booking-drawer-header > p { font-size: 14px; color: #ffffffc9; }
.booking-drawer-content { padding: 36px 48px; }
.booking-drawer .sirvoy-only { width: 100%; margin: 0; padding: 0; }
.booking-drawer-help { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.booking-drawer-help p { font-size: 12px; color: var(--muted); }
.booking-drawer-help .text-link, .contact-booking-link { display: inline-flex; align-items: center; gap: 10px; }
.booking-drawer-help svg, .contact-booking-link svg { width: 16px; height: 16px; }
.contact-booking-link { margin-top: 24px; }
@keyframes booking-enter { from { transform: translateX(40px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@media (max-width: 640px) {
  .booking-drawer { width: 100%; }
  .booking-drawer-header { padding: 20px 24px 28px; }
  .booking-drawer-top { margin-bottom: 22px; }
  .booking-drawer-content { padding: 28px 20px; }
  .booking-drawer-help { align-items: flex-start; flex-direction: column; gap: 12px; }
}
@media (prefers-reduced-motion: reduce) { .booking-drawer[open] { animation: none; } }

.booking-drawer-content:has(.booking-error:not([hidden])) .booking-drawer-help { display: none; }

/* Golf */
.golf-chapter { background: var(--deep-green); color: var(--paper); padding-block: 80px 40px; }
.golf-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: center; }
.golf-copy { min-width: 0; padding-block: 16px; }
.golf-copy .chapter-label { color: var(--inverse-muted); margin-bottom: 28px; }
.golf-copy h2 { font-size: clamp(44px, 5vw, 68px); line-height: 1.06; margin-bottom: 24px; }
.golf-copy h2 em { color: var(--inverse-accent); }
.golf-copy > p:not(.chapter-label) { color: var(--inverse-muted); max-width: 37ch; font-size: 14px; line-height: 1.8; }
.golf-copy .text-link { display: inline-flex; align-items: center; gap: 16px; color: var(--paper); border-color: #faf8f366; margin-top: 28px; }
.golf-copy .text-link:hover { color: var(--inverse-accent); border-color: var(--inverse-accent); }
.golf-copy .text-link:focus-visible { outline-color: var(--inverse-accent); }
.golf-copy .text-link svg { width: 16px; height: 16px; }
.golf-layout figure { position: relative; min-width: 0; }
.golf-layout figure img { width: 100%; aspect-ratio: 1.5; object-fit: cover; }
.golf-layout figcaption { position: absolute; inset: auto 0 0; padding: 36px 22px 18px; background: linear-gradient(transparent, #0d2924b3); color: var(--paper); font: 500 9px/1.5 var(--sans); text-transform: uppercase; letter-spacing: .12em; }
.golf-course-strip { display: flex; gap: 40px; align-items: center; margin-top: 48px; padding-top: 28px; border-top: 1px solid #faf8f333; }
.golf-course-strip .eyebrow { color: var(--inverse-muted); margin: 0; flex-shrink: 0; }
.golf-courses { display: flex; flex: 1; justify-content: space-between; gap: 24px; list-style: none; padding: 0; margin: 0; }
.golf-courses li { display: flex; align-items: baseline; gap: 12px; font: 400 23px/1.2 var(--serif); }
.golf-courses li span { color: var(--inverse-accent); font: 500 9px/1.5 var(--sans); }
@media (max-width: 1000px) {
  .golf-layout { gap: 32px; }
  .golf-course-strip { display: block; }
  .golf-course-strip .eyebrow { margin-bottom: 20px; }
}
@media (max-width: 760px) {
  .golf-chapter { padding-block: 48px 32px; }
  .golf-layout { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .golf-copy { padding: 0; }
  .golf-copy h2 { font-size: clamp(42px, 9vw, 60px); }
  .golf-copy > p:not(.chapter-label) { max-width: 44ch; }
  .golf-layout figure img { aspect-ratio: 1.6; }
  .golf-course-strip { margin-top: 28px; padding-top: 24px; }
  .golf-courses { flex-direction: column; gap: 16px; }
}
