:root {
  --brand: #6a5647;
  --brand-dark: #4c3c32;
  --brand-soft: #a79687;
  --sand: #eee7de;
  --cream: #f8f5f0;
  --white: #ffffff;
  --ink: #4b4038;
  --muted: #75675d;
  --line: rgba(106, 86, 71, 0.2);
  --danger: #a33b32;
  --success: #3f6f4a;
  --shadow: 0 24px 60px rgba(76, 60, 50, 0.13);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --content: 1220px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--brand);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--brand-dark);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

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

.section {
  padding: clamp(76px, 9vw, 130px) 0;
}

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

.section--sand {
  background: var(--sand);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 38px;
  height: 1px;
  background: currentColor;
  content: "";
}

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5.5vw, 5rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.2vw, 4.2rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
}

.lead {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 23px;
  border: 1px solid var(--brand);
  border-radius: 2px;
  background: var(--brand);
  color: var(--white);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  transform: translateY(-2px);
}

.btn:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(106, 86, 71, 0.3);
  outline-offset: 3px;
}

.btn--outline {
  background: transparent;
  color: var(--brand);
}

.btn--outline:hover {
  color: var(--white);
}

.btn--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--brand-dark);
}

.btn--light:hover {
  border-color: var(--sand);
  background: var(--sand);
  color: var(--brand-dark);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(76, 60, 50, 0.94);
  box-shadow: 0 10px 35px rgba(44, 34, 28, 0.14);
  color: var(--white);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: grid;
  min-height: 92px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
}

.brand-logo {
  display: block;
  width: 225px;
}

.brand-logo img {
  width: 100%;
  filter: brightness(0) invert(1);
}

.main-nav {
  justify-self: end;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-cta {
  border-color: var(--white);
  background: var(--white);
  color: var(--brand-dark);
}

.header-cta:hover {
  border-color: var(--sand);
  background: var(--sand);
  color: var(--brand-dark);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease;
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.hero {
  position: relative;
  display: flex;
  min-height: 860px;
  align-items: flex-end;
  overflow: hidden;
  background: #4f463d;
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 24, 20, 0.36) 0%, rgba(29, 24, 20, 0.04) 40%, rgba(29, 24, 20, 0.32) 100%);
  content: "";
}

.hero-image {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto 48px;
}

.hero-card {
  width: 100%;
  max-width: 570px;
  padding: clamp(26px, 3.2vw, 40px);
  background: rgba(248, 245, 240, 0.95);
  box-shadow: var(--shadow);
}

.hero-card h1 {
  margin-bottom: 18px;
  color: var(--brand);
  font-size: clamp(2.35rem, 4vw, 4rem);
}

.hero-card .lead {
  max-width: 500px;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.62;
}

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

.trust-strip {
  background: var(--brand);
  color: var(--white);
}

.trust-grid {
  display: grid;
  min-height: 115px;
  align-items: stretch;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 25px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.77rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: left;
  text-transform: uppercase;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}

.split {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(48px, 7vw, 100px);
}

.split--reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

.split-media {
  position: relative;
}

.split-media::after {
  position: absolute;
  z-index: -1;
  right: -22px;
  bottom: -22px;
  width: 42%;
  height: 55%;
  background: var(--sand);
  content: "";
}

.split--reverse .split-media::after {
  right: auto;
  left: -22px;
}

.split-media img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.split-copy p:not(.section-kicker) {
  color: var(--muted);
}

.split-copy .btn {
  margin-top: 16px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 26px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.facts li {
  position: relative;
  padding: 13px 0 13px 22px;
  border-top: 1px solid var(--line);
  color: var(--brand);
  font-size: 0.89rem;
  font-weight: 600;
}

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 46px;
}

.section-heading > div:first-child {
  max-width: 760px;
}

.section-heading .lead {
  max-width: 480px;
}

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

.feature-card {
  background: var(--white);
}

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

.feature-card-content {
  padding: 30px;
  border: 1px solid var(--line);
  border-top: 0;
}

.feature-number {
  display: block;
  margin-bottom: 16px;
  color: var(--brand-soft);
  font-family: var(--serif);
  font-size: 1.1rem;
}

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

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

.experience-card {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--white);
}

.experience-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(38, 30, 25, 0.78) 100%);
  content: "";
}

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.experience-card:hover img {
  transform: scale(1.025);
}

.experience-card-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(28px, 4vw, 52px);
}

.experience-card-content p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
}

.panorama {
  position: relative;
  display: grid;
  min-height: 680px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.panorama::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(44, 34, 28, 0.45);
  content: "";
}

.panorama img {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
}

.panorama-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), 850px);
}

.panorama-content .section-kicker {
  justify-content: center;
  color: var(--white);
}

.panorama-content p {
  max-width: 650px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.units-section {
  background: var(--brand);
  color: var(--white);
}

.units-heading {
  display: grid;
  align-items: end;
  margin-bottom: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 36px;
}

.units-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.units-heading .lead {
  color: rgba(255, 255, 255, 0.78);
}

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

.unit-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--cream);
  color: var(--brand);
  box-shadow: 0 20px 50px rgba(44, 34, 28, 0.16);
}

.unit-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.unit-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.unit-card:hover .unit-card-media img {
  transform: scale(1.025);
}

.unit-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  background: rgba(76, 60, 50, 0.92);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.unit-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 27px;
}

.unit-eyebrow {
  margin-bottom: 10px;
  color: var(--brand-soft);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.unit-card h3 {
  margin-bottom: 12px;
}

.unit-card-body > p:not(.unit-eyebrow) {
  margin-bottom: 20px;
  color: var(--muted);
}

.unit-facts {
  display: grid;
  margin: auto 0 22px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  gap: 7px;
  list-style: none;
}

.unit-facts li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.unit-facts li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-soft);
  content: "";
}

.unit-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.unit-price {
  color: var(--brand-dark);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.25;
}

.unit-link {
  flex: 0 0 auto;
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-decoration-thickness: 1px;
  text-transform: uppercase;
  text-underline-offset: 5px;
}

.info-accordions .section-heading {
  margin-bottom: 42px;
}

.info-accordion-list {
  border-top: 1px solid var(--line);
}

.info-accordion {
  border-bottom: 1px solid var(--line);
}

.info-accordion > summary {
  position: relative;
  display: grid;
  align-items: center;
  padding: 28px 64px 28px 0;
  color: var(--brand);
  cursor: pointer;
  grid-template-columns: 62px 1fr;
  list-style: none;
}

.info-accordion > summary::-webkit-details-marker {
  display: none;
}

.info-index {
  color: var(--brand-soft);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.info-title {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  font-weight: 500;
  line-height: 1.1;
}

.info-accordion > summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 34px;
  height: 34px;
  content: "+";
  font-family: var(--sans);
  font-size: 1.55rem;
  font-weight: 300;
  line-height: 32px;
  text-align: center;
  transform: translateY(-50%);
}

.info-accordion[open] > summary::after {
  content: "−";
}

.info-content {
  padding: 0 0 34px 62px;
}

.info-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.info-group h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.info-group ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.info-group li + li {
  margin-top: 7px;
}

.info-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.info-fact {
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.info-fact strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brand);
  font-size: 0.82rem;
}

.info-fact span,
.arrival-copy {
  color: var(--muted);
}

.arrival-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 42px;
}

.arrival-copy h3 {
  color: var(--brand);
}

.distance-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  list-style: none;
}

.distance-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.distance-list strong {
  flex: 0 0 auto;
  color: var(--brand);
}

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

.gallery-item {
  margin: 0;
  overflow: hidden;
}

.gallery-swipe-hint {
  display: none;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(5) {
  grid-column: span 7;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(6) {
  grid-column: span 5;
}

.gallery-item:nth-child(3),
.gallery-item:nth-child(4) {
  grid-column: span 6;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.host-quote {
  margin: 28px 0;
  padding: 22px 0 22px 26px;
  border-left: 2px solid var(--brand-soft);
  color: var(--brand) !important;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.45;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 54px 24px 0;
  color: var(--brand);
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 500;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 28px;
  height: 28px;
  content: "+";
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 26px;
  text-align: center;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 840px;
  padding: 0 54px 25px 0;
  color: var(--muted);
}

.form-section {
  background: var(--sand);
}

.form-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(48px, 8vw, 110px);
}

.form-intro {
  position: sticky;
  top: 35px;
}

.form-intro p:not(.section-kicker) {
  color: var(--muted);
}

.contact-card {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-card a {
  display: block;
  width: fit-content;
  margin-bottom: 6px;
  font-weight: 650;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.form-container {
  padding: clamp(26px, 4vw, 48px);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.full-width {
  grid-column: 1 / -1;
}

.field-group label,
.custom-form > .full-width > label {
  display: block;
  margin-bottom: 7px;
  color: var(--brand-dark);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.req::after {
  color: var(--danger);
  content: " *";
}

.custom-form input,
.custom-form select,
.custom-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(106, 86, 71, 0.32);
  border-radius: 0;
  background: var(--cream);
  color: var(--ink);
  font-size: 0.94rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.custom-form textarea {
  min-height: 118px;
  resize: vertical;
}

.custom-form input:focus,
.custom-form select:focus,
.custom-form textarea:focus {
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(106, 86, 71, 0.1);
  outline: none;
}

.custom-form input.error,
.custom-form select.error,
.custom-form textarea.error {
  border-color: var(--danger);
}

.phone-row {
  display: flex;
  gap: 8px;
}

.phone-row select {
  flex: 0 0 128px;
}

.phone-row input {
  flex: 1;
}

.privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 15px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.privacy-row input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 3px 0 0;
  padding: 0;
  accent-color: var(--brand);
}

.privacy-row label {
  margin: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  line-height: 1.55;
}

.privacy-row a {
  color: var(--brand);
}

.field-error {
  display: none;
  margin-top: 5px;
  color: var(--danger);
  font-size: 0.76rem;
  line-height: 1.4;
}

.privacy-error {
  margin-top: -12px;
}

.submit-btn {
  width: 100%;
  min-height: 58px;
  margin-top: 2px;
  border: 1px solid var(--brand);
  border-radius: 0;
  background: var(--brand);
  color: var(--white);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.submit-btn:hover {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
}

.submit-btn:disabled {
  border-color: var(--brand-soft);
  background: var(--brand-soft);
  cursor: wait;
}

.success-msg {
  display: none;
  padding: 19px;
  border: 1px solid rgba(63, 111, 74, 0.35);
  background: rgba(63, 111, 74, 0.08);
  color: var(--success);
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
}

.flatpickr-calendar {
  border-radius: 0;
  font-family: var(--sans);
  box-shadow: var(--shadow);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
  border-color: var(--brand);
  background: var(--brand);
}

.flatpickr-day.today {
  border-color: var(--brand-soft);
}

.site-footer {
  padding: 70px 0 28px;
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 60px;
}

.footer-logo {
  width: 270px;
  margin-bottom: 25px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  max-width: 360px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.35;
}

.footer-title {
  margin-bottom: 16px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list a {
  text-decoration: none;
}

.footer-list a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.76rem;
}

.mobile-cta {
  display: none;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-ready .reveal.is-visible,
.reveal-ready .form-section .reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }

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

  .header-actions {
    justify-self: end;
  }

  .section-heading {
    display: block;
  }

  .section-heading .lead {
    max-width: 680px;
  }

  .feature-grid {
    gap: 16px;
  }

  .feature-card-content {
    padding: 24px;
  }

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

  .info-columns,
  .info-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-layout {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 45px;
  }
}

@media (max-width: 880px) {
  .container,
  .narrow,
  .hero-content,
  .panorama-content {
    width: min(calc(100% - 36px), var(--content));
  }

  .header-inner {
    min-height: 78px;
  }

  .brand-logo {
    width: 190px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    margin-bottom: 28px;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .split,
  .split--reverse,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .units-heading,
  .arrival-grid {
    grid-template-columns: 1fr;
  }

  .split--reverse .split-media {
    order: -1;
  }

  .split-media img {
    min-height: 460px;
  }

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

  .feature-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) 1.15fr;
  }

  .feature-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .form-intro {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 90px;
  }

  body {
    padding-bottom: 66px;
  }

  .section {
    padding: 72px 0;
  }

  .container,
  .narrow,
  .hero-content,
  .panorama-content {
    width: min(calc(100% - 28px), var(--content));
  }

  .site-header {
    border-bottom-color: rgba(255, 255, 255, 0.35);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .brand-logo {
    width: 165px;
  }

  .header-actions {
    gap: 12px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-image {
    object-position: 43% 50%;
  }

  .hero-content {
    margin-bottom: 14px;
  }

  .hero-card {
    width: 100%;
    max-width: 500px;
    padding: 18px;
    overflow: hidden;
  }

  .hero-card h1 {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: clamp(1.9rem, 8vw, 2.45rem);
    overflow-wrap: break-word;
  }

  .hero-card .lead {
    font-size: 0.91rem;
    line-height: 1.48;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-actions .btn--outline {
    display: none;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

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

  .trust-item {
    min-height: 74px;
    justify-content: flex-start;
    padding: 18px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .split {
    gap: 42px;
  }

  .split-media::after {
    right: -10px;
    bottom: -10px;
  }

  .split--reverse .split-media::after {
    left: -10px;
  }

  .split-media img {
    min-height: 360px;
  }

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

  .units-heading {
    margin-bottom: 34px;
  }

  .units-grid,
  .info-columns,
  .info-facts,
  .distance-list {
    grid-template-columns: 1fr;
  }

  .unit-card-body {
    padding: 24px 21px;
  }

  .unit-footer {
    align-items: start;
    flex-direction: column;
  }

  .info-accordion > summary {
    padding: 24px 48px 24px 0;
    grid-template-columns: 40px 1fr;
  }

  .info-content {
    padding: 0 0 30px;
  }

  .feature-card {
    display: block;
  }

  .feature-card-content {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

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

  .experience-card {
    min-height: 500px;
  }

  .panorama {
    min-height: 610px;
  }

  .gallery-grid {
    display: flex;
    margin-right: -14px;
    margin-left: -14px;
    padding: 0 14px 14px;
    overflow-x: auto;
    gap: 12px;
    scrollbar-width: none;
    scroll-padding-inline: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .gallery-item,
  .gallery-item:nth-child(n) {
    width: 84%;
    height: clamp(240px, 74vw, 330px);
    flex: 0 0 84%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .gallery-item:first-child,
  .gallery-item:last-child {
    width: 84%;
    flex-basis: 84%;
  }

  .gallery-swipe-hint {
    display: block;
    margin: -12px 0 18px;
    color: var(--brand-soft);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .custom-form {
    grid-template-columns: 1fr;
  }

  .full-width,
  .m-side {
    grid-column: 1;
  }

  .phone-row {
    display: grid;
    grid-template-columns: 118px 1fr;
  }

  .phone-row select {
    width: 100%;
  }

  .form-container {
    padding: 24px 18px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-logo {
    width: 235px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-bottom: 4px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    background: var(--brand);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 -8px 25px rgba(76, 60, 50, 0.18);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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