/* ============================================================
   Kitsilano Realty — West-Coast Coastal demo
   Display: Big Shoulders Display | Body: Hanken Grotesk
   Palette: sky teal + warm sand + coral pop on sea-foam cream
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { line-height: 1.02; font-weight: 400; }

/* ---------- Tokens ---------- */
:root {
  --cream:    #f7f3e8;   /* warm sand-cream page */
  --cream-2:  #efe7d3;
  --sand:     #e6d6b8;
  --ink:      #16302f;   /* deep teal-ink text */
  --ink-soft: #3c5c59;
  --teal:     #178a8a;   /* sky/sea teal */
  --teal-deep:#0e5c5e;
  --teal-pale:#cfe9e6;
  --coral:    #ff6a4d;   /* coral pop */
  --coral-deep:#e8492c;
  --sky:      #9fd9e2;   /* pale ocean sky */
  --foam:     #ffffff;
  --line:     rgba(22,48,47,.14);
  --line-2:   rgba(22,48,47,.08);

  --shadow:   0 24px 60px -28px rgba(14,92,94,.45);
  --shadow-sm:0 10px 28px -16px rgba(14,92,94,.4);

  --maxw: 1240px;
  --r:    20px;
  --r-sm: 13px;

  --disp: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --body: "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Base ---------- */
body {
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 88% -8%, var(--teal-pale) 0%, transparent 55%),
    radial-gradient(900px 600px at -10% 8%, #fde4d8 0%, transparent 50%),
    var(--cream);
  overflow-x: hidden;
}

/* film grain / atmosphere overlay */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: .5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 5vw, 56px); }
.relayer { position: relative; z-index: 1; }

.eyebrow {
  font-family: var(--body);
  font-weight: 700; font-size: .72rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--teal-deep);
  display: inline-flex; align-items: center; gap: .55rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--coral); border-radius: 2px; }

.section-title {
  font-family: var(--disp);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.005em;
  font-size: clamp(2.1rem, 5.6vw, 4.2rem);
  line-height: .92;
}
.section-title .pop { color: var(--coral); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--body); font-weight: 700; font-size: .92rem;
  letter-spacing: .01em;
  padding: .92rem 1.5rem; border-radius: 100px;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 14px 30px -14px var(--coral-deep); }
.btn-primary:hover { background: var(--coral-deep); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: var(--teal-deep); transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn-light { background: var(--foam); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); color: var(--teal-deep); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--cream) 80%, transparent);
  border-bottom: 1px solid var(--line-2);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: .85rem; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(150deg, var(--teal) 0%, var(--teal-deep) 100%);
  display: grid; place-items: center; color: #fff;
  font-family: var(--disp); font-weight: 800; font-size: 1.35rem;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.brand-mark::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.4), transparent 60%);
}
.brand-name { font-family: var(--disp); font-weight: 700; text-transform: uppercase; font-size: 1.32rem; letter-spacing: .01em; line-height: .95; }
.brand-name span { display: block; font-size: .58rem; letter-spacing: .34em; color: var(--teal-deep); font-family: var(--body); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  font-weight: 600; font-size: .92rem; padding: .5rem .85rem; border-radius: 100px;
  color: var(--ink-soft); transition: color .25s, background .25s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--teal-deep); background: var(--teal-pale); }
.nav-cta { display: flex; align-items: center; gap: .8rem; }
.nav-phone { font-weight: 700; font-size: .9rem; color: var(--ink); white-space: nowrap; }
.nav-phone:hover { color: var(--coral); }

.burger { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); }
.burger span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px auto; border-radius: 2px; transition: .3s; }
.mobile-menu { display: none; }

/* ============================================================
   Hero
   ============================================================ */
.hero { padding-top: clamp(2rem, 5vw, 3.4rem); padding-bottom: clamp(2.6rem, 6vw, 4.5rem); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: end; }

.hero-copy { max-width: 33ch; }
.hero h1 {
  font-family: var(--disp); font-weight: 800; text-transform: uppercase;
  font-size: clamp(3.2rem, 9vw, 7rem); line-height: .86; letter-spacing: -.01em;
  margin: 1.1rem 0 1.3rem;
}
.hero h1 .l2 { color: var(--teal-deep); }
.hero h1 .l3 { display: inline-block; color: var(--coral); position: relative; }
.hero h1 .l3 .wave {
  position: absolute; left: 0; right: 0; bottom: -.12em; height: .14em;
  background: repeating-linear-gradient(90deg, var(--coral) 0 10px, transparent 10px 16px);
  border-radius: 4px; opacity: .55;
}
.hero p.lede { font-size: 1.06rem; color: var(--ink-soft); margin-bottom: 1.6rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

.hero-visual { position: relative; }
.hero-frame {
  position: relative; border-radius: 26px; overflow: hidden;
  box-shadow: var(--shadow); border: 6px solid var(--foam);
  transform: rotate(1.2deg);
}
.hero-frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.hero-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14,92,94,.25));
}
.hero-badge {
  position: absolute; z-index: 3; left: -14px; bottom: 26px;
  background: var(--foam); border-radius: 16px; padding: .85rem 1.1rem;
  box-shadow: var(--shadow-sm); transform: rotate(-2deg);
  display: flex; align-items: center; gap: .7rem;
}
.hero-badge .num { font-family: var(--disp); font-weight: 800; font-size: 1.9rem; color: var(--coral); line-height: 1; }
.hero-badge small { display: block; font-size: .72rem; color: var(--ink-soft); max-width: 12ch; line-height: 1.2; }
.hero-chip {
  position: absolute; top: 18px; right: -10px; z-index: 3;
  background: var(--teal-deep); color: #fff; border-radius: 100px;
  padding: .5rem 1rem; font-weight: 700; font-size: .8rem; letter-spacing: .04em;
  box-shadow: var(--shadow-sm); transform: rotate(3deg);
}

/* stat strip */
.stat-strip {
  margin-top: clamp(2rem, 4vw, 3.2rem);
  border-radius: var(--r);
  background: var(--ink); color: var(--cream);
  display: grid; grid-template-columns: repeat(4, 1fr);
  overflow: hidden; box-shadow: var(--shadow);
}
.stat {
  padding: 1.5rem 1.4rem; border-right: 1px solid rgba(255,255,255,.1);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat .k { font-family: var(--disp); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1; color: var(--sky); }
.stat .k .pop { color: var(--coral); }
.stat .l { font-size: .82rem; color: rgba(247,243,232,.72); margin-top: .35rem; }

/* ============================================================
   Section scaffolding
   ============================================================ */
section { position: relative; z-index: 1; }
.block { padding-block: clamp(3.4rem, 7vw, 6rem); }
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.head-row .intro { max-width: 46ch; color: var(--ink-soft); margin-top: .9rem; font-size: 1.02rem; }

/* ---------- Listings ---------- */
.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: var(--foam); border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line-2); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-media { position: relative; aspect-ratio: 16/11; overflow: hidden; background: var(--sand); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
/* gradient placeholder when no img */
.card-media.placeholder {
  background:
    radial-gradient(120% 120% at 30% 20%, var(--sky) 0%, transparent 55%),
    linear-gradient(150deg, var(--teal-pale), var(--sand));
}
.card-media.placeholder .ph-label {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--disp); font-weight: 800; text-transform: uppercase;
  font-size: 2.4rem; color: rgba(14,92,94,.32); letter-spacing: .02em;
}
.status-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-weight: 700; font-size: .72rem; letter-spacing: .05em; text-transform: uppercase;
  padding: .4rem .75rem; border-radius: 100px; color: #fff;
  backdrop-filter: blur(4px);
}
.status-tag.sale { background: var(--coral); }
.status-tag.rent { background: var(--teal); }
.status-tag.sold { background: var(--ink); }
.price-tag {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  background: var(--foam); color: var(--ink);
  font-family: var(--disp); font-weight: 800; font-size: 1.2rem;
  padding: .35rem .8rem; border-radius: 100px; box-shadow: var(--shadow-sm);
}
.card-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.card-body h3 { font-family: var(--disp); font-weight: 700; text-transform: uppercase; font-size: 1.5rem; letter-spacing: 0; }
.card-addr { font-size: .86rem; color: var(--ink-soft); display: flex; align-items: center; gap: .4rem; }
.card-blurb { font-size: .9rem; color: var(--ink-soft); }
.card-meta { display: flex; gap: 1.1rem; margin-top: auto; padding-top: .9rem; border-top: 1px dashed var(--line); }
.card-meta div { display: flex; flex-direction: column; line-height: 1.1; }
.card-meta .mv { font-family: var(--disp); font-weight: 800; font-size: 1.3rem; color: var(--teal-deep); }
.card-meta .ml { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- Neighbourhoods ---------- */
.hoods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.hood {
  position: relative; border-radius: var(--r); padding: 1.5rem 1.4rem 1.6rem;
  background: var(--foam); border: 1px solid var(--line-2);
  overflow: hidden; transition: transform .35s var(--ease), background .35s;
}
.hood::before {
  content: ""; position: absolute; right: -30px; top: -30px; width: 110px; height: 110px;
  border-radius: 50%; background: var(--teal-pale); opacity: .7; transition: transform .5s var(--ease);
}
.hood:nth-child(3n+2)::before { background: #ffd9cd; }
.hood:nth-child(3n)::before { background: var(--sky); }
.hood:hover { transform: translateY(-5px); }
.hood:hover::before { transform: scale(1.5); }
.hood .hnum { font-family: var(--disp); font-weight: 800; font-size: .9rem; color: var(--coral); position: relative; }
.hood h3 { font-family: var(--disp); font-weight: 700; text-transform: uppercase; font-size: 1.7rem; margin: .35rem 0 .5rem; position: relative; }
.hood p { font-size: .9rem; color: var(--ink-soft); position: relative; }

/* ---------- Services split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.svc-panel {
  border-radius: var(--r); padding: clamp(1.5rem, 3vw, 2.4rem); position: relative; overflow: hidden;
}
.svc-buy { background: linear-gradient(160deg, var(--teal-deep), var(--teal)); color: #fff; }
.svc-sell { background: var(--cream-2); color: var(--ink); border: 1px solid var(--line); }
.svc-panel .svc-kick { font-family: var(--disp); font-weight: 800; text-transform: uppercase; font-size: 1rem; letter-spacing: .12em; opacity: .85; }
.svc-buy .svc-kick { color: var(--sky); }
.svc-sell .svc-kick { color: var(--coral); }
.svc-panel h3 { font-family: var(--disp); font-weight: 800; text-transform: uppercase; font-size: clamp(1.9rem, 4vw, 2.8rem); margin: .4rem 0 .8rem; }
.svc-panel > p { font-size: 1rem; opacity: .92; margin-bottom: 1.3rem; max-width: 40ch; }
.svc-list { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.5rem; }
.svc-list li { display: flex; gap: .65rem; align-items: flex-start; font-size: .92rem; }
.svc-list .tick {
  flex: none; width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center;
  font-size: .7rem; font-weight: 800; margin-top: .12rem;
}
.svc-buy .tick { background: rgba(255,255,255,.2); color: #fff; }
.svc-sell .tick { background: var(--coral); color: #fff; }

/* ---------- Testimonial ---------- */
.quote-band {
  border-radius: var(--r); background: var(--ink); color: var(--cream);
  padding: clamp(2.4rem, 5vw, 4rem); position: relative; overflow: hidden;
}
.quote-band::before {
  content: "“"; position: absolute; top: -.2em; left: .15em;
  font-family: var(--disp); font-weight: 800; font-size: 16rem; color: rgba(255,106,77,.18); line-height: 1;
}
.quote-band .qmark {
  position: absolute; right: -40px; bottom: -60px; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%); opacity: .4;
}
.quote-band blockquote {
  position: relative; font-family: var(--disp); font-weight: 600; text-transform: uppercase;
  font-size: clamp(1.6rem, 3.6vw, 2.8rem); line-height: 1.06; max-width: 22ch; margin-bottom: 1.6rem;
}
.quote-band .stars { color: var(--coral); letter-spacing: .2em; margin-bottom: .7rem; position: relative; }
.quote-band .who { position: relative; display: flex; align-items: center; gap: .8rem; }
.quote-band .ava {
  width: 48px; height: 48px; border-radius: 50%; background: var(--coral); color: #fff;
  display: grid; place-items: center; font-family: var(--disp); font-weight: 800; font-size: 1.2rem;
}
.quote-band .who b { font-weight: 700; }
.quote-band .who span { display: block; font-size: .82rem; color: rgba(247,243,232,.65); }

/* ---------- Journal teaser ---------- */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.jcard {
  background: var(--foam); border-radius: var(--r); padding: 1.4rem; border: 1px solid var(--line-2);
  display: flex; flex-direction: column; gap: .7rem; transition: transform .35s var(--ease);
  box-shadow: var(--shadow-sm);
}
.jcard:hover { transform: translateY(-5px); }
.jcard .jtype { font-size: .7rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--coral); }
.jcard h3 { font-family: var(--disp); font-weight: 700; text-transform: uppercase; font-size: 1.5rem; }
.jcard p { font-size: .9rem; color: var(--ink-soft); }
.jcard .jmeta { margin-top: auto; padding-top: .8rem; font-size: .78rem; color: var(--ink-soft); display: flex; justify-content: space-between; border-top: 1px dashed var(--line); }
.jcard .jread { color: var(--teal-deep); font-weight: 700; }

/* ---------- CTA ---------- */
.cta {
  border-radius: 28px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%); color: #fff;
  padding: clamp(2.6rem, 6vw, 4.6rem); text-align: center;
}
.cta::before {
  content: ""; position: absolute; inset: 0; opacity: .4;
  background: radial-gradient(600px 300px at 80% -20%, #ffd0c5 0%, transparent 60%),
              radial-gradient(500px 300px at 10% 120%, var(--teal) 0%, transparent 55%);
}
.cta-inner { position: relative; }
.cta h2 { font-family: var(--disp); font-weight: 800; text-transform: uppercase; font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: .9; margin-bottom: 1rem; }
.cta p { max-width: 44ch; margin: 0 auto 1.8rem; opacity: .94; font-size: 1.05rem; }
.cta-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Feature band (image + copy) ---------- */
.feature-band { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.feature-img { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); border: 5px solid var(--foam); }
.feature-img img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.feature-copy h2 { font-family: var(--disp); font-weight: 800; text-transform: uppercase; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: .92; margin: .9rem 0 1.1rem; }
.feature-copy p { color: var(--ink-soft); margin-bottom: 1rem; }
.mini-stats { display: flex; gap: 2rem; margin: 1.5rem 0; flex-wrap: wrap; }
.mini-stats .k { font-family: var(--disp); font-weight: 800; font-size: 2.2rem; color: var(--teal-deep); line-height: 1; }
.mini-stats .l { font-size: .78rem; color: var(--ink-soft); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); color: var(--cream); margin-top: clamp(3rem, 6vw, 5rem); position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; padding-block: clamp(2.6rem, 5vw, 4rem); }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand p { margin-top: 1rem; color: rgba(247,243,232,.65); max-width: 32ch; font-size: .92rem; }
.foot-col h4 { font-family: var(--disp); font-weight: 700; text-transform: uppercase; font-size: 1.1rem; letter-spacing: .08em; color: var(--sky); margin-bottom: 1rem; }
.foot-col a, .foot-col p { display: block; color: rgba(247,243,232,.72); font-size: .9rem; margin-bottom: .55rem; transition: color .25s; }
.foot-col a:hover { color: var(--coral); }
.nap b { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.3rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .8rem; color: rgba(247,243,232,.55);
}
.footer-bottom .demo-note { color: var(--coral); }

/* ============================================================
   Listings page
   ============================================================ */
.page-head { padding-top: clamp(2.4rem, 5vw, 3.6rem); padding-bottom: clamp(1.8rem, 4vw, 2.6rem); }
.page-head h1 { font-family: var(--disp); font-weight: 800; text-transform: uppercase; font-size: clamp(3rem, 9vw, 6rem); line-height: .88; margin: .8rem 0; }
.page-head h1 .pop { color: var(--coral); }
.page-head p { max-width: 50ch; color: var(--ink-soft); font-size: 1.05rem; }
.breadcrumb { font-size: .82rem; color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--coral); }

.filter-bar { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn {
  font-weight: 700; font-size: .88rem; padding: .6rem 1.2rem; border-radius: 100px;
  border: 1.5px solid var(--line); color: var(--ink-soft); transition: .3s var(--ease);
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.filter-count { margin-left: auto; font-size: .85rem; color: var(--ink-soft); }
.filter-count b { color: var(--teal-deep); font-family: var(--disp); font-weight: 800; font-size: 1.1rem; }

.listing-grid.all { grid-template-columns: repeat(3, 1fr); }
.card.hide { display: none; }

/* ============================================================
   Contact page
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.form-card { background: var(--foam); border-radius: var(--r); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); border: 1px solid var(--line-2); }
.form-card h2 { font-family: var(--disp); font-weight: 800; text-transform: uppercase; font-size: 2rem; margin-bottom: .4rem; }
.form-card .sub { color: var(--ink-soft); margin-bottom: 1.5rem; font-size: .94rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 700; font-size: .82rem; letter-spacing: .03em; margin-bottom: .4rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem; border-radius: 12px; border: 1.5px solid var(--line);
  background: var(--cream); transition: border .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px var(--teal-pale);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .78rem; color: var(--ink-soft); margin-top: .8rem; }

.info-stack { display: flex; flex-direction: column; gap: 1rem; }
.info-card { background: var(--cream-2); border-radius: var(--r); padding: 1.5rem; border: 1px solid var(--line); }
.info-card.dark { background: var(--ink); color: var(--cream); border: none; }
.info-card h3 { font-family: var(--disp); font-weight: 700; text-transform: uppercase; font-size: 1.4rem; margin-bottom: .9rem; }
.info-card.dark h3 { color: var(--sky); }
.info-row { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .7rem; font-size: .92rem; }
.info-row .ico { flex: none; width: 34px; height: 34px; border-radius: 10px; background: var(--coral); color: #fff; display: grid; place-items: center; font-size: 1rem; }
.info-card.dark .info-row { color: rgba(247,243,232,.85); }
.hours-list { display: flex; flex-direction: column; gap: .45rem; }
.hours-list .hrow { display: flex; justify-content: space-between; font-size: .9rem; padding-bottom: .45rem; border-bottom: 1px dashed var(--line); }
.info-card.dark .hours-list .hrow { border-color: rgba(255,255,255,.14); }
.hours-list .hrow.closed { color: var(--coral); }

.map-ph {
  border-radius: var(--r); overflow: hidden; position: relative; aspect-ratio: 16/9;
  background:
    linear-gradient(135deg, var(--teal-pale), var(--sky)),
    var(--teal-pale);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); margin-top: 1rem;
}
.map-ph::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(14,92,94,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,92,94,.12) 1px, transparent 1px);
  background-size: 38px 38px;
}
.map-pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%);
  font-family: var(--disp); font-weight: 800; text-transform: uppercase; color: var(--ink);
  background: var(--foam); padding: .5rem .9rem; border-radius: 100px 100px 100px 4px;
  box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: .4rem; font-size: .9rem;
}
.map-pin .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 6px rgba(255,106,77,.25); }

/* ============================================================
   Blog page
   ============================================================ */
.featured-post {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; border-radius: var(--r);
  overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line-2); margin-bottom: 2.6rem;
  background: var(--foam);
}
.featured-post .fp-media { position: relative; min-height: 320px; overflow: hidden; }
.featured-post .fp-media img { width: 100%; height: 100%; object-fit: cover; }
.featured-post .fp-media .placeholder { position: absolute; inset: 0; }
.featured-post .fp-body { padding: clamp(1.8rem, 3vw, 3rem); display: flex; flex-direction: column; justify-content: center; }
.featured-post .ftag { display: inline-flex; align-self: flex-start; background: var(--coral); color: #fff; font-weight: 800; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; padding: .4rem .85rem; border-radius: 100px; margin-bottom: 1rem; }
.featured-post h2 { font-family: var(--disp); font-weight: 800; text-transform: uppercase; font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: .92; margin-bottom: 1rem; }
.featured-post p { color: var(--ink-soft); margin-bottom: 1.4rem; }
.featured-post .fp-meta { display: flex; gap: 1.2rem; font-size: .82rem; color: var(--ink-soft); margin-bottom: 1.4rem; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.blog-card {
  background: var(--foam); border-radius: var(--r); overflow: hidden; border: 1px solid var(--line-2);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .4s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); }
.blog-card .bc-media { aspect-ratio: 16/10; position: relative; overflow: hidden; }
.blog-card .bc-media .placeholder { position: absolute; inset: 0; }
.blog-card .bc-body { padding: 1.3rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.blog-card .btype { font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--coral); }
.blog-card h3 { font-family: var(--disp); font-weight: 700; text-transform: uppercase; font-size: 1.42rem; }
.blog-card p { font-size: .88rem; color: var(--ink-soft); }
.blog-card .bc-meta { margin-top: auto; padding-top: .9rem; border-top: 1px dashed var(--line); font-size: .76rem; color: var(--ink-soft); display: flex; justify-content: space-between; }

/* ---------- reveal on load ---------- */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero-visual { max-width: 460px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .listing-grid, .listing-grid.all, .hoods, .journal-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .feature-band { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-post .fp-media { min-height: 240px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links, .nav-phone { display: none; }
  .burger { display: block; }
  .mobile-menu.open { display: block; padding-bottom: 1rem; }
  .mobile-menu a { display: block; padding: .7rem .4rem; font-weight: 600; border-bottom: 1px solid var(--line-2); }
  .mobile-menu .btn { margin-top: .8rem; width: 100%; justify-content: center; }
}
@media (max-width: 560px) {
  .listing-grid, .listing-grid.all, .hoods, .journal-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.4rem); }
  .stat-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 360px) {
  .wrap { padding-inline: 16px; }
  .hero-badge { left: 4px; }
}
