/* Danery Meadow Park
   Colours sampled from the Whippet identity (April 2025).
   Display and body faces are free stand-ins for the brand typefaces;
   swap the two @font-face blocks and --font-* tokens when licensed files arrive. */

@font-face {
  font-family: "DMP Display";
  src: url("/assets/fonts/display-roboto-serif-wide.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DMP Body";
  src: url("/assets/fonts/body-montserrat.woff2") format("woff2");
  font-weight: 400 600;
  font-display: swap;
}

:root {
  color-scheme: light;

  --forest: #26361a;
  --forest-deep: #1b2712;
  --meadow: #3a582a;
  --paper: #edebe5;
  --paper-2: #e3e1d9;
  --paper-3: #d8d6cc;
  --bronze: #c7a68a;
  --bronze-deep: #7a5c42;
  --sky: #d3e5f3;

  --ink: var(--forest);
  --ink-soft: #3f4a36;
  --line: rgb(38 54 26 / 0.16);

  --font-display: "DMP Display", "Roboto Serif", Georgia, serif;
  --font-body: "DMP Body", "Montserrat", "Helvetica Neue", Arial, sans-serif;

  /* Type scale. Roles, not sizes: use these and nothing else.
     caption  small print, figure captions, notes
     small    supporting copy inside lists and panels
     body     ordinary paragraphs
     lede     the opening line of a page or section
     h3       card, list-item and panel titles
     h2       every section title, on every page
     h1       the page title */
  --size-micro: 0.75rem;     /* map keys, table headers, badges */
  --size-control: 1rem;      /* inputs and selects; 16px stops iOS zooming */
  --size-small: 0.9375rem;   /* interface: labels, buttons, captions, footer */
  --size-caption: var(--size-small);
  --size-body: 1.0625rem;    /* anything you read in sentences */
  --size-lede: 1.25rem;
  --size-h3: 1.25rem;
  --size-h2: clamp(1.75rem, 1.2rem + 1.9vw, 2.5rem);
  --size-h1: clamp(2.125rem, 1.15rem + 3.6vw, 4.25rem);

  /* Older names kept so nothing breaks; they map onto the scale above. */
  --step--1: var(--size-caption);
  --step-0: var(--size-body);
  --step-1: var(--size-lede);
  --step-2: var(--size-h2);
  --step-3: var(--size-h2);
  --step-4: var(--size-h1);

  --gutter: clamp(1rem, 4vw, 3rem);
  --section: clamp(4rem, 3rem + 5vw, 8rem);
  --radius: 3px;
  --header-h: 4.5rem;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

/* Components set their own display, which would otherwise beat the UA rule. */
[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h2 { font-size: var(--size-h2); }
h3 { font-size: var(--size-h3); line-height: 1.3; }

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { text-decoration-thickness: 2px; }

:focus-visible {
  outline: 3px solid var(--bronze-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--forest);
  color: var(--paper);
}
.skip-link:focus { top: 1rem; }

main:focus { outline: none; }

.container {
  width: min(100% - 2 * var(--gutter), 76rem);
  margin-inline: auto;
}

.section { padding-block: var(--section); }

.section__head {
  display: grid;
  gap: 1rem;
  max-width: 40rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.lede { font-size: var(--size-lede); line-height: 1.55; }

/* Buttons and links */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  border: 1.5px solid var(--forest);
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--paper);
  font: 600 var(--size-small)/1.2 var(--font-body);
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
  touch-action: manipulation;
}
.button:hover { background: var(--meadow); border-color: var(--meadow); }

.button--light { background: var(--paper); border-color: var(--paper); color: var(--forest); }
.button--light:hover { background: #fff; border-color: #fff; }

.button--small { min-height: 2.5rem; padding: 0.5rem 1.1rem; }

.button--on-dark { background: var(--paper); border-color: var(--paper); color: var(--forest); }
.button--on-dark:hover { background: var(--bronze); border-color: var(--bronze); color: var(--forest); }

.text-link {
  display: inline-block;
  margin-top: 1.75rem;
  padding-bottom: 0.2rem;
  border-bottom: 1.5px solid var(--bronze-deep);
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
}
.text-link:hover { border-bottom-width: 3px; margin-bottom: -1.5px; }
.text-link--on-dark { color: var(--paper); border-bottom-color: var(--bronze); }

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: background-color 240ms ease, border-color 240ms ease;
}

.has-hero .site-header {
  position: fixed;
  inset: 0 0 auto;
  background: transparent;
  border-bottom-color: transparent;
}
.has-hero .site-header.is-solid,
.has-hero .site-header.is-open {
  background: var(--paper);
  border-bottom-color: var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: min(100% - 2 * var(--gutter), 90rem);
  height: var(--header-h);
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: auto;
  color: var(--forest);
  text-decoration: none;
}

.brand__crest {
  flex: none;
  width: 1.9rem;
  aspect-ratio: 256 / 289;
  background: currentColor;
  -webkit-mask: url("/assets/img/white-crest.png") center / contain no-repeat;
  mask: url("/assets/img/white-crest.png") center / contain no-repeat;
}

/* The brand pairs its crest with tracked Gotham capitals, so the name follows suit here. */
.brand__name {
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav ul {
  display: flex;
  gap: clamp(1rem, 1.6vw, 1.75rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: block;
  padding-block: 0.5rem;
  font-size: var(--size-small);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { border-bottom-color: var(--line); }
.site-nav a[aria-current="page"] { border-bottom-color: var(--bronze-deep); }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  font-weight: 600;
  font-size: var(--size-small);
  text-decoration: none;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--forest);
  cursor: pointer;
}

@media (max-width: 80rem) {
  .icon-link__text {
    position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0);
  }
  .icon-link { width: 2.75rem; justify-content: center; }
}

@media (max-width: 64rem) {
  .menu-toggle { display: grid; }
  .site-nav {
    position: absolute;
    inset: var(--header-h) 0 auto;
    display: none;
    padding: 0.5rem var(--gutter) 1.5rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .site-header.is-open .site-nav { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav a {
    padding-block: 0.9rem;
    border-bottom: 1px solid var(--line);
    font-size: var(--size-body);
  }
  .site-nav a[aria-current="page"] { border-bottom-color: var(--bronze-deep); }
}

@media (max-width: 30rem) {
  .brand__name { font-size: var(--size-micro); letter-spacing: 0.12em; }
  .site-header__actions .button--small { display: none; }
  .site-header__inner { gap: 0.5rem; }
}

/* Hero */

.hero {
  position: relative;
  display: grid;
  min-height: max(36rem, 100svh);
  overflow: hidden;
  background: var(--sky);
}

.hero__media { position: absolute; inset: 0; }
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
}

/* A wash of the photo's own sky colour keeps the headline readable
   where the horizon rises behind it on narrow screens. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 70%;
  background:
    linear-gradient(to right, rgb(211 229 243 / 0.9) 0%, rgb(211 229 243 / 0.6) 38%, rgb(211 229 243 / 0) 70%),
    linear-gradient(to bottom, var(--sky) 0%, rgb(211 229 243 / 0.7) 45%, rgb(211 229 243 / 0) 100%);
  -webkit-mask: linear-gradient(to bottom, #000 55%, transparent);
  mask: linear-gradient(to bottom, #000 55%, transparent);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  align-self: start;
  width: min(100% - 2 * var(--gutter), 76rem);
  margin-inline: auto;
  padding-top: calc(var(--header-h) + clamp(2rem, 7vh, 5.5rem));
}

.hero__title {
  max-width: 24ch;
  font-size: var(--size-h1);
  line-height: 1.04;
  letter-spacing: -0.015em;
}

.hero__lede {
  max-width: 34rem;
  margin-top: 1.5rem;
  font-size: var(--size-lede);
  font-weight: 500;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}


@media (prefers-reduced-motion: no-preference) {
  .hero__media img { animation: hero-settle 1800ms var(--ease-out) both; }
  .hero__title, .hero__lede, .hero__actions { animation: hero-rise 900ms var(--ease-out) both; }
  .hero__lede { animation-delay: 120ms; }
  .hero__actions { animation-delay: 220ms; }
}

@keyframes hero-settle { from { transform: scale(1.06); } to { transform: scale(1); } }
@keyframes hero-rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* Facts */

.facts { background: var(--forest); color: var(--paper); }

.facts__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100% - 2 * var(--gutter), 76rem);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.facts__list li {
  padding: 2rem clamp(1rem, 2vw, 2rem);
  border-left: 1px solid rgb(237 235 229 / 0.18);
  font-size: var(--size-body);
  line-height: 1.55;
  color: rgb(237 235 229 / 0.85);
}
.facts__list li:first-child { border-left: 0; padding-left: 0; }

.facts__list strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--size-h3);
  line-height: 1.25;
  color: var(--bronze);
}

@media (max-width: 64rem) {
  .facts__list { grid-template-columns: repeat(2, 1fr); }
  .facts__list li:nth-child(odd) { border-left: 0; padding-left: 0; }
  .facts__list li:nth-child(n + 3) { border-top: 1px solid rgb(237 235 229 / 0.18); }
}

@media (max-width: 36rem) {
  .facts__list { grid-template-columns: 1fr; }
  .facts__list li { border-left: 0; padding: 1.25rem 0; }
  .facts__list li + li { border-top: 1px solid rgb(237 235 229 / 0.18); }
}

/* Inner page heads and prose */

.page-head {
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem));
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  background: var(--forest);
  color: var(--paper);
}
.page-head h1 {
  max-width: 22ch;
  font-size: var(--size-h1);
  line-height: 1.05;
}
.page-head .lede { max-width: 42rem; margin-top: 1.25rem; color: rgb(237 235 229 / 0.88); }
.page-head a { color: var(--paper); }
/* A light button on the dark header keeps dark text, whatever the header's link colour. */
.page-head .button--on-dark { color: var(--forest); }
.page-head :focus-visible { outline-color: var(--bronze); }

.page-head--tall { min-height: 60svh; display: grid; align-content: center; }
.page-head__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

.button--ghost-dark { background: transparent; border-color: var(--paper); color: var(--paper); }
.button--ghost-dark:hover { background: var(--paper); color: var(--forest); }

.section--tint { background: var(--paper-2); }

.prose { max-width: 42rem; }
.prose--narrow { max-width: 36rem; }
.prose h2 { margin-top: 3rem; margin-bottom: 1rem; font-size: var(--size-h2); }
.prose h2:first-child { margin-top: 0; }
/* One block of prose straight after another keeps the same gap a heading would have had. */
.prose + .prose { margin-top: 3rem; }
.prose p + p { margin-top: 0; }

.terms--wide { grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr)); border-top: 0; padding-top: 0; }
.terms--wide dd a { color: var(--forest); }

.places--roomy { gap: 3rem clamp(1.5rem, 3vw, 3rem); }

.places--roomy h2 { margin-bottom: 0.6rem; font-size: var(--size-h3); line-height: 1.3; }

.faq {
  display: grid;
  gap: 0;
  max-width: 46rem;
  margin: 0;
  border-top: 1px solid var(--line);
}
.faq__item { padding-block: 1.5rem; border-bottom: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 1rem); }
.faq__item h2 { margin-bottom: 0.5rem; font-size: var(--size-h3); line-height: 1.3; }
.faq__item p { margin: 0; color: var(--ink-soft); }

.contact-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); }

/* Site plan */

.plan { background: var(--paper-2); }

.plan__layout {
  display: grid;
  grid-template-columns: minmax(18rem, 3fr) minmax(0, 8fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.plan__intro > p { max-width: 32rem; margin-top: 1rem; }

.plan__legend {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.plan__legend li { border-bottom: 1px solid var(--line); }

.plan__legend button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0;
  border: 0;
  background: none;
  color: var(--forest);
  font: 600 var(--size-body)/1.3 var(--font-body);
  text-align: left;
  cursor: pointer;
}

.plan__legend button::after {
  content: "";
  flex: none;
  width: 0.65rem;
  height: 0.65rem;
  margin-right: 0.25rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  transition: transform 200ms var(--ease-out);
}
.plan__legend button[aria-expanded="true"]::after { transform: rotate(225deg) translateY(-3px); }
.plan__legend button[aria-expanded="true"] { color: var(--bronze-deep); }

.plan__legend p {
  max-width: 30rem;
  margin: -0.25rem 0 0;
  padding-bottom: 1rem;
  color: var(--ink-soft);
}

.plan__map {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  width: 100%;
  margin: 0;
}
.plan__map figcaption { margin-top: 0.75rem; font-size: var(--step--1); color: var(--ink-soft); }

.plan-svg {
  --plan-meadow: #e2e6d3;
  --plan-ground: #efede6;
  --plan-line-soft: #d6d4ca;
  --plan-boundary: #8a8f7c;
  --plan-river: #9db4bd;
  --plan-river-edge: #86a0aa;
  --plan-track: #f6f4ee;
  --plan-road: #d3d0c4;
  --plan-field: #d5dec0;
  --plan-ink: var(--forest);
  width: min(100%, calc((100svh - var(--header-h) - 7rem) * 650 / 710));
  height: auto;
  aspect-ratio: 650 / 710;
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px var(--line);
}

.plan-label {
  font: 500 11.5px var(--font-body);
  fill: var(--plan-ink);
}
.plan-label--muted { font-size: 10.5px; fill: #7b7e70; }
.plan-label--meadow { font: 400 13px var(--font-display); fill: #55633f; letter-spacing: 0.03em; }
.plan-label--river { font: 400 17px var(--font-display); fill: #fff; letter-spacing: 0.12em; }
.plan-label--road { font-weight: 600; fill: #6b675b; }
.plan-num { font: 600 8.5px var(--font-body); fill: var(--forest); }
.plan-field { fill: var(--plan-field); }
.plan-trees circle { fill: #8ea27a; opacity: 0.9; }

.plan-shape { fill: #fff; stroke: var(--forest); stroke-width: 1.4; }
.plan-shape--open { fill: var(--plan-track); }
.plan-shape--apron { fill: #ebe8df; stroke: none; }
.plan-shape--pitch { fill: #f3efe2; }
.plan-shape--planned { fill: none; stroke-dasharray: 4 3; }
.plan-platform { fill: var(--bronze-deep); stroke: #fff; stroke-width: 1.5; }
.plan-mark { fill: var(--forest); }

[data-feature] { transition: opacity 220ms ease; }
.plan-svg [data-feature] .plan-shape,
.plan-svg [data-feature] .plan-mark { transition: fill 220ms ease; }

.plan-svg.has-active [data-feature]:not(.is-active) { opacity: 0.6; }
.plan-svg .is-active .plan-shape { fill: var(--bronze); }
.plan-svg .is-active .plan-shape--apron { fill: #e4d6c7; }
.plan-svg .is-active .plan-shape--planned { fill: none; }
.plan-svg .is-active .plan-platform { fill: var(--forest); }
.plan-svg .is-active .plan-field { fill: #c9d6a6; }
.plan-svg .is-active .plan-mark { fill: var(--bronze-deep); }

@media (max-width: 36rem) {
  .plan-label { font-size: 15px; }
  .plan-label--snug { font-size: 14px; }
  .plan-label--muted { display: none; }
  .plan-label--meadow { font-size: 16px; }
  .plan-label--river { font-size: 20px; }
  .plan-num { font-size: 9px; }
}

@media (max-width: 56rem) {
  .plan__layout { grid-template-columns: 1fr; }
  .plan__layout { gap: 1.5rem; }
  .plan__intro { display: contents; }
  .plan__intro > p { margin-top: -0.5rem; }
  .plan__map { position: static; justify-self: stretch; }
  .plan__legend { order: 1; margin-top: 0; }
}

/* Pitches */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.split__text h2 { margin-bottom: 1.25rem; }
.split__text .lede { max-width: 36rem; }

.photo-slot {
  position: relative;
  display: grid;
  place-items: end start;
  margin: 0;
  padding: 1.25rem;
  aspect-ratio: var(--ratio, 4 / 3);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgb(58 88 42 / 0.12), rgb(58 88 42 / 0.04)),
    var(--paper-2);
  box-shadow: inset 0 0 0 1px var(--line);
}
.photo-slot::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 3rem;
  aspect-ratio: 256 / 289;
  translate: -50% -50%;
  background: rgb(38 54 26 / 0.18);
  -webkit-mask: url("/assets/img/white-crest.png") center / contain no-repeat;
  mask: url("/assets/img/white-crest.png") center / contain no-repeat;
}
.photo-slot__label { max-width: 22rem; font-size: var(--step--1); color: var(--ink-soft); }

.terms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  margin: 2.25rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.terms div { min-width: 0; }
.terms dt { font-weight: 600; font-size: var(--size-body); }
.terms dd { margin: 0.3rem 0 0; font-size: var(--size-body); line-height: 1.6; color: var(--ink-soft); }

@media (max-width: 56rem) {
  .split { grid-template-columns: 1fr; }
  .split__media { max-width: 32rem; aspect-ratio: 4 / 3; }
}

@media (max-width: 36rem) {
  .terms { grid-template-columns: 1fr; }
}

/* Fishing */

.fishing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--forest);
  color: var(--paper);
}

.fishing__media img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
}

.fishing__text {
  align-self: center;
  max-width: 36rem;
  padding: var(--section) var(--gutter);
  padding-left: clamp(2rem, 6vw, 6rem);
}
.fishing__text h2 { margin-bottom: 1.5rem; color: var(--paper); }
.fishing__text p { color: rgb(237 235 229 / 0.88); }

.rule-list {
  margin: 1.75rem 0 0;
  padding: 1.25rem 0 0;
  list-style: none;
  border-top: 1px solid rgb(237 235 229 / 0.18);
  font-size: var(--size-body);
}
.rule-list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.5rem;
}
.rule-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.05em;
  width: 0.75rem;
  border-top: 1.5px solid var(--bronze);
}

@media (max-width: 60rem) {
  .fishing { grid-template-columns: 1fr; }
  .fishing__media img { min-height: 0; aspect-ratio: 4 / 3; }
  .fishing__text { max-width: none; padding: clamp(3rem, 8vw, 4rem) var(--gutter); }
}

/* Area */

.places {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 2.5rem clamp(1.5rem, 3vw, 2.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.places li {
  display: flex;
  flex-direction: column;
  padding-top: 1.25rem;
  border-top: 1.5px solid var(--forest);
}
.places h3 { margin-bottom: 0.6rem; }
.places p { font-size: var(--size-body); line-height: 1.6; color: var(--ink-soft); }
.places .places__distance {
  margin-top: auto;
  padding-top: 0.75rem;
  font-weight: 600;
  color: var(--bronze-deep);
}

.travel {
  max-width: 44rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.travel h3 { margin-bottom: 0.6rem; }
.travel p { font-size: var(--size-body); color: var(--ink-soft); }

.travel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
}
.travel__links a { color: var(--forest); font-weight: 600; text-underline-offset: 0.25em; }

/* Reviews and chalets */

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.duo__panel {
  padding-block: var(--section);
  padding-inline: clamp(1rem, 6vw, 6rem);
  background: var(--paper-2);
}
.duo__panel h2 { margin-bottom: 1.25rem; font-size: var(--size-h2); }
.duo__panel p { max-width: 30rem; }
.duo__panel .button { margin-top: 1.75rem; }

.duo__panel--meadow { background: var(--meadow); color: var(--paper); }
.duo__panel--meadow p { color: rgb(237 235 229 / 0.9); }

@media (max-width: 52rem) {
  .duo { grid-template-columns: 1fr; }
}

/* Enquiry */

.enquire {
  padding-block: var(--section);
  background: var(--forest);
  color: var(--paper);
}

.enquire__layout {
  display: grid;
  grid-template-columns: minmax(18rem, 3fr) minmax(0, 8fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.enquire__intro h2 { margin-bottom: 1.25rem; }
.enquire__intro p { color: rgb(237 235 229 / 0.88); max-width: 26rem; }
.enquire__direct { margin-top: 2rem; line-height: 1.9; }
.enquire__direct a { color: var(--paper); font-weight: 600; }
.whatsapp-link { display: inline-flex; align-items: center; gap: 0.45rem; }
.whatsapp-link svg { flex: none; }

.enquiry-form { display: grid; gap: 1.25rem; }

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.field { display: grid; gap: 0.4rem; }
.field label { font-weight: 600; font-size: var(--size-small); }
.field__optional { font-weight: 400; color: rgb(237 235 229 / 0.72); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--forest);
  font: 400 var(--size-control)/1.4 var(--font-body);
}
.field textarea { resize: vertical; }
/* Placeholders, including the date hint Safari shows in an empty date field, which it
   otherwise fades to an illegible pale green. Legible, but still lighter than typed text. */
.field ::placeholder { color: var(--ink-soft); opacity: 0.8; }
.field input[type="date"]::-webkit-datetime-edit,
.field input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.field input[type="date"]::-webkit-datetime-edit-text,
.field input[type="date"]::-webkit-datetime-edit-day-field,
.field input[type="date"]::-webkit-datetime-edit-month-field,
.field input[type="date"]::-webkit-datetime-edit-year-field { color: var(--ink-soft); opacity: 1; }
.field input[type="date"]:valid::-webkit-datetime-edit-day-field,
.field input[type="date"]:valid::-webkit-datetime-edit-month-field,
.field input[type="date"]:valid::-webkit-datetime-edit-year-field { color: var(--forest); }
.field input[type="date"]::-webkit-calendar-picker-indicator { opacity: 0.85; }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid var(--bronze);
  outline-offset: 2px;
}
.field :user-invalid { border-color: #f0b8a8; box-shadow: 0 0 0 2px #f0b8a8; }

.enquiry-form__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 0.5rem;
}
.enquiry-form__note { margin: 0; font-size: var(--step--1); color: rgb(237 235 229 / 0.75); }
/* When the database can't be reached: the ways to get in touch instead. */
.enquiry-form__error { margin: 0 0 1.25rem; padding: 0.85rem 1rem; border-left: 4px solid var(--bronze); background: rgb(255 255 255 / 0.1); font-weight: 600; }
.enquiry-form__error a { color: inherit; }
.enquiry-form__note a { color: var(--paper); }

.enquire :focus-visible { outline-color: var(--bronze); }

@media (max-width: 56rem) {
  .enquire__layout { grid-template-columns: 1fr; }
}

@media (max-width: 36rem) {
  .field-row { grid-template-columns: 1fr; }
}

/* Footer */

.site-footer {
  background: var(--forest-deep);
  color: rgb(237 235 229 / 0.85);
  font-size: var(--size-small);
}

.site-footer a { color: var(--paper); }
.site-footer :focus-visible { outline-color: var(--bronze); }

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2.5rem;
  width: min(100% - 2 * var(--gutter), 76rem);
  margin-inline: auto;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.site-footer__brand img { width: 10rem; opacity: 0.95; }

.site-footer__heading {
  margin-bottom: 0.75rem;
  font: 600 var(--size-small)/1.4 var(--font-body);
  color: var(--bronze);
}

.site-footer address { font-style: normal; margin-bottom: 1em; }

.site-footer__links { margin: 0; padding: 0; list-style: none; }
.site-footer__links li + li { margin-top: 0.4rem; }

.site-footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 2rem;
  width: min(100% - 2 * var(--gutter), 76rem);
  margin-inline: auto;
  padding-block: 1.5rem;
  border-top: 1px solid rgb(237 235 229 / 0.14);
  font-size: var(--step--1);
}

@media (max-width: 60rem) {
  .site-footer__inner { grid-template-columns: repeat(2, 1fr); }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 30rem) {
  .site-footer__inner { grid-template-columns: 1fr; }
}

/* Availability calendar */

.calendar { max-width: 46rem; }

.calendar__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.calendar__month { font-size: var(--size-h2); }

.calendar__nav {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--forest);
  cursor: pointer;
}
.calendar__nav:hover { border-color: var(--forest); }
.calendar__nav[disabled] { opacity: 0.35; cursor: not-allowed; }

.calendar__key {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1rem;
  font-size: var(--step--1);
  color: var(--ink-soft);
}
.calendar__key span { display: inline-flex; align-items: center; gap: 0.5rem; }

.swatch {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 2px;
  border: 1px solid rgb(38 54 26 / 0.25);
}
.swatch--free { background: #dfe6cf; }
.swatch--limited { background: var(--bronze); }
.swatch--full { background: var(--paper-3); }

.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.calendar__weekday {
  padding-bottom: 0.4rem;
  font-size: var(--size-micro);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--ink-soft);
}

.day {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  min-height: 4.25rem;
  padding: 0.5rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  background: #dfe6cf;
  color: var(--forest);
  font: 600 var(--size-control)/1.1 var(--font-body);
  text-align: left;
  cursor: pointer;
}
.day span { font-size: var(--size-micro); font-weight: 500; opacity: 0.85; }
.day--limited { background: var(--bronze); }
.day--full, .day--past { background: var(--paper-3); color: var(--ink-soft); cursor: not-allowed; }
.day--past { opacity: 0.55; }
.day--blank { background: none; cursor: default; min-height: 0; }
.day[aria-pressed="true"] { border-color: var(--forest); box-shadow: inset 0 0 0 2px var(--paper); }
.day:not([disabled]):hover { border-color: var(--forest); }

.calendar__note { margin-top: 1rem; font-size: var(--step--1); color: var(--ink-soft); }

.picked {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 1.5rem;
  max-width: 46rem;
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--paper-2);
}
.picked__label { margin: 0; font-size: var(--step--1); color: var(--ink-soft); }
.picked__date { margin: 0.15rem 0 0; font-family: var(--font-display); font-size: var(--size-h3); line-height: 1.2; }
.picked__nights { display: grid; gap: 0.35rem; }
.picked__nights label { font-size: var(--size-small); font-weight: 600; }
.picked__nights input {
  width: 5rem;
  min-height: 3rem;
  padding: 0.6rem 0.75rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font: 400 var(--size-control)/1.4 var(--font-body);
  color: var(--forest);
}
.picked .button { margin-left: auto; }

.sample-banner {
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--bronze-deep);
  background: var(--paper-2);
  font-size: var(--step--1);
}

@media (max-width: 36rem) {
  .day { min-height: 3.4rem; padding: 0.35rem; font-size: var(--size-caption); }
  .day span { font-size: var(--size-micro); }
  .picked .button { margin-left: 0; width: 100%; }
}

/* Breadcrumbs */

.crumbs { margin-bottom: 1.25rem; font-size: var(--size-small); }
.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgb(237 235 229 / 0.75);
}
.crumbs li + li::before { content: "/"; margin-right: 0.75rem; opacity: 0.6; }
.crumbs a { color: rgb(237 235 229 / 0.9); }
.crumbs [aria-current] { color: var(--bronze); }

/* Where to next */

.related__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: 1rem;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0 0;
  padding: 0;
  list-style: none;
}
.related__list a {
  display: block;
  height: 100%;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: inset 0 0 0 1px var(--line);
  text-decoration: none;
  transition: box-shadow 160ms ease, background-color 160ms ease;
}
.related__list a:hover { background: #fff; box-shadow: inset 0 0 0 2px var(--forest); }
.related__title {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: var(--size-h3);
  line-height: 1.3;
}
.related__teaser { display: block; font-size: var(--size-body); line-height: 1.55; color: var(--ink-soft); }

/* Facilities lists */

.facilities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: clamp(2rem, 5vw, 4rem);
}
.facilities h3 { margin-bottom: 1rem; }

.tick-list, .cross-list { margin: 0; padding: 0; list-style: none; }
.tick-list li, .cross-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.9rem;
  border-bottom: 1px solid var(--line);
  font-size: var(--size-body);
}
.tick-list li::before, .cross-list li::before {
  position: absolute;
  left: 0;
  top: 0.45rem;
  font-weight: 600;
}
.tick-list li::before { content: "✓"; color: var(--meadow); }
.cross-list li { color: var(--ink-soft); }
.cross-list li::before { content: "×"; color: var(--bronze-deep); font-size: 1.1em; line-height: 1.35; }

/* Guest reviews */

.reviews__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
.reviews__list li {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: inset 0 0 0 1px var(--line);
}
.reviews__stars { display: flex; gap: 0.15rem; color: var(--bronze-deep); margin-bottom: 0.9rem; }
.reviews blockquote { margin: 0; }
.reviews blockquote p { font-size: var(--size-body); line-height: 1.65; }
.reviews__who {
  margin: 1.1rem 0 0;
  font-weight: 600;
  font-size: var(--size-small);
  color: var(--ink-soft);
}
.reviews__links { display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; }

/* Residential chalets band */

.chalet-band { padding-block: var(--section); background: var(--meadow); color: var(--paper); }
.chalet-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 3rem;
}
.chalet-band h2 { margin-bottom: 0.75rem; }
.chalet-band p { max-width: 42rem; color: rgb(237 235 229 / 0.9); }

.area__note {
  max-width: 44rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: var(--size-body);
  color: var(--ink-soft);
}
.area__note a { color: var(--forest); font-weight: 600; }

/* Three to a row wherever these cards appear, so six or nine items fill their
   rows evenly. Must sit after the .places base rule, which it overrides. */
@media (min-width: 60rem) {
  .places { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* A prose block following a card grid needs its own breathing room: the
   heading's usual top margin is suppressed because it comes first. */
.places + .prose { margin-top: clamp(3rem, 6vw, 5rem); }

/* Contact details: four across on a wide screen, two on a tablet, one on a phone. */
.terms--four { gap: 1.5rem 2rem; }
@media (min-width: 60rem) {
  .terms--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }

/* A split with the words first and the picture alongside. */
.split--text-first { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); }
@media (max-width: 56rem) {
  .split--text-first .split__media { order: -1; }
}

/* The page a follow-up email's stop link opens, on the dark page header. */
.stop__error { margin-top: 1rem; color: #f0b8a8; font-weight: 600; }
