/* =====================================================
   CORBAIA RELAIS — main stylesheet
   Palette: oliva profondo, crema, terracotta dorata
   ===================================================== */

:root {
  --c-bg:        #F8F4EC;
  --c-bg-soft:   #F1EBDF;
  --c-bg-deep:   #ECE3D2;
  --c-ink:       #1E221B;
  --c-ink-soft:  #4A4D43;
  --c-muted:     #7A7A6F;
  --c-line:      #DCD3BE;

  --c-primary:   #3A4A37;       /* oliva profondo */
  --c-primary-d: #2A3826;
  --c-accent:    #B5703A;       /* terracotta dorata */
  --c-accent-d:  #92561D;

  --c-white:     #FFFFFF;

  --f-display:   "Cormorant Garamond", "Times New Roman", serif;
  --f-body:      "Inter", system-ui, -apple-system, sans-serif;

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 22px;

  --shadow-sm: 0 6px 22px rgba(30, 34, 27, 0.07);
  --shadow-md: 0 16px 40px rgba(30, 34, 27, 0.12);
  --shadow-lg: 0 30px 80px rgba(30, 34, 27, 0.18);

  --header-h: 84px;
}

/* ====== Base ====== */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--c-primary);
  text-decoration: none;
  transition: color .25s ease;
}
a:hover { color: var(--c-accent); }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--c-ink);
  margin: 0 0 .6em;
}

p { margin: 0 0 1em; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--c-primary); color: #fff;
  padding: .6rem 1rem; z-index: 9999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container--narrow { max-width: 820px; margin-left: auto; margin-right: auto; }

/* ====== Header / Nav ====== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--c-white);
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color .35s ease;
}
.site-brand__logo {
  width: 44px; height: 44px; object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter .35s ease;
}
.site-brand:hover { color: var(--c-white); }

.site-nav {
  display: flex; align-items: center; gap: 28px;
}
.site-nav__list {
  display: flex; gap: 26px;
  list-style: none; margin: 0; padding: 0;
}
.site-nav__link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color .25s ease;
}
.site-nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.site-nav__link:hover, .site-nav__link.is-active { color: var(--c-white); }
.site-nav__link:hover::after, .site-nav__link.is-active::after { transform: scaleX(1); }

.site-nav__lang {
  display: flex; gap: 6px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 18px;
}
.lang-pill {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 8px;
  border-radius: 4px;
  transition: color .25s, background .25s;
}
.lang-pill:hover { color: var(--c-white); background: rgba(255, 255, 255, 0.1); }
.lang-pill.is-active { color: var(--c-white); background: rgba(255, 255, 255, 0.18); }

.btn-book {
  background: var(--c-accent);
  color: var(--c-white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid var(--c-accent);
  transition: background .25s, border-color .25s, color .25s, transform .2s;
}
.btn-book:hover { background: var(--c-accent-d); border-color: var(--c-accent-d); color: var(--c-white); transform: translateY(-1px); }

/* Header solid (after scroll OR when not over hero) */
.site-header.is-scrolled,
body:not(.page-home):not(.page-relais):not(.page-case):not(.page-territorio):not(.page-servizi):not(.page-contatti) .site-header,
.site-header.is-solid {
  background: rgba(248, 244, 236, 0.96);
  backdrop-filter: saturate(160%) blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.site-header.is-scrolled .site-brand,
.site-header.is-solid .site-brand { color: var(--c-ink); }
.site-header.is-scrolled .site-brand__logo,
.site-header.is-solid .site-brand__logo { filter: none; }
.site-header.is-scrolled .site-nav__link,
.site-header.is-solid .site-nav__link { color: var(--c-ink-soft); }
.site-header.is-scrolled .site-nav__link:hover,
.site-header.is-scrolled .site-nav__link.is-active,
.site-header.is-solid .site-nav__link:hover,
.site-header.is-solid .site-nav__link.is-active { color: var(--c-primary); }
.site-header.is-scrolled .lang-pill,
.site-header.is-solid .lang-pill { color: var(--c-muted); }
.site-header.is-scrolled .lang-pill:hover,
.site-header.is-solid .lang-pill:hover { color: var(--c-ink); background: rgba(0, 0, 0, 0.05); }
.site-header.is-scrolled .lang-pill.is-active,
.site-header.is-solid .lang-pill.is-active { color: var(--c-white); background: var(--c-primary); }
.site-header.is-scrolled .site-nav__lang,
.site-header.is-solid .site-nav__lang { border-left-color: var(--c-line); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: none;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
  cursor: pointer; padding: 0;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--c-white); border-radius: 2px;
  transition: background .25s, transform .35s, opacity .25s;
}
.site-header.is-scrolled .nav-toggle span,
.site-header.is-solid .nav-toggle span { background: var(--c-ink); }

/* ====== Buttons ====== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-body); font-weight: 500;
  letter-spacing: 0.04em; font-size: 15px;
  padding: 14px 30px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .2s, box-shadow .25s;
  text-transform: none;
}
.btn-lg { padding: 16px 36px; font-size: 16px; }

.btn-primary {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}
.btn-primary:hover {
  background: var(--c-primary-d);
  border-color: var(--c-primary-d);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-ghost:hover {
  background: var(--c-white);
  color: var(--c-primary);
  border-color: var(--c-white);
  transform: translateY(-2px);
}

/* ====== Hero (homepage) ====== */
.hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--c-white);
  overflow: hidden;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 25, 18, 0.45) 0%, rgba(20, 25, 18, 0.15) 35%, rgba(20, 25, 18, 0.6) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  padding-top: var(--header-h);
  max-width: 880px;
}
.hero__title {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--c-white);
  margin-bottom: .5em;
}
.hero__subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 300;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.4em;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 32px; transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  z-index: 2;
}
.hero__scroll span {
  display: block; width: 3px; height: 8px; margin: 6px auto 0;
  background: var(--c-white);
  border-radius: 100px;
  animation: scroll-dot 1.8s infinite;
}
@keyframes scroll-dot {
  0%   { transform: translateY(0);  opacity: 1; }
  60%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0);  opacity: 0; }
}

/* ====== Page hero (interne) ====== */
.page-hero {
  position: relative;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  color: var(--c-white);
  display: flex;
  align-items: center;
}
.page-hero--compact { min-height: 56vh; }
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 25, 18, 0.55) 0%, rgba(20, 25, 18, 0.35) 60%, rgba(20, 25, 18, 0.55) 100%);
}
.page-hero__inner {
  position: relative; z-index: 2;
  padding-top: calc(var(--header-h) + 24px);
  padding-bottom: 24px;
  max-width: 820px;
}
.page-hero__title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--c-white);
  margin-bottom: .35em;
}
.page-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
}

/* ====== Sections ====== */
.section { padding: 110px 0; }
.section--alt { background: var(--c-bg-soft); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 18px;
  position: relative;
  padding-left: 38px;
}
.eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 28px; height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}
.eyebrow--light { color: rgba(255, 255, 255, 0.85); }

.section__title {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.12;
  margin-bottom: .7em;
}
.section__title--lg {
  font-size: clamp(2.3rem, 3.8vw, 3.4rem);
}
.section__body {
  color: var(--c-ink-soft);
  font-size: 1.05rem;
  margin-bottom: 1.6em;
}
.lead-text {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.4;
  color: var(--c-ink);
  font-weight: 400;
  font-style: italic;
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-primary);
  border-bottom: 1px solid var(--c-line);
  padding-bottom: 4px;
}
.link-arrow::after {
  content: "→";
  transition: transform .3s ease;
}
.link-arrow:hover { color: var(--c-accent); border-color: var(--c-accent); }
.link-arrow:hover::after { transform: translateX(6px); }

/* ====== Image cards ====== */
.image-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  position: relative;
  background: var(--c-bg-deep);
}
.image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2, .7, .2, 1);
}
.image-card--tall img { height: 600px; }
.image-card:hover img { transform: scale(1.04); }

/* ====== House cards (home grid) ====== */
.house-card {
  display: flex; flex-direction: column;
  height: 100%;
  background: var(--c-white);
  border-radius: var(--r-md);
  overflow: hidden;
  color: var(--c-ink);
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.house-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  color: var(--c-ink);
}
.house-card__media {
  display: block; aspect-ratio: 4 / 5; overflow: hidden;
}
.house-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s cubic-bezier(.2, .7, .2, 1);
}
.house-card:hover .house-card__media img { transform: scale(1.06); }
.house-card__body {
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 4px;
}
.house-card__title {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--c-ink);
}
.house-card__meta {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 600;
}

/* ====== Feature cards ====== */
.feature-card {
  background: var(--c-white);
  padding: 36px 30px;
  border-radius: var(--r-md);
  height: 100%;
  text-align: left;
  border: 1px solid var(--c-line);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.feature-card__icon {
  width: 40px; height: 40px;
  color: var(--c-accent);
  margin-bottom: 18px;
}
.feature-card__title {
  font-size: 1.4rem; font-weight: 500;
  margin-bottom: 12px;
}
.feature-card__body {
  color: var(--c-ink-soft);
  font-size: .98rem;
  margin: 0;
}

/* ====== Service cards ====== */
.service-card {
  background: var(--c-white);
  border-radius: var(--r-md);
  overflow: hidden;
  height: 100%;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-card__media { overflow: hidden; aspect-ratio: 4 / 3; }
.service-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s cubic-bezier(.2, .7, .2, 1);
}
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__body { padding: 26px 28px 32px; }
.service-card__title {
  font-size: 1.5rem; font-weight: 500;
  margin-bottom: .4em;
}
.service-card__text {
  color: var(--c-ink-soft);
  font-size: .98rem; margin: 0;
}

/* ====== Spec list ====== */
.spec-list {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 22px 30px;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 24px 0;
}
.spec-list li { display: flex; flex-direction: column; gap: 2px; }
.spec-list strong {
  font-family: var(--f-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--c-primary);
  line-height: 1;
}
.spec-list span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.note {
  color: var(--c-muted);
  font-size: .9rem;
  font-style: italic;
}

/* ====== Nearby grid ====== */
.nearby-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  border-top: 1px solid var(--c-line);
}
.nearby-item {
  display: flex; align-items: center; gap: 22px;
  padding: 28px 12px;
  border-bottom: 1px solid var(--c-line);
  border-right: 1px solid var(--c-line);
  transition: background .25s ease;
}
.nearby-item:hover { background: var(--c-bg-soft); }
.nearby-item:nth-child(3n) { border-right: none; }
.nearby-item__num {
  font-family: var(--f-display);
  font-size: 1.6rem;
  color: var(--c-accent);
  font-weight: 500;
  min-width: 36px;
}
.nearby-item__text {
  font-size: 1.05rem;
  color: var(--c-ink);
  font-weight: 400;
}

/* ====== CTA band ====== */
.cta-band {
  position: relative;
  padding: 140px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--c-white);
  text-align: center;
}
.cta-band__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 25, 18, 0.55), rgba(20, 25, 18, 0.7));
}
.cta-band__inner { position: relative; z-index: 2; }
.cta-band__title {
  font-size: clamp(2rem, 4vw, 3.6rem);
  color: var(--c-white);
  margin-bottom: .5em;
  max-width: 800px;
  margin-left: auto; margin-right: auto;
}
.cta-band__body {
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 2em;
  color: rgba(255, 255, 255, 0.92);
}

/* ====== Footer CTA ====== */
.footer-cta {
  background: var(--c-primary);
  color: var(--c-white);
  text-align: center;
  padding: 90px 0;
}
.footer-cta__eyebrow {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}
.footer-cta__title {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  color: var(--c-white);
  margin-bottom: 1.4em;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}

.footer-cta .btn-primary {
  background: var(--c-accent);
  border-color: var(--c-accent);
}
.footer-cta .btn-primary:hover {
  background: var(--c-accent-d);
  border-color: var(--c-accent-d);
}

/* ====== Site footer ====== */
.site-footer {
  background: #1A1F18;
  color: rgba(255, 255, 255, 0.65);
  padding: 70px 0 30px;
  font-size: .95rem;
}
.site-footer .site-brand,
.site-footer .site-brand--footer { color: var(--c-white); margin-bottom: 18px; }
.site-footer .site-brand__logo { filter: brightness(0) invert(1); }
.site-footer__heading {
  font-family: var(--f-display);
  color: var(--c-white);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.site-footer__addr {
  font-style: normal;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}
.site-footer a { color: rgba(255, 255, 255, 0.85); }
.site-footer a:hover { color: var(--c-accent); }
.site-footer hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 40px 0 20px;
}
.site-footer__bottom {
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
}
.site-footer__lang {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 14px;
}

/* ====== Contact form ====== */
.contact-info { padding: 8px 0; }
.contact-info__name {
  font-size: 2rem;
  margin-bottom: 24px;
}
.contact-info__addr { line-height: 1.7; }
.contact-info p strong {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-accent);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-form { padding: 36px; background: var(--c-white); border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.contact-form .form-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-form .form-control {
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  background: var(--c-bg);
  font-family: var(--f-body);
  font-size: 15px;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.contact-form .form-control:focus {
  border-color: var(--c-primary);
  background: var(--c-white);
  box-shadow: 0 0 0 3px rgba(58, 74, 55, 0.12);
  outline: none;
}
.contact-form .form-check-label { font-size: .95rem; color: var(--c-ink-soft); }
.contact-form .form-check-input:checked {
  background-color: var(--c-primary);
  border-color: var(--c-primary);
}
.alert-success { background: #e6f0e3; color: #284f24; border: 1px solid #b9d6b1; padding: .8rem 1rem; border-radius: var(--r-sm); }
.alert-danger  { background: #f8e6e0; color: #6a2b14; border: 1px solid #e6c2b3; padding: .8rem 1rem; border-radius: var(--r-sm); }

/* ====== Reveal ====== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease, transform 1s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--d, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ====== Responsive ====== */
@media (max-width: 991.98px) {
  .section { padding: 80px 0; }

  .nav-toggle { display: flex; order: 3; }
  .site-nav {
    position: fixed;
    top: 0; right: 0;
    width: min(360px, 90vw);
    height: 100vh;
    background: var(--c-bg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 110px 36px 40px;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.2, .7, .2, 1);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav__list {
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--c-line);
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  .site-nav__list li { border-top: 1px solid var(--c-line); }
  .site-nav__link {
    color: var(--c-ink) !important;
    display: block;
    padding: 16px 0;
    font-size: 16px;
  }
  .site-nav__link::after { display: none; }
  .site-nav__lang {
    border-left: none;
    padding-left: 0;
    margin-bottom: 24px;
  }
  .lang-pill {
    color: var(--c-muted) !important;
    background: var(--c-bg-soft) !important;
    padding: 8px 14px;
  }
  .lang-pill.is-active {
    color: var(--c-white) !important;
    background: var(--c-primary) !important;
  }
  .btn-book { align-self: flex-start; }

  .image-card img { height: 380px; }
  .image-card--tall img { height: 460px; }

  .nearby-item:nth-child(3n) { border-right: 1px solid var(--c-line); }
  .nearby-item:nth-child(2n) { border-right: none; }

  .cta-band { background-attachment: scroll; }
}

@media (max-width: 575.98px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .hero { min-height: 92vh; }
  .page-hero { min-height: 56vh; }
  .image-card img, .image-card--tall img { height: 280px; }
  .contact-form { padding: 22px; }
  .footer-cta { padding: 64px 0; }
  .nearby-item:nth-child(2n) { border-right: 1px solid var(--c-line); }
  .site-footer__bottom { flex-direction: column; }
}
