/* ==========================================================================
   Luba Grigorovitch MP - design system
   Labor Member for Kororoit · Minister for Youth, Carers and Volunteers.
   Elegant editorial palette: deep bordeaux brand dark, crisp Labor red accent,
   warm ivory paper, bronze gold for quiet warmth. Fraunces display + Inter.
   ========================================================================== */

:root {
  /* Brand - deep bordeaux carries the Labor red into something more refined */
  --maroon:      #3E121B;   /* Header, footer, hero - deep bordeaux */
  --maroon-2:    #57202A;   /* Lifted bordeaux for layered surfaces */
  --maroon-deep: #2B0C12;   /* Deepest - footer base */

  /* Accent - classic ALP red for CTAs, links, highlights */
  --red:         #C8102E;
  --red-dark:    #A20D25;
  --red-wash:    #FBEAED;

  /* Text */
  --ink:         #241E22;   /* Body */
  --ink-dark:    #1C171B;   /* Headings */
  --ink-soft:    #6B626A;   /* Secondary text */

  /* Surfaces */
  --bg:          #FAF6F0;   /* Page - warm ivory */
  --cream-2:     #F1E9DD;   /* Secondary bands */
  --paper:       #FFFFFF;   /* Cards, panels */
  --line:        #EAE1D4;   /* Borders, dividers */
  --line-soft:   #F0E9DE;

  /* Gold - quiet warmth, rules and flourishes */
  --gold:        #B0894F;
  --gold-2:      #977338;
  --gold-wash:   #F4ECDD;

  /* Elevation - soft, editorial */
  --shadow-sm:   0 1px 2px rgba(43,12,18,.05), 0 2px 8px rgba(43,12,18,.05);
  --shadow-md:   0 6px 18px rgba(43,12,18,.08), 0 14px 40px rgba(43,12,18,.07);
  --shadow-lg:   0 24px 60px rgba(43,12,18,.16);

  /* Radii - crisp, premium */
  --radius:      12px;
  --radius-lg:   20px;
  --btn-radius:  8px;

  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--red-dark); text-decoration: none; }
a:hover { color: var(--red); }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink-dark);
  margin: 0 0 .5em;
  letter-spacing: -0.012em;
  font-weight: 500;
  line-height: 1.12;
}
h1 { font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
::selection { background: var(--red); color: #fff; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1.1rem, 3vw, 2rem); }

/* Kicker - small serif-adjacent label with a short rule */
.kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans);
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .16em;
  color: var(--red);
  margin-bottom: .9rem;
}
.kicker::before {
  content: ""; width: 26px; height: 1.5px; background: var(--gold);
  display: inline-block;
}
.kicker.-plain::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.5rem;
  font-family: var(--sans);
  font-weight: 600; font-size: .95rem;
  border-radius: var(--btn-radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.85); }
.btn-outline { background: transparent; color: var(--ink-dark); border-color: var(--ink-dark); }
.btn-outline:hover { background: var(--ink-dark); color: #fff; transform: translateY(-1px); }
.btn-light { background: var(--paper); color: var(--maroon); border-color: var(--paper); }
.btn-light:hover { background: var(--gold-wash); color: var(--maroon); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn.-sm { padding: .55rem 1rem; font-size: .88rem; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--maroon-deep);
  color: #EBDCDF;
  font-size: .85rem;
}
.announce .container {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: .55rem; padding-bottom: .55rem;
  flex-wrap: wrap; gap: .4rem;
}
.announce a { color: #EBDCDF; }
.announce a:hover { color: #fff; }
.announce .office { opacity: .92; display: inline-flex; align-items: center; gap: .5rem; }
.announce .contact a { margin-left: 1.3rem; font-weight: 600; }
@media (max-width: 720px) {
  .announce .office { display: none; }
  .announce .contact { margin-left: auto; }
  .announce .contact a:first-child { margin-left: 0; }
}

/* ---------- Header ---------- */
header.site {
  background: var(--maroon);
  position: sticky; top: 0; z-index: 40;
  box-shadow: 0 2px 14px rgba(43,12,18,.18);
}
header.site .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: .85rem; padding-bottom: .85rem;
  gap: 1.25rem; flex-wrap: nowrap;
}
.brand { display: flex; align-items: center; gap: .85rem; text-decoration: none; flex: 0 0 auto; }
.brand .mark {
  width: 48px; height: 48px; border-radius: 50%;
  overflow: hidden; object-fit: cover; object-position: center 22%;
  background: var(--maroon-2);
  box-shadow: 0 0 0 2px rgba(255,255,255,.85);
  flex: 0 0 auto; display: block;
}
.brand .text .brand-name {
  font-family: var(--display); font-weight: 600; font-size: 1.2rem;
  color: #fff; line-height: 1.05; display: block; letter-spacing: -0.01em;
}
.brand .text p { font-size: .76rem; margin: .1rem 0 0; color: rgba(255,255,255,.75); letter-spacing: .02em; }

nav.primary { flex: 0 1 auto; min-width: 0; }
nav.primary ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 1.4rem; align-items: center; flex-wrap: nowrap;
}
nav.primary ul > li { flex: 0 0 auto; white-space: nowrap; }
nav.primary .mobile-nav-cta { display: none; }
nav.primary a {
  color: rgba(255,255,255,.9); font-weight: 500; font-size: .95rem;
  padding: .4rem 0; position: relative; display: inline-block;
}
nav.primary a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
nav.primary a:hover { color: #fff; }
nav.primary a:hover::after, nav.primary a.current::after { transform: scaleX(1); }
nav.primary a.current { color: #fff; }

.header-cta { display: flex; align-items: center; gap: .6rem; flex: 0 0 auto; }
.header-cta .btn-primary { background: #fff; color: var(--maroon); border-color: #fff; }
.header-cta .btn-primary:hover { background: var(--gold-wash); color: var(--maroon); }
.hamburger { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: #fff; line-height: 1; }

@media (max-width: 1080px) {
  nav.primary, .header-cta .btn { display: none; }
  .hamburger { display: block; }
}

/* ---------- Hero (split) ---------- */
.hero-split {
  display: grid; grid-template-columns: 1.05fr .95fr;
  background: var(--maroon); color: #fff; overflow: hidden; min-height: 560px;
}
.hero-split-text {
  display: flex; align-items: center;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.3rem, 4vw, 4.5rem);
  position: relative;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(200,16,46,.32), transparent 60%),
    radial-gradient(ellipse at 100% 0%, rgba(176,137,79,.18), transparent 55%),
    var(--maroon);
}
.hero-split-text .inner { max-width: 600px; }
.hero-split .eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255,255,255,.12); color: #fff;
  padding: .4rem .9rem; border-radius: 999px;
  font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 1.3rem; border: 1px solid rgba(255,255,255,.18);
}
.hero-split .eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 3px rgba(200,16,46,.3); }
.hero-split h1 {
  color: #fff; font-size: clamp(2.3rem, 4.6vw, 4rem);
  line-height: 1.04; margin-bottom: 1.2rem; font-weight: 500;
}
.hero-split h1 em { font-style: italic; color: #F3D9A6; }
.hero-split .lede {
  color: #F1E4E0; font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  margin-bottom: 1.9rem; max-width: 560px; line-height: 1.6;
}
.hero-split .cta-row { display: flex; gap: .8rem; flex-wrap: wrap; }

.hero-split-media { position: relative; background: var(--maroon-2); min-height: 560px; }
.hero-split-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; display: block; }
.hero-split-media::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, var(--maroon) 0%, rgba(62,18,27,0) 22%);
}
.hero-split-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(0deg, rgba(62,18,27,.34) 0%, rgba(62,18,27,0) 30%);
}
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-media { order: -1; min-height: 340px; }
  .hero-split-media img { object-position: center 15%; }
  .hero-split-media::before { background: linear-gradient(0deg, var(--maroon) 0%, rgba(62,18,27,0) 45%); }
  .hero-split-media::after { background: none; }
  .hero-split-text { padding-top: 2.4rem; padding-bottom: 3rem; }
}

/* ---------- Page-header hero (interior pages) ---------- */
.page-hero {
  background: var(--maroon); color: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.6rem, 5vw, 4rem);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(200,16,46,.28), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(176,137,79,.20), transparent 55%);
}
.page-hero .container { position: relative; }
.page-hero .crumbs { font-size: .82rem; color: #D9C4C7; margin-bottom: 1rem; letter-spacing: .04em; }
.page-hero .crumbs a { color: #D9C4C7; }
.page-hero .crumbs a:hover { color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4vw, 3.2rem); max-width: 860px; margin-bottom: .55rem; font-weight: 500; }
.page-hero .lede { color: #F1E4E0; font-size: 1.12rem; max-width: 720px; margin: 0; line-height: 1.6; }
.page-hero .kicker { color: #F3D9A6; }
.page-hero .kicker::before { background: var(--gold); }

/* ---------- By the numbers ---------- */
.numbers { background: var(--paper); border-bottom: 1px solid var(--line); }
.numbers .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; padding: 2.6rem 0; }
.stat { text-align: center; padding: .6rem 1.4rem; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat .num {
  font-family: var(--display); font-weight: 600; color: var(--red);
  font-size: clamp(2.1rem, 4vw, 3.1rem); line-height: 1; letter-spacing: -.02em;
}
.stat .lbl { font-size: .92rem; color: var(--ink-soft); margin-top: .6rem; line-height: 1.45; }
@media (max-width: 720px) {
  .numbers .grid { grid-template-columns: 1fr; gap: 0; padding: 1rem 0; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); padding: 1.4rem 1rem; }
  .stat:last-child { border-bottom: 0; }
}

/* ---------- Section shell ---------- */
section.band { padding: clamp(3.2rem, 6vw, 5.8rem) 0; }
.band.paper { background: var(--paper); }
.band.cream { background: var(--cream-2); }
.band.ivory { background: var(--bg); }
.section-head { max-width: 760px; margin-bottom: 2.6rem; }
.section-head h2 { margin-bottom: .5rem; }
.section-head p.dek { color: var(--ink-soft); font-size: 1.08rem; margin: 0; line-height: 1.6; }
.section-head.-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.-center .kicker { justify-content: center; }
.head-row { display: flex; justify-content: space-between; align-items: end; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }
.head-row .section-head { margin-bottom: 0; }

/* ---------- Card grids ---------- */
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
@media (max-width: 1000px) { .card-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 880px)  { .card-grid-3 { grid-template-columns: 1fr; } .card-grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 560px)  { .card-grid-4 { grid-template-columns: 1fr; } }

/* ---------- Priority cards ---------- */
.priority-card {
  background: var(--paper); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.priority-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.priority-card .ph { aspect-ratio: 4 / 3; background: var(--maroon-2); background-size: cover; background-position: center; position: relative; }
.priority-card .ph::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0) 55%, rgba(43,12,18,.42)); }
.priority-card .ph .tag {
  position: absolute; top: .85rem; left: .85rem; z-index: 2;
  background: rgba(255,255,255,.95); color: var(--maroon);
  padding: .28rem .7rem; border-radius: 999px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
}
.priority-card .body { padding: 1.25rem 1.3rem 1.4rem; }
.priority-card h3 { margin-bottom: .4rem; font-size: 1.22rem; }
.priority-card p { font-size: .95rem; color: var(--ink-soft); margin-bottom: .9rem; }
.priority-card .read { font-weight: 600; color: var(--red); font-size: .9rem; font-family: var(--sans); display: inline-flex; align-items: center; gap: .3rem; margin-top: auto; }
.priority-card:hover .read { gap: .6rem; }

/* ---------- Two-column (about-style) ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.two-col.reverse { grid-template-columns: 1.05fr 1fr; }
@media (max-width: 900px) { .two-col, .two-col.reverse { grid-template-columns: 1fr; } }
.photo-block {
  aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden;
  background-size: cover; background-position: center 20%;
  box-shadow: var(--shadow-md); position: relative; border: 1px solid var(--line);
}
.photo-block.-tall { aspect-ratio: 3 / 4; }
.photo-block .caption {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  background: rgba(43,12,18,.86); color: #fff; padding: .6rem .9rem;
  border-radius: 10px; font-size: .82rem; backdrop-filter: blur(4px);
}
.sig { max-width: 210px; margin: 1.4rem 0 .2rem; opacity: .92; }
.sig img { width: 100%; height: auto; }
.sig-name { font-family: var(--display); font-weight: 600; color: var(--maroon); font-size: 1.05rem; margin-top: .3rem; }

ul.bullets { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: .7rem; }
ul.bullets li { position: relative; padding-left: 2.1rem; font-size: 1rem; line-height: 1.55; }
ul.bullets li::before {
  content: ""; position: absolute; left: 0; top: .15rem; width: 22px; height: 22px;
  background: var(--red); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath d='M8.5 13.5L5 10l1.4-1.4L8.5 10.7l5.1-5.1L15 7l-6.5 6.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 18px;
}

/* ---------- News cards ---------- */
.news-card {
  background: var(--paper); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.news-card .ph { aspect-ratio: 16 / 10; background-size: cover; background-position: center; background-color: var(--maroon-2); }
.news-card .meta {
  display: flex; gap: .7rem; align-items: center; padding: 1rem 1.25rem 0;
  font-size: .76rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .06em; font-weight: 600;
}
.news-card .meta .pill { background: var(--gold-wash); color: var(--gold-2); padding: .22rem .6rem; border-radius: 999px; font-size: .7rem; }
.news-card .meta .pill.transport { background: var(--red-wash); color: var(--red-dark); }
.news-card .meta .pill.education { background: #E7EFEA; color: #3E6B54; }
.news-card .meta .pill.community { background: #EEE6F0; color: #6A4A73; }
.news-card .meta .pill.environment { background: #E6EFE4; color: #4B6B3E; }
.news-card h3 { padding: .6rem 1.25rem 0; font-size: 1.22rem; line-height: 1.24; }
.news-card p { padding: .35rem 1.25rem; color: var(--ink-soft); font-size: .95rem; flex: 1; }
.news-card .more { padding: .2rem 1.25rem 1.25rem; font-weight: 600; color: var(--red); font-size: .9rem; display: inline-flex; align-items: center; gap: .3rem; }
.news-card:hover .more { gap: .55rem; }

/* News list on the news page (image + text row) */
.news-list { display: grid; gap: 1.2rem; }
.news-row {
  display: grid; grid-template-columns: 260px 1fr; gap: 1.5rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.news-row:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.news-row .ph { background-size: cover; background-position: center; background-color: var(--maroon-2); min-height: 190px; }
.news-row .row-body { padding: 1.4rem 1.5rem 1.4rem 0; display: flex; flex-direction: column; }
.news-row .meta { display: flex; gap: .7rem; align-items: center; margin-bottom: .5rem; font-size: .76rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.news-row h3 { font-size: 1.35rem; margin-bottom: .4rem; }
.news-row p { color: var(--ink-soft); margin-bottom: .8rem; }
.news-row .more { font-weight: 600; color: var(--red); font-size: .9rem; margin-top: auto; display: inline-flex; align-items: center; gap: .3rem; }
.news-row:hover .more { gap: .55rem; }
@media (max-width: 640px) {
  .news-row { grid-template-columns: 1fr; }
  .news-row .ph { aspect-ratio: 16/9; min-height: 0; }
  .news-row .row-body { padding: 1.3rem 1.4rem; }
}

/* Featured news (top of news page) */
.feature-news {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 0;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 2.6rem;
}
.feature-news .ph { background-size: cover; background-position: center; background-color: var(--maroon-2); min-height: 320px; }
.feature-news .feat-body { padding: clamp(1.6rem, 3vw, 2.6rem); display: flex; flex-direction: column; justify-content: center; }
.feature-news .meta { display: flex; gap: .7rem; align-items: center; margin-bottom: .7rem; font-size: .78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.feature-news h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: .6rem; }
.feature-news p { color: var(--ink-soft); }
@media (max-width: 880px) { .feature-news { grid-template-columns: 1fr; } .feature-news .ph { aspect-ratio: 16/9; min-height: 0; } }

/* ---------- Services / help tiles ---------- */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
@media (max-width: 600px) { .services { grid-template-columns: 1fr; } }
.service { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 1.15rem; display: flex; gap: .9rem; align-items: flex-start; }
.service .ic { flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center; background: var(--red-wash); border-radius: 10px; color: var(--red); }
.service .ic svg { width: 22px; height: 22px; }
.service h4 { font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--ink-dark); margin: 0 0 .25rem; }
.service p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* ---------- Pill row (focus areas) ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.pill-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--paper); color: var(--ink-dark); border: 1px solid var(--line);
  padding: .55rem 1.1rem; border-radius: 999px; font-size: .92rem; font-weight: 600;
}
.pill-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

/* ---------- Facts / suburbs grid ---------- */
.fact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 700px) { .fact-grid { grid-template-columns: 1fr 1fr; } }
.fact { background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: 10px; padding: 1.05rem 1.15rem; }
.fact .fact-k { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); font-weight: 700; }
.fact .fact-v { font-family: var(--display); font-weight: 600; color: var(--ink-dark); font-size: 1.12rem; margin-top: .25rem; }

.chip-list { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip-list .chip { background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: .5rem 1.05rem; font-weight: 600; font-size: .92rem; color: var(--ink-dark); }

/* ---------- Map figure ---------- */
.map-figure { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin: 0; }
.map-figure img { width: 100%; height: auto; display: block; }
.map-figure figcaption { padding: .9rem 1.2rem; font-size: .88rem; color: var(--ink-soft); border-top: 1px solid var(--line); background: var(--bg); }
#office-map { width: 100%; height: 380px; border-radius: var(--radius); border: 1px solid var(--line); z-index: 1; }

/* ---------- Prose / long-form ---------- */
.prose { max-width: 740px; font-size: 1.08rem; line-height: 1.75; color: var(--ink); }
.prose > p:first-of-type { font-size: 1.2rem; color: var(--ink-dark); }
.prose h2 { margin-top: 2.4rem; font-size: 1.6rem; }
.prose h3 { margin-top: 1.7rem; font-size: 1.25rem; }
.prose p { margin: 0 0 1.15rem; }
.prose blockquote {
  margin: 1.8rem 0; padding: 1.1rem 1.6rem; border-left: 3px solid var(--red);
  background: var(--paper); color: var(--ink-dark); font-family: var(--display);
  font-size: 1.3rem; line-height: 1.5; font-style: italic; border-radius: 0 10px 10px 0; box-shadow: var(--shadow-sm);
}
.prose ul { padding-left: 1.3rem; }
.prose li { margin-bottom: .5rem; }

/* ---------- Contact ---------- */
.contact-lines { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.1rem; }
.contact-lines li { display: flex; gap: .95rem; align-items: flex-start; }
.contact-lines .ic { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 10px; background: var(--red-wash); color: var(--red); display: grid; place-items: center; }
.contact-lines .ic svg { width: 20px; height: 20px; }
.contact-lines .k { font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); font-weight: 700; }
.contact-lines .v { color: var(--ink-dark); font-weight: 600; overflow-wrap: anywhere; }
.contact-lines .v a { color: var(--ink-dark); }
.contact-lines .v a:hover { color: var(--red); }

/* ---------- CTA / subscribe block ---------- */
.cta-block {
  background:
    radial-gradient(ellipse at 18% 0%, rgba(200,16,46,.30), transparent 60%),
    radial-gradient(ellipse at 100% 100%, rgba(176,137,79,.24), transparent 60%),
    var(--maroon);
  color: #fff; position: relative; overflow: hidden;
}
.cta-block .wrap { display: grid; grid-template-columns: 1.15fr 1fr; gap: 2.6rem; align-items: center; }
@media (max-width: 820px) { .cta-block .wrap { grid-template-columns: 1fr; } }
.cta-block h2 { color: #fff; font-size: clamp(1.9rem, 3vw, 2.6rem); }
.cta-block p { color: #F1E4E0; font-size: 1.06rem; }
.cta-block .kicker { color: #F3D9A6; }
.cta-block .kicker::before { background: var(--gold); }

.cta-form { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg); padding: 1.6rem; backdrop-filter: blur(6px); }
.cta-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: .75rem; }
@media (max-width: 480px) { .cta-form .row { grid-template-columns: 1fr; } }
.cta-form input, .cta-form select, .cta-form textarea {
  width: 100%; padding: .85rem 1rem; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.09);
  color: #fff; font: inherit;
}
.cta-form input::placeholder, .cta-form textarea::placeholder { color: #E4CFD2; }
.cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus { outline: 2px solid var(--gold); }
.cta-form .btn { width: 100%; justify-content: center; }
.cta-form .privacy { font-size: .78rem; color: #E1CDD0; margin: .8rem 0 0; }

/* Standalone contact form card (light) */
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow-sm); }
.form-card .row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-bottom: .8rem; }
@media (max-width: 560px) { .form-card .row { grid-template-columns: 1fr; } }
.form-card label { display: block; font-size: .82rem; font-weight: 700; color: var(--ink-dark); margin-bottom: .35rem; }
.form-card input, .form-card select, .form-card textarea {
  width: 100%; padding: .8rem .95rem; border-radius: 10px; border: 1px solid var(--line);
  background: var(--bg); color: var(--ink); font: inherit;
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { outline: 2px solid var(--red); background: #fff; }
.form-card .field { margin-bottom: .8rem; }
.form-card .btn { width: 100%; justify-content: center; margin-top: .3rem; }
.form-note { font-size: .8rem; color: var(--ink-soft); margin-top: .8rem; }

/* ---------- Acknowledgement of Country ---------- */
.ack-strip { background: var(--maroon-deep); color: #EBDCDF; padding: 1.5rem 0; border-top: 3px solid var(--gold); }
.ack-strip .container { display: flex; gap: 1.1rem; align-items: flex-start; }
.ack-strip p { font-size: .92rem; line-height: 1.6; max-width: 920px; margin: 0; color: #EBDCDF; }
.ack-strip .flag { font-size: 1.3rem; line-height: 1.4; flex: 0 0 auto; }

/* ---------- Footer ---------- */
footer.site { background: var(--maroon-deep); color: #D9C7CB; padding: 3.6rem 0 0; font-size: .93rem; }
footer.site .grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.6rem; }
@media (max-width: 820px) { footer.site .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { footer.site .grid { grid-template-columns: 1fr; } }
footer.site h4 { color: #fff; font-family: var(--sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1rem; }
footer.site a { color: #D9C7CB; }
footer.site a:hover { color: #fff; }
footer.site ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
footer.site .brand { margin-bottom: 1rem; }
footer.site .brand .brand-name { color: #fff; }
footer.site .brand .text p { color: rgba(255,255,255,.65); }
footer.site .foot-lede { color: #C4B0B4; max-width: 340px; margin: 0; }
.social-row { display: flex; gap: .6rem; margin-top: 1.2rem; }
.social-row a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background .2s ease, transform .2s ease; }
.social-row a:hover { background: var(--red); transform: translateY(-2px); }
.social-row svg { width: 18px; height: 18px; }
.foot-bar { border-top: 1px solid rgba(255,255,255,.1); padding: 1.3rem 0; font-size: .8rem; color: #B49BA0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.foot-bar .auth { max-width: 640px; }

/* ---------- Utilities ---------- */
.arrow::after { content: " \2192"; display: inline-block; transition: transform .15s ease; }
.arrow:hover::after { transform: translateX(3px); }
.centered { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-4 { margin-top: 2rem; }
.lead-intro { font-size: clamp(1.1rem, 1.7vw, 1.35rem); line-height: 1.65; color: var(--ink); max-width: 820px; margin: 0 0 1.4rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Skip link */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--red); color: #fff; padding: .65rem 1rem; font-weight: 700; z-index: 9999; border-radius: 0 0 6px 0; }
.skip-link:focus, .skip-link:focus-visible { left: 0; outline: 3px solid #fff; outline-offset: 2px; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

/* ---------- Mobile nav ---------- */
@media (max-width: 1080px) {
  body { padding-top: 76px; }
  header.site { position: fixed; top: 0; left: 0; right: 0; width: 100%; }
  header.site nav.primary {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-top: 1px solid var(--line);
    box-shadow: 0 14px 30px rgba(43,12,18,.16); z-index: 20;
    max-height: calc(100vh - 76px); overflow-y: auto;
  }
  header.site nav.primary ul { flex-direction: column; align-items: stretch; padding: .5rem 0; margin: 0; gap: 0; }
  header.site nav.primary ul > li { border-bottom: 1px solid var(--line); }
  header.site nav.primary ul > li:last-child { border-bottom: 0; }
  header.site nav.primary a { display: block; padding: 1rem 1.6rem; font-size: 1.05rem; color: var(--ink-dark); }
  header.site nav.primary a::after { content: none; }
  header.site nav.primary a:hover { color: var(--red); }
  header.site nav.primary a.current { color: var(--red); background: var(--bg); }
  header.site nav.primary .mobile-nav-cta { display: block; padding: .9rem 1.6rem 1.1rem; }
  header.site nav.primary .mobile-nav-cta a { display: inline-flex; width: auto; padding: .75rem 1.3rem; background: var(--red); color: #fff; border-radius: var(--btn-radius); font-weight: 600; }
  header.site.nav-open nav.primary { display: block; }
  header.site .hamburger { padding: .3rem .5rem; border-radius: 6px; }
  header.site.nav-open .hamburger { color: var(--gold); }
}
