:root {
  --ink: #171914;
  --muted: #686c61;
  --paper: #f4f0e7;
  --cloud: #fbfaf5;
  --forest: #17382b;
  --forest-deep: #0e241c;
  --moss: #6d7f42;
  --terracotta: #a64e35;
  --gold: #d8a94d;
  --stone: #d9d0bf;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(10, 15, 12, 0.18);
  --header-h: 76px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

#accueil {
  scroll-margin-top: 0;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--white);
  background: var(--terracotta);
}

.skip-link,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 16px;
  clip: auto;
  color: var(--white);
  background: var(--forest);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  max-width: 100vw;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 36px;
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 250, 245, 0.94);
  box-shadow: 0 12px 34px rgba(15, 24, 18, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--forest-deep);
  background: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.brand__text {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.brand__text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.brand__text small {
  color: currentColor;
  font-size: 0.74rem;
  opacity: 0.78;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 4px;
  color: currentColor;
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a:focus-visible,
.site-header.is-open .main-nav a:hover,
.site-header.is-open .main-nav a:focus-visible {
  background: rgba(23, 56, 43, 0.08);
}

.main-nav .nav-cta {
  color: var(--forest-deep);
  background: var(--gold);
}

.menu-toggle {
  display: none;
  flex: 0 0 44px;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  color: currentColor;
  background: rgba(8, 18, 13, 0.46);
  backdrop-filter: blur(8px);
}

.menu-toggle span:not(.visually-hidden) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(6, 13, 9, 0.78) 0%, rgba(6, 13, 9, 0.45) 44%, rgba(6, 13, 9, 0.12) 100%),
    linear-gradient(0deg, rgba(6, 13, 9, 0.72) 0%, rgba(6, 13, 9, 0.08) 54%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(calc(100vw - 40px), var(--max));
  margin: 0 auto;
  padding: 150px 0 116px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 5rem;
}

h2 {
  margin-bottom: 24px;
  font-size: 3rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
}

.hero__actions,
.rates-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button--primary {
  color: var(--white);
  background: var(--terracotta);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #8e3d28;
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.button--light {
  color: var(--forest-deep);
  background: var(--gold);
}

.button--outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero__ribbon {
  position: absolute;
  z-index: 1;
  right: 32px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, auto));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
}

.hero__ribbon span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 42px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(16, 25, 18, 0.5);
  backdrop-filter: blur(8px);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

.quickbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
  background: var(--forest);
}

.quickbar__item {
  min-height: 128px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 24px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.quickbar__item:last-child {
  border-right: 0;
}

.quickbar__item strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.quickbar__item span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
}

.section {
  padding: 104px 0;
}

.section__inner {
  width: min(calc(100vw - 40px), var(--max));
  margin: 0 auto;
}

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

.section-heading p:not(.eyebrow),
.story-copy p,
.split-copy p,
.rates-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.story-section {
  background: var(--cloud);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: center;
}

.story-copy {
  max-width: 520px;
}

.story-media {
  margin: 0;
}

.story-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.story-media figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  color: var(--terracotta);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.comfort-section {
  background: var(--paper);
  padding-bottom: 104px;
}

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

.feature-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(23, 56, 43, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
}

.feature-card__number {
  display: block;
  margin-bottom: 36px;
  color: var(--moss);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.image-run {
  width: min(calc(100vw - 40px), 1320px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 12px;
  margin: 76px auto 0;
}

.image-run img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 6px 6px 0 0;
}

.image-run img:nth-child(2),
.image-run img:nth-child(3) {
  height: 360px;
  align-self: end;
}

.split-section {
  color: var(--white);
  background: var(--forest-deep);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 70px;
  align-items: center;
}

.split-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 6px;
}

.split-copy .eyebrow {
  color: var(--gold);
}

.split-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.gallery-section {
  background: var(--cloud);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: var(--stone);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.045);
}

.gallery-item:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.rates-section {
  color: var(--white);
  background: var(--forest);
}

.rates-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.rates-copy {
  position: sticky;
  top: 110px;
}

.rates-copy .eyebrow {
  color: var(--gold);
}

.rates-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  min-height: 220px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.price-card p,
.price-card span {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.price-card strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.price-card--wide {
  grid-column: 1 / -1;
  min-height: auto;
  align-content: start;
}

.price-card ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.availability-section {
  background: var(--cloud);
}

.availability-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 54px;
  align-items: center;
}

.availability-copy p {
  color: var(--muted);
}

.availability-card {
  padding: 26px;
  border: 1px solid rgba(23, 56, 43, 0.13);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.calendar-toolbar {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.calendar-toolbar h3 {
  margin: 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.15;
  text-align: center;
  text-transform: capitalize;
}

.calendar-nav {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(23, 56, 43, 0.16);
  border-radius: 50%;
  color: var(--forest);
  background: var(--paper);
  font-size: 2rem;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.calendar-nav:hover,
.calendar-nav:focus-visible {
  color: var(--white);
  background: var(--forest);
  transform: translateY(-1px);
}

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

.calendar-weekdays {
  margin-bottom: 8px;
}

.calendar-weekdays span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-grid {
  min-height: 500px;
}

.calendar-day {
  min-width: 0;
  min-height: 76px;
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(23, 56, 43, 0.1);
  border-radius: 6px;
  color: var(--ink);
  background: #f8f5ec;
  text-align: left;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.calendar-day strong {
  font-size: 0.96rem;
  line-height: 1;
}

.calendar-day span {
  min-height: 18px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.15;
}

.calendar-day:not(:disabled):hover,
.calendar-day:not(:disabled):focus-visible {
  border-color: var(--moss);
  background: #fffdf7;
  transform: translateY(-1px);
}

.calendar-day.is-outside {
  opacity: 0.4;
}

.calendar-day.is-past {
  color: rgba(23, 25, 20, 0.34);
  background: #eee9dd;
}

.calendar-day.is-today {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 1px var(--gold);
}

.calendar-day.is-option {
  color: var(--forest-deep);
  background: #efe0b8;
}

.calendar-day.is-option span {
  color: #675022;
}

.calendar-day.is-reserved {
  color: var(--white);
  background: var(--forest);
}

.calendar-day.is-reserved span,
.calendar-day.is-blocked span {
  color: rgba(255, 255, 255, 0.78);
}

.calendar-day.is-blocked {
  color: var(--white);
  background: #4c5148;
}

.calendar-day:disabled {
  cursor: default;
}

.calendar-message {
  margin: 14px 0 0;
  color: var(--terracotta);
  font-weight: 800;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 56, 43, 0.12);
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(23, 56, 43, 0.15);
  border-radius: 50%;
  background: #f8f5ec;
}

.legend-dot--option {
  background: #efe0b8;
}

.legend-dot--reserved {
  background: var(--forest);
}

.legend-dot--blocked {
  background: #4c5148;
}

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

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

.activity-card {
  overflow: hidden;
  border: 1px solid rgba(23, 56, 43, 0.13);
  border-radius: 8px;
  background: var(--cloud);
}

.activity-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.activity-card div {
  padding: 20px;
}

.activity-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.download-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(23, 56, 43, 0.18);
}

.download-note span {
  color: var(--forest);
  font-weight: 800;
}

.contact-section {
  color: var(--white);
  background: var(--forest-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 58px;
  align-items: start;
}

.contact-copy .eyebrow {
  color: var(--gold);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 30px 0;
  font-style: normal;
}

.contact-list a {
  display: grid;
  gap: 2px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
}

.contact-list span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list strong {
  color: var(--white);
  font-size: 1.02rem;
}

.host-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.host-card img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 6px;
}

.host-card figcaption {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
}

.booking-panel {
  display: grid;
  gap: 18px;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.14);
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.22);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.map-frame {
  overflow: hidden;
  min-height: 360px;
  border-radius: 8px;
  background: var(--stone);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #09140f;
}

.footer-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--gold);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.lightbox {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 42px 82px;
  color: var(--white);
  background: rgba(4, 9, 6, 0.92);
}

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

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

.lightbox img {
  width: auto;
  max-width: 100%;
  max-height: 78svh;
  margin: 0 auto;
  border-radius: 6px;
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.lightbox__close {
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
}

.lightbox__nav {
  top: 50%;
  width: 52px;
  height: 70px;
  transform: translateY(-50%);
  font-size: 3rem;
}

.lightbox__nav--prev {
  left: 22px;
}

.lightbox__nav--next {
  right: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.45rem;
  }

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

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

  .image-run img,
  .image-run img:nth-child(2),
  .image-run img:nth-child(3) {
    height: 340px;
  }

  .story-grid,
  .split-layout,
  .rates-grid,
  .availability-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .rates-copy {
    position: static;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 68px;
  }

  .site-header {
    padding: 12px 20px;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.is-scrolled .menu-toggle,
  .site-header.is-open .menu-toggle {
    border-color: rgba(23, 56, 43, 0.18);
    background: rgba(23, 56, 43, 0.06);
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(23, 56, 43, 0.1);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(251, 250, 245, 0.98);
    box-shadow: 0 18px 40px rgba(15, 24, 18, 0.14);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    justify-content: center;
  }

  .hero {
    min-height: 86svh;
  }

  .hero__content {
    width: min(calc(100vw - 32px), var(--max));
    padding: 118px 0 96px;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero__lead {
    font-size: 1.08rem;
  }

  .hero__ribbon {
    right: 16px;
    left: 16px;
    bottom: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__ribbon span {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

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

  .quickbar__item {
    min-height: 112px;
  }

  .section {
    padding: 72px 0;
  }

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

  .gallery-item--large,
  .gallery-item--wide {
    grid-column: span 2;
  }

  .price-list {
    grid-template-columns: 1fr;
  }

  .calendar-grid {
    min-height: 430px;
  }

  .calendar-day {
    min-height: 62px;
    padding: 8px;
  }

  .calendar-day span {
    font-size: 0.66rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  main {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 12px;
  }

  .menu-toggle {
    display: block !important;
    position: fixed;
    top: 12px;
    right: 16px;
    z-index: 102;
  }

  .brand__text small {
    display: none;
  }

  .brand__text strong {
    font-size: 1rem;
  }

  .hero__content {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    margin-right: 0;
    margin-left: 16px;
    padding-top: 108px;
  }

  .hero__lead {
    max-width: calc(100vw - 32px);
    overflow-wrap: break-word;
  }

  .hero__ribbon {
    right: auto;
    left: 16px;
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero__actions,
  .rates-actions {
    display: grid;
  }

  .quickbar,
  .feature-grid,
  .image-run,
  .activity-grid {
    grid-template-columns: 1fr;
  }

  .availability-card {
    padding: 18px;
  }

  .calendar-toolbar {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
  }

  .calendar-toolbar h3 {
    font-size: 1.28rem;
  }

  .calendar-nav {
    width: 42px;
    height: 42px;
  }

  .calendar-weekdays,
  .calendar-grid {
    gap: 5px;
  }

  .calendar-grid {
    min-height: 360px;
  }

  .calendar-day {
    min-height: 48px;
    padding: 6px 4px;
    text-align: center;
  }

  .calendar-day strong {
    font-size: 0.86rem;
  }

  .calendar-day span {
    display: none;
  }

  .quickbar__item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .image-run img,
  .image-run img:nth-child(2),
  .image-run img:nth-child(3) {
    height: 280px;
  }

  .gallery-grid {
    display: block;
  }

  .gallery-item {
    width: 100%;
    height: 260px;
    margin-bottom: 12px;
  }

  .host-card {
    grid-template-columns: 1fr;
  }

  .booking-form {
    padding: 22px;
  }

  .footer-inner {
    min-height: 116px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .lightbox {
    padding: 72px 16px 30px;
  }

  .lightbox__nav {
    top: auto;
    bottom: 16px;
    width: 48px;
    height: 48px;
    transform: none;
    font-size: 2.4rem;
  }

  .lightbox__nav--prev {
    left: 16px;
  }

  .lightbox__nav--next {
    right: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
