/* ==========================================================================
   Habitation Getz — design tokens & base
   ========================================================================== */

@font-face {
  font-family: 'Display';
  src: url('/fonts/playfair-normal.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Display';
  src: url('/fonts/playfair-italic.woff2') format('woff2');
  font-weight: 400 600;
  font-style: italic;
  font-display: swap;
}

:root {
  --bg: #faf8f4;
  --bg-alt: #f1ebe1;
  --ink: #201d1a;
  --ink-soft: #5c554c;
  --ink-faint: #8a8175;
  --line: rgba(32, 29, 26, 0.13);
  --line-soft: rgba(32, 29, 26, 0.08);
  --accent: #3c4a34;
  --accent-soft: #edf0e7;
  --white: #ffffff;

  --font-display: 'Display', ui-serif, Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0; line-height: 1.15; }
p { margin: 0; }
button { font: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

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

.skip-link {
  position: absolute;
  left: 1rem; top: -3rem;
  background: var(--ink);
  color: var(--bg);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  transition: top 0.15s ease;
  border-radius: 2px;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ==========================================================================
   Type helpers
   ========================================================================== */

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow.on-dark { color: rgba(250, 248, 244, 0.75); }

.display-xl {
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: 0.01em;
}
.display-lg {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
}
.display-md {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 42em;
  line-height: 1.7;
}

.script {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

/* ==========================================================================
   Buttons & links
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95em 1.9em;
  border: 1px solid currentColor;
  border-radius: 2px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent); border-color: var(--accent); }
.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-on-dark {
  border-color: rgba(250, 248, 244, 0.8);
  color: var(--bg);
}
.btn-on-dark:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 0.2em;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.text-link:hover { border-color: var(--ink); color: var(--accent); }
.text-link .arrow { transition: transform 0.2s ease; }
.text-link:hover .arrow { transform: translateX(3px); }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem var(--gutter);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.brand__mark { height: 34px; width: auto; }
.brand__word {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__word .habitation {
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--ink-soft);
}
.brand__word .getz {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 0.1rem;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.1rem);
}
.nav-primary a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.4rem 0.1rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-primary a:hover,
.nav-primary a[aria-current="page"] {
  color: var(--ink);
  border-color: var(--accent);
}

.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin: -0.5rem;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: '';
  position: absolute;
  left: 0;
}
.nav-toggle__bars::before { top: -7px; }
.nav-toggle__bars::after { top: 7px; }

@media (max-width: 860px) {
  .nav-toggle { display: block; order: 3; }
  .nav-primary {
    /* Positioned with viewport units rather than inset/bottom:0, because
       .site-header's backdrop-filter creates a new containing block for
       fixed descendants — bottom:0 would resolve against the header's own
       (short) box instead of the viewport. */
    position: fixed;
    top: 64px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 64px);
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem var(--gutter) 2rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    overflow-y: auto;
  }
  .nav-primary a { width: 100%; padding: 0.9rem 0; border-bottom: 1px solid var(--line-soft); font-size: 0.95rem; }
  body.nav-open .nav-primary { opacity: 1; transform: translateY(0); pointer-events: auto; }
  body.nav-open { overflow: hidden; }
  .nav-primary .nav-cta { margin-top: 1.25rem; width: 100%; }
  .nav-primary .btn { width: 100%; justify-content: center; }
  body.nav-open .nav-toggle__bars { background: transparent; }
  body.nav-open .nav-toggle__bars::before { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle__bars::after { transform: translateY(-7px) rotate(-45deg); }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: flex-end;
  color: var(--bg);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 18, 15, 0.35) 0%, rgba(20, 18, 15, 0.18) 38%, rgba(20, 18, 15, 0.55) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 7rem var(--gutter) 4.5rem;
  max-width: 900px;
}
.hero__eyebrow {
  color: rgba(250, 248, 244, 0.85);
  margin-bottom: 1.1rem;
}
.hero__title {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  letter-spacing: 0.005em;
}
.hero__lede {
  margin-top: 1.3rem;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 40em;
  color: rgba(250, 248, 244, 0.92);
}
.hero__actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero--short { min-height: min(52vh, 480px); }
.hero--short .hero__content { padding-top: 8.5rem; padding-bottom: 3.5rem; }

/* ==========================================================================
   Sections
   ========================================================================== */

.section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}
.section--alt { background: var(--bg-alt); }
.section--ink { background: var(--ink); color: var(--bg); }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }

.section__head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}
.section__head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head .eyebrow { margin-bottom: 0.9rem; }
.section__head h2 { margin-top: 0.6rem; }
.section__head p { margin-top: 1.1rem; }

.rule {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ==========================================================================
   Intro / welcome block
   ========================================================================== */

.intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.intro__figure { position: relative; }
.intro__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.intro__figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--ink-faint);
  font-style: italic;
}
.intro__text p + p { margin-top: 1.1rem; }
.intro__text .lede { margin-bottom: 0.3rem; }

@media (max-width: 860px) {
  .intro { grid-template-columns: 1fr; }
  .intro__figure { order: -1; }
}

/* ==========================================================================
   Stay cards (home: cabanes / chambres teaser)
   ========================================================================== */

.stay-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}
@media (max-width: 780px) {
  .stay-grid { grid-template-columns: 1fr; }
}

.stay-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  color: var(--bg);
}
.stay-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.stay-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,18,15,0.05) 0%, rgba(20,18,15,0.15) 45%, rgba(20,18,15,0.78) 100%);
}
.stay-card:hover img { transform: scale(1.05); }
.stay-card__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.stay-card__eyebrow { color: rgba(250,248,244,0.85); margin-bottom: 0.6rem; }
.stay-card__body h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.stay-card__body p { margin-top: 0.6rem; color: rgba(250,248,244,0.9); max-width: 34em; }
.stay-card__link {
  margin-top: 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}

/* ==========================================================================
   Feature strip (domaine / histoire teasers on home)
   ========================================================================== */

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}
@media (max-width: 900px) {
  .feature-strip { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
.feature-card {
  display: block;
}
.feature-card__figure {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  margin-bottom: 1.1rem;
}
.feature-card__figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.feature-card:hover .feature-card__figure img { transform: scale(1.06); }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--ink-soft); font-size: 0.95rem; }
.feature-card .text-link { margin-top: 0.9rem; }

/* ==========================================================================
   Accommodation detail blocks (cabanes.html / chambres.html)
   ========================================================================== */

.unit {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.unit + .unit { border-top: 1px solid var(--line); }

.unit__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.unit__head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.unit__head .eyebrow { margin-bottom: 0.55rem; }

.unit__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.9rem;
}
.unit__fact {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  white-space: nowrap;
}

.unit__body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 900px) {
  .unit__body { grid-template-columns: 1fr; }
}

.unit__text p { color: var(--ink-soft); }
.unit__text p + p { margin-top: 1rem; }

.unit__price {
  border: 1px solid var(--line);
  padding: 1.5rem;
}
.unit__price .amount {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
}
.unit__price .amount small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.unit__price ul { margin-top: 0.9rem; }
.unit__price li {
  font-size: 0.86rem;
  color: var(--ink-soft);
  padding: 0.4rem 0;
  border-top: 1px solid var(--line-soft);
}
.unit__price li:first-child { border-top: none; }
.unit__price .btn { margin-top: 1.25rem; width: 100%; justify-content: center; }

.unit__gallery {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(90px, auto);
  gap: 0.6rem;
}
.unit__gallery a {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: zoom-in;
}
.unit__gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.unit__gallery a:hover img { transform: scale(1.06); }
.unit__gallery a:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.unit__gallery a:nth-child(2) { grid-column: span 2; grid-row: span 1; }
.unit__gallery a:nth-child(3) { grid-column: span 2; grid-row: span 1; }
.unit__gallery a:nth-child(n+4) { grid-column: span 2; grid-row: span 1; }

@media (max-width: 640px) {
  .unit__gallery { grid-template-columns: repeat(2, 1fr); }
  .unit__gallery a:nth-child(1) { grid-column: span 2; grid-row: span 1; aspect-ratio: 4/3; }
  .unit__gallery a:nth-child(n+2) { aspect-ratio: 4/3; }
}

/* ==========================================================================
   Timeline (histoire)
   ========================================================================== */

.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: clamp(1.5rem, 4vw, 2.5rem);
  border-left: 1px solid var(--line);
}
.timeline__item {
  position: relative;
  padding: 0 0 clamp(2rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.25rem);
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: '';
  position: absolute;
  left: calc(-1 * clamp(1.5rem, 4vw, 2.5rem) - 4px);
  top: 0.35rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.timeline__year {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 0.35rem;
  display: block;
}
.timeline__item h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.timeline__item p { color: var(--ink-soft); font-size: 0.96rem; }

.history-copy { max-width: 720px; margin: 0 auto; }
.history-copy p { color: var(--ink-soft); }
.history-copy p + p { margin-top: 1.25rem; }
.history-copy p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  float: left;
  line-height: 0.8;
  padding: 0.1rem 0.35rem 0 0;
  color: var(--ink);
}

/* ==========================================================================
   Amenities (domaine) grid
   ========================================================================== */

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}
@media (max-width: 780px) {
  .amenity-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
.amenity-card__figure {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 1rem;
}
.amenity-card__figure img { width: 100%; height: 100%; object-fit: cover; }
.amenity-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.amenity-card p { color: var(--ink-soft); font-size: 0.92rem; }

/* ==========================================================================
   Gallery page
   ========================================================================== */

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.gallery-filters button {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s ease;
}
.gallery-filters button:hover { border-color: var(--ink); color: var(--ink); }
.gallery-filters button[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }
}
.gallery-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
}
.gallery-grid a.g-tall { aspect-ratio: 1 / 1.35; grid-row: span 1; }
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}
.gallery-grid a:hover img { transform: scale(1.06); }
.gallery-grid a.is-hidden { display: none; }

/* ==========================================================================
   Lightbox
   ========================================================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 13, 11, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__figure { max-width: min(92vw, 1400px); max-height: 86vh; position: relative; }
.lightbox__figure img {
  max-width: 100%;
  max-height: 86vh;
  width: auto;
  height: auto;
  margin: 0 auto;
}
.lightbox__caption {
  text-align: center;
  color: rgba(250,248,244,0.8);
  font-size: 0.85rem;
  margin-top: 0.9rem;
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: transparent;
  border: none;
  color: var(--bg);
  cursor: pointer;
  padding: 0.75rem;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { opacity: 1; }
.lightbox__close { top: 0.5rem; right: 0.5rem; }
.lightbox__prev { left: -0.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: -0.5rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 700px) {
  .lightbox__prev { left: 0.25rem; }
  .lightbox__next { right: 0.25rem; }
}
.lightbox__close svg, .lightbox__prev svg, .lightbox__next svg { width: 28px; height: 28px; display: block; }

/* ==========================================================================
   Pricing table (contact / tarifs)
   ========================================================================== */

.rates {
  width: 100%;
  border-collapse: collapse;
}
.rates th, .rates td {
  text-align: left;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}
.rates thead th {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.rates tbody td:first-child { font-family: var(--font-display); font-size: 1.05rem; }
.rates tbody td:last-child { text-align: right; font-weight: 600; white-space: nowrap; }
.rates-note {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.rates-note li { padding: 0.3rem 0; position: relative; padding-left: 1.1rem; }
.rates-note li::before { content: '—'; position: absolute; left: 0; color: var(--ink-faint); }

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-block + .contact-block { margin-top: 2.25rem; }
.contact-block h3 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); font-family: var(--font-body); font-weight: 700; margin-bottom: 0.6rem; }
.contact-block p, .contact-block a.contact-value { font-size: 1.15rem; font-family: var(--font-display); }
.contact-block a.contact-value:hover { color: var(--accent); }

.map-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  filter: grayscale(0.35) contrast(1.05);
}

.notice {
  border: 1px dashed var(--line);
  background: var(--bg-alt);
  padding: 1.25rem 1.5rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.notice strong { color: var(--ink); }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  position: relative;
  color: var(--bg);
  text-align: center;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  overflow: hidden;
}
.cta-band__media { position: absolute; inset: 0; z-index: 0; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18, 16, 14, 0.62);
}
.cta-band__content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.cta-band p { margin-top: 1rem; color: rgba(250,248,244,0.9); }
.cta-band__actions { margin-top: 2rem; display: flex; justify-content: center; flex-wrap: wrap; gap: 0.9rem; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--ink);
  color: rgba(250, 248, 244, 0.72);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.75rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 248, 244, 0.14);
}
@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.footer-brand .brand__word .habitation { color: rgba(250,248,244,0.6); }
.footer-brand .brand__word .getz { color: var(--bg); }
.footer-brand p { margin-top: 1rem; max-width: 26em; font-size: 0.92rem; color: rgba(250,248,244,0.62); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.85);
  margin-bottom: 1rem;
}
.footer-col li { padding: 0.35rem 0; }
.footer-col a { font-size: 0.92rem; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--bg); }
.footer-bottom {
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(250, 248, 244, 0.5);
}
.footer-bottom a:hover { color: var(--bg); }

/* ==========================================================================
   Misc
   ========================================================================== */

.mark-divider {
  display: block;
  width: 34px;
  height: auto;
  margin: 0 auto clamp(1.5rem, 3vw, 2.25rem);
  opacity: 0.85;
}

.page-hero-fig {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}
.page-hero-fig img { width: 100%; height: 100%; object-fit: cover; }

::selection { background: var(--accent); color: var(--bg); }
