@font-face {
  font-family: "Boska";
  src: url("../Fonts/WEB/fonts/Boska-Variable.woff2") format("woff2");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Boska";
  src: url("../Fonts/WEB/fonts/Boska-VariableItalic.woff2") format("woff2");
  font-weight: 200 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --brand-green: #072e1f;
  --brand-green-soft: #0d4536;
  --brand-sand: #e0ebc6;
  --brand-cream: #f7f5ee;
  --brand-gold: #a99255;
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--brand-green);
  background: var(--brand-cream);
  font-family: Avenir, "Avenir Next", Montserrat, "Helvetica Neue", Arial, sans-serif;
}

.closed {
  display: none !important;
}

a[x-apple-data-detectors],
a[href^="x-apple-data-detectors:"] {
  color: inherit !important;
  text-decoration: none !important;
  pointer-events: none !important;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 14px clamp(24px, 5vw, 72px);
  background: var(--brand-cream);
  transition: transform .3s ease, box-shadow .3s ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(7, 46, 31, .08);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
}

.brand-mark {
  width: auto;
  height: 72px;
  object-fit: contain;
}

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


.brand-copy strong {
  font-family: "Boska", serif;
  font-size: 2rem;
  font-weight: 400;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  font-size: 1rem;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition: .2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav__instagram {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  padding: 24px 0 !important;
  border-radius: 50%;
}

.site-nav__instagram::after {
  right: 5px;
  bottom: -1px;
  left: 5px;
}

.site-nav__instagram img {
  width: 18px;
  height: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 28px;
  border: 1px solid var(--brand-green);
  border-radius: 999px;
  color: #fff;
  background: var(--brand-green);
  font-family: inherit;
  font-size: .82rem;
  cursor: pointer;
  transition: .2s ease;
}

.button:hover {
  color: var(--brand-green);
  background: var(--brand-sand);
}

.button-pill {
  min-width: 154px;
  border-radius: 999px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.menu-toggle,
.menu-close {
  display: none;
  border: 0;
  color: currentColor;
  background: transparent;
}

.mobile-navigation {
  --bs-offcanvas-width: min(86vw, 400px);
  color: #fff;
  background: linear-gradient(145deg, var(--brand-green-soft), var(--brand-green));
}

.mobile-navigation .offcanvas-header {
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  justify-content: space-between;
}

.mobile-navigation .offcanvas-body {
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
}

.mobile-navigation .brand-mark {
  filter: brightness(0) invert(1);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 200;
}

.mobile-nav__instagram {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav__instagram img {
  width: 18px;
  height: 18px;
}

.mobile-nav-cta {
  align-self: stretch;
  margin-top: auto;
  border-color: var(--brand-sand);
  color: var(--brand-green);
  background: var(--brand-sand);
}

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100dvh - var(--header-height));
  overflow: hidden;
  color: #fff;
  background: url("../img/Muehlhof_Mai-4.jpg") center 48% / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 24, 20, .72) 0%, rgba(3, 24, 20, .25) 52%, rgba(3, 24, 20, .12) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .2), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(90%, 1180px);
  margin: 0 auto;
  padding: 8vh 0;
}

.hero-content h1 {
  margin: 0 0 22px;
  font-family: "Boska", serif;
  font-size: clamp(4.25rem, 8vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .82;
}

.hero-content p {
  margin-bottom: 28px;
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button-outline {
  border-color: rgba(255, 255, 255, .75);
  background: rgba(0, 0, 0, .12);
  backdrop-filter: blur(4px);
}

.button-outline:hover {
  border-color: #fff;
  color: var(--brand-green);
  background: #fff;
}

.featurette-grid {
  display: block;
}

.featurette-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.featurette-panel:nth-child(odd) .featurette-copy {
  grid-column: 1;
  grid-row: 1;
}

.featurette-panel:nth-child(odd) .featurette-media {
  grid-column: 2;
  grid-row: 1;
}

.featurette-cell {
  min-width: 0;
  max-height: clamp(500px, 58vw, 700px);
}

.featurette-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(50px, 8vw, 120px);
  color: var(--brand-green);
  background: var(--brand-cream);
}

.featurette-dark {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-green-soft), var(--brand-green));
}

.featurette-number {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
  color: var(--brand-gold);
  font-family: "Boska", serif;
  font-size: 1.35rem;
}

.featurette-number span {
  width: 52px;
  height: 2px;
  background: currentColor;
}

.featurette-copy h2 {
  max-width: 11ch;
  margin: 0 0 16px;
  font-family: "Boska", serif;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.featurette-accent {
  margin: 0 0 28px;
  color: var(--brand-gold);
  font-family: "Boska", serif;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-style: italic;
}

.featurette-copy > p:last-child {
  max-width: 40rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
}

.featurette-media {
  overflow: hidden;
}

.featurette-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-section {
  padding: clamp(72px, 9vw, 130px) 0;
  color: #fff;
  background: linear-gradient(145deg, var(--brand-green-soft), var(--brand-green));
}

.map-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
}

.map-section__header {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.map-section .section-kicker {
  color: var(--brand-sand);
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 24px;
  color: var(--brand-gold);
  font-family: "Boska", serif;
  font-size: 1.15rem;
}

.section-kicker span {
  width: 48px;
  height: 2px;
  background: currentColor;
}

.map-section__header h2 {
  margin: 0 0 18px;
  font-family: "Boska", serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
}

.map-section__header p {
  max-width: 34rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, .72);
  line-height: 1.75;
}

.map-section__frame {
  width: min(100%, 1050px);
  max-height: 70vh;
  margin-inline: auto;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, .12);
  border-radius: none;
  background: var(--brand-sand);
  aspect-ratio: 16 / 10;
}

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

.cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 104px) 24px;
  text-align: center;
  background:var(--brand-sand);
}


.cta-icon {
  margin-bottom: 18px;
  font-size: 2rem;
}

.cta-section h2 {
  margin-bottom: 10px;
  font-family: "Boska", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
}

.cta-section p {
  margin-bottom: 28px;
}

.cta-section__actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button-outline-dark {
  color: var(--brand-green);
  background: transparent;
}

.button-outline-dark:hover {
  color: #fff;
  background: var(--brand-green);
}

.site-footer {
  color: #fff;
  background: linear-gradient(120deg, #0b4a38, var(--brand-green));
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(36px, 5vw, 58px) clamp(24px, 7vw, 100px);
}

.footer-cta p {
  margin: 0;
  font-family: "Boska", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-style: italic;
  line-height: 1.1;
}

.footer-cta__button {
  flex: 0 0 auto;
  border-color: var(--brand-sand);
  color: var(--brand-green);
  background: var(--brand-sand);
}

.footer-cta__button:hover {
  border-color: #fff;
  color: var(--brand-green);
  background: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 48px;
  padding: 42px clamp(24px, 7vw, 100px);
}

.brand-light {
  color: #fff;
}

.brand-light .brand-mark {
  filter: brightness(0) invert(1);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  font-size: .82rem;
}

.site-footer address {
  display: flex;
  flex-direction: column;
  justify-self: end;
  gap: 8px;
  margin: 0;
  font-size: .78rem;
  font-style: normal;
  line-height: 1.45;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 18px clamp(24px, 7vw, 100px);
  border-top: 1px solid rgba(255, 255, 255, .35);
  font-size: 1rem;
}

.footer-bottom__email {
  justify-self: center;
}

.footer-bottom span:last-child {
  display: flex;
  justify-self: end;
  gap: 30px;
}

.news-modal .modal-dialog {
  width: min(92vw, 960px);
  max-width: none;
}

.news-modal .modal-content {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: none;
  color: var(--brand-green);
  background: var(--brand-cream);
  box-shadow: 0 28px 80px rgba(3, 24, 20, .28);
}

.news-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: min(46vw, 480px);
  min-height: 0;
}

.news-modal__image {
  min-height: 0;
  overflow: hidden;
  padding-bottom: 10vh;
}

.news-modal__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-modal__content {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: var(--brand-gold) rgba(7, 46, 31, .1);
  scrollbar-width: thin;
}

.news-modal__content-inner {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(42px, 6vw, 74px);
}

.news-modal__content::-webkit-scrollbar {
  width: 7px;
}

.news-modal__content::-webkit-scrollbar-track {
  background: rgba(7, 46, 31, .08);
}

.news-modal__content::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--brand-gold);
}

.news-modal__content .section-kicker {
  justify-content: flex-start;
  margin-bottom: 18px;
}

.news-modal__content h2 {
  margin: 0 0 20px;
  font-family: "Boska", serif;
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .95;
}

.news-modal__content p {
  margin: 0 0 28px;
  line-height: 1.7;
}

.news-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(247, 245, 238, .92);
  box-shadow: 0 5px 20px rgba(3, 24, 20, .1);
}

.news-modal__close span {
  position: absolute;
  top: 21px;
  left: 11px;
  width: 22px;
  height: 2px;
  background: var(--brand-green);
}

.news-modal__close span:first-child {
  transform: rotate(45deg);
}

.news-modal__close span:last-child {
  transform: rotate(-45deg);
}

.inquiry-modal {
  --bs-modal-padding: 0;
}

.inquiry-modal .modal-dialog {
  width: min(94vw, 1180px);
  max-width: none;
  margin-block: 16px;
}

.inquiry-modal .modal-content {
  position: relative;
  overflow: hidden;
  border: 0;
  max-height: calc(100dvh - 32px);
  border-radius: 32px;
  color: var(--brand-green);
  background:
    radial-gradient(circle at 100% 0%, rgba(224, 235, 198, .75), transparent 34%),
    var(--brand-cream);
}

.inquiry-modal .modal-body {
  overflow-y: auto;
  padding: clamp(28px, 3vw, 44px);
}

.inquiry-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

.inquiry-modal__close span {
  position: absolute;
  top: 22px;
  left: 11px;
  width: 24px;
  height: 2px;
  background: var(--brand-green);
}

.inquiry-modal__close span:first-child {
  transform: rotate(45deg);
}

.inquiry-modal__close span:last-child {
  transform: rotate(-45deg);
}

.inquiry-modal__header {
  margin-bottom: 22px;
  padding-right: 50px;
}

.inquiry-modal__header .section-kicker {
  margin-bottom: 10px;
  font-size: .95rem;
}

.inquiry-modal__header h2 {
  margin: 0 0 8px;
  font-family: "Boska", serif;
  font-size: clamp(2.2rem, 3.6vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
}

.inquiry-modal__header > p {
  max-width: 52rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
}

.inquiry-form .form-label {
  margin-bottom: 5px;
  font-size: .9rem;
  font-weight: 500;
}

.inquiry-form .form-control,
.inquiry-form .form-select {
  min-height: 46px;
  padding: 10px 15px;
  border: 1px solid rgba(7, 46, 31, .22);
  border-radius: 14px;
  color: var(--brand-green);
  background-color: rgba(255, 255, 255, .54);
  font: inherit;
  box-shadow: none;
}

.inquiry-form textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.inquiry-form .form-control:focus,
.inquiry-form .form-select:focus {
  border-color: var(--brand-gold);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(169, 146, 85, .14);
}

.inquiry-form .form-control::placeholder {
  color: rgba(7, 46, 31, .48);
}

.inquiry-form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-left: 0;
}

.inquiry-form .form-check-input {
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  margin: .12rem 0 0;
  border-color: rgba(7, 46, 31, .5);
  box-shadow: none;
}

.inquiry-form .form-check-input:checked {
  border-color: var(--brand-green);
  background-color: var(--brand-green);
}

.inquiry-form .form-check-label {
  font-size: .9rem;
  line-height: 1.5;
}

.inquiry-form .form-check-label a {
  color: var(--brand-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inquiry-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.inquiry-submit {
  min-width: 190px;
  border-color: var(--brand-green);
  color: #fff;
  background: var(--brand-green);
  font-weight: 600;
}

.inquiry-cancel {
  min-width: 150px;
  color: var(--brand-green);
  background: transparent;
}

.inquiry-form__status {
  min-height: 1.5em;
  margin: 14px 0 0;
  font-size: .95rem;
  font-weight: 600;
  text-align: right;
}

.inquiry-form__email-hint {
  margin: 7px 0 0;
  color: #8a681d;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.35;
}

.inquiry-form__email-hint:empty {
  display: none;
}

.inquiry-form__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.inquiry-form__status:empty {
  display: none;
}

.inquiry-form__status[data-tone="pending"] {
  color: rgba(7, 46, 31, .72);
}

.inquiry-form__status[data-tone="success"] {
  color: #17653a;
}

.inquiry-form__status[data-tone="error"] {
  color: #a21b1b;
}

.inquiry-submit:disabled {
  cursor: wait;
  opacity: .65;
}



.offers-page {
  min-height: calc(100dvh - var(--header-height));
  background: var(--brand-cream);
}

.offers-hero {
  padding: clamp(80px, 12vw, 170px) 0;
  color: #fff;
  background:
  linear-gradient(90deg, rgba(3, 24, 20, .72) 0%, rgba(3, 24, 20, .25) 52%, rgba(3, 24, 20, .12) 100%),
  linear-gradient(0deg, rgba(0, 0, 0, .2), transparent 50%),
    url("../img/Muehlhof_Offers_Hero.jpg") center / cover no-repeat;
}

.offers-hero__inner h1 {
  max-width: 20ch;
  margin: 0 0 20px;
  font-family: "Boska", serif;
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .9;
}

.offers-hero__inner > p {
  max-width: 40rem;
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}

.offers-hero .section-kicker {
  justify-content: flex-start;
  color: var(--brand-sand);
}

.about-hero {
  background:
  linear-gradient(90deg, rgba(3, 24, 20, .72) 0%, rgba(3, 24, 20, .25) 52%, rgba(3, 24, 20, .12) 100%),
  linear-gradient(0deg, rgba(0, 0, 0, .2), transparent 50%),
    url("../img/Muehlhof_Rooms_3.jpg") center 45% / cover no-repeat;
}

.about-team {
  padding: clamp(70px, 9vw, 130px) 0;
  background: var(--brand-cream);
}

.about-team__grid {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  max-width: 1240px;
}

.about-team__image {
  height: clamp(560px, 62vw, 780px);
  overflow: hidden;
  border-radius: 240px 240px 0px 0px;
}

.about-team__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.about-team__copy .section-kicker {
  justify-content: flex-start;
  margin-bottom: 22px;
}

.about-team__copy h2 {
  max-width: 9ch;
  margin: 0 0 28px;
  font-family: "Boska", serif;
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .95;
}

.about-team__copy p {
  max-width: 38rem;
  margin: 0 0 22px;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.8;
}

.about-team__copy .about-team__lead {
  color: var(--brand-gold);
  font-family: "Boska", serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-style: italic;
  line-height: 1.3;
}

.about-history {
  padding: clamp(80px, 10vw, 150px) 0;
  background: var(--brand-cream);
}

.about-history__layout {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(320px, 1fr);
  align-items: start;
  gap: clamp(64px, 9vw, 150px);
  max-width: 1240px;
}

.about-history__media {
  position: sticky;
  top: clamp(30px, 6vw, 80px);
  height: min(72dvh, 820px);
  margin: 0;
  
  
}

.about-history__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-history__content {
  min-width: 0;
}

.about-history__intro {
  margin-bottom: clamp(60px, 8vw, 100px);
}

.about-history__intro .section-kicker {
  justify-content: flex-start;
  color: var(--brand-gold);
}

.about-history__intro h2 {
  margin: 22px 0;
  font-family: "Boska", serif;
  font-size: clamp(3.5rem, 5.5vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: .95;
}

.about-history__intro p {
  max-width: 44rem;
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}



.about-timeline__list {
  position: relative;
  margin: 0;
  padding: 0 0 0 54px;
  list-style: none;
}

.about-timeline__list::before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 12px;
  width: 1px;
  background: rgba(169, 146, 85, .4);
  content: "";
}

.about-timeline__list li {
  position: relative;
  padding: 0 0 clamp(46px, 6vw, 72px);
}

.about-timeline__list li:last-child {
  padding-bottom: 0;
}

.about-timeline__list li::before {
  position: absolute;
  top: 7px;
  left: -51px;
  width: 20px;
  height: 20px;
  border: 6px solid #f4e8bd;
  border-radius: 50%;
  background: #eebf3f;
  box-shadow: 0 0 0 1px rgba(169, 146, 85, .12);
  content: "";
}

.about-timeline time {
  display: block;
  margin-bottom: 8px;
  color: rgba(7, 46, 31, .58);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
}

.about-timeline h3 {
  margin: 0 0 12px;
  font-family: "Boska", serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.05;
}

.about-timeline__list p {
  max-width: 52rem;
  margin: 0;
  color: rgba(7, 46, 31, .8);
  line-height: 1.75;
}




.location-hero {
  background:
  linear-gradient(90deg, rgba(3, 24, 20, .72) 0%, rgba(3, 24, 20, .25) 52%, rgba(3, 24, 20, .12) 100%),
  linear-gradient(0deg, rgba(0, 0, 0, .2), transparent 50%),
    url("../img/Muehlhof_Drone-2.jpg") 80% 60% / cover no-repeat;
}

.offers-placeholder {
  min-height: 35dvh;
  padding: clamp(64px, 8vw, 110px) 0;
  color: rgba(7, 46, 31, .65);
  text-align: center;
}

.wedding-overview {
  padding: clamp(80px, 10vw, 150px) 0;
  background: var(--brand-cream);
}

.wedding-overview__grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, .9fr);
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
  max-width: 1240px;
}

.wedding-overview__copy .section-kicker,
.wedding-spaces__heading .section-kicker,
.wedding-services__heading .section-kicker,
.wedding-pricing__heading .section-kicker {
  justify-content: flex-start;
  margin-bottom: 20px;
  color: var(--brand-gold);
}

.wedding-overview__copy h2,
.wedding-spaces__heading h2,
.wedding-services__heading h2,
.wedding-pricing__heading h2 {
  margin: 0;
  font-family: "Boska", serif;
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .95;
}

.wedding-overview__copy h2 {
  max-width: 9ch;
  margin-bottom: 28px;
}

.wedding-overview__copy p {
  max-width: 39rem;
  line-height: 1.8;
}

.wedding-overview__lead {
  color: var(--brand-gold);
  font-family: "Boska", serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-style: italic;
  line-height: 1.3 !important;
}

.wedding-overview__copy .button {
  margin-top: 12px;
}

.wedding-facts {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
}

.wedding-facts div {
  padding: clamp(18px, 2.2vw, 26px) 0;
  border-bottom: 1px solid rgba(7, 46, 31, .16);
}

.wedding-facts dt {
  margin: 0 0 6px;
  color: var(--brand-gold);
  font-family: "Boska", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.1;
}

.wedding-facts dd {
  max-width: 30rem;
  margin: 0;
  color: rgba(7, 46, 31, .7);
  font-size: .95rem;
  line-height: 1.55;
}

.wedding-spaces {
  padding: clamp(80px, 10vw, 150px) 0;
  background: #ebe8dc;
}

.wedding-spaces__heading {
  max-width: 1240px;
  margin-bottom: clamp(54px, 8vw, 100px);
}

.wedding-space-list {
  display: grid;
  gap: clamp(60px, 9vw, 130px);
  max-width: 1240px;
}

.wedding-space {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.wedding-space--reverse .wedding-space__image {
  order: 2;
}

.wedding-space--reverse .wedding-space__copy {
  order: 1;
}

.wedding-space__image {
  position: relative;
  height: clamp(430px, 48vw, 650px);
  overflow: hidden;
}

.wedding-space__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wedding-space__status {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 9px 12px;
  color: #fff;
  font-size: .78rem;
  line-height: 1.3;
  backdrop-filter: blur(8px);
}


.wedding-space__copy h3 {
  margin: 0 0 12px;
  font-family: "Boska", serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .95;
}

.wedding-space__meta {
  margin-bottom: 24px;
  color: var(--brand-gold);
  font-family: "Boska", serif;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-style: italic;
}

.wedding-space__copy > p:not(.wedding-space__meta) {
  line-height: 1.75;
}

.wedding-space__copy ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.wedding-space__copy li {
  position: relative;
  padding: 9px 0 9px 24px;
  border-top: 1px solid rgba(7, 46, 31, .12);
  line-height: 1.5;
}

.wedding-space__copy li::before {
  position: absolute;
  top: 18px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-gold);
  content: "";
}

.wedding-services {
  padding: clamp(80px, 10vw, 150px) 0;
  color: #fff;
  background: var(--brand-green);
}

.wedding-services__heading {
  max-width: 760px;
  margin-bottom: clamp(50px, 8vw, 90px);
}

.wedding-services__heading .section-kicker {
  color: var(--brand-sand);
}

.wedding-services__heading p {
  max-width: 40rem;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
}

.wedding-services__grid {
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.wedding-services__grid article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 60px);
  padding: clamp(30px, 4vw, 48px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.wedding-services__grid article > span {
  display: block;
  padding-top: 7px;
  color: var(--brand-sand);
  font-size: .75rem;
  letter-spacing: .2em;
}

.wedding-services__grid h3 {
  margin: 0 0 12px;
  font-family: "Boska", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.wedding-services__grid p {
  max-width: 52rem;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.7;
}

.wedding-pricing {
  padding: clamp(80px, 10vw, 150px) 0;
  background: var(--brand-cream);
}

.wedding-pricing__inner {
  max-width: 1120px;
}

.wedding-pricing__heading {
  max-width: 740px;
  margin-bottom: clamp(50px, 8vw, 90px);
}

.wedding-pricing__heading p {
  max-width: 40rem;
  margin: 24px 0 0;
  line-height: 1.7;
}

.wedding-pricing__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: clamp(60px, 8vw, 100px);
  padding: clamp(38px, 6vw, 68px);
  border-radius: 28px;
  background: #e8e6dd;
}

.wedding-pricing__cta h2 {
  margin: 0 0 10px;
  font-family: "Boska", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}

.wedding-pricing__cta p {
  max-width: 38rem;
  margin: 0;
  line-height: 1.6;
}

.wedding-pricing__cta .button {
  flex: 0 0 auto;
}

.legal-page {
  min-height: calc(100dvh - var(--header-height));
  background: var(--brand-cream);
}

.legal-header {
  padding: clamp(64px, 8vw, 110px) 0 clamp(48px, 6vw, 76px);
  border-bottom: 1px solid rgba(7, 46, 31, .14);
}

.legal-header__inner {
  max-width: 1060px;
}

.legal-header .section-kicker {
  justify-content: flex-start;
  margin-bottom: 20px;
  color: var(--brand-gold);
}

.legal-header h1 {
  max-width: none;
  margin: 0 0 22px;
  font-family: "Boska", serif;
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .95;
}

.legal-header p {
  max-width: 42rem;
  margin: 0;
  color: rgba(7, 46, 31, .7);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.legal-content {
  padding: clamp(56px, 8vw, 96px) 0;
}

.legal-content__grid {
  display: grid;
  grid-template-columns: minmax(180px, .4fr) minmax(360px, 1fr);
  align-items: start;
  gap: clamp(40px, 7vw, 90px);
  max-width: 1060px;
}

.legal-content__label {
  display: flex;
  flex-direction: column;
  padding-top: 12px;
  color: var(--brand-gold);
  font-family: "Boska", serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-style: italic;
  line-height: 1.1;
}

.legal-card {
  margin: 0;
  padding: 0;
  font-style: normal;
}

.legal-card h2 {
  margin: 0;
  font-family: "Boska", serif;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1;
}

.legal-card__company {
  margin: 8px 0 clamp(28px, 4vw, 42px);
  color: var(--brand-gold);
  font-size: .95rem;
}

.legal-card dl,
.legal-card dd {
  margin: 0;
}

.legal-card dl {
  display: grid;
  gap: 22px;
}

.legal-card dl > div {
  display: grid;
  grid-template-columns: minmax(145px, .45fr) 1fr;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(7, 46, 31, .12);
}

.legal-card dt {
  color: rgba(7, 46, 31, .58);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-card dd {
  line-height: 1.7;
}

.legal-card a {
  text-decoration: underline;
  text-decoration-color: rgba(169, 146, 85, .6);
  text-underline-offset: 4px;
}

.privacy-version {
  margin-top: 16px !important;
  color: var(--brand-gold) !important;
  font-size: .82rem !important;
  letter-spacing: .06em;
}

.privacy-content {
  padding: clamp(64px, 9vw, 120px) 0;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(220px, .4fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
  max-width: 1180px;
}

.privacy-toc {
  position: sticky;
  top: 20px;
  max-height: 100dvh;
  padding-right: 12px;
}

.privacy-toc > p {
  margin: 0 0 18px;
  color: var(--brand-gold);
  font-family: "Boska", serif;
  font-size: 1.5rem;
  font-style: italic;
}

.privacy-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: privacy-toc;
}

.privacy-toc li {
  counter-increment: privacy-toc;
  border-top: 1px solid rgba(7, 46, 31, .12);
}

.privacy-toc li:last-child {
  border-bottom: 1px solid rgba(7, 46, 31, .12);
}

.privacy-toc a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  padding: 10px 0;
  color: rgba(7, 46, 31, .7);
  font-size: .78rem;
  line-height: 1.35;
}

.privacy-toc a::before {
  color: var(--brand-gold);
  content: counter(privacy-toc, decimal-leading-zero);
}

.privacy-toc a:hover {
  color: var(--brand-green);
}

.privacy-sections {
  min-width: 0;
}

.privacy-sections > section {
  scroll-margin-top: calc(var(--header-height) + 30px);
  padding: 0 0 clamp(44px, 6vw, 70px);
}

.privacy-sections > section + section {
  padding-top: clamp(38px, 5vw, 56px);
  border-top: 1px solid rgba(7, 46, 31, .14);
}

.privacy-sections > section > span {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-gold);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
}

.privacy-sections h2 {
  margin: 0 0 20px;
  font-family: "Boska", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1;
}

.privacy-sections h3 {
  margin: 26px 0 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.privacy-sections p,
.privacy-sections address,
.privacy-sections li {
  color: rgba(7, 46, 31, .78);
  line-height: 1.75;
}

.privacy-sections p {
  margin: 0 0 16px;
}

.privacy-sections address {
  margin: 0;
  font-style: normal;
}

.privacy-sections ul {
  margin: 18px 0;
  padding-left: 1.2rem;
}

.privacy-sections li + li {
  margin-top: 8px;
}

.privacy-sections a {
  text-decoration: underline;
  text-decoration-color: rgba(169, 146, 85, .6);
  text-underline-offset: 4px;
}

.location-showcase {
  padding: clamp(50px, 7vw, 100px) clamp(22px, 6vw, 90px);
  background: var(--brand-cream);
}

.location-showcase__item {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.45fr);
  height: clamp(360px, 36vw, 520px);
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden;
}

.location-showcase__item + .location-showcase__item {
  margin-top: clamp(40px, 6vw, 80px);
}

.location-showcase__item--reverse .location-copy {
  order: 2;
}

.location-showcase__item--reverse .location-gallery {
  order: 1;
}

.location-showcase__item--reverse {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .72fr);
  height: clamp(360px, 36vw, 520px);
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden;
}

.location-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(28px, 4vw, 60px);
}

.location-copy .section-kicker {
  justify-content: flex-start;
  margin-bottom: 18px;
}

.location-copy h2 {
  margin: 0 0 8px;
  font-family: "Boska", serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1;
}

.location-copy__accent {
  margin: 0 0 24px;
  color: var(--brand-gold);
  font-family: "Boska", serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-style: italic;
  line-height: 1.2;
}

.location-copy > p:not(.location-copy__accent) {
  max-width: 32rem;
  margin: 0 0 30px;
  line-height: 1.7;
}

.location-gallery {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-auto-flow: column;
  grid-auto-columns: clamp(180px, 18vw, 280px);
  gap: 8px;
  min-width: 0;
  min-height: 0;
  padding: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--brand-gold) rgba(7, 46, 31, .1);
  scrollbar-width: thin;
}

.location-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  scroll-snap-align: start;
}

.location-gallery__main {
  grid-row: 1 / 3;
  grid-column: span 2;
}

.location-gallery--halls img:nth-child(3), .location-gallery--halls img:nth-child(4), .location-gallery--halls img:nth-child(5), .location-gallery--halls img:nth-child(6) {
  grid-column: span 2;
}

.location-gallery--halls img:nth-child(3), .location-gallery--halls img:nth-child(6), .location-gallery--halls img:nth-child(2) {
  grid-row: span 2;
}

.location-gallery--garden {
  grid-template-rows: repeat(3, minmax(0, 1fr));
  grid-auto-columns: clamp(150px, 15vw, 230px);
}

.location-gallery--garden .location-gallery__main {
  grid-row: 1 / 4;
  grid-column: span 2;
}

.location-gallery--garden img:nth-child(2),
.location-gallery--garden img:nth-child(5), 
.location-gallery--garden img:nth-child(6) {
  grid-row: span 2;
}

.location-gallery--garden img:nth-child(4),
.location-gallery--garden img:nth-child(5),
.location-gallery--garden img:nth-child(6),
.location-gallery--garden img:nth-child(7) {
  grid-column: span 2;
}

.location-gallery--suite {
  grid-auto-columns: clamp(190px, 20vw, 300px);
}

.location-gallery--suite .location-gallery__main {
  grid-column: span 2;
  grid-row: span 2
}

.location-gallery--suite img:nth-child(2),
.location-gallery--suite img:nth-child(6) {
  grid-row: 1 / 3;
}

.location-gallery--suite img:nth-child(3),
.location-gallery--suite img:nth-child(4) {
  grid-column: span 2;
}

.location-gallery::-webkit-scrollbar {
  height: 8px;
}

.location-gallery::-webkit-scrollbar-track {
  background: rgba(7, 46, 31, .1);
}

.location-gallery::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--brand-gold);
}

@media (max-width: 960px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .about-team__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .about-team__image {
    width: min(100%, 620px);
    height: min(125vw, 720px);
    margin: 0 auto;
  }

  .about-team__copy {
    max-width: 680px;
  }

  .about-history__layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .about-history__media {
    position: relative;
    top: auto;
    width: min(100%, 680px);
    height: min(110vw, 720px);
  }

  .legal-content__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-toc {
    position: static;
  }

  .privacy-toc ol {
    columns: 2;
    column-gap: 36px;
  }

  .privacy-toc li {
    break-inside: avoid;
  }

  .wedding-overview__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .wedding-overview__copy h2 {
    max-width: 11ch;
  }

  .wedding-space {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .wedding-space--reverse .wedding-space__image,
  .wedding-space--reverse .wedding-space__copy {
    order: initial;
  }

  .wedding-space__image {
    height: min(75vw, 600px);
  }

  .location-showcase__item {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    min-width: 0;
    overflow: visible;
  }

  .location-showcase__item + .location-showcase__item {
    margin-top: clamp(56px, 12vw, 88px);
  }

  .location-showcase__item .location-copy {
    order: 1;
  }

  .location-showcase__item .location-gallery {
    order: 2;
  }

  .location-copy {
    min-height: auto;
    padding: 40px 0 32px;
  }

  .location-gallery {
    display: grid;
    grid-template-rows: 1fr;
    grid-auto-flow: column;
    grid-auto-columns: min(82vw, 620px);
    gap: 12px;
    min-height: 0;
    padding: 0 0 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }

  .location-gallery--garden,
  .location-gallery--suite {
    grid-template-rows: 1fr;
    grid-auto-columns: min(82vw, 620px);
  }

  .location-gallery img,
  .location-gallery .location-gallery__main,
  .location-gallery--halls img:nth-child(n),
  .location-gallery--garden img:nth-child(n),
  .location-gallery--suite img:nth-child(n) {
    width: 100%;
    height: clamp(300px, 70dvh, 460px);
    grid-row: 1;
    grid-column: auto;
    border-radius: 0;
    scroll-snap-align: start;
  }

  .header-actions > .button-pill {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(7, 46, 31, .28);
    border-radius: 50%;
  }

  .menu-toggle span {
    width: 18px;
    height: 1.5px;
    background: var(--brand-green);
  }

  .menu-close {
    position: relative;
    display: block;
    width: 44px;
    height: 44px;
    padding: 0;
  }

  .menu-close span {
    position: absolute;
    top: 21px;
    left: 11px;
    width: 22px;
    height: 1.5px;
    background: #fff;
  }

  .menu-close span:first-child {
    transform: rotate(45deg);
  }

  .menu-close span:last-child {
    transform: rotate(-45deg);
  }

  .featurette-panel {
    position: relative;
    display: block;
  }

  .featurette-cell {
    min-height: 100dvh;
    max-height: none;
  }

  .featurette-media {
    position: sticky;
    top: 0;
    z-index: 1;
    height: 100dvh;
    min-height: 100dvh;
    max-height: 100dvh;
  }

  .featurette-media img {
    position: absolute;
    inset: 0;
  }

  .featurette-copy {
    position: relative;
    z-index: 2;
    min-height: 100dvh;
    background: linear-gradient(
      to bottom,
      rgba(247, 245, 238, 0) 0%,
      rgba(247, 245, 238, .88) 38%,
      var(--brand-cream) 65%
    );
  }

  .featurette-copy.featurette-dark {
    background: linear-gradient(
      to bottom,
      rgba(7, 46, 31, 0) 0%,
      rgba(7, 46, 31, .9) 38%,
      var(--brand-green) 65%
    );
  }

  .map-section__inner {
    grid-template-columns: 1fr;
  }

  .map-section {
    padding: 72px 0 0;
  }

  .map-section__inner {
    gap: 42px;
    max-width: none;
    padding-inline: 0;
  }

  .map-section__header {
    width: min(100% - 40px, 680px);
  }

  .map-section__frame {
    width: 100%;
    max-height: none;
    border: 0;
    border-radius: 0;
    aspect-ratio: 4 / 3;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-main .brand,
  .site-footer address {
    justify-self: center;
  }
}

@media (max-width: 600px) {
  .news-modal .modal-dialog {
    width: calc(100vw - 24px);
    margin: 12px auto;
  }

  .news-modal .modal-content {
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
    border-radius: 20px;
  }

  .news-modal__grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .news-modal__image {
    aspect-ratio: 1;
    padding-bottom: 1vh;
  }

  .news-modal__content {
    overflow-y: visible;
  }

  .news-modal__content-inner {
    min-height: 0;
    padding: 34px 24px 38px;
  }

  .news-modal__content h2 {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .wedding-overview,
  .wedding-spaces,
  .wedding-services,
  .wedding-pricing {
    padding: 64px 0;
  }

  .wedding-facts {
    grid-template-columns: 1fr;
  }

  .wedding-space__image {
    height: 85vw;
  }

  .wedding-services__grid article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    padding: 30px 0;
  }

  .wedding-services__grid article > span {
    padding-top: 5px;
  }

  .wedding-pricing__cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 36px 24px;
    border-radius: 20px;
  }

  .legal-header {
    padding: 52px 0 44px;
  }

  .legal-content {
    padding: 44px 0 64px;
  }

  .legal-card {
    padding: 0;
  }

  .legal-card dl > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .privacy-content {
    padding: 52px 0 72px;
  }

  .privacy-toc ol {
    columns: 1;
  }

  .about-team {
    padding: 56px 0 72px;
  }

  .about-team__image {
    height: 125vw;
    border-radius: 160px 160px 0px 0px;
  }

  .about-history {
    padding: 64px 0 72px;
  }

  .about-history__media {
    height: 120vw;
    padding: 14px;
  }

  .about-history__intro {
    margin-bottom: 56px;
  }

  .about-history__intro h2 {
    font-size: clamp(3.2rem, 14vw, 4.8rem);
  }

  .about-timeline__list {
    padding-left: 38px;
  }

  .about-timeline__list::before {
    left: 8px;
  }

  .about-timeline__list li::before {
    left: -38px;
    width: 17px;
    height: 17px;
    border-width: 5px;
  }

  .about-history__cta {
    padding: 40px 24px;
    border-radius: 22px;
  }

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

  .brand-mark {
    height: 40px;
  }

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

  .button-pill {
    min-width: 0;
    padding-inline: 14px;
    font-size: .72rem;
  }

  .hero-section {
    min-height: 100vh;
  }

  .hero-content h1 {
    font-size: clamp(3.5rem, 18vw, 5rem);
  }

  .featurette-copy {
    padding: 52px 30px;
  }

  .inquiry-modal .modal-dialog {
    width: calc(100vw - 20px);
    margin: 10px;
  }

  .inquiry-modal .modal-content {
    border-radius: 28px;
  }

  .inquiry-modal .modal-body {
    padding: 38px 22px 28px;
  }

  .inquiry-modal__close {
    top: 12px;
    right: 12px;
  }

  .inquiry-modal__header {
    padding-right: 24px;
  }

  .inquiry-form__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .inquiry-form__actions .button {
    width: 100%;
  }

  .inquiry-form__status {
    text-align: left;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .footer-cta {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .footer-cta__button {
    align-self: center;
  }

  .footer-bottom span:last-child {
    justify-content: center;
  }
}
