:root {
  --paper: #f6f1e7;
  --ivory: #fcf9f1;
  --warm: #e6dac8;
  --ink: #201e1a;
  --muted: #665b4e;
  --deep: #1c2f27;
  --deep-2: #12211b;
  --sage: #5c7965;
  --wine: #74302b;
  --gold: #b9893f;
  --line: #d1c3ad;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(28, 47, 39, .18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
  --wrap: min(100% - 48px, 1240px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section,
[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    repeating-linear-gradient(0deg, rgba(60, 43, 28, .025), rgba(60, 43, 28, .025) 1px, transparent 1px, transparent 12px),
    var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--deep);
  color: var(--ivory);
  padding: 10px 14px;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: var(--wrap);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 max(28px, calc((100vw - 1240px) / 2));
  background: rgba(252, 249, 241, .9);
  border-bottom: 1px solid rgba(209, 195, 173, .62);
  backdrop-filter: blur(14px);
  transition: height .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  height: 76px;
  box-shadow: 0 10px 30px rgba(28, 47, 39, .08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--deep);
  font: 700 19px var(--serif);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 9px 8px 6px;
  border-bottom: 2px solid var(--gold);
  border-radius: 0 0 50% 50%;
}

.brand strong {
  display: block;
  font: 28px/1 var(--serif);
  color: var(--ink);
  white-space: nowrap;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--deep);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.header-cta,
.btn-dark {
  background: var(--deep);
  color: var(--ivory);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-wine {
  background: var(--wine);
  color: var(--ivory);
}

.btn-outline {
  background: rgba(28, 47, 39, .2);
  color: var(--ivory);
  border-color: rgba(252, 249, 241, .72);
}

.btn-outline-dark {
  background: transparent;
  color: var(--deep);
  border-color: var(--deep);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

.hero {
  min-height: 980px;
  position: relative;
  color: var(--ivory);
  overflow: hidden;
  isolation: isolate;
}

.hero picture,
.hero > picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > picture img {
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 33, 27, .94) 0 44%, rgba(18, 33, 27, .6) 58%, rgba(18, 33, 27, .08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .16), rgba(0, 0, 0, .16));
}

.hero-panel {
  position: relative;
  z-index: 2;
  width: var(--wrap);
  margin-inline: auto;
  padding-top: 190px;
  max-width: 1240px;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker-light {
  color: #dfc286;
}

.hero h1 {
  position: relative;
  max-width: 650px;
  margin: 34px 0 24px;
  font: clamp(62px, 8vw, 128px)/.92 var(--serif);
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  margin-top: 16px;
  color: #dfc286;
  font-size: .43em;
  line-height: 1.05;
}

.hero p {
  max-width: 560px;
  font-size: 21px;
  color: #eee4d3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.nouveau-lines {
  position: absolute;
  top: 186px;
  left: max(24px, calc((100vw - 1240px) / 2));
  width: 560px;
  height: 290px;
  opacity: .36;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 100%, transparent 55%, rgba(150, 181, 155, .72) 56%, rgba(150, 181, 155, .72) 57%, transparent 58%),
    linear-gradient(90deg, transparent 7%, rgba(150, 181, 155, .65) 7% 7.4%, transparent 7.4% 26%, rgba(150, 181, 155, .55) 26% 26.4%, transparent 26.4% 47%, rgba(150, 181, 155, .55) 47% 47.4%, transparent 47.4% 68%, rgba(150, 181, 155, .55) 68% 68.4%, transparent 68.4%);
}

.nouveau-lines::before {
  content: "";
  position: absolute;
  left: 104px;
  right: 104px;
  bottom: 58px;
  height: 26px;
  background:
    radial-gradient(circle, transparent 0 10px, rgba(150, 181, 155, .85) 11px 12px, transparent 13px) 0 0 / 82px 26px repeat-x;
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: max(28px, calc((100vw - 1240px) / 2));
  bottom: 230px;
  width: min(430px, 36vw);
  padding: 30px;
  background: var(--ivory);
  color: var(--ink);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.hero-note strong {
  display: block;
  font: 30px/1.1 var(--serif);
  color: var(--deep);
  margin-bottom: 10px;
}

.hero-note span {
  color: var(--muted);
}

.hero-facts {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  width: var(--wrap);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(252, 249, 241, .95);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 16px 50px rgba(28, 47, 39, .12);
}

.hero-facts div {
  min-height: 92px;
  padding: 18px 28px;
  border-right: 1px solid var(--line);
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  font: 28px/1.15 var(--serif);
  color: var(--deep);
}

.hero-facts span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 110px 0;
}

.split {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 90px;
  align-items: start;
}

h2 {
  margin: 10px 0 0;
  color: var(--deep);
  font: clamp(44px, 5vw, 76px)/1 var(--serif);
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font: 30px/1.15 var(--serif);
  color: var(--ink);
}

p {
  margin: 0;
}

.lead-copy p,
.section-heading p,
.accommodation p,
.history p,
.garden p,
.balloon p,
.events p,
.reservation p,
.contact p {
  color: var(--muted);
  font-size: 20px;
}

.value-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 80px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.value-row strong,
.value-row span {
  display: block;
}

.value-row strong {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
}

.value-row span {
  color: var(--muted);
  margin-top: 6px;
}

.experience-strip {
  background: var(--warm);
}

.story-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
  margin-top: 54px;
}

.story-card {
  position: relative;
  min-height: 490px;
}

.story-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 8px;
}

.story-card div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  min-height: 220px;
  padding: 28px;
  background: var(--ivory);
  border: 1px solid rgba(209, 195, 173, .8);
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(28, 47, 39, .1);
}

.story-card span {
  display: block;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 18px;
}

.story-card p {
  color: var(--muted);
  margin-top: 12px;
}

.accommodation {
  background: var(--ivory);
}

.accommodation-grid {
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: 70px;
  align-items: center;
}

.accommodation-photo img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.unit-list {
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.unit-list article {
  display: grid;
  grid-template-columns: 190px 120px 1fr;
  gap: 28px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.unit-list h3 {
  font-size: 27px;
}

.unit-list strong {
  color: var(--gold);
}

.unit-list p {
  font-size: 15px;
}

.inline-action {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
  font-weight: 800;
}

.house-tour {
  background: var(--warm);
}

.tour-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 34px;
  align-items: stretch;
  margin-bottom: 34px;
}

.tour-feature {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 10px;
  color: var(--ivory);
  background: var(--deep);
}

.tour-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 33, 27, .9), rgba(18, 33, 27, .35) 58%, rgba(18, 33, 27, .08));
}

.tour-feature div {
  position: relative;
  z-index: 1;
  max-width: 430px;
  padding: 44px;
}

.tour-feature span {
  display: block;
  color: #dfc286;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.tour-feature h3 {
  margin-top: 18px;
  color: var(--ivory);
  font-size: clamp(40px, 5vw, 64px);
}

.tour-feature p {
  margin-top: 18px;
  color: #eadfcb;
  font-size: 19px;
}

.tour-rooms {
  display: grid;
  gap: 18px;
}

.tour-rooms article {
  display: grid;
  align-content: center;
  min-height: 155px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--ivory);
}

.tour-rooms strong {
  font: 32px/1.1 var(--serif);
  color: var(--deep);
}

.tour-rooms span {
  margin-top: 10px;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-grid button {
  position: relative;
  min-height: 230px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--deep);
  color: var(--ivory);
  cursor: zoom-in;
}

.gallery-grid button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(18, 33, 27, .72));
  opacity: .85;
  transition: opacity .2s ease;
}

.gallery-grid button:hover::after {
  opacity: .58;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-grid button:hover img {
  transform: scale(1.04);
}

.gallery-grid span {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 16px;
  font: 24px/1 var(--serif);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .25);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(18, 33, 27, .9);
}

.lightbox.is-open {
  display: flex;
}

.lightbox figure {
  width: min(1120px, 100%);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

.lightbox figcaption {
  margin-top: 16px;
  color: var(--ivory);
  font: 26px var(--serif);
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(252, 249, 241, .6);
  border-radius: 50%;
  background: rgba(18, 33, 27, .42);
  color: var(--ivory);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.lightbox-close {
  right: 28px;
  top: 24px;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  font-size: 44px;
  line-height: .8;
}

.lightbox-prev {
  left: 28px;
}

.lightbox-next {
  right: 28px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(252, 249, 241, .16);
}

.history {
  background: var(--paper);
}

.history-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 70px;
  align-items: center;
}

.history p + p {
  margin-top: 20px;
}

.todo-note {
  display: block;
  margin-top: 34px;
  padding: 22px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: #fff7e8;
  color: var(--wine);
}

.todo-note strong,
.todo-note span {
  display: block;
}

.todo-note strong {
  font-size: 13px;
  letter-spacing: 0;
}

.history-photos {
  position: relative;
  min-height: 600px;
}

.history-main,
.history-side {
  position: absolute;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 26px 60px rgba(28, 47, 39, .12);
}

.history-main {
  left: 0;
  top: 0;
  width: 52%;
  height: 510px;
}

.history-side {
  right: 0;
  top: 120px;
  width: 58%;
  height: 280px;
}

.timeline {
  position: absolute;
  left: 4%;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 22px;
  border-top: 3px solid var(--gold);
}

.timeline div {
  position: relative;
}

.timeline div::before {
  content: "";
  position: absolute;
  top: -31px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline span {
  color: var(--muted);
  font-size: 13px;
}

.garden {
  color: var(--ivory);
  background: var(--deep);
  position: relative;
  overflow: hidden;
}

.garden::before {
  content: "";
  position: absolute;
  left: 6vw;
  top: 80px;
  width: 540px;
  height: 270px;
  opacity: .25;
  background:
    radial-gradient(ellipse at 50% 100%, transparent 55%, #8aa68b 56%, #8aa68b 57%, transparent 58%),
    linear-gradient(90deg, transparent 8%, #8aa68b 8% 8.3%, transparent 8.3% 28%, #8aa68b 28% 28.3%, transparent 28.3% 48%, #8aa68b 48% 48.3%, transparent 48.3%);
}

.garden h2 {
  color: var(--ivory);
}

.garden p {
  color: #e4dac8;
}

.garden-grid {
  position: relative;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 70px;
  align-items: center;
}

.garden figure {
  margin: 0;
  position: relative;
}

.garden img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

.garden figcaption {
  position: absolute;
  right: 60px;
  bottom: -54px;
  width: min(420px, calc(100% - 40px));
  padding: 28px;
  color: var(--muted);
  background: var(--ivory);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.pill-list li {
  min-width: 112px;
  text-align: center;
  padding: 8px 18px;
  border: 1px solid rgba(252, 249, 241, .22);
  border-radius: 999px;
  background: rgba(252, 249, 241, .12);
}

.balloon {
  background: var(--ivory);
}

.balloon-card {
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 20px 50px rgba(28, 47, 39, .08);
}

.balloon-card p {
  margin: 16px 0 20px;
}

.balloon-card a {
  color: var(--wine);
  font-weight: 800;
}

.balloon-icon {
  width: 92px;
  height: 118px;
  margin-bottom: 26px;
  position: relative;
  border: 3px solid var(--gold);
  border-radius: 50% 50% 46% 46%;
}

.balloon-icon::before,
.balloon-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
}

.balloon-icon::before {
  left: 43px;
  top: 10px;
  width: 2px;
  height: 108px;
  transform: rotate(-26deg);
}

.balloon-icon::after {
  left: 34px;
  bottom: -24px;
  width: 26px;
  height: 18px;
  border: 2px solid var(--gold);
  background: transparent;
}

.events {
  background: var(--warm);
}

.events-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
}

.event-list {
  display: grid;
  gap: 18px;
}

.event-list article {
  padding: 26px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.event-list strong,
.event-list span {
  display: block;
}

.event-list strong {
  font: 28px var(--serif);
  color: var(--deep);
}

.event-list span {
  margin-top: 8px;
  color: var(--muted);
}

.pricing {
  background: var(--paper);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-grid article {
  padding: 34px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-grid p {
  color: var(--muted);
  margin: 6px 0 28px;
}

.price-grid strong,
.price-grid span {
  display: block;
}

.price-grid strong {
  font-size: 26px;
}

.price-grid span {
  margin-top: 12px;
  color: var(--muted);
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.included-grid > div {
  padding: 34px;
  background: rgba(252, 249, 241, .72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.included-grid ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.faq {
  background: var(--ivory);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.faq-list summary {
  cursor: pointer;
  color: var(--deep);
  font-weight: 800;
}

.faq-list p {
  margin-top: 12px;
  color: var(--muted);
}

.reservation {
  background: var(--warm);
}

.reservation-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.external-reservation {
  margin-top: 36px;
  padding: 28px;
  border: 1px dashed var(--gold);
  border-radius: 8px;
  background: rgba(252, 249, 241, .5);
}

.external-reservation strong,
.external-reservation span {
  display: block;
}

.external-reservation span {
  margin: 8px 0 22px;
  color: var(--muted);
}

.inquiry-form {
  padding: 42px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 13px;
}

.inquiry-form textarea {
  resize: vertical;
}

.checkbox {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  gap: 12px !important;
}

.checkbox input {
  width: auto;
  margin-top: 4px;
}

.form-honey {
  position: absolute;
  left: -100vw;
  width: 1px !important;
  height: 1px;
  opacity: 0;
}

.inquiry-form button {
  margin-top: 24px;
}

.contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
  align-items: stretch;
}

address {
  margin-top: 28px;
  font-style: normal;
  color: var(--muted);
  font-size: 20px;
}

address strong {
  color: var(--ink);
}

address a {
  color: var(--deep);
  font-weight: 800;
}

.small-note {
  margin-top: 24px;
  font-size: 14px !important;
}

.contact iframe {
  width: 100%;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--warm);
}

.site-footer {
  padding: 44px 0;
  color: #d8ccba;
  background: var(--deep-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}

.brand-footer .brand-mark,
.brand-footer strong,
.brand-footer small {
  color: var(--ivory);
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.legal-page {
  padding-top: 150px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 70px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 12px;
  padding: 22px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-nav a {
  color: var(--muted);
  text-decoration: none;
}

.legal-content {
  max-width: 850px;
}

.legal-content h1 {
  margin: 0 0 28px;
  color: var(--deep);
  font: clamp(48px, 6vw, 86px)/1 var(--serif);
}

.legal-content section {
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  font-size: 42px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  padding-left: 22px;
}

.legal-note {
  padding: 20px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: #fff7e8;
  color: var(--wine) !important;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    justify-self: end;
    display: inline-grid;
    grid-template-columns: 20px auto;
    align-items: center;
    gap: 10px;
    border: 0;
    background: transparent;
    color: var(--deep);
    font-weight: 800;
  }

  .nav-toggle span {
    grid-column: 1;
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
  }

  .nav-toggle span + span {
    margin-top: -8px;
  }

  .site-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 88px;
    display: none;
    grid-column: 1 / -1;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--ivory);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .hero-note {
    display: none;
  }

  .hero-facts,
  .value-row,
  .story-cards,
  .price-grid,
  .included-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .accommodation-grid,
  .tour-layout,
  .history-grid,
  .garden-grid,
  .events-grid,
  .reservation-grid,
  .contact-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .history-photos {
    min-height: 560px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-nav {
    position: static;
  }
}

@media (max-width: 720px) {
  :root {
    --wrap: min(100% - 32px, 1240px);
  }

  .site-header {
    height: 76px;
    padding-inline: 16px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .brand strong {
    font-size: 22px;
  }

  .brand small {
    font-size: 12px;
  }

  .hero {
    min-height: 910px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(18, 33, 27, .9) 0 62%, rgba(18, 33, 27, .5));
  }

  .hero-panel {
    padding-top: 130px;
  }

  .hero h1 {
    font-size: clamp(56px, 17vw, 84px);
  }

  .hero p {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .nouveau-lines {
    width: 360px;
    height: 220px;
    top: 155px;
  }

  .hero-facts {
    bottom: 16px;
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    min-height: auto;
    padding: 12px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-facts div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  h2 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .lead-copy p,
  .section-heading p,
  .accommodation p,
  .history p,
  .garden p,
  .balloon p,
  .events p,
  .reservation p,
  .contact p {
    font-size: 18px;
  }

  .value-row,
  .story-cards,
  .price-grid,
  .included-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .story-card {
    min-height: auto;
    display: grid;
  }

  .story-card div {
    position: relative;
    left: auto;
    right: auto;
    margin: -60px 18px 0;
  }

  .unit-list article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .tour-feature {
    min-height: 430px;
  }

  .tour-feature div {
    padding: 28px;
  }

  .tour-rooms article {
    min-height: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid button,
  .gallery-grid img {
    min-height: 260px;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-close {
    right: 16px;
    top: 14px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
    width: 48px;
    height: 48px;
    font-size: 36px;
  }

  .lightbox-prev {
    left: 18px;
  }

  .lightbox-next {
    right: 18px;
  }

  .inline-action {
    align-items: start;
    flex-direction: column;
  }

  .history-photos {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .history-main,
  .history-side {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .timeline {
    position: static;
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .garden figcaption {
    position: static;
    width: auto;
    margin: -20px 18px 0;
  }

  .pill-list li {
    min-width: 0;
  }

  .inquiry-form {
    padding: 26px;
  }

  .site-footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
