/* =============================================================
   240 Scarlett Rd · Suite 1302
   Pilarski Real Estate Group — Property Microsite
   ============================================================= */

:root {
  /* Palette — refined real-estate luxe */
  --ink:        #0e0e0e;
  --ink-soft:   #1a1a1a;
  --charcoal:   #2b2b2b;
  --graphite:   #4a4a4a;
  --stone:      #8c8a86;
  --bone:       #e7e3dc;
  --paper:      #f6f3ee;
  --white:      #ffffff;

  --accent:     #b08a55;   /* subtle warm brass accent */
  --accent-dk:  #8c6c40;

  /* Type */
  --serif: "Cormorant Garamond", "Adobe Caslon", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --max:    1440px;
  --gutter: clamp(20px, 4vw, 64px);
  --pad-y:  clamp(80px, 10vw, 160px);

  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  display: block;
  /* Style alt text when an image fails to load — so layout stays graceful */
  font-family: var(--sans);
  font-size: 11px;
  color: var(--stone);
  text-align: center;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
.display, .display-sm, .hero__title {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
}
.display    { font-size: clamp(38px, 5.4vw, 76px); }
.display-sm { font-size: clamp(30px, 3.6vw, 50px); }
.display em, .display-sm em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.display--light { color: var(--paper); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--graphite);
  margin: 0 0 18px;
  font-weight: 500;
}
.eyebrow--light { color: var(--bone); }

.lede {
  font-size: clamp(17px, 1.3vw, 19px);
  color: var(--charcoal);
  max-width: 56ch;
}

.link-underline {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity .2s ease;
}
.link-underline:hover { opacity: 0.6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn--solid-light { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--solid-light:hover { background: transparent; color: var(--white); }
.btn--ghost-light { color: var(--white); }
.btn--ghost-light:hover { background: var(--white); color: var(--ink); }
.btn--solid-dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--solid-dark:hover { background: transparent; color: var(--ink); }
.btn--ghost-dark { color: var(--ink); }
.btn--ghost-dark:hover { background: var(--ink); color: var(--white); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  transition: background-color .35s ease, box-shadow .35s ease, color .35s ease;
}
.site-header.is-scrolled {
  background: rgba(246, 243, 238, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.site-header__brand { display: flex; align-items: center; }
.brand-pair {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-pair--dark { display: none; }
.site-header.is-scrolled .brand-pair--light { display: none; }
.site-header.is-scrolled .brand-pair--dark { display: inline-flex; }
.brand-mark {
  height: 44px;
  width: auto;
  display: block;
}
.brand-wordmark {
  height: 26px;
  width: auto;
  display: block;
}
/* Invert the white brandmark to dark for use on light backgrounds */
.brand-mark--invert {
  filter: invert(1) brightness(0);
}
.brandmark--invert {
  filter: invert(1) brightness(0);
  opacity: 1;
}

.site-nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  justify-content: center;
  gap: 36px;
}
.site-nav a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  transition: opacity .2s ease;
}
.site-nav a:hover { opacity: 0.65; }
.site-header.is-scrolled .site-nav a { color: var(--ink); }

.site-header__cta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 12px 22px;
  transition: all .25s ease;
}
.site-header__cta:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.site-header.is-scrolled .site-header__cta {
  color: var(--ink);
  border-color: var(--ink);
}
.site-header.is-scrolled .site-header__cta:hover {
  background: var(--ink); color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  width: 40px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  margin: 6px 0;
  transition: all .3s ease;
}
.site-header.is-scrolled .nav-toggle span { background: var(--ink); }

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--white);
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.mobile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-drawer ul {
  list-style: none;
  padding: 0;
  text-align: center;
}
.mobile-drawer a {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  padding: 14px 0;
  letter-spacing: 0.02em;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--header-h) var(--gutter) 100px;
  color: var(--white);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__image {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.1) 35%, rgba(0,0,0,0.55) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.hero__title {
  font-size: clamp(46px, 7.4vw, 110px);
  font-weight: 300;
  margin: 14px 0 18px;
}
.hero__title-line { display: inline-block; }
.hero__title-divider {
  display: inline-block;
  margin: 0 18px;
  color: var(--accent);
  font-style: italic;
}
.hero__subtitle {
  font-size: clamp(13px, 1vw, 14px);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin: 0 0 50px;
  opacity: 0.9;
}
.hero__meta {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 5vw, 64px);
  margin-bottom: 50px;
}
.hero__meta div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__meta-value {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1;
}
.hero__meta-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.8;
}
.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -60px; left: 0;
  width: 1px;
  height: 60px;
  background: var(--accent);
  animation: scrollLine 2.4s infinite ease-in-out;
}
@keyframes scrollLine {
  0%   { top: -60px; }
  100% { top: 60px; }
}

/* ============================================================
   RESIDENCE / INTRO
   ============================================================ */
.residence {
  padding: var(--pad-y) var(--gutter);
  background: var(--paper);
}
.residence__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.residence__copy { max-width: 56ch; }
.residence__copy p { margin-bottom: 1em; color: var(--charcoal); }
.residence__signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--graphite);
}
.brandmark { height: 28px; width: auto; opacity: 0.85; }

.residence__visual {
  position: relative;
}
.residence__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.residence__price-card {
  position: absolute;
  bottom: -40px;
  right: -40px;
  background: var(--ink);
  color: var(--white);
  padding: 36px 44px;
  min-width: 280px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}
.residence__price-card .eyebrow {
  color: var(--bone);
  margin-bottom: 10px;
}
.residence__price {
  font-family: var(--serif);
  font-size: 44px;
  margin: 0;
  line-height: 1;
}
.residence__price span {
  font-size: 14px;
  font-family: var(--sans);
  font-weight: 300;
  opacity: 0.7;
  margin-left: 6px;
}
.residence__status {
  margin: 14px 0 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ============================================================
   FACTS BAND
   ============================================================ */
.facts {
  padding: 48px var(--gutter);
  background: var(--ink);
  color: var(--white);
}
.facts__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  text-align: center;
}
.facts__item {
  padding: 14px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.facts__item:last-child { border-right: 0; }
.facts__label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0 0 8px;
  opacity: 0.7;
}
.facts__value {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  margin: 0;
  font-weight: 400;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: var(--pad-y) var(--gutter);
  background: var(--paper);
}
.section-head {
  max-width: var(--max);
  margin: 0 auto 64px;
}
.section-head--center { text-align: center; }
.section-head__sub {
  margin: 24px auto 0;
  max-width: 60ch;
  color: var(--charcoal);
  font-size: clamp(15px, 1.1vw, 17px);
}

.gallery__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.gallery__cell {
  margin: 0;
  overflow: hidden;
  background: var(--bone);
}
.gallery__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.gallery__cell:hover img { transform: scale(1.04); }
.gallery__cell--tall { grid-row: span 2; }
.gallery__cell--wide { grid-column: span 2; }
.gallery__more {
  text-align: center;
  margin-top: 56px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ============================================================
   STORY (alternating feature rows)
   ============================================================ */
.story {
  padding: var(--pad-y) var(--gutter);
  background: var(--white);
}
.story__row {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding: 60px 0;
}
.story__row--reverse .story__visual { order: 2; }
.story__row--reverse .story__copy { order: 1; }
.story__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.story__copy { max-width: 50ch; padding: 24px; }
.story__copy p { color: var(--charcoal); margin-top: 18px; }

/* ============================================================
   FLOORPLAN
   ============================================================ */
.floorplan {
  padding: var(--pad-y) var(--gutter);
  background: var(--bone);
}
.floorplan__viewer {
  max-width: 980px;
  margin: 0 auto;
  background: var(--white);
  padding: clamp(20px, 4vw, 60px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}
.floorplan__viewer img {
  width: 100%;
  height: auto;
}
.floorplan__pdf {
  width: 100%;
  height: clamp(500px, 75vh, 880px);
  display: block;
}
.floorplan__fallback {
  text-align: center;
  margin: 24px 0 0;
  color: var(--graphite);
  font-size: 14px;
}
.floorplan__fallback a {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
}
.floorplan__actions {
  max-width: 980px;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities {
  padding: var(--pad-y) var(--gutter);
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
.amenities__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.amenities__lede {
  margin-top: 24px;
  color: var(--bone);
  font-size: 17px;
  max-width: 46ch;
}
.amenities__list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.amenities__list li {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-family: var(--serif);
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 300;
  position: relative;
  padding-left: 30px;
}
.amenities__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--accent);
}

/* ============================================================
   LOCATION
   ============================================================ */
.location {
  padding: var(--pad-y) var(--gutter);
  background: var(--paper);
}
.location__grid {
  max-width: var(--max);
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.location__card {
  background: var(--white);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--bone);
  transition: transform .3s ease, box-shadow .3s ease;
}
.location__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.location__time {
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1;
  margin: 0 0 12px;
  color: var(--ink);
}
.location__time span {
  font-size: 16px;
  margin-left: 4px;
  color: var(--accent);
  font-style: italic;
}
.location__label {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--graphite);
}

.location__map {
  max-width: var(--max);
  margin: 0 auto;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}
.location__map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(40%) contrast(0.96);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--pad-y) var(--gutter);
  background: var(--ink);
  color: var(--paper);
}
.contact__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
}
.contact__lede {
  color: var(--bone);
  font-size: 17px;
  max-width: 46ch;
  margin-bottom: 48px;
}
.contact__agent { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 36px; }
.contact__agent-name {
  font-family: var(--serif);
  font-size: 30px;
  margin: 0 0 10px;
}
.contact__agent-firm {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--bone);
  opacity: 0.7;
  margin: 0 0 30px;
}
.contact__details {
  list-style: none; padding: 0; margin: 0;
}
.contact__details li {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: center;
}
.contact__details span:first-child {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.6;
}
.contact__details a, .contact__details span:last-child {
  color: var(--paper);
  font-size: 15px;
}
.contact__details a:hover { color: var(--accent); }

.contact__form {
  background: var(--ink-soft);
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid rgba(255,255,255,0.06);
}
.contact__form label {
  display: block;
  margin-bottom: 22px;
}
.contact__form span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.7;
  margin-bottom: 8px;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 0;
  outline: none;
  transition: border-color .2s ease;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  border-bottom-color: var(--accent);
}
.contact__form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23e7e3dc' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 22px;
}
.contact__form select option { background: var(--ink); color: var(--paper); }
.contact__form textarea { resize: vertical; }
.contact__form .btn { margin-top: 12px; }
.form-thanks {
  margin-top: 18px;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink-soft);
  color: var(--bone);
  padding: 80px var(--gutter) 24px;
}
.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-footer__brand img { height: 40px; margin-bottom: 18px; }
.site-footer__brand p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--bone);
  margin: 0;
}
.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.5;
  margin: 0 0 14px;
}
.site-footer__columns p { font-size: 14px; line-height: 1.7; margin: 0 0 6px; }
.site-footer__columns a:hover { color: var(--accent); }
.site-footer__brokerage img { height: 56px; opacity: 0.85; }

.site-footer__base {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--stone);
}
.site-footer__base p { margin: 0; }

/* ============================================================
   ANIMATIONS — fade-in on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s ease, transform .9s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .site-nav, .site-header__cta { display: none; }
  .nav-toggle { display: block; }
  .site-header { grid-template-columns: auto 1fr auto; }
  .facts__grid { grid-template-columns: repeat(3, 1fr); }
  .facts__item:nth-child(3) { border-right: 0; }
  .residence__inner,
  .amenities__inner,
  .contact__inner { grid-template-columns: 1fr; }
  .residence__price-card { right: 20px; bottom: -30px; }
  .story__row,
  .story__row--reverse { grid-template-columns: 1fr; }
  .story__row--reverse .story__visual,
  .story__row--reverse .story__copy { order: initial; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery__cell--wide { grid-column: span 2; }
  .gallery__cell--tall { grid-row: span 1; }
  .location__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__columns { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero { padding-bottom: 60px; }
  .hero__title-divider { display: none; }
  .hero__title { font-size: 44px; line-height: 1.1; }
  .hero__title-line { display: block; }
  .hero__meta { gap: 18px; flex-wrap: wrap; }
  .facts__grid { grid-template-columns: repeat(2, 1fr); }
  .facts__item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 18px;}
  .facts__item:nth-last-child(-n+2) { border-bottom: 0; }
  .amenities__list { grid-template-columns: 1fr; }
  .location__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__cell--wide { grid-column: span 1; }
  .residence__price-card {
    position: relative; right: auto; bottom: auto;
    margin-top: -40px; margin-left: 20px;
  }
  .site-footer__columns { grid-template-columns: 1fr; }
  .site-footer__base { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .nav-toggle, .mobile-drawer,
  .hero__scroll, .contact__form, .location__map { display: none !important; }
  body { background: white; color: black; }
  section { page-break-inside: avoid; }
}
