:root {
  --ink: #1e2923;
  --muted: #69746d;
  --forest: #243c31;
  --forest-light: #365846;
  --sage: #93a28f;
  --cream: #f4efe5;
  --paper: #fffdf8;
  --terracotta: #c96f4d;
  --terracotta-dark: #ad573a;
  --line: rgba(36, 60, 49, .15);
  --shadow: 0 24px 70px rgba(33, 48, 40, .13);
  --radius: 24px;
  --shell: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: #fff;
  background: var(--forest);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  width: 100%;
  background: rgba(255, 253, 248, .92);
  border-bottom: 1px solid rgba(36, 60, 49, .1);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background-color .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, .98);
  box-shadow: 0 12px 35px rgba(31, 45, 37, .09);
}

.nav-shell {
  display: flex;
  align-items: center;
  width: min(calc(100% - 48px), 1420px);
  min-height: 82px;
  margin-inline: auto;
}

.site-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: var(--forest);
  text-decoration: none;
}

.brand-symbol {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 650;
  letter-spacing: -.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-menu {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.site-menu ul {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-menu li a {
  position: relative;
  display: block;
  padding: 28px 0 27px;
  color: #344039;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .055em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.site-menu li a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.site-menu li a:hover::after,
.site-menu li a[aria-current="page"]::after {
  transform: scaleX(1);
}

.language-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  color: var(--forest);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
}

.language-flag {
  display: inline-block;
  width: 20px;
  height: 14px;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08);
}

.flag-fr {
  background: linear-gradient(90deg, #173f8f 0 33.33%, #fff 33.33% 66.66%, #e33d45 66.66%);
}

.flag-nl {
  background: linear-gradient(#ae1c28 0 33.33%, #fff 33.33% 66.66%, #21468b 66.66%);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  padding: 8px 0 8px 16px;
  color: var(--forest);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.menu-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  width: 24px;
  margin-left: 10px;
  vertical-align: middle;
}

.menu-toggle-icon i {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform .2s ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: clamp(420px, 52vw, 590px);
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-color: var(--forest);
  background-image: var(--hero-image), linear-gradient(135deg, var(--forest), #4d705c);
  background-position: center;
  background-size: cover;
}

.hero-home {
  min-height: min(760px, calc(100vh - 82px));
  align-items: flex-start;
  padding-top: clamp(100px, 16vh, 165px);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 27, 21, .82) 0%, rgba(17, 31, 24, .48) 48%, rgba(17, 31, 24, .18) 78%),
    linear-gradient(0deg, rgba(14, 25, 19, .48), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 82px;
}

.hero-content > * {
  max-width: 820px;
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  color: var(--terracotta);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f3c2ad;
}

.eyebrow span {
  display: inline-block;
  width: 35px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .96;
  text-wrap: balance;
}

.hero:not(.hero-home) h1 {
  max-width: 920px;
  font-size: clamp(2.9rem, 6vw, 5.7rem);
}

.hero-lead {
  max-width: 650px;
  margin-top: 25px;
  color: rgba(255, 255, 255, .9);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  line-height: 1.42;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-primary:hover {
  background: var(--terracotta-dark);
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .5);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, .17);
}

.section {
  padding-block: clamp(74px, 9vw, 125px);
}

.section-soft {
  background: var(--cream);
}

.section-heading {
  max-width: 700px;
}

.section-heading-centered {
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading h2,
.home-intro h2,
.contact-card h2,
.prose h1,
.prose h2,
.prose h3 {
  color: var(--forest);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.12;
  text-wrap: balance;
}

.section-heading h2,
.home-intro h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.3vw, 4.1rem);
}

.section-heading > p:last-child,
.home-intro > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: end;
  margin-bottom: 65px;
}

.home-intro > p {
  margin: 0 0 6px;
}

.lead-copy {
  color: var(--muted);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.lead-copy p {
  margin: 0;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(330px, .72fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: start;
}

.story-card {
  padding: clamp(30px, 4vw, 54px);
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(38, 55, 46, .08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 10px;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #dfe3dc;
  border: 0;
  cursor: zoom-in;
}

.gallery-item:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.gallery-item:nth-child(2) { grid-column: 3; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 4; grid-row: 1; }
.gallery-item:nth-child(4) { grid-column: 3; grid-row: 2; }
.gallery-item:nth-child(5) { grid-column: 4; grid-row: 2; }
.gallery-item:nth-child(n + 6) { display: none; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2, .65, .3, 1), filter .3s ease;
}

.gallery-item:hover img {
  filter: saturate(1.07);
  transform: scale(1.045);
}

.gallery-count {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  color: var(--ink);
  background: rgba(255, 253, 248, .92);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
}

.gallery-count svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.prose {
  color: #3f4a43;
}

.prose > :first-child {
  margin-top: 0;
}

.prose > :last-child {
  margin-bottom: 0;
}

.prose h1 {
  margin: 0 0 22px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.prose h2 {
  margin: 34px 0 14px;
  font-size: clamp(1.65rem, 2.7vw, 2.2rem);
}

.prose h3 {
  margin: 28px 0 12px;
  font-size: 1.35rem;
}

.prose p {
  margin: 0 0 16px;
}

.prose ul {
  margin: 18px 0 28px;
  padding: 0;
  list-style: none;
}

.prose li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 24px;
}

.prose li::before {
  position: absolute;
  top: .65em;
  left: 2px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--terracotta);
  border-radius: 50%;
}

.prose a {
  color: var(--forest-light);
  text-decoration-color: var(--terracotta);
  text-underline-offset: 3px;
}

.prose-wide {
  max-width: 880px;
}

.feature-band {
  padding-block: clamp(70px, 8vw, 110px);
  color: #fff;
  background: var(--forest);
}

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

.feature-grid article {
  padding: 8px clamp(25px, 4vw, 55px) 8px 0;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.feature-grid article + article {
  padding-left: clamp(25px, 4vw, 55px);
}

.feature-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.feature-grid article > span {
  color: #e6a98f;
  font-family: "Fraunces", Georgia, serif;
  font-size: .82rem;
}

.feature-grid h3 {
  margin: 14px 0 12px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
}

.feature-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: .92rem;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.price-intro {
  position: sticky;
  top: 120px;
}

.price-card,
.calendar-card,
.terms-card,
.map-card,
.contact-card,
.form-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(39, 55, 46, .08);
}

.table-scroll {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .93rem;
}

.price-table th,
.price-table td {
  padding: 21px 24px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.price-table thead th {
  color: #fff;
  background: var(--forest);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-table tbody th {
  width: 58%;
  color: #38443d;
  font-weight: 600;
}

.price-table td {
  color: var(--forest);
  font-weight: 700;
  white-space: nowrap;
}

.price-table tbody tr:last-child > * {
  border-bottom: 0;
}

.terms-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.terms-card {
  padding: clamp(30px, 4vw, 52px);
}

.terms-card h2:last-of-type {
  margin-top: 48px;
}

.calendar-card {
  margin-top: clamp(40px, 6vw, 76px);
  padding: clamp(22px, 3vw, 42px);
}

.calendar-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 0 32px;
}

.calendar-year-button {
  min-width: 78px;
  padding: 9px 15px;
  color: var(--forest);
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 700;
}

.calendar-year-button:hover,
.calendar-year-button.active {
  color: #fff;
  background: var(--forest);
}

.calendar-year {
  display: none;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 30px 14px;
}

.calendar-year.active {
  display: grid;
}

.calendar-month h3 {
  margin: 0 0 9px;
  color: var(--forest);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
}

.calendar-month table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: .75rem;
}

.calendar-month th,
.calendar-month td {
  height: 27px;
  padding: 1px;
  text-align: center;
}

.calendar-month th {
  color: #879087;
  font-size: .67rem;
  font-weight: 700;
  text-transform: uppercase;
}

.calendar-day {
  color: #465149;
}

.calendar-day.is-past {
  color: #c5c9c4;
}

.calendar-day.is-booked {
  color: #33221b;
  background: #e99a79;
}

.calendar-day.is-booked.is-booked-start:not(.is-booked-end) {
  background: linear-gradient(135deg, transparent 0 49%, #e99a79 51% 100%);
}

.calendar-day.is-booked.is-booked-end:not(.is-booked-start) {
  background: linear-gradient(135deg, #e99a79 0 49%, transparent 51% 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
  gap: clamp(28px, 5vw, 70px);
}

.map-card {
  min-height: 560px;
}

.contact-map {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
  filter: saturate(.7) sepia(.08);
}

.map-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 22px;
  color: var(--forest);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-card {
  padding: clamp(32px, 4vw, 58px);
}

.contact-card h2 {
  margin-bottom: 32px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.contact-form-section {
  color: #fff;
  background: var(--forest);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}

.contact-form-section .section-heading h2 {
  color: #fff;
}

.contact-form-section .section-heading > p:last-child {
  color: rgba(255, 255, 255, .65);
}

.form-card {
  padding: clamp(28px, 4vw, 50px);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .2);
}

.form-field {
  margin-bottom: 21px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--forest);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.form-field .required {
  color: var(--terracotta);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(36, 60, 49, .22);
  border-radius: 10px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(201, 111, 77, .12);
}

.buttons {
  margin-top: 28px;
}

.buttons .button,
.buttons button {
  min-height: 50px;
  padding: 13px 24px;
  color: #fff;
  background: var(--terracotta);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.notices {
  margin-bottom: 22px;
  padding: 14px 17px;
  border-radius: 10px;
}

.notices.green {
  color: #17512f;
  background: #e0f1e6;
}

.notices.red {
  color: #7e3029;
  background: #f8dfdc;
}

.error-layout {
  max-width: 780px;
  text-align: center;
}

.error-code {
  margin: 0;
  color: var(--terracotta);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 600;
  line-height: .8;
}

.error-layout .button {
  margin-top: 28px;
}

.site-footer {
  padding-top: 78px;
  color: rgba(255, 255, 255, .72);
  background: #182a22;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr .65fr;
  gap: clamp(32px, 6vw, 85px);
  padding-bottom: 65px;
}

.footer-grid strong {
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-brand > a {
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-brand p {
  max-width: 320px;
  margin: 16px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-nav strong {
  margin-bottom: 10px;
}

.footer-nav a,
.footer-address a,
.footer-social a {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
}

.footer-nav a:hover,
.footer-address a:hover,
.footer-social a:hover {
  color: #fff;
}

.footer-address p {
  margin: 0 0 8px;
  font-size: .85rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
}

.footer-social svg {
  width: 20px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .72rem;
  letter-spacing: .04em;
}

.lightbox {
  width: min(94vw, 1500px);
  max-width: none;
  height: min(92vh, 1000px);
  max-height: none;
  padding: 0;
  color: #fff;
  background: rgba(13, 20, 16, .96);
  border: 0;
  border-radius: 20px;
}

.lightbox::backdrop {
  background: rgba(10, 16, 12, .88);
  backdrop-filter: blur(8px);
}

.lightbox figure {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 55px 70px;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox figcaption {
  position: absolute;
  bottom: 18px;
  left: 50%;
  color: rgba(255, 255, 255, .65);
  font-size: .78rem;
  transform: translateX(-50%);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  cursor: pointer;
}

.lightbox-close {
  top: 18px;
  right: 18px;
  font-size: 1.7rem;
}

.lightbox-nav {
  top: 50%;
  font-family: Georgia, serif;
  font-size: 2rem;
  transform: translateY(-50%);
}

.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

@media (max-width: 1180px) {
  .nav-shell {
    width: min(calc(100% - 34px), 1420px);
  }

  .brand-copy small {
    display: none;
  }

  .site-menu ul {
    gap: 18px;
  }

  .site-menu li a {
    max-width: 190px;
    font-size: .68rem;
  }

  .calendar-year {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand-symbol {
    width: 36px;
    height: 36px;
  }

  .menu-toggle {
    display: block;
  }

  .site-menu {
    position: fixed;
    z-index: -1;
    inset: 70px 0 auto;
    display: flex;
    height: calc(100vh - 70px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 28px;
    padding: 34px 24px 50px;
    overflow-y: auto;
    visibility: hidden;
    background: var(--paper);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }

  .site-menu.is-open {
    z-index: 1;
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .site-menu ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-menu li a {
    max-width: none;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: -.015em;
    text-align: left;
    text-transform: none;
  }

  .site-menu li a::after {
    display: none;
  }

  .language-links {
    margin-top: auto;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-icon i:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-icon i:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero-home {
    min-height: 720px;
    padding-top: 85px;
  }

  .home-intro,
  .story-layout,
  .price-layout,
  .terms-layout,
  .contact-layout,
  .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .story-card {
    max-width: 760px;
  }

  .price-intro {
    position: static;
  }

  .terms-layout .section-heading {
    margin-bottom: 10px;
  }

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

  .feature-grid article:nth-child(2) {
    border-right: 0;
  }

  .feature-grid article:nth-child(3) {
    margin-top: 50px;
    padding-left: 0;
  }

  .contact-card {
    order: -1;
  }

  .calendar-year {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .brand-copy strong {
    font-size: 1.13rem;
  }

  .hero,
  .hero-home {
    min-height: 620px;
  }

  .hero:not(.hero-home) {
    min-height: 410px;
  }

  .hero-content {
    padding-block: 68px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.3rem);
  }

  .hero:not(.hero-home) h1 {
    font-size: clamp(2.5rem, 13vw, 3.9rem);
  }

  .section {
    padding-block: 70px;
  }

  .home-intro {
    gap: 24px;
    margin-bottom: 38px;
  }

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

  .gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .gallery-item:nth-child(2) { grid-column: 1; grid-row: 2; }
  .gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .gallery-item:nth-child(4) { grid-column: 1; grid-row: 3; }
  .gallery-item:nth-child(5) { grid-column: 2; grid-row: 3; }

  .story-card,
  .terms-card,
  .contact-card,
  .form-card,
  .calendar-card {
    border-radius: 18px;
  }

  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article,
  .feature-grid article + article {
    margin: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
  }

  .feature-grid article:last-child {
    border-bottom: 0;
  }

  .price-table th,
  .price-table td {
    padding: 16px 14px;
    font-size: .8rem;
  }

  .calendar-card {
    padding: 22px 12px;
  }

  .calendar-year {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 27px 9px;
  }

  .map-card {
    min-height: 430px;
  }

  .contact-map {
    height: 375px;
  }

  .footer-grid {
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }

  .lightbox figure {
    padding: 55px 18px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 12px;
    transform: none;
  }

  .lightbox-prev { left: 16px; }
  .lightbox-next { right: 16px; }
}

@media (max-width: 410px) {
  .calendar-year {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
