/* ============================================================
   Creekside Retreat - Cornwall Luxury Cabin
   Editorial revision: one background, square corners, hairlines,
   no filled buttons, photography sweeps on scroll.
   Palette: Linen #F7F5F1 / Sand #E9E2D5 / Stone #C9C2B8
            Forest #264338 / Sage #708D81 / Charcoal #2A2A2A
            Copper #C67A42
   ============================================================ */

:root {
  --linen: #F7F5F1;
  --sand: #E9E2D5;
  --stone: #C9C2B8;
  --forest: #264338;
  --sage: #708D81;
  --charcoal: #2A2A2A;
  --copper: #C67A42;

  --hairline: 1px solid rgba(42, 42, 42, 0.16);
  --hairline-soft: 1px solid rgba(42, 42, 42, 0.09);

  --font-head: "trajan-pro-3", "Trajan Pro", Georgia, serif;
  --font-body: "gill-sans-nova", "Gill Sans", -apple-system, "Segoe UI", sans-serif;
  --font-script: "zooja-pro", "Segoe Script", cursive;

  --section-pad: clamp(6rem, 14vw, 12rem);
  --gutter: clamp(1.25rem, 6vw, 6rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-wipe: cubic-bezier(0.77, 0, 0.18, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.03rem;
  line-height: 1.8;
  color: var(--charcoal);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0.03em;
  color: var(--forest);
}

h1 { font-size: clamp(2.1rem, 4.8vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 2.9vw, 2.3rem); }

h1 em {
  font-family: var(--font-head);
  font-style: normal;
  color: var(--sand);
}

a { color: inherit; text-decoration: none; }

.wrap { max-width: 1200px; margin: 0 auto; }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.2rem;
}
.eyebrow.light { color: rgba(247, 245, 241, 0.8); }

/* ---------------- Quiet links (the only "buttons") ---------------- */
.link-quiet {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid currentColor;
  opacity: 0.8;
  transition: opacity 0.35s, letter-spacing 0.35s;
}
.link-quiet:hover { opacity: 1; letter-spacing: 0.3em; }
.link-quiet.light { color: var(--linen); }

/* ---------------- Nav ---------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem var(--gutter);
  transition: background-color 0.4s, color 0.4s, padding 0.4s, border-color 0.4s;
  color: var(--linen);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(247, 245, 241, 0.96);
  color: var(--charcoal);
  border-bottom: var(--hairline-soft);
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.nav-logo em {
  color: var(--copper);
  font-family: var(--font-head);
  font-style: normal;
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 2.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav-links a { opacity: 0.75; transition: opacity 0.3s; }
.nav-links a:hover { opacity: 1; }

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero .hero-frame {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 42, 42, 0.32) 0%, rgba(42, 42, 42, 0.08) 45%, rgba(42, 42, 42, 0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) clamp(4rem, 10vh, 7rem);
  max-width: 820px;
  color: var(--linen);
}
.hero-content h1 { color: var(--linen); margin-bottom: 1.6rem; }
.hero-sub {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin-bottom: 2.6rem;
  opacity: 0.9;
}

/* ---------------- Sections ---------------- */
.section { padding: var(--section-pad) var(--gutter) 0; }
.section:last-of-type { padding-bottom: var(--section-pad); }

.section-head {
  border-top: var(--hairline);
  padding-top: 1.6rem;
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
  max-width: 720px;
}
.section-sub { margin-top: 1rem; color: rgba(42, 42, 42, 0.6); max-width: 46ch; }

/* ---------------- Frames + sweep ---------------- */
.frame { overflow: hidden; position: relative; }
.frame img {
  width: 100%;
  transform: scale(1.16);
  will-change: transform;
}

/* The width/height attributes on these images exist so the browser can
   reserve space (no layout shift). Without an explicit height:auto the
   attribute's presentational hint wins and the image renders stretched
   (or, for .explore-card, overrides its own aspect-ratio: 16/11 rule). */
.masonry-item img,
.split-media img,
.explore-card img { height: auto; }

.wipe > img { clip-path: inset(0 100% 0 0); transition: clip-path 1.4s var(--ease-wipe); }
.wipe-r > img { clip-path: inset(0 0 0 100%); }
.wipe.in > img { clip-path: inset(0 0 0 0); }

/* ---------------- Masonry gallery ---------------- */
.masonry {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}
.m-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(2.2rem, 4vw, 3.5rem);
}
.m-col:nth-child(2) { margin-top: clamp(2.5rem, 5vw, 4.5rem); }
.masonry-item { cursor: zoom-in; }
.masonry-item figcaption {
  margin-top: 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color 0.35s;
}
.masonry-item:hover figcaption { color: var(--charcoal); }

/* ---------------- Split / About ---------------- */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 7vw, 6.5rem);
  align-items: center;
}
.split-copy p { margin-bottom: 1.3rem; color: rgba(42, 42, 42, 0.75); max-width: 54ch; }
.split-copy h2 { margin-bottom: 1.6rem; }
.split-copy .eyebrow { border-top: var(--hairline); padding-top: 1.6rem; }
.stats {
  display: flex;
  gap: clamp(1.8rem, 4vw, 3.2rem);
  list-style: none;
  margin-top: 2.6rem;
  padding-top: 1.8rem;
  border-top: var(--hairline-soft);
  flex-wrap: wrap;
}
.stats li { display: flex; flex-direction: column; }
.stats strong {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
}
.stats span {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 0.5rem;
}

/* ---------------- Amenities ---------------- */
.amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 clamp(1.8rem, 3.5vw, 3rem);
}
.amenity {
  border-top: var(--hairline-soft);
  padding: 1.5rem 0 2.4rem;
}
.amenity h3 {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.amenity p { font-size: 0.9rem; line-height: 1.7; color: rgba(42, 42, 42, 0.62); }

/* ---------------- Explore ---------------- */
.weather-line {
  margin-top: 1.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--stone);
}

.explore-lede {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.6rem;
}
.explore-lede p { max-width: 52ch; color: rgba(42, 42, 42, 0.72); }

.carousel-nav { display: flex; gap: 0; flex-shrink: 0; }
.carousel-btn {
  width: 48px;
  height: 48px;
  border: var(--hairline);
  background: transparent;
  color: var(--charcoal);
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.35s, color 0.35s;
}
.carousel-btn + .carousel-btn { border-left: none; }
.carousel-btn:hover { background: var(--forest); color: var(--linen); border-color: var(--forest); }

.carousel {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 1rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.carousel::-webkit-scrollbar { display: none; }
.explore-card {
  flex: 0 0 clamp(250px, 28vw, 330px);
  scroll-snap-align: start;
}
.explore-card img { aspect-ratio: 16/11; object-fit: cover; }
.explore-dist {
  display: block;
  margin-top: 1.1rem;
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
}
.explore-card h3 { font-size: 1rem; letter-spacing: 0.08em; margin: 0.5rem 0 0.5rem; }
.explore-card p { font-size: 0.88rem; line-height: 1.7; color: rgba(42, 42, 42, 0.62); }

/* ---------------- A week of tables ---------------- */
.tables {
  border-top: var(--hairline-soft);
  padding-top: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  max-width: 720px;
}
.tables-title {
  font-size: 1rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.8rem;
}
.tables-lede { color: rgba(42, 42, 42, 0.62); font-size: 0.94rem; margin-bottom: 2rem; }
.tables-list { list-style: none; counter-reset: table; }
.tables-list li {
  counter-increment: table;
  display: grid;
  grid-template-columns: 2.4rem 1fr auto;
  grid-template-areas: "no name place" "no desc desc";
  align-items: baseline;
  column-gap: 1rem;
  padding: 1.1rem 0;
  border-top: var(--hairline-soft);
}
.tables-list li::before {
  content: counter(table, decimal-leading-zero);
  grid-area: no;
  font-family: var(--font-head);
  font-size: 0.8rem;
  color: var(--stone);
}
.tables-list strong {
  grid-area: name;
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
}
.tables-list span {
  grid-area: place;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}
.tables-list p {
  grid-area: desc;
  font-size: 0.9rem;
  color: rgba(42, 42, 42, 0.62);
  margin-top: 0.2rem;
}
/* Outbound links to the places themselves. The global `a` rule strips
   underlines, so these need one back to read as links at all. */
.tables-list a,
.explore-card h3 a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(42, 42, 42, 0.28);
  transition: text-decoration-color 0.3s;
}
.tables-list a:hover,
.explore-card h3 a:hover { text-decoration-color: currentColor; }

.tables-secret {
  margin-top: 1.6rem;
  font-style: italic;
  color: rgba(42, 42, 42, 0.72);
}

.map-wrap { border-top: var(--hairline-soft); padding-top: clamp(1.5rem, 3vw, 2.5rem); }
.map-wrap iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
  filter: saturate(0.6) contrast(0.96);
}
.map-tag {
  margin-top: 0.9rem;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ---------------- Reviews ---------------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}
.review {
  border-top: var(--hairline-soft);
  padding-top: 1.8rem;
  display: flex;
  flex-direction: column;
}
.review p {
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(42, 42, 42, 0.78);
  flex: 1;
}
.review footer { margin-top: 1.8rem; display: flex; flex-direction: column; }
.review footer strong {
  font-weight: 400;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
}
.review footer span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--stone);
  margin-top: 0.3rem;
}

/* ---------------- Calendar ---------------- */
.calendar-wrap {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}
.calendar {
  flex: 1 1 340px;
  max-width: 460px;
  border: var(--hairline-soft);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.cal-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  color: var(--forest);
  text-align: center;
  margin-bottom: 1.2rem;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
  font-size: 0.82rem;
}
.cal-dow {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 0.4rem 0;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  color: var(--charcoal);
  transition: background-color 0.2s, color 0.2s;
}
.cal-day:hover:not(:disabled) { background: var(--sand); }
.cal-day:disabled { cursor: default; }
.cal-day.past { color: var(--stone); opacity: 0.55; }
.cal-day.booked { color: var(--stone); text-decoration: line-through; }
.cal-day.changeover { color: var(--sage); }
.cal-day.in-range { background: var(--sand); }
.cal-day.selected { background: var(--forest); color: var(--linen); }

.stay-info {
  margin-top: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(42, 42, 42, 0.55);
}

/* ---------------- Enquiries ---------------- */
.enquire { max-width: 640px; }
.enquire .eyebrow { border-top: var(--hairline); padding-top: 1.6rem; }
.enquire h2 { margin-bottom: 1.4rem; }
.enquire p { color: rgba(42, 42, 42, 0.72); max-width: 52ch; }
.enquire-links {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
}

/* ---------------- Enquiry form ---------------- */
.enquire-form { margin-top: 2.6rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.6rem;
}
.field-optional {
  text-transform: none;
  letter-spacing: normal;
  color: var(--stone);
  font-size: 0.72rem;
}
.field input, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: none;
  border: none;
  border-bottom: var(--hairline);
  padding: 0.5rem 0;
  transition: border-color 0.3s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--forest); }
.field textarea { resize: vertical; min-height: 5.5rem; line-height: 1.6; }

.enquire-submit-row {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}
.enquire-submit {
  background: none;
  border: none;
  border-bottom: 1px solid currentColor;
  padding: 0 0 0.3rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest);
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.3s, letter-spacing 0.3s;
}
.enquire-submit:hover { opacity: 1; letter-spacing: 0.3em; }
.enquire-submit:disabled { opacity: 0.4; cursor: default; letter-spacing: 0.22em; }
.enquire-status { font-size: 0.82rem; color: rgba(42, 42, 42, 0.65); }
.enquire-status.is-error { color: #9B4A3F; }
.enquire-status.is-success { color: var(--forest); }

/* ---------------- Footer ---------------- */
.footer {
  margin-top: var(--section-pad);
  background: var(--forest);
  color: rgba(247, 245, 241, 0.72);
  padding: clamp(4rem, 8vw, 6.5rem) var(--gutter) 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}
.footer-brand .nav-logo { color: var(--linen); margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; }
.social { display: flex; gap: 1.1rem; margin-top: 1.6rem; }
.social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 245, 241, 0.25);
  color: rgba(247, 245, 241, 0.75);
  transition: border-color 0.35s, color 0.35s;
}
.social a:hover { border-color: var(--linen); color: var(--linen); }
.social svg { width: 17px; height: 17px; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col h4 {
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.6rem;
}
.footer-col a, .footer-col span { font-size: 0.86rem; line-height: 1.6; }
.footer-col a { transition: color 0.3s; }
.footer-col a:hover { color: var(--linen); }
.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(247, 245, 241, 0.14);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: rgba(247, 245, 241, 0.45);
}
.footer-base a { margin-right: 1.6rem; transition: color 0.3s; }
.footer-base a:hover { color: var(--linen); }

/* ---------------- Lightbox ---------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(42, 42, 42, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; } }
.lightbox img { max-width: min(1100px, 92vw); max-height: 80vh; }
.lightbox-caption {
  color: var(--sand);
  margin-top: 1.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.lightbox-close {
  position: absolute;
  top: 1.4rem;
  right: 1.8rem;
  background: none;
  border: none;
  color: var(--linen);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.25s;
}
.lightbox-close:hover { opacity: 1; }

/* ---------------- Cookie notice ---------------- */
.cookie-note {
  position: fixed;
  left: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  max-width: 340px;
  background: var(--linen);
  border: var(--hairline);
  padding: 1.3rem 1.4rem;
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(42, 42, 42, 0.75);
}
.cookie-note a { text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; gap: 1.6rem; margin-top: 1rem; }
.cookie-actions button {
  background: none;
  border: none;
  border-bottom: 1px solid currentColor;
  padding: 0 0 0.3rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.cookie-actions button:hover { opacity: 1; }
#cookieDecline { color: rgba(42, 42, 42, 0.5); }

/* ---------------- Privacy page ---------------- */
.prose {
  max-width: 660px;
  margin: 0 auto;
  padding-top: clamp(8rem, 16vh, 11rem);
}
.prose h1 { margin-bottom: 2.5rem; }
.prose h2 {
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 3rem 0 1rem;
  padding-top: 1.4rem;
  border-top: var(--hairline-soft);
}
.prose p, .prose li { color: rgba(42, 42, 42, 0.75); margin-bottom: 1rem; }
.prose ul { padding-left: 1.2rem; margin-bottom: 1rem; }
.prose .updated {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 2.5rem;
}

/* ---------------- Reveal animation ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .wipe > img { clip-path: none; transition: none; }
  .frame img { transform: none !important; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1000px) {
  .amenities { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; max-width: 640px; }
  .section-split { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--linen);
    border-bottom: var(--hairline-soft);
  }
  .nav-links.nav-open { display: flex; }
  /* Own background regardless of .nav's scroll state, so this never
     repeats the low-contrast light-text-on-photo problem the unscrolled
     nav has (see TODO.md). */
  .nav-links a {
    color: var(--charcoal);
    opacity: 1;
    padding: 1.1rem var(--gutter);
    border-top: var(--hairline-soft);
  }
  .masonry { flex-direction: column; }
  .m-col:nth-child(2) { margin-top: 0; }
  .amenities { grid-template-columns: 1fr; }
  .explore-lede { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; }
  .cookie-note { left: 1rem; right: 1rem; max-width: none; }
  .field-row { grid-template-columns: 1fr; gap: 1.2rem; }
}
