@font-face {
  font-family: "Manrope";
  src: url("/assets/body.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --chalk: #f4f1e9;
  --white: #fcfbf7;
  --ink: #17211c;
  --pine: #23372f;
  --sea: #48646a;
  --sand: #c5ad83;
  --heritage: #60724d;
  --brick: #8a4337;
  --muted: #657069;
  --line: #17211c2b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--chalk);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, p, figure, dl, dd { margin: 0; }
h1, h2, h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(3.8rem, 7.2vw, 7.6rem); }
h2 { font-size: clamp(2.4rem, 4.5vw, 4.9rem); }
h3 { font-size: clamp(1.45rem, 2.2vw, 2.3rem); }
a { color: inherit; text-decoration: none; }
button, input, textarea { color: inherit; font: inherit; }
button { cursor: pointer; background: none; border: 0; }
a, button { touch-action: manipulation; }
img { display: block; width: 100%; max-width: 100%; height: auto; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--sand);
  outline-offset: 4px;
}
::selection { background: var(--sand); color: var(--ink); }

.skip {
  position: fixed;
  top: -100px;
  left: 18px;
  z-index: 100;
  padding: .75rem 1rem;
  background: var(--pine);
  color: var(--white);
}
.skip:focus { top: 12px; }
.section-label,
.location {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 650;
  letter-spacing: .015em;
  line-height: 1.4;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: .6rem 0;
  border-bottom: 1px solid currentColor;
  font-size: .88rem;
  font-weight: 650;
}
.text-link:hover { color: var(--sea); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  gap: 2rem;
  padding: .82rem 1rem;
  border: 1px solid var(--pine);
  background: var(--pine);
  color: var(--white);
  font-size: .875rem;
  font-weight: 700;
}
.button:hover { background: var(--sea); border-color: var(--sea); }
.button-light { background: var(--white); border-color: var(--white); color: var(--ink); }
.button-light:hover { background: var(--sand); border-color: var(--sand); color: var(--ink); }
.button-outline { background: transparent; border-color: #ffffff78; }
.button-outline:hover { background: var(--white); border-color: var(--white); color: var(--ink); }

.site-header {
  height: 80px;
  padding: 0 max(3vw, 1.4rem);
  background: var(--heritage);
  color: var(--white);
  border-bottom: 1px solid #ffffff24;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 20;
}
.wordmark {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -.035em;
}
.crest-crop {
  width: 36px;
  height: 54px;
  overflow: hidden;
  display: block;
  flex: 0 0 36px;
}
.crest-crop img {
  width: auto;
  max-width: none;
  height: 54px;
}
.desktop-nav { display: flex; align-items: center; gap: clamp(1rem, 1.8vw, 1.75rem); }
.desktop-nav a {
  position: relative;
  padding: .65rem 0;
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: .35rem;
  border-bottom: 1px solid currentColor;
  transition: right .2s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { right: 0; }
.header-end { display: flex; align-items: center; gap: 1.25rem; }
.language { font-size: .8rem; font-weight: 750; }
.header-stay {
  padding: .7rem .9rem;
  border: 1px solid #ffffff59;
  font-size: .8rem;
  font-weight: 650;
}
.header-stay:hover { background: var(--white); color: var(--ink); }
.header-stay[aria-current="page"] { background: var(--white); color: var(--ink); }
.menu-button {
  display: none;
  align-items: center;
  gap: .85rem;
  padding: .5rem 0;
  font-size: .8rem;
  font-weight: 700;
}
.menu-icon {
  width: 22px;
  height: 16px;
  position: relative;
  display: block;
}
.menu-icon i {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  background: currentColor;
  transition: transform .22s ease, top .22s ease, opacity .18s ease;
}
.menu-icon i:nth-child(1) { top: 1px; }
.menu-icon i:nth-child(2) { top: 7px; }
.menu-icon i:nth-child(3) { top: 13px; }
.menu-button[aria-expanded="true"] .menu-icon i:nth-child(1) { top: 7px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-icon i:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] .menu-icon i:nth-child(3) { top: 7px; transform: rotate(-45deg); }
.mobile-nav {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 25;
  padding: 1.25rem max(4vw, 1.4rem) 1.75rem;
  background: var(--pine);
  color: var(--white);
  max-height: calc(100dvh - 72px);
  overflow-y: auto;
}
body.menu-open { overflow: hidden; }
.mobile-nav > a {
  display: block;
  padding: .8rem 0;
  border-bottom: 1px solid #ffffff2e;
  font-size: 1.25rem;
  font-weight: 520;
  letter-spacing: -.03em;
}
.mobile-nav .mobile-enquire {
  margin-top: 1rem;
  border: 0;
  color: #ddd1ba;
  font-size: .85rem;
  font-weight: 700;
}

/* Home: one cinematic image, with the story set directly into it. */
.home-hero {
  width: 100%;
  max-width: 1600px;
  height: clamp(680px, calc(100svh - 80px), 920px);
  margin: 0 auto;
  position: relative;
  background: #cbc1af;
  overflow: hidden;
}
.home-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 25, 19, .82) 0%, rgba(10, 25, 19, .62) 35%, rgba(10, 25, 19, .15) 68%, transparent 100%),
    linear-gradient(0deg, rgba(8, 20, 15, .58) 0%, transparent 56%);
}
.home-hero-card {
  width: min(45rem, calc(100% - 6rem));
  position: absolute;
  z-index: 2;
  left: clamp(2rem, 5vw, 5rem);
  bottom: clamp(2rem, 5vw, 4rem);
  padding: 0;
  color: var(--white);
}
.home-hero .location { color: #e8d7b8; }
.home-hero h1 {
  max-width: 12ch;
  margin: .85rem 0 1rem;
  font-size: clamp(2.7rem, 4.2vw, 4.25rem);
  font-weight: 520;
  line-height: 1.02;
  text-wrap: balance;
  text-shadow: 0 2px 28px rgba(0, 0, 0, .24);
}
.hero-summary {
  max-width: 31rem;
  color: #f3f0e8;
  font-size: 1rem;
}
.hero-actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 1.4rem; }
.hero-actions .button { min-width: 10rem; background: var(--white); border-color: var(--white); color: var(--pine); }
.hero-actions .button:hover { background: #eadfc9; border-color: #eadfc9; }
.hero-contact { padding: .55rem 0; border-bottom: 1px solid currentColor; font-size: .9rem; font-weight: 650; }
.hero-contact:hover { color: #eadfc9; }
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .38);
}
.hero-facts dt {
  color: #dedfd8;
  font-size: .75rem;
  font-weight: 650;
}
.hero-facts dd { margin-top: .25rem; font-size: .88rem; font-weight: 600; line-height: 1.35; }
.home-hero-photo { position: absolute; inset: 0; min-width: 0; height: 100%; background: #cbc1af; }
.home-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 50%; }
.home-hero-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  padding: .45rem .65rem;
  background: #17211cce;
  color: var(--white);
  font-size: .75rem;
}

.home-intro,
.nearby,
.invitation {
  max-width: 1340px;
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) max(5vw, 1.5rem);
}
.home-intro {
  display: grid;
  grid-template-columns: .42fr 1.58fr;
  gap: 8%;
  align-items: start;
}
.home-intro > div { max-width: 900px; }
.home-intro h2 { max-width: 16ch; }
.home-intro > div > p { max-width: 42rem; margin-top: 2rem; color: var(--muted); }
.home-intro .text-link { margin-top: 1.5rem; }

.feature-story,
.beach-story,
.history-feature {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: stretch;
}
.feature-story figure,
.beach-story figure,
.history-feature figure { min-width: 0; background: #d8d3c9; }
.feature-story img,
.beach-story img,
.history-feature img { width: 100%; height: 100%; object-fit: cover; }
.feature-story figure { min-height: 590px; }
.feature-story > div,
.beach-story > div,
.history-feature > div {
  padding: clamp(3.5rem, 7vw, 7rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-story h2,
.beach-story h2,
.history-feature h2 { margin: 1.35rem 0 1.6rem; font-size: clamp(2.4rem, 4vw, 4.4rem); }
.feature-story > div > p:not(.section-label),
.beach-story > div > p:not(.section-label),
.history-feature > div > p:not(.section-label) { max-width: 34rem; color: var(--muted); }
.feature-story .text-link,
.history-feature .text-link { margin-top: 1.5rem; align-self: flex-start; }

.beach-story {
  grid-template-columns: 1.24fr .76fr;
  margin-top: clamp(5rem, 9vw, 9rem);
  background: var(--sea);
  color: var(--white);
}
.beach-story figure { min-height: 650px; }
.beach-story .section-label { color: #d7d9d1; }
.beach-story > div > p:not(.section-label) { color: #e8ece9; }

.stay-notes {
  max-width: 1340px;
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) max(5vw, 1.5rem);
}
.stay-heading { display: grid; grid-template-columns: .42fr 1.58fr; gap: 8%; align-items: start; }
.stay-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 4rem; border-top: 1px solid var(--line); }
.stay-grid article { padding: 2rem 2rem 0 0; border-right: 1px solid var(--line); }
.stay-grid article + article { padding-left: 2rem; }
.stay-grid article:last-child { border-right: 0; }
.stay-grid h3 { margin-bottom: 1rem; font-size: 1.6rem; }
.stay-grid p { color: var(--muted); font-size: .9rem; }

.history-feature {
  grid-template-columns: .94fr 1.06fr;
  background: var(--white);
}
.history-feature figure { min-height: 680px; }
.history-feature img { object-position: center 45%; }
.history-feature > div { order: -1; }

.nearby {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 8%;
}
.nearby h2 { margin-top: 1.3rem; font-size: clamp(2.5rem, 4.2vw, 4.6rem); }
.nearby-links { border-top: 1px solid var(--line); }
.nearby-links a {
  display: grid;
  grid-template-columns: .8fr 1.2fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.65rem 0;
  border-bottom: 1px solid var(--line);
}
.nearby-links a:hover { color: var(--sea); }
.nearby-links span { font-size: 1.3rem; font-weight: 600; letter-spacing: -.035em; }
.nearby-links small { color: var(--muted); font-size: .78rem; line-height: 1.5; }
.nearby-links b { font-size: .85rem; }

.invitation {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 10%;
  align-items: end;
}
.invitation h2 { margin-top: 1.3rem; font-size: clamp(2.5rem, 4.3vw, 4.8rem); }
.invitation > div:last-child { max-width: 25rem; justify-self: end; }
.invitation > div:last-child p { margin-bottom: 1.5rem; color: var(--muted); }

/* Inner pages */
.about-opening {
  max-width: 1480px;
  min-height: calc(100svh - 80px);
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) max(5vw, 2rem);
  display: grid;
  grid-template-columns: minmax(20rem, .72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: end;
}
.about-heading {
  align-self: start;
  padding: 1rem 0 0 1.5rem;
  border-left: 3px solid var(--brick);
}
.about-heading h1 {
  margin: 1.1rem 0 1.6rem;
  font-size: clamp(3.5rem, 5.4vw, 5.8rem);
}
.about-heading > p:last-child { max-width: 34rem; color: var(--muted); }
.about-opening figure { align-self: end; }
.about-opening figure img { aspect-ratio: 1.42 / 1; object-fit: cover; }
.about-opening figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: .7rem;
  color: var(--muted);
  font-size: .75rem;
}

.activity-opening { background: var(--sea); color: var(--white); }
.activity-opening figure { height: min(64svh, 700px); min-height: 480px; }
.activity-opening figure img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; }
@media (min-width: 1051px) {
  .activity-opening { padding-top: clamp(2rem, 4vw, 4.5rem); }
  .activity-opening figure {
    width: min(1200px, calc(100% - 8vw));
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
  }
}
.activity-opening > div {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3rem max(5vw, 2rem) 3.5rem;
  display: grid;
  grid-template-columns: .45fr 1.05fr .9fr;
  gap: 6%;
  align-items: end;
}
.activity-opening .section-label { align-self: start; color: #d7dedc; }
.activity-opening h1 { font-size: clamp(3.2rem, 5vw, 5.4rem); }

.coast-passage {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) max(5vw, 2rem);
  display: grid;
  grid-template-columns: minmax(17rem, .72fr) minmax(0, 1.28fr);
  grid-template-areas:
    "copy wide"
    "tall wide";
  gap: clamp(2rem, 4vw, 4.5rem) clamp(2.5rem, 6vw, 7rem);
  align-items: start;
}
.coast-passage > div { grid-area: copy; padding-top: .5rem; }
.coast-passage h2 { margin: 1rem 0 1.3rem; font-size: clamp(2.6rem, 4vw, 4.6rem); line-height: .98; }
.coast-passage > div > p:last-child { max-width: 31rem; color: var(--muted); }
.coast-passage-wide { grid-area: wide; align-self: center; }
.coast-passage-wide img { width: 100%; aspect-ratio: 1920 / 729; object-fit: cover; }
.coast-passage-tall { grid-area: tall; width: min(78%, 28rem); justify-self: end; }
.coast-passage-tall img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.activity-opening > div > p:last-child { max-width: 32rem; color: #e4e9e7; }

.availability-page {
  max-width: 1220px;
  min-height: calc(100svh - 80px);
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) max(5vw, 1.5rem) clamp(5rem, 8vw, 7rem);
}
.availability-intro {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 8%;
  align-items: end;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.availability-intro .section-label { grid-column: 1 / -1; color: var(--brick); }
.availability-intro h1 { max-width: 12ch; margin-top: 1rem; font-size: clamp(3.4rem, 5.7vw, 6rem); }
.availability-intro > p:last-child { max-width: 31rem; padding-bottom: .6rem; color: var(--muted); }
.availability-form {
  padding: clamp(2rem, 4vw, 4rem);
  border-top: 4px solid var(--brick);
  background: var(--white);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr .6fr;
  gap: 2rem 1.5rem;
  box-shadow: 0 22px 70px #17211c0d;
}
.availability-form .form-heading { grid-column: 1 / -1; padding-bottom: 1.3rem; border-bottom: 1px solid var(--line); }
.availability-form .form-heading h2 { margin-top: .6rem; font-size: clamp(2rem, 3.3vw, 3.4rem); }
.availability-form label { display: flex; flex-direction: column; gap: .55rem; color: var(--muted); font-size: .82rem; font-weight: 650; }
.availability-form input,
.availability-form textarea {
  width: 100%;
  min-height: 50px;
  padding: .7rem 0;
  border: 0;
  border-bottom: 1px solid #17211c68;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 430;
}
.availability-form textarea { resize: vertical; }
.availability-form .field-message { grid-column: 1 / -1; }
.availability-form .form-submit {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(12rem, .55fr) 1.45fr;
  gap: 1.5rem;
  align-items: start;
}
.availability-form .form-note { margin: 0; }
.availability-aside {
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  color: var(--muted);
  font-size: .8rem;
}
.availability-aside a { color: var(--ink); border-bottom: 1px solid currentColor; }

.inner-hero {
  max-width: 1500px;
  min-height: calc(100svh - 80px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: stretch;
}
.inner-hero > div {
  padding: clamp(3rem, 7vw, 7rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.inner-hero h1 { margin: 1.1rem 0 1.5rem; font-size: clamp(3.2rem, 5vw, 5rem); }
.inner-hero > div > p:not(.section-label) { max-width: 34rem; color: var(--muted); }
.inner-hero figure { min-height: 620px; background: #d8d3c9; }
.inner-hero img { width: 100%; height: 100%; object-fit: cover; }
.history-hero figure { max-height: 860px; }
.history-hero img { object-position: center 46%; }
.activity-hero img { object-position: center; }

.detail-list,
.reading-section,
.destination-list,
.page-heading,
.gallery-section,
.paired-photos,
.garden-journal {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: max(5vw, 1.5rem);
  padding-right: max(5vw, 1.5rem);
}
.detail-list { padding-top: clamp(5rem, 9vw, 9rem); padding-bottom: clamp(5rem, 9vw, 9rem); }
.detail-list article {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 10%;
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
}
.detail-list article:last-child { border-bottom: 1px solid var(--line); }
.detail-list h2 { font-size: clamp(2rem, 3vw, 3.2rem); }
.detail-list p { max-width: 39rem; color: var(--muted); }
.paired-photos {
  padding-bottom: clamp(5rem, 9vw, 9rem);
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 2rem;
  align-items: start;
}
.paired-photos figure:first-child img { aspect-ratio: 1.45 / 1; object-fit: cover; }
.paired-photos figure:last-child { margin-top: 6rem; }
.paired-photos figure:last-child img { aspect-ratio: .92 / 1; object-fit: cover; }
.paired-photos figcaption { margin-top: .7rem; color: var(--muted); font-size: .75rem; }

.garden-journal { padding-bottom: clamp(6rem, 11vw, 11rem); }
.garden-journal-heading {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 10%;
  align-items: start;
  padding: 2.2rem 0 3.5rem;
  border-top: 1px solid var(--line);
}
.garden-journal-heading h2 { max-width: 18ch; font-size: clamp(2.5rem, 4vw, 4.4rem); }
.garden-journal-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}
.garden-journal-grid figure:first-child img { width: 100%; aspect-ratio: 1.05 / 1; object-fit: cover; object-position: center 64%; }
.garden-journal-grid figure:last-child { margin-top: clamp(5rem, 10vw, 10rem); }
.garden-journal-grid figure:last-child img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.garden-journal-grid figcaption { margin-top: .7rem; color: var(--muted); font-size: .75rem; }

.reading-section {
  padding-top: clamp(5rem, 9vw, 9rem);
  padding-bottom: clamp(5rem, 9vw, 9rem);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 10%;
}
.reading-section h2 { font-size: clamp(2.5rem, 4vw, 4.6rem); }
.reading-section > div p { max-width: 41rem; margin-bottom: 1.3rem; color: var(--muted); }
.reading-section .text-link { margin-top: .6rem; }
.activity-reading > p { max-width: 39rem; color: var(--muted); }

.page-heading {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}
.page-heading h1 { max-width: 14ch; margin: 1.3rem 0 1.5rem; }
.page-heading h1 { font-size: clamp(3.3rem, 5.2vw, 5.4rem); }
.page-heading > p:last-child { max-width: 34rem; color: var(--muted); }
.filters {
  display: flex;
  gap: 1.7rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.filter {
  position: relative;
  padding: .25rem 0;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 650;
}
.filter.active { color: var(--ink); }
.filter.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.3rem;
  border-bottom: 2px solid var(--sea);
}
.gallery {
  padding: 2.5rem 0 clamp(5rem, 9vw, 9rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem 2rem;
}
.gallery-item { min-width: 0; padding: 0; text-align: left; }
.gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #dedbd2; }
.gallery-item > span {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: .75rem;
  font-size: .8rem;
  font-weight: 600;
}
.gallery-item b { color: var(--muted); font-size: .75rem; font-weight: 650; letter-spacing: .04em; }
.gallery-item[hidden] { display: none; }
.lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  padding: 3.5rem 5rem;
  border: 0;
  background: #111814f7;
  color: var(--white);
  overflow: hidden;
}
.lightbox::backdrop { background: #111814; }
.lightbox[open] { display: flex; align-items: center; justify-content: center; }
.lightbox figure { max-width: 1200px; max-height: 100%; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.lightbox img { width: auto; max-width: 100%; height: auto; max-height: 82vh; object-fit: contain; }
.lightbox figcaption { font-size: .8rem; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  min-width: 48px;
  min-height: 48px;
  padding: .6rem;
  color: var(--white);
  font-size: 1.7rem;
}
.lightbox-close { top: .8rem; right: 1rem; }
.lightbox-prev { left: .8rem; top: 47%; }
.lightbox-next { right: .8rem; top: 47%; }

.destination-list {
  max-width: 1500px;
  margin: 0 auto;
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(3.5rem, 6vw, 7rem) 2.2rem;
}
.destination-card { display: flex; flex-direction: column; gap: 1.25rem; }
.destination-card:nth-child(1) { grid-column: 1 / 8; }
.destination-card:nth-child(2) { grid-column: 8 / 13; margin-top: clamp(4rem, 7vw, 7rem); }
.destination-card:nth-child(3) {
  grid-column: 3 / 12;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(15rem, .65fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}
.destination-card figure { position: relative; overflow: hidden; background: #d8ddd8; }
.destination-card figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .7s cubic-bezier(.2,.65,.2,1); }
.destination-card:nth-child(3) figure img { aspect-ratio: 16 / 9; }
.destination-card:hover figure img { transform: scale(1.018); }
.destination-card figcaption {
  position: absolute;
  right: .75rem;
  bottom: .75rem;
  padding: .35rem .55rem;
  background: #14221dcc;
  color: #f6f3eb;
  font-size: .66rem;
  letter-spacing: .01em;
}
.destination-card figcaption a { color: inherit; }
.destination-copy { display: flex; justify-content: space-between; gap: 2rem; align-items: end; }
.destination-card:nth-child(3) .destination-copy { height: 100%; flex-direction: column; align-items: flex-start; justify-content: flex-end; }
.destination-list h2 { margin-bottom: .65rem; font-size: clamp(2.35rem, 3.8vw, 4.2rem); }
.destination-list p { max-width: 31rem; color: var(--muted); }
.destination-map { flex: 0 0 auto; padding-bottom: .25rem; border-bottom: 1px solid currentColor; font-size: .78rem; font-weight: 650; }
.destination-map:hover { color: var(--sea); }

.location-map {
  margin-top: clamp(4rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: minmax(19rem, .72fr) minmax(0, 1.28fr);
  min-height: 470px;
  overflow: hidden;
  background: var(--sea);
  color: var(--white);
}
.location-map-copy { padding: clamp(2.5rem, 5vw, 5rem); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.location-map-copy .section-label { color: #d7dedc; }
.location-map-copy h2 { margin: 1rem 0 1.4rem; font-size: clamp(2.5rem, 4.5vw, 4.7rem); }
.location-map-copy > p:not(.section-label) { max-width: 27rem; color: #dfe6e2; }
.location-map-copy > a { margin-top: 2rem; padding-bottom: .25rem; border-bottom: 1px solid currentColor; color: var(--white); font-size: .8rem; font-weight: 650; }
.location-map-frame { min-height: 470px; }
.location-map-frame iframe { display: block; width: 100%; height: 100%; min-height: 470px; border: 0; }

.contact-layout {
  max-width: 1500px;
  min-height: calc(100svh - 80px);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 6rem) max(5vw, 1.5rem);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 9%;
  align-items: start;
}
.contact-copy h1 { max-width: 13ch; margin: 1.1rem 0 1.6rem; font-size: clamp(3.1rem, 4.8vw, 5.2rem); }
.contact-copy > p:not(.section-label) { max-width: 31rem; color: var(--muted); }
.contact-details { display: flex; flex-direction: column; align-items: flex-start; gap: .8rem; margin-top: 3rem; }
.contact-details > a:first-child { font-size: 1rem; font-weight: 650; overflow-wrap: anywhere; }
.contact-details span { color: var(--muted); font-size: .8rem; }
.contact-layout form { padding: clamp(2rem, 4vw, 3.7rem); background: var(--white); border: 1px solid var(--line); }
.contact-layout form h2 { margin: 1.2rem 0 2.5rem; font-size: clamp(2rem, 3vw, 3.2rem); }
.contact-layout label { display: block; margin-bottom: 1.5rem; font-size: .76rem; font-weight: 650; }
.contact-layout input, .contact-layout textarea {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: .75rem 0;
  border: 0;
  border-bottom: 1px solid #17211c68;
  border-radius: 0;
  background: transparent;
  font-size: 1rem;
  font-weight: 430;
}
.contact-layout textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.contact-layout .button { width: 100%; }
.form-note { margin-top: 1rem; color: var(--muted); font-size: .75rem; }
#form-status { margin-top: .8rem; font-size: .8rem; font-weight: 650; }

.complete-footer {
  background: var(--pine);
  color: var(--white);
  padding: 4rem max(4vw, 1.5rem) 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 8%;
}
.footer-brand > a { font-size: clamp(2rem, 3.8vw, 4rem); font-weight: 520; letter-spacing: -.05em; }
.footer-brand p { max-width: 24rem; margin-top: 1rem; color: #bfc7c2; font-size: .8rem; }
.footer-nav { display: flex; flex-direction: column; align-items: flex-start; gap: .45rem; }
.footer-nav a { color: #d6ddd8; font-size: .79rem; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: .8rem; }
.footer-contact a { font-size: .8rem; }
.footer-contact span { color: #bfc7c2; font-size: .75rem; }
.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 3.5rem;
  padding-top: 1rem;
  border-top: 1px solid #ffffff2c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: #bfc7c2;
  font-size: .75rem;
}
.footer-bottom div { display: flex; gap: 1rem; }

/* Tablet */
@media (max-width: 1050px) {
  .site-header { height: 72px; }
  .desktop-nav { display: none; }
  .menu-button { display: flex; }
  .home-hero {
    height: calc(100svh - 72px);
    min-height: 700px;
    max-height: 940px;
    display: block;
  }
  .home-hero-photo {
    position: absolute;
    inset: 0;
  }
  .home-hero-card {
    width: min(43rem, calc(100% - 4rem));
    position: absolute;
    left: max(5vw, 2rem);
    bottom: 2.5rem;
    padding: 0;
    background: transparent;
  }
  .home-hero h1 { max-width: 15ch; margin: .65rem 0 .8rem; font-size: clamp(2.8rem, 6.6vw, 3.8rem); line-height: 1.02; }
  .hero-summary { max-width: 42rem; }
  .hero-actions { margin-top: 1rem; }
  .hero-facts { margin-top: 1rem; padding-top: .8rem; }
  .home-hero-photo figcaption { bottom: .7rem; right: .7rem; }
  .feature-story figure,
  .beach-story figure,
  .history-feature figure { min-height: 520px; }
  .feature-story > div,
  .beach-story > div,
  .history-feature > div { padding: 3.5rem 2.5rem; }
  .nearby { gap: 5%; }
  .about-opening {
    min-height: 0;
    grid-template-columns: .8fr 1.2fr;
    gap: 3rem;
    padding-top: 4.5rem;
    padding-bottom: 5rem;
  }
  .about-heading h1 { font-size: clamp(3.2rem, 7vw, 4.8rem); }
  .activity-opening figure { height: 54svh; min-height: 460px; }
  .activity-opening > div { grid-template-columns: 1fr 1fr; gap: 2rem 5%; }
  .activity-opening .section-label { grid-column: 1 / -1; }
  .coast-passage {
    grid-template-columns: .85fr 1.15fr;
    gap: 2rem 3rem;
  }
  .coast-passage-tall { width: 90%; }
  .availability-page { min-height: 0; }
  .availability-form { grid-template-columns: 1fr 1fr; }
  .availability-form .form-heading,
  .availability-form .field-message,
  .availability-form .form-submit { grid-column: 1 / -1; }
  .location-map { grid-template-columns: .82fr 1.18fr; }
  .inner-hero { min-height: calc(100svh - 72px); grid-template-columns: .9fr 1.1fr; }
  .inner-hero > div { padding: 3.5rem 2.5rem; }
  .inner-hero figure { min-height: 560px; }
  .complete-footer { gap: 5%; }
}

/* Phone */
@media (max-width: 700px) {
  body { line-height: 1.6; }
  h1 { font-size: clamp(3.1rem, 15vw, 4.6rem); }
  h2 { font-size: clamp(2.25rem, 10.5vw, 3.8rem); }
  .site-header { height: 68px; padding-left: 1.1rem; padding-right: 1.1rem; }
  .wordmark { font-size: .88rem; }
  .crest-crop { width: 30px; height: 46px; flex-basis: 30px; }
  .crest-crop img { height: 46px; }
  .header-stay { display: none; }
  .header-end { gap: .65rem; }
  .header-stay {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: .5rem .65rem;
    border-color: var(--white);
    background: var(--white);
    color: var(--pine);
    font-size: .69rem;
  }
  .menu-button { gap: 0; }
  .menu-label { display: none; }
  .mobile-nav { top: 68px; }
  .mobile-nav { max-height: calc(100dvh - 68px); }
  .home-hero {
    height: calc(100svh - 68px);
    min-height: 650px;
    max-height: 820px;
    display: block;
  }
  .home-hero::after {
    background:
      linear-gradient(0deg, rgba(8, 22, 16, .96) 0%, rgba(8, 22, 16, .78) 46%, rgba(8, 22, 16, .12) 82%, transparent 100%),
      linear-gradient(90deg, rgba(8, 22, 16, .34), transparent 78%);
  }
  .home-hero-photo img {
    transform: scale(1.12);
    transform-origin: center 58%;
  }
  .home-hero-card {
    width: auto;
    top: 29%;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.25rem;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .home-hero .location { font-size: .74rem; letter-spacing: .04em; }
  .home-hero h1 { max-width: 12ch; margin: .5rem 0 .65rem; font-size: clamp(2.35rem, 11.8vw, 3.25rem); line-height: .98; }
  .hero-summary { max-width: 34ch; font-size: .9rem; line-height: 1.5; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: auto; padding-top: .85rem; }
  .hero-actions .button { min-height: 48px; min-width: 0; padding: .7rem .75rem; font-size: .8rem; font-weight: 750; }
  .hero-contact { display: flex; align-items: center; justify-content: center; min-height: 44px; padding: .65rem .75rem; border: 1px solid rgba(255, 255, 255, .58); font-size: .8rem; }
  .hero-facts { gap: .6rem; margin-top: .8rem; padding-top: .65rem; }
  .hero-facts dt { font-size: .7rem; }
  .hero-facts dd { font-size: .78rem; }
  .home-hero-photo figcaption { display: none; }
  .home-intro { grid-template-columns: 1fr; gap: 1.8rem; padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .home-intro h2 { max-width: none; }
  .home-intro > div > p { margin-top: 1.4rem; }
  .feature-story,
  .beach-story,
  .history-feature { grid-template-columns: 1fr; }
  .feature-story figure,
  .beach-story figure,
  .history-feature figure { min-height: 0; }
  .feature-story img,
  .beach-story img,
  .history-feature img { height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
  .feature-story > div,
  .beach-story > div,
  .history-feature > div { padding: 3.5rem 1.4rem; }
  .beach-story { margin-top: 4.5rem; }
  .beach-story > div { order: -1; }
  .stay-notes { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .stay-heading { grid-template-columns: 1fr; gap: 1.3rem; }
  .stay-grid { grid-template-columns: 1fr; margin-top: 2.5rem; }
  .stay-grid article,
  .stay-grid article + article {
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .history-feature > div { order: 0; }
  .nearby { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .nearby-links a { grid-template-columns: 1fr auto; gap: .5rem 1rem; }
  .nearby-links small { grid-column: 1; }
  .nearby-links b { grid-column: 2; grid-row: 1 / 3; }
  .invitation { grid-template-columns: 1fr; gap: 2rem; padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .invitation > div:last-child { justify-self: start; }
  .about-opening {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 1.4rem 4.5rem;
  }
  .about-heading { padding: .6rem 0 0 1rem; }
  .about-heading h1 { font-size: clamp(2.8rem, 12vw, 3.7rem); }
  .about-opening figure img { aspect-ratio: 16 / 11; object-position: center 48%; }
  .activity-opening figure { height: 52svh; min-height: 390px; }
  .activity-opening > div { grid-template-columns: 1fr; gap: 1.3rem; padding: 2.5rem 1.4rem 3rem; }
  .activity-opening .section-label { grid-column: 1; }
  .activity-opening h1 { font-size: clamp(2.8rem, 12vw, 3.7rem); }
  .coast-passage {
    padding: 4.5rem 1.4rem 5rem;
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "wide" "tall";
    gap: 2.25rem;
  }
  .coast-passage h2 { font-size: clamp(2.7rem, 12vw, 3.8rem); }
  .coast-passage-wide img { aspect-ratio: 16 / 9; }
  .coast-passage-tall { width: 72%; justify-self: end; }
  .availability-page { padding: 3.5rem 1.2rem 4.5rem; }
  .availability-intro { grid-template-columns: 1fr; gap: 1.2rem; margin-bottom: 2.5rem; }
  .availability-intro .section-label { grid-column: 1; }
  .availability-intro h1 { margin-top: .5rem; font-size: clamp(2.8rem, 12vw, 3.7rem); }
  .availability-form { grid-template-columns: 1fr; gap: 1.3rem; padding: 1.6rem 1.2rem; }
  .availability-form .form-heading,
  .availability-form .field-message,
  .availability-form .form-submit { grid-column: 1; }
  .availability-form .form-submit { grid-template-columns: 1fr; gap: 1rem; }
  .availability-aside { flex-direction: column; gap: .5rem; }
  .inner-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .inner-hero > div { padding: 3.5rem 1.4rem; }
  .inner-hero h1 { font-size: clamp(2.7rem, 12vw, 3.6rem); }
  .inner-hero figure { min-height: 0; }
  .inner-hero img { height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
  .history-hero img { aspect-ratio: 3 / 4; object-position: center 45%; }
  .detail-list { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .detail-list article { grid-template-columns: 1fr; gap: 1rem; padding: 1.7rem 0; }
  .paired-photos { grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 4.5rem; }
  .paired-photos figure:last-child { width: 76%; margin: 0 0 0 auto; }
  .garden-journal { padding-bottom: 5.5rem; }
  .garden-journal-heading { grid-template-columns: 1fr; gap: 1.2rem; padding: 1.8rem 0 2.5rem; }
  .garden-journal-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .garden-journal-grid figure:first-child img { aspect-ratio: 4 / 5; object-position: center 58%; }
  .garden-journal-grid figure:last-child { width: 78%; margin: 0 0 0 auto; }
  .reading-section { grid-template-columns: 1fr; gap: 2rem; padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .page-heading { padding-top: 3.5rem; padding-bottom: 3rem; }
  .gallery { grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 4.5rem; }
  .gallery-item img { aspect-ratio: auto; max-height: none; object-fit: contain; }
  .lightbox { padding: 4.5rem 2.2rem; }
  .destination-list { grid-template-columns: 1fr; gap: 3.5rem; padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .destination-card:nth-child(1),
  .destination-card:nth-child(2),
  .destination-card:nth-child(3) { grid-column: 1; margin-top: 0; display: flex; }
  .destination-card:nth-child(1),
  .destination-card:nth-child(2),
  .destination-card:nth-child(3) { width: 100%; margin-left: 0; }
  .destination-card figure img,
  .destination-card:nth-child(3) figure img { aspect-ratio: 4 / 3; }
  .destination-card:nth-child(1) figure img { aspect-ratio: 3 / 4; object-position: center 48%; }
  .destination-copy { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .destination-card:nth-child(3) .destination-copy {
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }
  .destination-card figcaption { font-size: .61rem; }
  .location-map { grid-template-columns: 1fr; min-height: 0; }
  .location-map-copy { padding: 3rem 1.4rem; }
  .location-map-frame,
  .location-map-frame iframe { min-height: 340px; }
  .contact-layout { min-height: 0; grid-template-columns: 1fr; gap: 2.5rem; padding-top: 3.5rem; padding-bottom: 4.5rem; }
  .contact-copy h1 { font-size: clamp(2.7rem, 12vw, 3.6rem); }
  .contact-details { margin-top: 2.2rem; }
  .contact-layout form { padding: 2rem 1.2rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .complete-footer { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; padding-top: 3.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-wrap: wrap; margin-top: 1rem; }
}

@media (max-width: 420px) {
  .home-hero { min-height: 640px; }
  .home-hero h1 { font-size: clamp(2.25rem, 11.5vw, 2.8rem); }
  .wordmark { font-size: .8rem; }
  .header-stay { padding: .45rem .55rem; font-size: .64rem; }
  .complete-footer { grid-template-columns: 1fr; }
  .footer-brand, .footer-bottom { grid-column: 1; }
}

@media (max-height: 720px) and (max-width: 700px) {
  .home-hero { height: 700px; min-height: 700px; }
  .home-hero-photo { height: 100%; }
}

@media (orientation: landscape) and (max-height: 620px) {
  .home-hero { height: 560px; min-height: 560px; display: block; }
  .home-hero-photo { position: absolute; inset: 0; height: 100%; }
  .home-hero-card { width: min(35rem, calc(100% - 4rem)); position: absolute; left: 2rem; right: auto; bottom: 1.5rem; padding: 0; }
  .home-hero h1 { font-size: 2.25rem; }
  .hero-summary { font-size: .85rem; }
  .hero-facts { margin-top: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
