/* ───────────────────────────────────────────────────────────────
   Time2lounge — Webflow-friendly stylesheet
   BEM naming convention: .block, .block__element, .block--modifier
   Every visual decision belongs to a class. No inline styles.
   ─────────────────────────────────────────────────────────────── */

/* ── Design tokens ─────────────────────────────────────────── */
@font-face {
  font-family: "Interstate Condensed Light";
  src:
    local("Interstate Condensed Light"),
    local("InterstateCondensed-Light"),
    local("Interstate Condensed");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg:        #f5f1e8;
  --bg-alt:    #ebe4d3;
  --card:      #fbf7ee;
  --surface-warm: #fff8ee;
  --surface-deep: #1d160f;
  --ink:       #1d2922;
  --ink-soft:  #38463d;
  --muted:     #6b7269;
  --line:      rgba(29, 41, 34, .14);
  --line-soft: rgba(29, 41, 34, .07);
  --accent: #c35024;
  --accent-ink:#6b5128;
  --on-accent: #fbf7ee;

  --font-hero-serif: "Baskerville", "Libre Baskerville", Georgia, serif;
  --font-interstate: "Interstate Condensed Light", "Roboto Condensed", "Arial Narrow", system-ui, sans-serif;
  --font-serif: var(--font-interstate);
  --font-sans:  var(--font-interstate);
  --font-body: var(--font-interstate);
  --font-mono:  var(--font-interstate);

  --pad: clamp(20px, 5vw, 88px);

  --radius:        8px;
  --radius-card:   8px;
  --radius-pill:   999px;
}

/* ── Reset & base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body {
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(29, 22, 15, .025) 1px, transparent 1px) 0 0 / 12.5vw 100%,
    linear-gradient(180deg, #f8f0e2 0%, var(--bg) 42%, #efe7d8 100%);
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--accent); color: var(--on-accent); }

/* ── Typography utilities ──────────────────────────────────── */
.display {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0;
}
.display em { font-family: var(--font-hero-serif); font-style: italic; font-weight: 300; letter-spacing: 0; }
.display--xl { font-size: clamp(48px, 8.2vw, 132px); }

.h2 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
  margin: 0;
}
.h2 em {
  font-family: var(--font-hero-serif);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0;
}

.h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(20px, 1.6vw, 28px);
  line-height: 1.15;
  margin: 0;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.eyebrow--plain::before { display: none; }
.eyebrow--center { justify-content: center; }

.lede {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
  margin: 0;
  max-width: 60ch;
}
.body-text {
  font-family: var(--font-body);
  color: var(--ink-soft);
  text-wrap: pretty;
  margin: 0;
  max-width: 70ch;
}
.muted { color: var(--muted); }

/* ── Layout primitives ─────────────────────────────────────── */
.page { width: 100%; padding-top: 0; }
.section {
  padding: clamp(42px, 6vw, 82px) var(--pad);
  position: relative;
}
.section::before {
  content: "";
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(29, 22, 15, .16), transparent);
  opacity: .72;
  pointer-events: none;
}
.section--tight {
  padding-top:    clamp(30px, 4vw, 48px);
  padding-bottom: clamp(30px, 4vw, 48px);
}
.section--bg { background: var(--bg-alt); }
.section--center { text-align: center; }

.section__title {
  max-width: 760px;
  margin: 0 0 clamp(30px, 4vw, 44px) 0;
}
.section__title:not(.section__title--center) .h2,
.section__title:not(.section__title--center) h2 {
  max-width: 28ch;
}
.section__title-eyebrow { margin-bottom: 18px; }
.section__lede { margin-top: 16px; }
.section__title--center { margin-left: auto; margin-right: auto; text-align: center; }

/* Generic grids — used across pages */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
}
.grid-2--asymmetric {
  grid-template-columns: 1.4fr 1fr;
}
.grid-2--asymmetric-rev {
  grid-template-columns: 1fr 1.4fr;
}
.location-grid {
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
  align-items: start;
  gap: clamp(28px, 4vw, 58px);
}
.location-map-card {
  display: grid;
  gap: clamp(20px, 2.8vw, 30px);
}
.location-map-card > .photo {
  max-width: none;
}
.location-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  min-width: 0;
}
.location-tips {
  min-width: 0;
}
.grid-2--align-end   { align-items: end; }
.grid-2--align-start { align-items: start; }
.grid-2--align-center{ align-items: center; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
.grid-3 .photo {
  box-shadow: 0 18px 60px rgba(29, 22, 15, .06);
}
.grid-3 .photo:nth-child(2) {
  transform: translateY(clamp(18px, 3vw, 44px));
}
.home-gallery {
  position: relative;
  background: transparent;
}
.home-gallery__controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 0;
}
.home-gallery__button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(195, 80, 36, .32);
  border-radius: 50%;
  background: rgba(255, 248, 238, .72);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, transform .2s;
}
.home-gallery__button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
  transform: translateY(-1px);
}
.home-gallery__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0;
  margin-right: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.home-gallery__track::-webkit-scrollbar { display: none; }
.home-gallery__item {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  box-shadow: 0 20px 70px rgba(29, 22, 15, .08);
}
.home-gallery__item .photo__image {
  filter: brightness(1.08) contrast(1.02) saturate(1.06);
}
.home-gallery__item .photo__label {
  color: rgba(255, 248, 238, .88);
  background: linear-gradient(to top, rgba(29, 22, 15, .38), rgba(29, 22, 15, 0));
}
@media (max-width: 980px) {
  .home-gallery__item {
    flex-basis: calc((100% - 20px) / 2);
  }
}
@media (max-width: 620px) {
  .home-gallery__item {
    flex-basis: 86vw;
  }
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 32px);
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cluster--gap-sm { gap: 8px; }
.cluster--center { justify-content: center; }

/* ── Topbar ────────────────────────────────────────────────── */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(190px, 28vw) minmax(0, 1fr) max-content;
  align-items: center;
  column-gap: clamp(14px, 2vw, 34px);
  height: clamp(68px, 8vw, 96px);
  padding: 0 clamp(18px, 2vw, 34px) 0 clamp(8px, 1.2vw, 16px);
  background: #1d160f;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--line-soft);
}
.topbar__brand {
  display: flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
  width: 100%;
  max-width: min(360px, 28vw);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.topbar__logo {
  width: 100%;
  height: auto;
  max-height: calc(clamp(68px, 8vw, 96px) - 18px);
  display: block;
  object-fit: contain;
  object-position: left center;
}
.footer__logo {
  width: min(330px, 100%);
  height: auto;
  max-height: 92px;
  display: block;
  filter: none;
  margin-bottom: 20px;
}
.topbar__mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-style: italic;
  font-size: 16px;
}
.topbar__nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 1.85vw, 34px);
  min-width: 0;
  font-size: clamp(16px, .92vw, 19px);
  font-weight: 500;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.topbar__nav-link {
  position: relative;
  white-space: nowrap;
  padding: 11px 2px 12px;
  transition: color .24s ease, transform .24s ease, letter-spacing .24s ease;
}
.topbar__nav-link::before {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 3px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: left .28s ease, right .28s ease, opacity .28s ease;
}
.topbar__nav-link:hover,
.topbar__nav-link--active {
  color: #fff;
  transform: translateY(-1px);
  letter-spacing: .11em;
}
.topbar__nav-link--active::after {
  content: "";
  position: absolute;
  inset: auto 0 3px 0;
  height: 2px;
  background: var(--accent);
}
.topbar__nav-link:hover::before,
.topbar__nav-link--active::before {
  left: 0;
  right: 0;
  opacity: 1;
}
.topbar__right {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
  flex-shrink: 0;
}
.menu-toggle {
  width: 38px;
  height: 34px;
  display: none;
  place-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  display: block;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle--open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle--open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle--open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.mobile-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: clamp(68px, 8vw, 96px);
  z-index: 99;
  display: none;
  padding: 10px clamp(14px, 4vw, 28px) 18px;
  background: #1d160f;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}
.mobile-menu--open {
  display: grid;
}
.mobile-menu__link {
  display: flex;
  align-items: center;
  min-height: 46px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.86);
  font-family: var(--font-sans);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mobile-menu__link--accent {
  margin-top: 10px;
  justify-content: center;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
}

/* ── Language toggle ───────────────────────────────────────── */
.lang {
  display: flex;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-pill);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 11px;
}
.lang__btn {
  background: transparent;
  border: 0;
  padding: 6px 10px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  transition: background .15s;
}
.lang__btn--active {
  background: #fff;
  color: var(--ink);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  
  border-radius: var(--radius-pill);
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -10px rgba(0,0,0,.25);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}
.btn--sm {
  padding: 9px 16px;
  font-size: 11.5px;
  letter-spacing: 0.06em;
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
}
.link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Page hero (subpage header) ────────────────────────────── */
.page-hero {
  padding: clamp(60px, 8vw, 120px) var(--pad) clamp(50px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  border-bottom: 1px solid var(--line);
}
.page-hero__crumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.page-hero__crumb a:hover { color: var(--accent); }
.page-hero__crumb-sep { opacity: .5; }
.page-hero__title {
  font-size: clamp(44px, 7vw, 96px);
}

/* ── Hero (homepage) ───────────────────────────────────────── */
.hero {
  --hero-focus-x: 48%;
  --hero-focus-y: 42%;
  --hero-parallax-y: 0px;
  padding: 0;
  position: relative;
  min-height: 100vh;
  display: grid;
  overflow: hidden;
}
.hero__parallax {
  position: absolute;
  inset: -12% 0;
  background-image: url("uploads/fw1/fw1-hero.png");
  background-size: cover;
  background-position: var(--hero-focus-x) var(--hero-focus-y);
  background-repeat: no-repeat;
  transform: translate3d(0, var(--hero-parallax-y), 0) scale(1.06);
  transform-origin: center;
  will-change: transform;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  left: max(18px, calc(var(--pad) - 28px));
  bottom: clamp(22px, 5vw, 70px);
  width: min(760px, calc(100vw - 36px));
  height: clamp(330px, 40vw, 560px);
  background:
    radial-gradient(ellipse at 24% 76%, rgba(29, 22, 15, .70) 0%, rgba(29, 22, 15, .50) 42%, rgba(29, 22, 15, .18) 72%, rgba(29, 22, 15, 0) 100%);
  filter: blur(18px);
  transform: translate3d(-22px, 28px, 0);
  pointer-events: none;
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 0 var(--pad) clamp(48px, 7vw, 100px);
  color: #f5f1e8;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: #fff;
}
.hero__eyebrow .eyebrow {
  color: #fff;
}
.hero__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.hero__title {
  font-family: var(--font-hero-serif);
  margin: 0;
  max-width: 12ch;
  color: #f5f1e8;
}
.hero__sub {
  margin: 32px 0 0;
  max-width: 560px;
  font-size: clamp(17px, 1.3vw, 22px);
  color: rgba(255,255,255,.84);
  line-height: 1.5;
}
.hero__signature {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 24px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(245, 241, 232, .24);
  padding-top: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, .7);
}
.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero__stats {
  position: absolute;
  right: var(--pad);
  top: calc(80px + 48px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: right;
  color: #f5f1e8;
}
.hero__stat-value {
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero__stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-top: 6px;
}
.hero__btn--inverted {
  border-color: rgba(255,255,255,.4);
  color: #f5f1e8;
  background: transparent;
}
.hero__btn--inverted:hover {
  background: #f5f1e8;
  color: var(--ink);
}
@media (prefers-reduced-motion: reduce) {
  .hero__parallax {
    transform: scale(1.02);
  }
}
.hero-booking {
  position: fixed;
  right: var(--pad);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 80;
  width: min(340px, calc(100vw - 36px));
  min-height: 0;
  padding: 20px;
  background: #fbf2e4;
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.34);
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .24s ease, transform .24s ease;
}
.hero-booking--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.hero-booking__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-booking__title {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.1vw, 34px);
  line-height: .98;
}
.hero-booking__text {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.42;
}
.hero-booking__mini {
  margin-top: 16px;
  padding: 14px;
  background: rgba(255,248,238,.72);
  border: 1px solid rgba(195,80,36,.18);
  border-radius: 12px;
}
.hero-booking__calendar-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
.hero-booking__calendar-nav button {
  width: 32px;
  height: 32px;
  font-size: 21px;
  background: rgba(255,248,238,.86);
}
.hero-booking__month {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: end;
}
.hero-booking__month span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .09em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--accent);
  min-width: 0;
  overflow-wrap: anywhere;
}
.hero-booking__month strong {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}
.hero-booking__extras {
  margin-top: 14px;
  display: grid;
  gap: 7px;
}
.hero-booking__extras span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  line-height: 1.25;
  color: var(--ink-soft);
}
.hero-booking__extras span::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-booking__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}
.hero-booking__btn {
  margin-top: 0;
  display: flex;
  justify-content: center;
  padding: 11px 12px;
  background: var(--accent);
  color: var(--on-accent);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
}
.hero-booking__btn:hover {
  background: #a9441f;
}
.hero-booking__btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(195,80,36,.36);
}
.hero-booking__btn--ghost:hover {
  background: #fff8ee;
  color: var(--accent);
}
.hero-booking__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(29,41,34,.12);
  border-radius: 50%;
  background: rgba(251,247,238,.72);
  color: var(--muted);
  font-size: 20px;
  line-height: 1;
  padding: 0 0 2px;
  transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}
.hero-booking__close:hover {
  color: var(--accent);
  border-color: rgba(195,80,36,.38);
  background: #fff8ee;
  transform: translateY(-1px);
}

/* ── Photo placeholder ─────────────────────────────────────── */
.photo {
  position: relative;
  background: var(--bg-alt);
  overflow: hidden;
  border-radius: var(--radius);
  isolation: isolate;
}
.photo__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.001);
  transition: transform .9s cubic-bezier(.2,.7,.2,1), filter .9s cubic-bezier(.2,.7,.2,1);
}
.photo:hover .photo__image {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.03);
}
.photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 44%, rgba(29, 22, 15, .22) 100%),
    repeating-linear-gradient(135deg, transparent 0 11px, rgba(29,41,34,.018) 11px 12px);
  pointer-events: none;
  z-index: 1;
}
.photo__caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
  z-index: 2;
}
.photo__label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .86);
  text-shadow: 0 1px 14px rgba(0, 0, 0, .42);
  display: flex;
  justify-content: space-between;
  z-index: 2;
}
.photo--dark { background: var(--ink); color: var(--bg); }
.photo--dark .photo__caption,
.photo--dark .photo__label { color: rgba(255,255,255,.55); }
.photo--dark::before {
  background:
    repeating-linear-gradient(135deg,
      transparent 0 11px,
      rgba(255,255,255,.035) 11px 12px);
}
.map-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 100%;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(29,41,34,.12);
  background:
    linear-gradient(135deg, rgba(251,247,238,.82), rgba(235,228,211,.94)),
    repeating-linear-gradient(0deg, transparent 0 48px, rgba(29,41,34,.055) 48px 49px),
    repeating-linear-gradient(90deg, transparent 0 48px, rgba(29,41,34,.055) 48px 49px);
  overflow: hidden;
}
.map-card::before {
  content: "";
  position: absolute;
  inset: 16% 10% 18% 12%;
  border: 2px solid rgba(195,80,36,.48);
  border-radius: 52% 48% 45% 55%;
  transform: rotate(-9deg);
  background: transparent;
}
.map-card::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  right: 28%;
  top: 40%;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 10px rgba(195,80,36,.12);
}
.map-card__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
}
.map-card__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.map-card__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.05;
}
.map-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.adfc-partner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(29,41,34,.14);
  border-radius: 8px;
  background: rgba(251,247,238,.86);
}
.adfc-partner img {
  width: clamp(180px, 18vw, 260px);
  height: auto;
  border-radius: 7px;
}
.adfc-partner span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.photo--host::before {
  background:
    linear-gradient(180deg, transparent 60%, rgba(29, 22, 15, .42) 100%);
}
.photo--host .photo__label {
  color: rgba(255, 255, 255, .9);
  text-shadow: 0 1px 8px rgba(0, 0, 0, .35);
}

/* Aspect-ratio modifiers */
.photo--4-3 { aspect-ratio: 4 / 3; }
.photo--4-5 { aspect-ratio: 4 / 5; }
.photo--16-9 { aspect-ratio: 16 / 9; }
.photo--1-1 { aspect-ratio: 1 / 1; }

/* Photo cluster for apartment detail pages */
.photo-cluster {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(20px, 3vw, 40px);
}
.photo-cluster__col {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
}
.detail-photo-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 20px !important;
  align-items: stretch;
}
.detail-photo-grid .photo {
  width: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0 !important;
}
.detail-photo-plan {
  grid-column: auto;
  aspect-ratio: 4 / 3;
  height: auto;
  background: transparent;
  cursor: zoom-in;
  border: 0;
  padding: 0;
  display: block;
  color: inherit;
  font: inherit;
  text-align: left;
}
.floorplan-card {
  width: 100%;
  min-width: 0;
  margin: 0 !important;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: zoom-in;
  display: grid;
  gap: 10px;
}
.floorplan-card__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 20px 58px rgba(29,22,15,.09);
}
.floorplan-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.floorplan-card__zoom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(195,80,36,.34);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--accent);
  background: rgba(251,247,238,.74);
}
.floorplan-card:hover .floorplan-card__zoom {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}
.floorplan-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 8px;
}
.apartment-photo-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 32px);
}

@media (max-width: 980px) {
  .detail-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 860px) {
  .apartment-photo-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .detail-photo-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── Chips & badges ────────────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  border: 1px solid rgba(29, 41, 34, .12);
  border-radius: var(--radius-pill);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(255, 248, 238, .52);
}
.chip--accent {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Spec grid (apartment metadata) ────────────────────────── */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.spec-grid--two { grid-template-columns: 1fr 1fr; }
.spec-grid.location-facts { grid-template-columns: 1fr; }
.spec {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.spec__key {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.spec__value {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.18;
  margin-top: 8px;
}

/* ── Apartment card ────────────────────────────────────────── */
.apt-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
  background: rgba(255, 248, 238, .68);
  border: 1px solid rgba(29, 41, 34, .09);
  padding: clamp(18px, 2vw, 30px);
  box-shadow: 0 18px 60px rgba(29, 22, 15, .05);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s cubic-bezier(.2,.7,.2,1), border-color .35s;
}
.apt-card:hover {
  transform: translateY(-6px);
  border-color: rgba(195, 80, 36, .24);
  box-shadow: 0 28px 80px rgba(29, 22, 15, .11);
}
.apt-card__media {
  position: relative;
}
.apt-card__media .photo {
  aspect-ratio: 16 / 10;
  border-radius: 4px;
}
.apt-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: rgba(255, 248, 238, .86);
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 3;
}
.apt-card__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
}
.apt-card__sub { margin-bottom: 6px; }
.apt-card__title {
  margin: 0;
  font-size: clamp(27px, 2vw, 36px);
  font-weight: 400;
  line-height: 1.05;
}
.apt-card__price {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--accent);
  white-space: nowrap;
  line-height: 1.1;
  padding-top: 4px;
}
.apt-card .body-text {
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.62;
}
.apt-card .spec-grid--two {
  gap: 22px 28px;
}
.apt-card__features {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}
.apt-card__feature {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}
.apt-card__feature::before {
  content: "—";
  color: var(--accent);
}
.apt-card__actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
  flex-wrap: wrap;
}

/* ── Booking portals ───────────────────────────────────────── */
.section--booking {
  background: #f7ead8;
}
.section--booking .section__title {
  width: min(900px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(26px, 4vw, 44px);
  background: #fbf2e4;
  border: 1px solid rgba(195, 80, 36, .18);
  box-shadow: 0 18px 50px rgba(29, 22, 15, .08);
}
.booking-platforms {
  width: min(920px, 100%);
  margin: clamp(28px, 4vw, 44px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.booking-sync-note {
  width: min(920px, 100%);
  margin: clamp(24px, 3vw, 34px) auto 0;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 14px;
  color: var(--ink-soft);
  text-align: left;
}
.booking-sync-note strong {
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.5vw, 26px);
  line-height: 1.1;
  color: var(--ink);
  white-space: nowrap;
}
.booking-sync-note span {
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.45;
}
.booking-card {
  display: grid;
  gap: 9px;
  min-height: 132px;
  align-content: center;
  padding: clamp(20px, 2.4vw, 30px);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.32);
  text-align: left;
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.booking-card:hover,
.booking-card:focus-visible {
  border-color: var(--accent);
  background: rgba(255,255,255,.58);
  transform: translateY(-2px);
}
.booking-card__label {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1;
  color: var(--ink);
}
.booking-card__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--muted);
}
.booking-card--pending {
  border-style: dashed;
  opacity: .72;
}
.booking-direct {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.feratel-widget-slot {
  width: min(920px, 100%);
  margin: 28px auto 0;
}
.direct-booking {
  width: min(960px, 100%);
  margin: clamp(28px, 4vw, 44px) auto 0;
  display: grid;
  grid-template-columns: minmax(260px, .95fr) minmax(320px, 1.1fr) minmax(260px, .95fr);
  gap: 14px;
}
.direct-booking__card {
  display: grid;
  gap: 8px;
  min-height: 148px;
  align-content: center;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(195, 80, 36, .18);
  background: #fbf2e4;
  text-align: left;
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.direct-booking__card:hover,
.direct-booking__card:focus-visible {
  border-color: var(--accent);
  background: #fff8ee;
  transform: translateY(-2px);
}
.direct-booking__card--calendar {
  background: var(--accent);
  color: var(--on-accent);
}
.direct-booking__card--calendar:hover,
.direct-booking__card--calendar:focus-visible {
  background: #a9441f;
}
.direct-booking__card--calendar .direct-booking__label,
.direct-booking__card--calendar .direct-booking__value,
.direct-booking__card--calendar .direct-booking__meta {
  color: var(--on-accent);
}
.direct-booking__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--accent);
}
.direct-booking__value {
  font-family: var(--font-serif);
  font-size: clamp(23px, 1.8vw, 30px);
  line-height: 1.04;
  color: var(--ink);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.direct-booking__value--email {
  font-size: clamp(21px, 1.55vw, 27px);
  white-space: nowrap;
}
.direct-booking__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--muted);
}
.booking-calendar {
  width: min(960px, 100%);
  margin: 16px auto 0;
}
.booking-calendar__inner {
  padding: clamp(18px, 3vw, 30px);
  background: #fbf2e4;
  border: 1px solid rgba(195, 80, 36, .18);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(29, 22, 15, .08);
  text-align: left;
}
.booking-calendar__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}
.booking-calendar__label {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--accent);
}
.booking-calendar__inner strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.04;
}
.booking-calendar__nav {
  display: inline-flex;
  gap: 8px;
}
.booking-calendar__nav button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(195, 80, 36, .22);
  border-radius: 50%;
  background: #fff8ee;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
}
.booking-calendar__nav button:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.booking-calendar__nav button:disabled {
  opacity: .3;
  cursor: default;
  border-color: rgba(29,41,34,.12);
  color: var(--muted);
}
.booking-calendar__nav button:disabled:hover {
  border-color: rgba(29,41,34,.12);
  color: var(--muted);
}
.mini-calendar {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}
.mini-calendar--compact {
  margin-top: 12px;
  gap: 4px;
}
.mini-calendar__weekday,
.mini-calendar__day {
  min-width: 0;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
}
.mini-calendar--compact .mini-calendar__weekday {
  height: 18px;
  font-size: 8px;
  letter-spacing: .08em;
}
.mini-calendar--compact .mini-calendar__day {
  min-height: 28px;
  border-radius: 6px;
  font-size: 9px;
}
.mini-calendar__weekday {
  aspect-ratio: auto;
  height: 24px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.mini-calendar__day {
  min-height: clamp(44px, 6vw, 62px);
  background: #fff8ee;
  border: 1px solid rgba(29, 41, 34, .08);
  color: var(--ink);
}
.mini-calendar__day.is-empty {
  background: transparent;
  border-color: transparent;
}
.mini-calendar__day.is-today {
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 700;
}
.mini-calendar__day.is-limited {
  background: #f4d7c8;
  border-color: rgba(195, 80, 36, .28);
}
.mini-calendar__day.is-booked {
  background: #ded5ca;
  color: rgba(29, 41, 34, .46);
  text-decoration: line-through;
}
.booking-calendar__legend {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.booking-calendar__note {
  margin: 18px 0 0;
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}
.booking-calendar__legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.booking-calendar__legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff8ee;
  border: 1px solid rgba(29, 41, 34, .1);
}
.booking-calendar__legend i.is-limited {
  background: #f4d7c8;
  border-color: rgba(195, 80, 36, .28);
}
.booking-calendar__legend i.is-booked {
  background: #ded5ca;
}
.booking-calendar__actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.booking-calendar__button {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--on-accent);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
}
.booking-calendar__actions .booking-calendar__button {
  margin-top: 0;
}
.booking-calendar__button:hover {
  background: #a9441f;
}
.booking-calendar__button--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(195, 80, 36, .32);
}
.booking-calendar__button--ghost:hover {
  background: #fff8ee;
  color: var(--accent);
}

/* ── Location tips ─────────────────────────────────────────── */
.loc-tips-header {
  margin-top: 0;
  display: grid;
  gap: 10px;
}
.tip-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.tip-row {
  display: grid;
  grid-template-columns: minmax(132px, 150px) minmax(0, 1fr);
  align-items: start;
  gap: 6px 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.tip-row .eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  min-width: 0;
}
.tip-row .eyebrow::before {
  width: 22px;
}
.tip-row__name {
  min-width: 0;
  max-width: none;
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.15vw, 22px);
  line-height: 1.12;
}
.tip-row__link {
  border-bottom: 1px solid transparent;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease;
}
.tip-row__link:hover,
.tip-row__link:focus-visible {
  color: var(--accent);
  border-bottom-color: currentColor;
}
.tip-row__walk {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.2;
  grid-column: 2;
  justify-self: start;
  padding-top: 0;
  text-align: left;
  white-space: nowrap;
}
.location-tips .tip-list {
  margin-top: 18px;
}
.location-tips .tip-row {
  grid-template-columns: 1fr;
  gap: 7px;
  padding: 16px 0;
}
.location-tips .tip-row .eyebrow {
  font-size: 9.5px;
}
.location-tips .tip-row__name {
  font-size: clamp(18px, 1.3vw, 23px);
}
.location-tips .tip-row__walk {
  grid-column: auto;
  justify-self: start;
  font-size: 13px;
  color: var(--muted);
}

/* ── Detail page price line ────────────────────────────────── */
.price-line {
  margin-top: 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
}

/* ── Editorial motion ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: .06s; }
.reveal:nth-child(3) { transition-delay: .12s; }
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Detail lists (Wohnen & Schlafen etc.) ─────────────────── */
.detail-list {
  font-family: var(--font-body);
  margin: 0 0 32px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}
.detail-list:last-child { margin-bottom: 0; }

.terms-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 16px;
  color: var(--ink-soft);
}
.terms-list strong { color: var(--ink); }

/* ── Filter bar (gallery & tips) ───────────────────────────── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.filter-bar__btn {
  background: transparent;
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: border-color .2s, color .2s, background .2s;
}
.filter-bar__btn:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.filter-bar__btn--active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* ── Gallery grid ──────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 12px;
}
.gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  transition: opacity .25s;
}
.gallery__item--hide { display: none; }
/* spans */
.gallery__item--5-3 { grid-column: span 5; grid-row: span 3; }
.gallery__item--4-3 { grid-column: span 4; grid-row: span 3; }
.gallery__item--3-3 { grid-column: span 3; grid-row: span 3; }
.gallery__item--4-2 { grid-column: span 4; grid-row: span 2; }

/* ── Tip card grid ─────────────────────────────────────────── */
.tip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 32px);
}
.tip-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  padding: 32px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  position: relative;
}
.tip-card--hide { display: none; }
.tip-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.16em;
}
.tip-card__walk {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.tip-card__title {
  margin: 8px 0 12px;
}
.tip-card__desc {
  font-size: 14.5px;
  margin: 0 0 18px;
}
.tip-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
}

/* ── Route row (bike tours) ────────────────────────────────── */
.route-row {
  display: grid;
  grid-template-columns: 80px 1.6fr 1.4fr auto;
  gap: clamp(20px, 3vw, 56px);
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.route-row--first { border-top: 1px solid var(--line); }
.route-row__num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--accent);
  padding-top: 8px;
}
.route-row__desc {
  margin: 12px 0 18px;
  max-width: 56ch;
}
.route-row__highlights {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.8;
}
.route-row__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.route-row__stats .spec__value { font-size: 22px; }
.route-row__action { align-self: center; }

/* ── Service banner (bike tour service tiles) ──────────────── */
.service-tile { }
.service-tile__title { margin-top: 8px; }

/* ── Form ──────────────────────────────────────────────────── */
.form {
  display: grid;
  gap: 24px;
}
.form__row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form__row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.field__input,
.field__select,
.field__textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0 12px;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  border-radius: 0;
}
.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  border-bottom-color: var(--accent);
}
.field__textarea {
  resize: vertical;
  min-height: 96px;
}
.field--checkbox {
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  margin-top: 8px;
}
.field--checkbox .field__input { margin-top: 4px; }
.field--checkbox .field__label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  color: var(--ink-soft);
  font-family: var(--font-sans);
}
.field--checkbox .field__label a { color: var(--accent); }
.form__submit { align-self: flex-start; margin-top: 16px; }

/* ── Contact aside ─────────────────────────────────────────── */
.contact-card {
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-card__list {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}
.contact-card__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-card__value {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--ink);
}
.contact-card__addr {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.contact-card__hours {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* Thank-you message */
.thanks { display: none; }
.thanks--visible { display: block; }
.thanks__title { margin: 20px 0; }

/* ── CTA section blocks ────────────────────────────────────── */
.cta-block {
  text-align: center;
}
.cta-block__title {
  margin: 20px auto 0;
  max-width: 18ch;
}
.cta-block__body {
  margin: 24px auto 40px;
  max-width: 50ch;
}
.cta-block__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px) 0 0 / 12vw 100%,
    linear-gradient(135deg, #1d160f 0%, #24180f 42%, #10231b 100%);
  color: #f5f1e8;
  padding: clamp(64px, 8vw, 112px) var(--pad) 36px;
  border-top: 1px solid rgba(195,80,36,.38);
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .9;
}
.footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(160px, .8fr));
  gap: clamp(28px, 4vw, 70px);
  align-items: start;
}
.footer a { color: rgba(255,255,255,.8); }
.footer a:hover { color: #fff8ee; }
.footer__heading {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248,240,226,.78);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer__brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,.9);
}
.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 24px;
}
.footer__blurb {
  margin: 0;
  max-width: 320px;
  color: rgba(248,240,226,.88);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}
.footer__addr {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(248,240,226,.88);
  font-weight: 400;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
}
.footer__list li { line-height: 1.7; }
.footer__list a {
  position: relative;
  transition: color .2s ease, padding-left .2s ease;
}
.footer__list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .2s ease;
}
.footer__list a:hover {
  padding-left: 18px;
}
.footer__list a:hover::before {
  width: 12px;
}
.footer__meta {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(248,240,226,.16);
  margin-top: clamp(44px, 6vw, 72px);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,240,226,.72);
  flex-wrap: wrap;
  font-weight: 500;
}

.eyebrow,
.spec__key,
.photo__caption,
.photo__label,
.chip,
.link,
.btn,
.topbar__nav,
.topbar nav,
.lang-toggle,
.mini-calendar__weekdays,
.booking-calendar__label,
.hero-booking__eyebrow,
.hero-booking__month span,
.hero-booking__btn,
.footer__heading,
.footer__meta {
  font-weight: 500;
}

/* ── Intro band (homepage) ─────────────────────────────────── */
.intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 120px);
  align-items: start;
}

/* ── Legal pages ───────────────────────────────────────────── */
.legal {
  max-width: 760px;
}
.legal__section { margin-bottom: 56px; }
.legal__heading {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
}
.legal__para {
  margin: 0 0 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.legal__para a { color: var(--accent); text-decoration: underline; }

/* ── About / hosts ─────────────────────────────────────────── */
.about__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}
.about__sign { margin-top: 18px; }
.about__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 0;
}
.about__divider-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.about__divider-glyph {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq {
  max-width: 900px;
  margin-top: 56px;
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  background: transparent;
  border: 0;
  color: var(--ink);
  text-align: left;
}
.faq__question {
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.2;
}
.faq__toggle {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
  font-size: 22px;
  transition: transform .2s;
}
.faq__item--open .faq__toggle { transform: rotate(45deg); }
.faq__answer {
  margin: 0 0 24px;
  max-width: 720px;
  color: var(--ink-soft);
  display: none;
}
.faq__item--open .faq__answer { display: block; }

/* ── Utilities (kept minimal) ─────────────────────────────── */
.mt-0  { margin-top: 0 !important; }
.mt-s  { margin-top: 16px; }
.mt-m  { margin-top: 24px; }
.mt-l  { margin-top: 32px; }
.mt-xl { margin-top: 40px; }
.hidden { display: none !important; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1280px) {
  .hero {
    --hero-focus-x: 47%;
    --hero-focus-y: 40%;
  }
  .topbar {
    grid-template-columns: minmax(170px, 25vw) minmax(0, 1fr) max-content;
    column-gap: clamp(12px, 2vw, 24px);
  }
  .topbar__brand {
    max-width: min(300px, 25vw);
  }
  .topbar__nav {
    font-size: 14px;
    gap: 16px;
    letter-spacing: .065em;
  }
}

@media (max-width: 1080px) {
  .topbar__nav { display: none; }
  .menu-toggle { display: grid; }
}

@media (max-width: 920px) {
  .hero {
    --hero-focus-x: 45%;
    --hero-focus-y: 42%;
  }
  .topbar {
    grid-template-columns: minmax(160px, 260px) auto;
  }
  .hero-booking {
    right: 18px;
    bottom: 18px;
    width: min(320px, calc(100vw - 36px));
    min-height: 0;
    padding: 16px;
  }
  .hero-booking__month {
    grid-template-columns: 1fr;
    gap: 5px;
    align-items: start;
  }
  .hero-booking__month strong {
    white-space: normal;
  }
  #apartments .grid-2 {
    gap: 34px;
  }
  .apt-card {
    gap: 22px;
    padding: 24px;
  }
  .apt-card__head {
    align-items: flex-start;
    gap: 16px;
  }
  .apt-card__price {
    white-space: nowrap;
    padding-top: 4px;
  }
  .apt-card .body-text {
    font-size: 17px;
    line-height: 1.6;
    max-width: 68ch;
  }
  .apt-card .spec-grid--two {
    gap: 20px 24px;
  }
  .apt-card .spec {
    padding-top: 14px;
  }
  .apt-card__actions {
    margin-top: auto;
    gap: 14px;
  }
  .booking-platforms {
    grid-template-columns: 1fr 1fr;
  }
  .page-hero,
  .grid-2,
  .grid-2--asymmetric,
  .grid-2--asymmetric-rev,
  .intro {
    grid-template-columns: 1fr;
  }
  .location-grid > .photo {
    max-width: none;
  }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .spec-grid.location-facts {
    grid-template-columns: 1fr;
  }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .tip-grid { grid-template-columns: 1fr 1fr; }
  .photo-cluster { grid-template-columns: 1fr; }
  .photo-cluster__col { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
  .route-row { grid-template-columns: 1fr; }
  .route-row__num { padding: 0; }
  .form__row-3 { grid-template-columns: 1fr 1fr; }
  .direct-booking {
    grid-template-columns: 1fr;
  }
  .tip-row {
    grid-template-columns: minmax(112px, 128px) minmax(0, 1fr);
    gap: 8px 18px;
    align-items: start;
  }
  .tip-row__name {
    max-width: none;
  }
  .tip-row__walk {
    grid-column: 2;
    justify-self: start;
    padding-top: 0;
    text-align: left;
    font-size: 13px;
    color: var(--muted);
  }
}
@media (max-width: 600px) {
  .hero {
    --hero-focus-x: 44%;
    --hero-focus-y: 42%;
  }
  .topbar {
    grid-template-columns: minmax(136px, 1fr) auto;
    height: 64px;
    padding-left: 6px;
    padding-right: 10px;
    column-gap: 10px;
  }
  .topbar__logo {
    max-height: 56px;
  }
  .topbar__right {
    gap: 8px;
  }
  .topbar__right .btn {
    display: none;
  }
  .mobile-menu {
    top: 64px;
  }
  .hero-booking {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 14px;
  }
  .hero-booking__text,
  .hero-booking__extras {
    display: none;
  }
  .hero-booking__title {
    margin-top: 6px;
    font-size: 22px;
  }
  .hero-booking__mini {
    margin-top: 10px;
    padding: 10px;
  }
  .hero-booking__month span {
    font-size: 8px;
    letter-spacing: .06em;
  }
  .hero-booking__month strong {
    font-size: 14px;
  }
  .mini-calendar--compact {
    gap: 3px;
  }
  .mini-calendar--compact .mini-calendar__weekday {
    height: 14px;
    font-size: 7px;
  }
  .mini-calendar--compact .mini-calendar__day {
    min-height: 22px;
    font-size: 8px;
    border-radius: 4px;
  }
  .hero-booking__actions {
    margin-top: 10px;
  }
  .hero-booking__btn {
    margin-top: 0;
    padding: 10px 8px;
    font-size: 10px;
  }
  .apt-card__head {
    display: grid;
    gap: 12px;
  }
  .apt-card .body-text {
    font-size: 16px;
    line-height: 1.65;
  }
  .apt-card .spec-grid--two {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .booking-platforms {
    grid-template-columns: 1fr;
  }
  .direct-booking {
    grid-template-columns: 1fr;
  }
  .direct-booking__value--email {
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .booking-sync-note {
    display: grid;
    justify-items: center;
    text-align: center;
  }
  .booking-sync-note strong {
    white-space: normal;
  }
  .booking-card {
    min-height: 108px;
  }
  .tip-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
  }
  .tip-row__name {
    max-width: none;
  }
  .tip-row__walk {
    grid-column: auto;
    justify-self: start;
    white-space: normal;
    color: var(--muted);
  }
  .tip-grid { grid-template-columns: 1fr; }
  .form__row-2, .form__row-3 { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .spec-grid, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-3 .photo:nth-child(2) { transform: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .photo-cluster__col { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .location-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(6, 1fr); }
  .gallery__item { grid-column: span 6 !important; grid-row: span 3 !important; }
}

/* ── Mobile refinement layer ─────────────────────────────────
   Separate small-screen composition: tighter sections, clearer
   type, fewer decorative elements, and stable compact controls.
   ─────────────────────────────────────────────────────────── */
@media (max-width: 760px) {
  :root {
    --pad: 18px;
  }

  html,
  body {
    font-size: 16.5px;
    line-height: 1.55;
  }

  body {
    background:
      linear-gradient(90deg, rgba(29, 22, 15, .022) 1px, transparent 1px) 0 0 / 33.333vw 100%,
      linear-gradient(180deg, #f8f0e2 0%, var(--bg) 48%, #efe7d8 100%);
  }

  .section {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .section--tight {
    padding-top: 28px;
    padding-bottom: 30px;
  }

  .section__title {
    margin-bottom: 24px;
  }

  .section__title-eyebrow {
    margin-bottom: 12px;
  }

  .display,
  .display--xl {
    font-size: clamp(42px, 15vw, 64px);
    line-height: .95;
  }

  .h2 {
    font-size: clamp(32px, 10.5vw, 44px);
    line-height: 1;
  }

  .h3 {
    font-size: 24px;
    line-height: 1.12;
  }

  .lede,
  .body-text {
    font-size: 17px;
    line-height: 1.55;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: .16em;
    gap: 9px;
  }

  .eyebrow::before {
    width: 20px;
  }

  .topbar {
    grid-template-columns: minmax(140px, 1fr) auto;
    height: 62px;
    padding: 0 12px 0 6px;
    column-gap: 10px;
  }

  .topbar__brand {
    max-width: 260px;
  }

  .topbar__logo {
    max-height: 52px;
  }

  .lang {
    font-size: 10px;
  }

  .lang__btn {
    padding: 5px 9px;
  }

  .menu-toggle {
    width: 34px;
    height: 30px;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
  }

  .mobile-menu {
    top: 62px;
    padding: 8px 18px 18px;
  }

  .mobile-menu__link {
    min-height: 42px;
    font-size: 16px;
    letter-spacing: .07em;
  }

  .hero {
    min-height: 88svh;
    --hero-focus-x: 46%;
    --hero-focus-y: 43%;
  }

  .hero__parallax {
    inset: -6% 0;
    transform: translate3d(0, var(--hero-parallax-y), 0) scale(1.03);
  }

  .hero__overlay {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 48svh;
    filter: blur(14px);
    transform: translate3d(0, 18px, 0);
    background:
      linear-gradient(180deg, rgba(29, 22, 15, 0) 0%, rgba(29, 22, 15, .72) 70%, rgba(29, 22, 15, .82) 100%);
  }

  .hero__content {
    padding: 0 var(--pad) 88px;
  }

  .hero__eyebrow {
    margin-bottom: 16px;
  }

  .hero__title {
    max-width: 9ch;
  }

  .hero__sub {
    margin-top: 18px;
    max-width: 31ch;
    font-size: 18px;
    line-height: 1.4;
    color: rgba(255,255,255,.92);
  }

  .hero__actions {
    margin-top: 24px;
    gap: 10px;
  }

  .hero__actions .btn {
    min-height: 46px;
    padding: 12px 18px;
    font-size: 12px;
  }

  .hero__stats,
  .hero__signature {
    display: none;
  }

  .hero-booking {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-height: calc(100svh - 86px);
    overflow: auto;
    padding: 14px;
    border-radius: 12px;
  }

  .hero-booking__close {
    top: 8px;
    right: 8px;
  }

  .hero-booking__title {
    max-width: calc(100% - 36px);
    font-size: 23px;
    line-height: 1;
  }

  .hero-booking__text,
  .hero-booking__extras {
    display: none;
  }

  .hero-booking__mini {
    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;
  }

  .hero-booking__month {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .hero-booking__month strong {
    font-size: 15px;
  }

  .hero-booking__actions {
    margin-top: 10px;
  }

  .hero-booking__btn {
    min-height: 38px;
    padding: 10px 8px;
  }

  .mini-calendar {
    gap: 5px;
  }

  .mini-calendar__day {
    min-height: 38px;
    border-radius: 7px;
    font-size: 10px;
  }

  .mini-calendar__weekday {
    height: 20px;
    font-size: 9px;
  }

  .mini-calendar--compact {
    gap: 3px;
  }

  .mini-calendar--compact .mini-calendar__day {
    min-height: 24px;
    font-size: 8.5px;
  }

  .mini-calendar--compact .mini-calendar__weekday {
    height: 14px;
    font-size: 7px;
  }

  .page-hero {
    padding: 92px var(--pad) 34px;
    gap: 22px;
  }

  .page-hero__title {
    font-size: clamp(42px, 14vw, 62px);
  }

  .grid-2,
  .grid-2--asymmetric,
  .grid-2--asymmetric-rev,
  .intro,
  .location-grid {
    gap: 26px;
  }

  .grid-3,
  .grid-4,
  .spec-grid {
    gap: 16px;
  }

  #apartments .grid-2 {
    gap: 24px;
  }

  .apt-card {
    padding: 18px;
    gap: 16px;
    border-radius: 10px;
  }

  .apt-card:hover {
    transform: none;
  }

  .apt-card__media .photo {
    aspect-ratio: 4 / 3;
  }

  .apt-card__tag {
    top: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
    padding: 5px 10px;
    font-size: 9.5px;
    letter-spacing: .09em;
  }

  .apt-card__head {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .apt-card__title {
    font-size: 32px;
  }

  .apt-card__price {
    justify-self: start;
    white-space: normal;
    font-size: 18px;
  }

  .apt-card .body-text {
    font-size: 16.5px;
    line-height: 1.48;
  }

  .apt-card .spec-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
  }

  .spec {
    padding-top: 10px;
  }

  .spec__key {
    font-size: 9px;
    letter-spacing: .13em;
  }

  .spec__value {
    font-size: 19px;
    line-height: 1.12;
  }

  .apt-card__features {
    display: none;
  }

  .apt-card__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .apt-card__actions .btn {
    width: 100%;
    min-height: 44px;
  }

  .home-gallery__track {
    margin-left: calc(var(--pad) * -1);
    margin-right: calc(var(--pad) * -1);
    padding: 0 var(--pad);
  }

  .home-gallery__item {
    flex-basis: min(82vw, 360px);
  }

  .home-gallery__controls {
    margin-top: 14px;
  }

  .home-gallery__button,
  .booking-calendar__nav button {
    width: 38px;
    height: 38px;
  }

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

  .tip-list {
    margin-top: 16px;
  }

  .tip-row {
    padding: 14px 0;
  }

  .tip-row__name,
  .location-tips .tip-row__name {
    font-size: 21px;
  }

  .tip-row__walk {
    font-size: 13px;
  }

  .section--booking .section__title {
    padding: 22px 18px;
  }

  .direct-booking__card {
    min-height: 112px;
    padding: 20px 18px;
  }

  .booking-calendar__inner {
    padding: 16px;
    border-radius: 14px;
  }

  .booking-calendar__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .booking-calendar__nav {
    justify-self: start;
  }

  .booking-calendar__legend {
    gap: 9px 12px;
    font-size: 9.5px;
    letter-spacing: .09em;
  }

  .booking-calendar__note {
    display: none;
  }

  .booking-calendar__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .booking-calendar__button {
    width: 100%;
    min-height: 42px;
  }

  .about__quote {
    font-size: 24px;
    line-height: 1.25;
  }

  .faq {
    margin-top: 28px;
  }

  .faq__btn {
    padding: 20px 0;
  }

  .faq__question {
    font-size: 22px;
  }

  .filter-bar {
    margin-bottom: 22px;
    padding-bottom: 16px;
    gap: 7px;
  }

  .filter-bar__btn {
    padding: 8px 13px;
    font-size: 10px;
    letter-spacing: .1em;
  }

  .tip-card {
    padding: 22px;
  }

  .tip-card__walk {
    position: static;
    margin-top: 6px;
    order: 1;
  }

  .tip-card__title {
    order: 2;
    margin-top: 12px;
  }

  .tip-card__desc {
    order: 3;
    font-size: 16px;
    line-height: 1.5;
  }

  .tip-card__tags {
    order: 4;
  }

  .route-row {
    gap: 16px;
    padding: 28px 0;
  }

  .route-row__stats {
    gap: 14px;
  }

  .detail-list {
    font-size: 16px;
    line-height: 1.7;
  }

  .detail-photo-grid {
    gap: 20px !important;
  }

  .floorplan-card__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    font-size: 9.5px;
    letter-spacing: .13em;
  }

  .floorplan-card__zoom {
    width: 100%;
  }

  .form {
    gap: 20px;
  }

  .field__input,
  .field__select,
  .field__textarea {
    font-size: 17px;
  }

  .contact-card {
    padding: 22px;
  }

  .footer {
    padding: 44px var(--pad) 28px;
  }

  .footer__grid {
    gap: 26px;
  }

  .footer__logo {
    width: min(260px, 100%);
    max-height: 76px;
    margin-bottom: 16px;
  }

  .footer__heading {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .footer__blurb,
  .footer__addr,
  .footer__list {
    font-size: 16px;
    line-height: 1.62;
  }

  .footer__meta {
    margin-top: 30px;
    padding-top: 18px;
    gap: 10px;
    font-size: 10px;
    line-height: 1.5;
  }
}

@media (max-width: 380px) {
  :root {
    --pad: 14px;
  }

  .topbar__brand {
    max-width: 214px;
  }

  .topbar__logo {
    max-height: 46px;
  }

  .lang__btn {
    padding: 5px 7px;
  }

  .hero__content {
    padding-bottom: 76px;
  }

  .hero__sub {
    font-size: 17px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .apt-card .spec-grid--two,
  .location-facts,
  .route-row__stats {
    grid-template-columns: 1fr;
  }

  .mini-calendar__day {
    min-height: 34px;
  }
}
