/* ==========================================================================
   DVM APARTMENTS — styles.css
   Brand: refined luxury minimalism · navy + satin gold + soft white
   Type:  Playfair Display (display) + Inter (body)
   Author: DVM brand system · 2026
   ========================================================================== */

/* ---------- 1. Reset & base ---------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, select, textarea { outline: none; }

/* ---------- 2. Design tokens --------------------------------------------- */
:root {
  --navy:        #0F172A;
  --navy-soft:   #1C2942;
  --gold:        #D97706;
  --gold-soft:   #C8902F;
  --white:       #FFFFFF;
  --soft:        #F8FAFC;
  --muted:       #64748B;
  --border:      #E2E8F0;

  --container:   1240px;
  --section-y:   clamp(4rem, 7vw, 7rem);

  --t-base:      .35s cubic-bezier(.2,.6,.2,1);
  --t-slow:      .8s  cubic-bezier(.2,.6,.2,1);
}

/* ---------- 3. Base typography ------------------------------------------- */
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--navy); color: #fff; }

.display { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-weight: 700; letter-spacing: -.01em; }

h1, h2, h3, h4 { line-height: 1.15; }
p { color: inherit; }

/* ---------- 4. Layout ---------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
section { position: relative; }
.section-pad { padding-block: var(--section-y); }

/* ---------- 5. Reusable atoms -------------------------------------------- */
.label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.rule {
  display: block;
  width: 54px;
  height: 2px;
  background: var(--gold);
}
.muted { color: var(--muted); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 1rem 1.6rem;
  border: 1px solid transparent;
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base), transform var(--t-base);
  white-space: nowrap;
  cursor: pointer;
}
.btn .ico-arr { transition: transform var(--t-base); }
.btn:hover .ico-arr { transform: translateX(5px); }

.btn-primary  { background: var(--navy); color: #fff; }
.btn-primary:hover  { background: var(--navy-soft); }

.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: #fff; }

.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-soft); }

.btn-block { width: 100%; justify-content: center; }

/* "underlined" gold link with arrow */
.ulink {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.ulink:hover { border-bottom-color: var(--gold); }
.ulink .ico-arr { transition: transform var(--t-base); }
.ulink:hover .ico-arr { transform: translateX(5px); }

/* ---------- 6b. Language switcher --------------------------------------- */
.lang-switch {
  display: none; /* hidden on mobile by default (shown in nav-mobile or by media query) */
  align-items: center;
  gap: 2px;
  padding: 6px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.5);
}
.lang-switch .lang-opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  padding: 4px 8px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
  border-radius: 1px;
  transition: color var(--t-base), background var(--t-base);
}
.lang-switch .lang-opt:hover { color: var(--navy); }
.lang-switch .lang-opt.is-active {
  color: #fff;
  background: var(--gold);
}
.lang-switch-mobile {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: .25rem;
}

/* ---------- 6. Header / Navbar (continued) ------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base), background var(--t-base);
}
.site-header.scrolled { border-bottom-color: var(--border); background: rgba(255,255,255,.96); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: none; gap: 38px; align-items: center; }
.nav-link {
  position: relative;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding-bottom: 4px;
  color: var(--navy);
  transition: color var(--t-base);
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width var(--t-base);
}
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }
.nav-link.is-active { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-toggle {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.nav-toggle .ico-close { display: none; }
.nav-toggle[aria-expanded="true"] .ico-open { display: none; }
.nav-toggle[aria-expanded="true"] .ico-close { display: block; }

.nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
}
.nav-mobile.is-open { display: block; }
.nav-mobile a {
  display: block;
  padding: .85rem 0;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nav-mobile .btn { margin-top: .75rem; }

.btn-bookhdr { display: none; }

/* ---------- 7. Hero ------------------------------------------------------ */
.hero { background: var(--soft); }
.hero-grid {
  display: grid;
  gap: 3rem;
  padding-block: 4rem;
  align-items: center;
}
.hero-text { position: relative; z-index: 2; }
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.04;
}
.hero-rule { margin-block: 28px; }
.hero-lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 440px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.25rem; }
.hero-image { position: relative; }
.hero-image .frame { aspect-ratio: 4 / 3; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image .offset {
  position: absolute; inset: 0;
  border: 1px solid rgba(217, 119, 6, .35);
  transform: translate(18px, 18px);
  z-index: -1;
  display: none;
}
.hero-lines {
  position: absolute;
  left: -38px; top: -28px;
  width: 130px; height: 280px;
  display: none;
  z-index: 3;
  animation: floatLine 9s ease-in-out infinite;
}

/* ---------- 8. Benefits -------------------------------------------------- */
.benefits { background: var(--navy); color: #fff; }
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  padding-block: 3.5rem;
}
.benefit {
  padding: 1.5rem .5rem;
  text-align: center;
}
.benefit-ic {
  color: var(--gold);
  margin-bottom: 1.1rem;
  display: inline-flex;
  transition: transform var(--t-base);
}
.benefit:hover .benefit-ic { transform: translateY(-4px); }
.benefit-title {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.benefit-desc {
  color: rgba(255, 255, 255, .62);
  font-size: .92rem;
  line-height: 1.65;
  max-width: 230px;
  margin-inline: auto;
}

/* ---------- 9. Apartments ------------------------------------------------ */
.apt-head {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
.apt-head-left { max-width: 360px; }
.apt-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-top: 1rem;
}
.apt-sub { color: var(--muted); margin-top: 1.1rem; line-height: 1.7; }
.apt-cta { margin-top: 1.5rem; }

.apt-arrows { display: flex; gap: .75rem; }
.arrow-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-base), color var(--t-base);
}
.arrow-btn:hover { background: var(--gold); color: #fff; }
.arrow-btn[disabled] { opacity: .35; cursor: not-allowed; }
.arrow-btn .ico-arr.reverse { transform: rotate(180deg); }
.arrow-btn:hover .ico-arr { transform: none; }
.arrow-btn:hover .ico-arr.reverse { transform: rotate(180deg); }

.apt-scroll {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  padding-bottom: .5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.apt-scroll::-webkit-scrollbar { display: none; }

.apt-card {
  flex: 0 0 84%;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--border);
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.apt-card:hover {
  border-color: rgba(217, 119, 6, .45);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -28px rgba(15, 23, 42, .28);
}
.apt-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.apt-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s cubic-bezier(.2, .6, .2, 1);
}
.apt-card:hover .apt-img img { transform: scale(1.07); }
.apt-heart {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--border);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base);
}
.apt-heart:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.apt-heart.is-liked { color: var(--gold); }
.apt-heart.is-liked svg path { fill: var(--gold); }

.apt-body { padding: 22px 24px 26px; }
.apt-name {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.apt-city {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--muted);
  font-size: .88rem;
  margin-top: .8rem;
}
.apt-city svg { color: var(--gold); }
.apt-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  gap: .75rem;
}
.apt-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  transition: color var(--t-base);
}
.apt-card-cta .ico-arr { transition: transform var(--t-base); }
.apt-card-cta:hover { color: var(--navy); }
.apt-card-cta:hover .ico-arr { transform: translateX(5px); }
.apt-price { font-size: .9rem; }
.apt-price .num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}
.apt-price .per { color: var(--muted); font-size: .8rem; }
.apt-meta { color: var(--muted); font-size: .74rem; letter-spacing: .04em; }

/* ---------- 10. Booking section (CiaoBooking widget) -------------------- */
.booking-widget-section {
  background: var(--soft);
  padding-block: var(--section-y);
}
.booking-head {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.booking-head .label { margin-bottom: 1rem; }
.booking-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0;
}
.booking-head .rule {
  margin: 1.4rem auto;
}
.booking-sub {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-top: 1rem;
}
.booking-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: clamp(1rem, 3vw, 2.5rem);
  max-width: 1080px;
  margin-inline: auto;
  position: relative;
}
.booking-card be-widget {
  display: block;
  width: 100%;
  min-height: 480px;            /* keep the section from collapsing while widget JS boots */
}
.booking-card be-widget:not(:defined) {
  /* gentle placeholder while the CiaoBooking script is still loading */
  background: linear-gradient(90deg, #f8fafc 0%, #f0f4f8 50%, #f8fafc 100%);
  background-size: 200% 100%;
  animation: dvmShimmer 1.6s ease-in-out infinite;
}
@keyframes dvmShimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* ---------- 11. Experience ----------------------------------------------- */
.exp-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.exp-image {
  position: relative;
}
.exp-image .frame { aspect-ratio: 4 / 5; overflow: hidden; }
.exp-image img { width: 100%; height: 100%; object-fit: cover; }
.exp-image .offset {
  position: absolute; inset: 0;
  border: 1px solid rgba(217, 119, 6, .4);
  transform: translate(-18px, 18px);
  z-index: -1;
  display: none;
}
.exp-title {
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  margin-top: 1.4rem;
}
.exp-lead {
  color: var(--muted);
  margin-top: 1.1rem;
  line-height: 1.7;
  max-width: 480px;
}
.exp-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}
.exp-item { display: flex; gap: 1.25rem; }
.exp-ic {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border: 1px solid var(--border);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.exp-item h3 {
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .55rem;
}
.exp-item p { color: var(--muted); font-size: .94rem; line-height: 1.65; max-width: 420px; }

/* ---------- 12. Final CTA ------------------------------------------------ */
.cta { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.cta-inner { padding-block: 4.5rem; position: relative; }
.cta-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  position: relative;
}
.cta-lines {
  display: none;
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 200px;
  opacity: .7;
  pointer-events: none;
}
.cta-title { font-size: clamp(2.1rem, 4vw, 3rem); }
.cta-lead { color: rgba(255, 255, 255, .66); margin-top: 1.2rem; line-height: 1.7; max-width: 460px; }

/* ---------- 13. Footer --------------------------------------------------- */
.site-footer { background: #fff; border-top: 1px solid var(--border); }
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-block: 4rem;
}
.foot-brand img { height: 46px; margin-bottom: 1.2rem; }
.foot-brand p { color: var(--muted); font-size: .9rem; line-height: 1.7; max-width: 250px; }
.foot-brand .foot-email {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 500;
  font-size: .9rem;
  transition: color var(--t-base);
}
.foot-brand .foot-email:hover { color: var(--gold-soft); }

.foot-col h4 {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.foot-col ul { display: flex; flex-direction: column; gap: .75rem; }
.foot-col a {
  color: var(--muted);
  font-size: .86rem;
  transition: color var(--t-base), padding-left var(--t-base);
}
.foot-col a:hover { color: var(--gold); padding-left: 4px; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-bottom .copy { color: var(--muted); font-size: .82rem; }
.socials { display: flex; align-items: center; gap: 1rem; }
.socials-label {
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.social {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base);
}
.social:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---------- 14b. Legal pages (Privacy / Terms) -------------------------- */
.legal-hero {
  background: var(--soft);
  padding-block: clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.legal-hero-inner { max-width: 900px; margin-inline: auto; }
.legal-hero .label { margin-bottom: 1.25rem; }
.legal-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 0;
  line-height: 1.1;
}
.legal-hero .rule { margin: 1.6rem auto 1.8rem; }
.legal-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.legal-updated {
  display: inline-block;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
.legal-updated strong { color: var(--gold); font-weight: 600; margin-left: .35rem; }
.legal-binding {
  display: block;
  max-width: 640px;
  margin: 1.4rem auto 0;
  padding: .9rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--muted);
  font-size: .9rem;
  font-style: italic;
  line-height: 1.55;
}

.legal { padding-block: var(--section-y); background: #fff; }
.legal-content { max-width: 900px; margin-inline: auto; }
.legal-content > section { margin-bottom: 3.5rem; scroll-margin-top: 100px; }
.legal-content > section:last-child { margin-bottom: 0; }

.legal-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -.005em;
  line-height: 1.25;
  display: flex;
  align-items: baseline;
  gap: .9rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}
.legal-num {
  color: var(--gold);
  font-weight: 500;
  min-width: 2.4rem;
  flex-shrink: 0;
}

.legal-content p {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.legal-content p:last-child { margin-bottom: 0; }
.legal-content strong { font-weight: 600; color: var(--navy); }

.legal-content ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 1.25rem;
}
.legal-content ul li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: .65rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--navy);
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .85rem;
  width: 10px;
  height: 1px;
  background: var(--gold);
}
.legal-content ul li:last-child { margin-bottom: 0; }

.legal-info {
  background: var(--soft);
  border-left: 2px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
}
.legal-info p { margin-bottom: .35rem; line-height: 1.6; font-size: .96rem; }
.legal-info p:last-child { margin-bottom: 0; }

.legal-content a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base);
}
.legal-content a:hover { border-bottom-color: var(--gold); }

/* Placeholder pills for client to fill in */
.ph {
  display: inline-block;
  background: rgba(217, 119, 6, .08);
  border-bottom: 1px dashed rgba(217, 119, 6, .55);
  padding: 0 .3rem;
  border-radius: 1px;
  font-style: normal;
  color: var(--navy);
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .legal-content > section { margin-bottom: 2.5rem; }
  .legal-h2 { gap: .55rem; font-size: 1.3rem; }
  .legal-num { min-width: 1.9rem; }
  .legal-content ul li { padding-left: 1.4rem; }
}

/* ---------- 15. Animations ---------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

@keyframes floatLine {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- 16. Responsive (sm 640+, lg 1024+, xl 1280+) ---------------- */
@media (min-width: 640px) {
  .container { padding-inline: 2rem; }
  .apt-card { flex-basis: 46%; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: row; text-align: left; }
  .nav-right .btn-bookhdr { display: inline-flex; }
}

@media (min-width: 1024px) {
  .container { padding-inline: 2.5rem; }

  /* nav */
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
  .nav-right .lang-switch:not(.lang-switch-mobile) { display: inline-flex; }

  /* hero */
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; padding-block: 6rem; }
  .hero-image .offset { display: block; }
  .hero-lines { display: block; }

  /* benefits — 4 columns w/ vertical dividers */
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
    padding-block: 4rem;
  }
  .benefit { text-align: left; padding: .5rem 2rem; }
  .benefit-desc { margin-inline: 0; max-width: none; }
  .benefit + .benefit { border-left: 1px solid rgba(255, 255, 255, .12); }

  /* apartments */
  .apt-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .apt-card { flex-basis: calc((100% - 3.5rem) / 3); }

  /* experience */
  .exp-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .exp-image .offset { display: block; }

  /* CTA — lines + content + button */
  .cta-inner { padding-left: 230px; padding-block: 5.5rem; }
  .cta-grid { grid-template-columns: 1fr auto; }
  .cta-lines { display: block; }

  /* footer */
  .footer-grid { grid-template-columns: 1.5fr repeat(4, 1fr); gap: 2rem; }
}

/* ---------- 17. Tiny helpers -------------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); border: 0;
}
