/* =====================================================================
   AZANDICA — Property Management & Leasing, Ottawa
   Design system + components. Editorial luxury: ivory, forest, brass.
   ===================================================================== */

/* ------------------------------------------------------------------ *
   1. Tokens
 * ------------------------------------------------------------------ */
:root {
  /* Brand palette — Modern slate & blue (Montserrat / Cardo) */
  --ivory:        #DCDDE1;   /* cool gray — page & light sections (spec bg) */
  --ivory-2:      #D3D5DA;   /* deeper gray — alternating bands */
  --ivory-3:      #C0C3CB;   /* additional gray — deepest surfaces / dividers (spec) */
  --paper:        #FFFFFF;   /* clean white card surface */

  --ink:          #2A2C36;   /* headings — deep slate */
  --ink-soft:     #373945;   /* body text — slate (spec text colour) */
  --muted:        #565965;   /* secondary text (AA ~5:1 on the gray bg) */

  --forest:       #2A2C36;   /* dark brand surface & solid dark buttons (slate) */
  --forest-deep:  #232530;
  --forest-night: #1B1D26;   /* deepest slate — hero base, footer */
  --emerald:      #3A7AF2;   /* accent blue (alias) */

  --brass:        #3A7AF2;   /* accent blue — CTAs/fills, focus, the glow (spec) */
  --brass-deep:   #2257C2;   /* deep blue — accent TEXT, links, eyebrows (AA on light) */
  --brass-soft:   #8FB4F8;   /* light blue — accents on dark surfaces */
  --ochre-deep:   #2F66D8;   /* blue hover/pressed */

  --sage:         #C0C3CB;
  --line:         rgba(55,57,69,.16);
  --line-strong:  rgba(55,57,69,.26);
  --line-light:   rgba(255,255,255,.16);

  --danger:       #C0392B;
  --success:      #2E7D55;

  /* Typography */
  --font-display: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body:    "Cardo", Georgia, "Times New Roman", serif;

  --fs-eyebrow:   .78rem;
  --fs-body:      1.0625rem;       /* 17px */
  --fs-small:     .9375rem;
  --fs-h1:        clamp(2.9rem, 7vw, 5.6rem);
  --fs-h2:        clamp(2.1rem, 4.6vw, 3.5rem);
  --fs-h3:        clamp(1.5rem, 2.6vw, 2.05rem);
  --fs-lead:      clamp(1.125rem, 1.7vw, 1.4rem);

  /* Spacing scale (8pt) */
  --sp-1: .25rem;  --sp-2: .5rem;   --sp-3: .75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;    --sp-7: 3rem;    --sp-8: 4rem;
  --sp-9: 6rem;    --sp-10: 8rem;

  --container: 1240px;
  --container-narrow: 880px;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --shadow-sm:  0 1px 2px rgba(21,32,27,.06), 0 2px 6px rgba(21,32,27,.05);
  --shadow:     0 6px 20px rgba(21,32,27,.08), 0 2px 6px rgba(21,32,27,.05);
  --shadow-lg:  0 24px 60px rgba(21,32,27,.16), 0 8px 24px rgba(21,32,27,.08);
  --shadow-brass: 0 14px 34px rgba(58,122,242,.30);

  --ease:       cubic-bezier(.22,.61,.36,1);
  --ease-out:   cubic-bezier(.16,1,.3,1);
  --t-fast:     .18s var(--ease);
  --t:          .32s var(--ease);

  --header-h: 80px;

  /* z-index scale */
  --z-base: 1; --z-raised: 10; --z-sticky: 40; --z-header: 100;
  --z-overlay: 800; --z-modal: 1000; --z-toast: 1200;
}

/* ------------------------------------------------------------------ *
   2. Reset & base
 * ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
input, textarea, select { font: inherit; color: inherit; }
ul[role="list"] { list-style: none; padding: 0; }

::selection { background: var(--brass-soft); color: var(--forest-deep); }

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ------------------------------------------------------------------ *
   3. Typography helpers
 * ------------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.01em;
}
.display { font-size: var(--fs-h1); font-weight: 600; line-height: .98; letter-spacing: -.02em; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { text-wrap: pretty; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass-deep);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--brass);
  display: inline-block;
}
.eyebrow--center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--brass);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--brass-soft); }
.eyebrow--light::before, .eyebrow--light::after { background: var(--brass-soft); }

.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--muted); font-weight: 400; }
.serif-accent { font-family: var(--font-body); font-style: italic; color: var(--brass-deep); font-weight: 400; }
.text-muted { color: var(--muted); }
.measure { max-width: 62ch; }
.balance { text-wrap: balance; }

/* Sans (Montserrat) for UI controls & labels; Cardo serif stays for reading copy */
.eyebrow, .btn, .text-link, .nav-link, .nav-phone, .brand-name, .brand-name small,
.form-field label, .filter-group label, .stepper__label, .chip, .listing__tag,
.listing__meta, .filter-count, .footer-col h4, .footer-bottom, .breadcrumb,
.price-card__badge, .stat-badge .label, .hero__stat .label, .stat-cell .label,
.newsletter input, .input, input, select, textarea, .review-item dt, .nav-toggle, .acc-trigger {
  font-family: var(--font-display);
}

/* ------------------------------------------------------------------ *
   4. Layout
 * ------------------------------------------------------------------ */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(4rem, 9vw, 8rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: var(--sp-4); }
.section-head p { margin-top: var(--sp-4); }

.grid { display: grid; gap: var(--sp-5); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) {
  .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
}

.bg-ivory-2 { background: var(--ivory-2); }
.bg-paper { background: var(--paper); }
.surface-dark {
  background:
    radial-gradient(85% 80% at 12% 112%, rgba(58,122,242,.26), transparent 56%),
    radial-gradient(120% 120% at 88% -12%, rgba(58,122,242,.12), transparent 55%),
    linear-gradient(160deg, var(--forest-deep), var(--forest-night));
  color: rgba(228,229,233,.86);
}
.surface-dark h1, .surface-dark h2, .surface-dark h3, .surface-dark h4 { color: #F4F5F7; }
.surface-dark .lead, .surface-dark .text-muted { color: rgba(228,229,233,.72); }

/* ------------------------------------------------------------------ *
   5. Buttons
 * ------------------------------------------------------------------ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: .95em 1.7em;
  min-height: 52px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: var(--radius-pill);
  transition: transform var(--t-fast), background var(--t), color var(--t), box-shadow var(--t), border-color var(--t);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--t); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--forest); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--forest-deep); box-shadow: var(--shadow-lg); }
.btn--primary:hover svg { transform: translateX(4px); }

.btn--accent { background: var(--brass); color: #fff; box-shadow: var(--shadow-brass); }
.btn--accent:hover { background: var(--ochre-deep); }
.btn--accent:hover svg { transform: translateX(4px); }

.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); }
.btn--ghost:hover { border-color: var(--forest); background: rgba(30,77,60,.05); }

.btn--light { background: #fff; color: var(--forest-deep); }
.btn--light:hover { background: var(--ivory); }

.btn--outline-light { background: transparent; color: #fff; border: 1.5px solid var(--line-light); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.btn--block { width: 100%; }
.btn--lg { min-height: 58px; padding: 1.05em 2.1em; font-size: 1rem; }

.text-link {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; color: var(--brass-deep);
  position: relative;
}
.text-link svg { width: 17px; height: 17px; transition: transform var(--t); }
.text-link::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 1.5px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform var(--t);
}
.text-link:hover::after { transform: scaleX(1); }
.text-link:hover svg { transform: translateX(4px); }
.text-link--brass { color: var(--brass-deep); }

/* ------------------------------------------------------------------ *
   6. Header / nav
 * ------------------------------------------------------------------ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background var(--t), box-shadow var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5); }

.header--transparent { background: transparent; color: #fff; }
.header--transparent .brand, .header--transparent .nav-link { color: #fff; }
.header--transparent .brand-mark { color: var(--brass-soft); }
.header--solid, .site-header.scrolled {
  background: rgba(247,244,237,.86);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(21,32,27,.05);
  color: var(--ink);
}
.site-header.scrolled .brand, .header--solid .brand { color: var(--ink); }
.site-header.scrolled .brand-mark, .header--solid .brand-mark { color: var(--brass-deep); }
.site-header.scrolled .nav-link, .header--solid .nav-link { color: var(--ink-soft); }

.brand { display: inline-flex; align-items: center; gap: .65rem; font-family: var(--font-display); }
.brand-mark { width: 38px; height: 38px; color: var(--brass-deep); flex: none; transition: color var(--t); }
.brand-name { font-size: 1.5rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; line-height: 1; }
.brand-name small { display: block; font-family: var(--font-body); font-size: .56rem; letter-spacing: .34em; font-weight: 500; opacity: .7; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.4rem); }
.nav-list { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); list-style: none; }
.nav-link {
  position: relative; font-size: .95rem; font-weight: 500; padding: .4rem 0;
  transition: color var(--t);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--brass); transform: scaleX(0); transform-origin: left; transition: transform var(--t);
}
.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); }
.nav-link[aria-current="page"] { color: var(--brass-deep); }
.header--transparent .nav-link[aria-current="page"] { color: #fff; }

.nav-cta { display: flex; align-items: center; gap: var(--sp-4); }
.nav-phone { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .95rem; }
.nav-phone svg { width: 17px; height: 17px; color: var(--brass-deep); }

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: var(--radius-sm);
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 24px; height: 2px; background: currentColor; border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1000px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 380px);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0; padding: calc(var(--header-h) + 1.5rem) 2rem 2rem;
    background: var(--ivory); color: var(--ink);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform var(--t);
    overflow-y: auto;
  }
  .nav-open .nav { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav-list li { border-bottom: 1px solid var(--line); }
  .nav-link { display: block; padding: 1.1rem 0; font-size: 1.2rem; font-family: var(--font-display); color: var(--ink) !important; }
  .nav-link::after { display: none; }
  .nav-cta { flex-direction: column; align-items: stretch; gap: var(--sp-3); margin-top: var(--sp-6); }
  .nav-phone { color: var(--ink) !important; padding: .5rem 0; }
  .header--transparent .nav-link, .site-header.scrolled .nav { color: var(--ink); }
}
.nav-scrim {
  position: fixed; inset: 0; background: rgba(14,40,32,.5); z-index: 90;
  opacity: 0; visibility: hidden; transition: opacity var(--t), visibility var(--t);
}
.nav-open .nav-scrim { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

/* ------------------------------------------------------------------ *
   7. Hero
 * ------------------------------------------------------------------ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  padding-top: calc(var(--header-h) + 2rem); padding-bottom: clamp(3rem, 6vw, 5rem);
  color: #fff; overflow: hidden;
  background: var(--forest-night);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(58% 54% at 15% 88%, rgba(58,122,242,.32), transparent 62%),
    linear-gradient(180deg, rgba(27,29,38,.58) 0%, rgba(27,29,38,.28) 42%, rgba(20,22,30,.88) 100%),
    linear-gradient(90deg, rgba(20,22,30,.78), rgba(20,22,30,.16) 72%);
}
.hero .container { position: relative; z-index: 1; width: min(100% - 2.5rem, var(--container)); }
.hero__inner { max-width: 940px; }
.hero h1 { color: #fff; margin: var(--sp-5) 0 var(--sp-5); }
.hero__lead { font-size: var(--fs-lead); color: rgba(255,255,255,.82); max-width: 56ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); margin-top: var(--sp-7); }
.hero__stats {
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 5vw, 3.5rem);
  margin-top: clamp(2.5rem, 6vw, 4rem); padding-top: var(--sp-6);
  border-top: 1px solid var(--line-light);
}
.hero__stat .num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 600; line-height: 1; color: #fff; }
.hero__stat .num span { color: var(--brass-soft); }
.hero__stat .label { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: .4rem; letter-spacing: .02em; }
.scroll-cue {
  position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%);
  z-index: 1; display: grid; place-items: center; gap: .5rem;
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.7);
}
.scroll-cue__line { width: 1px; height: 46px; background: linear-gradient(var(--brass-soft), transparent); position: relative; overflow: hidden; }
.scroll-cue__line::after { content:""; position:absolute; top:-50%; left:0; width:100%; height:50%; background: var(--brass-soft); animation: scrollcue 2.2s var(--ease) infinite; }
@keyframes scrollcue { 0%{transform:translateY(-100%)} 60%,100%{transform:translateY(300%)} }
@media (max-width: 600px) { .scroll-cue { display: none; } }

.page-hero {
  position: relative; padding-top: calc(var(--header-h) + clamp(3rem, 8vw, 6rem));
  padding-bottom: clamp(3rem, 7vw, 5.5rem); color: #fff; overflow: hidden;
  background: var(--forest-night);
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.page-hero__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(14,40,32,.65), rgba(14,40,32,.9)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 4.4rem); margin: var(--sp-5) 0 var(--sp-4); max-width: 16ch; }
.page-hero p { color: rgba(255,255,255,.78); max-width: 60ch; font-size: var(--fs-lead); }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .85rem; color: rgba(255,255,255,.62); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: var(--brass-soft); }

/* ------------------------------------------------------------------ *
   8. Cards & feature blocks
 * ------------------------------------------------------------------ */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.feature {
  padding: clamp(1.6rem, 3vw, 2.4rem); background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  height: 100%;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature__icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(30,77,60,.1), rgba(176,137,79,.14));
  color: var(--forest); margin-bottom: var(--sp-5);
}
.feature__icon svg { width: 26px; height: 26px; stroke-width: 1.6; }
.feature h3 { font-size: 1.4rem; margin-bottom: var(--sp-3); }
.feature p { color: var(--muted); font-size: var(--fs-small); }
.surface-dark .feature { background: rgba(255,255,255,.04); border-color: var(--line-light); }
.surface-dark .feature p { color: rgba(255,255,255,.68); }
.surface-dark .feature__icon { background: rgba(176,137,79,.16); color: var(--brass-soft); }

/* number-led list */
.steps { counter-reset: step; display: grid; gap: var(--sp-6); }
.step { display: grid; grid-template-columns: auto 1fr; gap: var(--sp-5); align-items: start; }
.step__num {
  counter-increment: step; width: 58px; height: 58px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: var(--brass-deep); border: 1.5px solid var(--brass); background: rgba(176,137,79,.08);
}
.step__num::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.5rem; margin-bottom: var(--sp-2); }
.step p { color: var(--muted); }

/* split / media */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--narrow-media { grid-template-columns: 1.05fr .95fr; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.media-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(150deg, var(--ivory-2), var(--sage)); box-shadow: var(--shadow-lg);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame--tall { aspect-ratio: 4/5; }
.media-frame--wide { aspect-ratio: 4/3; }

.stat-badge {
  position: absolute; background: rgba(247,244,237,.92); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-radius: var(--radius); padding: 1rem 1.3rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .9rem;
}
.stat-badge .num { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--forest); line-height: 1; }
.stat-badge .label { font-size: .76rem; color: var(--muted); line-height: 1.3; }
.stat-badge svg { width: 30px; height: 30px; color: var(--brass-deep); }

/* ------------------------------------------------------------------ *
   9. Stats band
 * ------------------------------------------------------------------ */
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-5); }
@media (max-width: 820px){ .stat-grid { grid-template-columns: repeat(2,1fr); } }
.stat-cell { text-align: center; padding: var(--sp-4); }
.stat-cell .num { font-family: var(--font-display); font-size: clamp(2.4rem,5vw,3.6rem); font-weight: 600; color: var(--forest); line-height: 1; }
.surface-dark .stat-cell .num { color: #fff; }
.stat-cell .num span { color: var(--brass-deep); }
.surface-dark .stat-cell .num span { color: var(--brass-soft); }
.stat-cell .label { margin-top: var(--sp-2); font-size: .9rem; color: var(--muted); letter-spacing: .02em; }
.surface-dark .stat-cell .label { color: rgba(255,255,255,.66); }

/* ------------------------------------------------------------------ *
   10. Property cards
 * ------------------------------------------------------------------ */
.listing {
  display: flex; flex-direction: column; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.listing:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.listing__media { position: relative; aspect-ratio: 3/2; overflow: hidden; background: linear-gradient(150deg, var(--ivory-2), var(--sage)); }
.listing__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.listing:hover .listing__media img { transform: scale(1.06); }
.listing__tag {
  position: absolute; top: 1rem; left: 1rem; display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(247,244,237,.94); color: var(--forest-deep); font-size: .74rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: .4rem .75rem; border-radius: var(--radius-pill);
}
.listing__tag--avail { background: var(--forest); color: #fff; }
.listing__tag--soon { background: var(--brass); color: #fff; }
.listing__fav {
  position: absolute; top: 1rem; right: 1rem; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(247,244,237,.92); display: grid; place-items: center; color: var(--forest-deep);
  transition: background var(--t), color var(--t), transform var(--t);
}
.listing__fav:hover { background: #fff; transform: scale(1.08); }
.listing__fav svg { width: 18px; height: 18px; }
.listing__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .65rem; flex: 1; }
.listing__price { font-family: var(--font-display); font-size: 1.85rem; font-weight: 600; color: var(--brass-deep); line-height: 1; }
.listing__price span { font-family: var(--font-body); font-size: .85rem; font-weight: 500; color: var(--muted); }
.listing__title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--ink); }
.listing__loc { display: flex; align-items: center; gap: .4rem; font-size: .9rem; color: var(--muted); }
.listing__loc svg { width: 15px; height: 15px; color: var(--brass-deep); flex: none; }
.listing__meta { display: flex; gap: 1.1rem; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); font-size: .85rem; color: var(--ink-soft); }
.listing__meta span { display: inline-flex; align-items: center; gap: .4rem; }
.listing__meta svg { width: 17px; height: 17px; color: var(--muted); }

/* Filter bar */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--sp-4); box-shadow: var(--shadow-sm); margin-bottom: var(--sp-7);
}
.filter-group { display: flex; flex-direction: column; gap: .3rem; flex: 1 1 160px; }
.filter-group label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.select-wrap { position: relative; }
.select-wrap::after { content:""; position:absolute; right:14px; top:50%; width:8px; height:8px; border-right:2px solid var(--muted); border-bottom:2px solid var(--muted); transform: translateY(-65%) rotate(45deg); pointer-events:none; }
.field, .select-wrap select {
  width: 100%; height: 50px; padding: 0 1rem; background: var(--ivory); border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); transition: border-color var(--t), box-shadow var(--t); -webkit-appearance: none; appearance: none;
}
.select-wrap select { padding-right: 2.2rem; }
.field:focus, .select-wrap select:focus { outline: none; border-color: var(--brass-deep); box-shadow: 0 0 0 4px rgba(58,122,242,.20); }
.filter-meta { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.filter-count { font-size: .95rem; color: var(--muted); }
.filter-count b { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); }
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  display: inline-flex; align-items: center; gap: .4rem; padding: .5rem 1rem; border-radius: var(--radius-pill);
  border: 1.5px solid var(--line-strong); font-size: .85rem; font-weight: 600; color: var(--ink-soft);
  transition: all var(--t);
}
.chip:hover { border-color: var(--forest); }
.chip[aria-pressed="true"] { background: var(--forest); color: #fff; border-color: var(--forest); }
.empty-state { text-align: center; padding: var(--sp-9) var(--sp-4); color: var(--muted); }
.empty-state svg { width: 48px; height: 48px; color: var(--brass); margin: 0 auto var(--sp-4); }

/* ------------------------------------------------------------------ *
   11. Neighborhoods
 * ------------------------------------------------------------------ */
.hood {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 360px;
  display: flex; align-items: flex-end; color: #fff; isolation: isolate;
}
.hood img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease-out); }
.hood::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(14,40,32,.05) 30%, rgba(14,40,32,.85)); }
.hood:hover img { transform: scale(1.07); }
.hood__body { padding: clamp(1.4rem, 3vw, 2rem); width: 100%; }
.hood__name { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: #fff; }
.hood__meta { display: flex; gap: 1.2rem; font-size: .85rem; color: rgba(255,255,255,.8); margin-top: .4rem; }
.hood__meta b { color: var(--brass-soft); }
.hood--lg { min-height: 460px; }

/* ------------------------------------------------------------------ *
   12. Testimonials
 * ------------------------------------------------------------------ */
.quote-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem); height: 100%; display: flex; flex-direction: column; gap: var(--sp-5);
}
.quote-card__mark { font-family: var(--font-display); font-size: 4rem; line-height: .5; color: var(--brass); height: 28px; }
.quote-card p { font-family: var(--font-body); font-style: italic; font-size: 1.45rem; line-height: 1.45; color: var(--ink); font-weight: 400; }
.quote-card .stars { display: flex; gap: 3px; color: var(--brass); }
.quote-card .stars svg { width: 18px; height: 18px; }
.quote-author { display: flex; align-items: center; gap: .9rem; margin-top: auto; }
.quote-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.quote-author .name { font-weight: 700; color: var(--ink); font-size: .98rem; }
.quote-author .role { font-size: .84rem; color: var(--muted); }

/* logos / trust */
.trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.5rem, 5vw, 3.5rem); opacity: .85; }
.trust-row span { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; letter-spacing: .04em; color: var(--muted); }

/* ------------------------------------------------------------------ *
   13. CTA band
 * ------------------------------------------------------------------ */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-xl); padding: clamp(2.5rem, 6vw, 5rem); text-align: center; }
.cta-band h2 { color: #fff; max-width: 18ch; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,.76); max-width: 52ch; margin: var(--sp-4) auto var(--sp-7); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: center; }
.cta-band__deco { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(176,137,79,.3), transparent 70%); filter: blur(10px); }

/* ------------------------------------------------------------------ *
   14. Forms
 * ------------------------------------------------------------------ */
.form { display: grid; gap: var(--sp-5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
@media (max-width: 600px){ .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: .45rem; }
.form-field label { font-size: .82rem; font-weight: 600; letter-spacing: .02em; color: var(--ink); }
.form-field label .req { color: var(--brass-deep); }
.form-field .hint { font-size: .8rem; color: var(--muted); }
.input, textarea.input, select.input {
  width: 100%; min-height: 54px; padding: .85rem 1rem; background: var(--paper);
  border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  transition: border-color var(--t), box-shadow var(--t); -webkit-appearance: none; appearance: none;
}
textarea.input { min-height: 140px; resize: vertical; line-height: 1.6; }
.input::placeholder { color: #9aa6a0; }
.input:focus { outline: none; border-color: var(--brass-deep); box-shadow: 0 0 0 4px rgba(58,122,242,.22); }
.input[aria-invalid="true"] { border-color: var(--danger); }
.field-error { font-size: .82rem; color: var(--danger); display: none; align-items: center; gap: .35rem; }
.field-error svg { width: 15px; height: 15px; }
.form-field.invalid .field-error { display: flex; }
.select-arrow { position: relative; }
.select-arrow::after { content:""; position:absolute; right:16px; top:28px; width:9px; height:9px; border-right:2px solid var(--muted); border-bottom:2px solid var(--muted); transform: rotate(45deg); pointer-events:none; }

.choice-grid { display: grid; gap: var(--sp-3); grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); }
.choice {
  position: relative; display: flex; align-items: center; gap: .7rem; padding: 1rem 1.1rem;
  border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); cursor: pointer; transition: all var(--t);
}
.choice:hover { border-color: var(--forest); }
.choice input { position: absolute; opacity: 0; }
.choice__box { width: 22px; height: 22px; border-radius: 6px; border: 1.5px solid var(--line-strong); flex:none; display:grid; place-items:center; transition: all var(--t); }
.choice input[type=radio] + .choice__box { border-radius: 50%; }
.choice__box svg { width: 14px; height: 14px; color:#fff; opacity:0; transform: scale(.5); transition: all var(--t); }
.choice:has(input:checked) { border-color: var(--forest); background: rgba(30,77,60,.05); }
.choice:has(input:checked) .choice__box { background: var(--forest); border-color: var(--forest); }
.choice:has(input:checked) .choice__box svg { opacity:1; transform: scale(1); }
.choice span { font-weight: 500; font-size: .95rem; }

.form-success {
  display: none; text-align: center; padding: clamp(2rem,5vw,3.5rem); background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.form-success.show { display: block; animation: pop .5s var(--ease-out) both; }
.form-success__icon { width: 76px; height: 76px; border-radius: 50%; background: rgba(46,107,82,.12); color: var(--success); display: grid; place-items: center; margin: 0 auto var(--sp-5); }
.form-success__icon svg { width: 38px; height: 38px; }
@keyframes pop { from { opacity:0; transform: scale(.9) } to { opacity:1; transform: scale(1) } }

/* Multi-step application */
.stepper { display: flex; align-items: center; gap: 0; margin-bottom: var(--sp-7); }
.stepper__item { display: flex; align-items: center; gap: .7rem; flex: 1; }
.stepper__item:last-child { flex: 0; }
.stepper__dot { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: grid; place-items: center; font-weight: 700; color: var(--muted); background: var(--paper); flex: none; transition: all var(--t); }
.stepper__label { font-size: .85rem; font-weight: 600; color: var(--muted); white-space: nowrap; }
.stepper__bar { flex: 1; height: 2px; background: var(--line-strong); margin: 0 .8rem; position: relative; }
.stepper__bar::after { content:""; position:absolute; inset:0; width:0; background: var(--forest); transition: width .4s var(--ease); }
.stepper__item.done .stepper__dot, .stepper__item.active .stepper__dot { border-color: var(--forest); background: var(--forest); color: #fff; }
.stepper__item.done .stepper__bar::after { width: 100%; }
.stepper__item.done .stepper__label, .stepper__item.active .stepper__label { color: var(--ink); }
@media (max-width: 700px){ .stepper__label { display: none; } }

.fstep { display: none; animation: fadeStep .4s var(--ease-out) both; }
.fstep.active { display: block; }
@keyframes fadeStep { from { opacity:0; transform: translateY(12px) } to { opacity:1; transform:none } }
.fstep h3 { font-size: 1.6rem; margin-bottom: var(--sp-2); }
.fstep__hint { color: var(--muted); margin-bottom: var(--sp-6); }
.form-nav { display: flex; justify-content: space-between; gap: var(--sp-4); margin-top: var(--sp-7); }
.review-list { display: grid; gap: var(--sp-3); }
.review-item { display: flex; justify-content: space-between; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.review-item dt { color: var(--muted); font-size: .9rem; }
.review-item dd { font-weight: 600; text-align: right; }

/* ------------------------------------------------------------------ *
   15. Accordion (FAQ)
 * ------------------------------------------------------------------ */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.5rem 0; text-align: left; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--ink);
}
.acc-icon { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: grid; place-items: center; flex: none; transition: all var(--t); position: relative; }
.acc-icon::before, .acc-icon::after { content:""; position:absolute; background: var(--forest); border-radius: 2px; transition: transform var(--t); }
.acc-icon::before { width: 14px; height: 2px; }
.acc-icon::after { width: 2px; height: 14px; }
.acc-item[open] .acc-icon { background: var(--forest); border-color: var(--forest); }
.acc-item[open] .acc-icon::before, .acc-item[open] .acc-icon::after { background: #fff; }
.acc-item[open] .acc-icon::after { transform: scaleY(0); }
.acc-panel { overflow: hidden; }
.acc-panel p { padding-bottom: 1.5rem; color: var(--muted); max-width: 70ch; }
details.acc-item > summary { list-style: none; cursor: pointer; }
details.acc-item > summary::-webkit-details-marker { display: none; }

/* pricing */
.price-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.8rem,3vw,2.6rem); height: 100%; display: flex; flex-direction: column; }
.price-card--featured { background: var(--forest-deep); color: #fff; border-color: var(--forest-deep); position: relative; box-shadow: var(--shadow-lg), 0 0 70px -12px rgba(58,122,242,.45); }
.price-card--featured h3, .price-card--featured .price-amt { color: #fff; }
.price-card__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--brass); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .4rem 1rem; border-radius: var(--radius-pill); }
.price-amt { font-family: var(--font-display); font-size: clamp(2.6rem,5vw,3.4rem); font-weight: 600; color: var(--forest); line-height: 1; margin: var(--sp-3) 0; }
.price-amt span { font-family: var(--font-body); font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-card--featured .price-amt span { color: rgba(255,255,255,.7); }
.feature-list { list-style: none; display: grid; gap: .8rem; margin: var(--sp-5) 0; }
.feature-list li { display: flex; gap: .65rem; align-items: flex-start; font-size: .95rem; }
.feature-list svg { width: 20px; height: 20px; color: var(--success); flex: none; margin-top: 2px; }
.price-card--featured .feature-list svg { color: var(--brass-soft); }
.price-card .btn { margin-top: auto; }

/* ------------------------------------------------------------------ *
   16. Footer
 * ------------------------------------------------------------------ */
.site-footer { background: var(--forest-night); color: rgba(255,255,255,.7); padding-top: clamp(3.5rem,7vw,5.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: var(--sp-7); padding-bottom: var(--sp-8); border-bottom: 1px solid var(--line-light); }
@media (max-width: 900px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); } }
@media (max-width: 540px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-mark { color: var(--brass-soft); }
.footer-about { margin: var(--sp-5) 0; max-width: 34ch; font-size: .95rem; }
.footer-social { display: flex; gap: .7rem; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-light); display: grid; place-items: center; color: #fff; transition: all var(--t); }
.footer-social a:hover { background: var(--brass); border-color: var(--brass); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: var(--sp-5); }
.footer-col ul { list-style: none; display: grid; gap: .8rem; }
.footer-col a { font-size: .95rem; transition: color var(--t); position: relative; }
.footer-col a:hover { color: var(--brass-soft); }
.footer-contact li { display: flex; gap: .7rem; align-items: flex-start; font-size: .95rem; margin-bottom: var(--sp-4); }
.footer-contact svg { width: 18px; height: 18px; color: var(--brass-soft); flex: none; margin-top: 2px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--sp-4); padding: var(--sp-5) 0; font-size: .85rem; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: var(--sp-5); flex-wrap: wrap; }

.newsletter { display: flex; gap: .5rem; margin-top: var(--sp-4); }
.newsletter input { flex: 1; height: 50px; padding: 0 1rem; background: rgba(255,255,255,.06); border: 1px solid var(--line-light); border-radius: var(--radius-sm); color: #fff; }
.newsletter input::placeholder { color: rgba(255,255,255,.5); }
.newsletter input:focus { outline: none; border-color: var(--brass-soft); }
.newsletter button { width: 50px; height: 50px; border-radius: var(--radius-sm); background: var(--brass); color: #fff; display: grid; place-items: center; flex: none; transition: background var(--t); }
.newsletter button:hover { background: var(--brass-deep); }

/* ------------------------------------------------------------------ *
   17. Reveal animations
 * ------------------------------------------------------------------ */
/* Reveal states only apply when JS is active (.js on <html>), so
   content is never hidden if scripts fail to load or are disabled. */
.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); will-change: opacity, transform; }
.js [data-reveal="fade"] { transform: none; }
.js [data-reveal="left"] { transform: translateX(-32px); }
.js [data-reveal="right"] { transform: translateX(32px); }
.js [data-reveal="scale"] { transform: scale(.94); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.img-failed img { opacity: 0; }
.img-failed::after { content: ""; }

/* toast */
.toast {
  position: fixed; left: 50%; bottom: 2rem; transform: translate(-50%, 120%);
  background: var(--forest-deep); color: #fff; padding: 1rem 1.5rem; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); z-index: var(--z-toast); display: flex; align-items: center; gap: .7rem;
  transition: transform var(--t); max-width: calc(100vw - 2rem);
}
.toast.show { transform: translate(-50%, 0); }
.toast svg { width: 20px; height: 20px; color: var(--brass-soft); flex: none; }

/* misc utilities */
.u-center { text-align: center; }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }
.flex-wrap-gap { display: flex; flex-wrap: wrap; gap: var(--sp-4); }
.divider-rule { height: 1px; background: var(--line); border: 0; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: var(--z-toast); background: var(--forest); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 var(--radius-sm) 0; }
.skip-link:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .listing:hover .listing__media img, .hood:hover img { transform: none; }
}

/* ------------------------------------------------------------------ *
   18. Listing detail page
 * ------------------------------------------------------------------ */
.breadcrumb--ink { color: var(--muted); margin-bottom: var(--sp-5); }
.breadcrumb--ink a:hover { color: var(--ink); }
.breadcrumb--ink span { color: var(--brass-deep); }

.l-gallery { display: grid; grid-template-columns: 1fr; gap: .6rem; margin-bottom: clamp(1.5rem,3vw,2.5rem); }
@media (min-width: 760px) { .l-gallery { grid-template-columns: 2.2fr 1fr; } }
.l-gallery__main { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/2; background: linear-gradient(150deg, var(--ivory-2), var(--sage)); }
.l-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.l-gallery__main .listing__tag { position: absolute; top: 1rem; left: 1rem; }
.l-thumbs { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; }
@media (min-width: 760px) { .l-thumbs { grid-template-columns: 1fr; grid-auto-rows: 1fr; } }
.l-thumb { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/2; background: var(--ivory-2); cursor: pointer; border: 0; padding: 0; }
.l-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t); }
.l-thumb:hover img { transform: scale(1.05); }
.l-thumb[aria-current="true"] { outline: 3px solid var(--brass); outline-offset: 2px; }

.l-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: var(--sp-4); padding-bottom: var(--sp-5); border-bottom: 1px solid var(--line); }
.l-head h1 { font-size: clamp(1.9rem, 4vw, 3rem); margin-top: var(--sp-3); }
.l-head__loc { display: inline-flex; align-items: center; gap: .4rem; color: var(--muted); font-size: 1rem; margin-top: .5rem; }
.l-head__loc svg { width: 17px; height: 17px; color: var(--brass-deep); flex: none; }
.l-price { text-align: right; }
.l-price .amt { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; color: var(--brass-deep); line-height: 1; }
.l-price .per { display: block; font-size: .9rem; color: var(--muted); margin-top: .3rem; }

.l-stats { display: flex; flex-wrap: wrap; gap: clamp(1.1rem, 4vw, 2.4rem); margin: var(--sp-6) 0 var(--sp-7); }
.l-stat { display: inline-flex; align-items: center; gap: .55rem; }
.l-stat svg { width: 22px; height: 22px; color: var(--brass-deep); flex: none; }
.l-stat b { font-weight: 600; color: var(--ink); }
.l-stat span { color: var(--muted); font-size: .9rem; }

.l-layout { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (min-width: 920px) { .l-layout { grid-template-columns: 1.7fr .95fr; } }
.l-section { margin-bottom: clamp(2rem, 4vw, 3rem); }
.l-section h2 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); margin-bottom: var(--sp-4); }
.l-section > p { color: var(--ink-soft); }
.l-highlights { list-style: none; display: grid; gap: .7rem; margin-top: var(--sp-5); }
.l-highlights li { display: flex; gap: .65rem; align-items: flex-start; }
.l-highlights svg { width: 20px; height: 20px; color: var(--brass); flex: none; margin-top: 3px; }

.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 540px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-item { background: var(--paper); padding: 1rem 1.2rem; }
.detail-item dt { font-family: var(--font-display); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.detail-item dd { margin-top: .3rem; font-size: .95rem; color: var(--ink); }

.l-aside { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.showing-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2rem); box-shadow: var(--shadow); }
.showing-card .price-line { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding-bottom: var(--sp-4); margin-bottom: var(--sp-5); border-bottom: 1px solid var(--line); }
.showing-card .price-line b { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--brass-deep); }
.showing-card h3 { font-size: 1.3rem; margin-bottom: var(--sp-2); }
.showing-card .sub { color: var(--muted); font-size: .9rem; margin-bottom: var(--sp-5); }
.showing-card .form { gap: var(--sp-4); }
.l-aside__call { text-align: center; font-size: .9rem; color: var(--muted); margin-top: var(--sp-4); }

.l-similar { margin-top: clamp(3rem, 6vw, 5rem); padding-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--line); }
