/* =========================================================
   Kitsap Unlocked — Team Real Estate Site
   ========================================================= */

:root {
  --navy: #16324a;
  --navy-dark: #0e2233;
  --teal: #3c6e71;
  --gold: #c9a15a;
  --gold-light: #e4c98a;
  --sand: #faf8f4;
  --cream: #f3efe6;
  --charcoal: #2a2a2a;
  --gray: #667085;
  --line: #e4ddce;
  --white: #ffffff;

  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 10px;
  --shadow-sm: 0 2px 10px rgba(22, 50, 74, 0.08);
  --shadow-md: 0 10px 30px rgba(22, 50, 74, 0.14);
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--sand);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-dark);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--charcoal); }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--navy); }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section {
  padding: 76px 0;
}
.section--tight { padding: 48px 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy-dark); color: var(--sand); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: #cdd9e2; }

.section-head {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-head p { color: var(--gray); }
.section--navy .section-head p { color: #cdd9e2; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-primary:hover { background: var(--gold-light); color: var(--navy-dark); }
.btn-outline {
  border-color: var(--sand);
  color: var(--sand);
  background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); color: var(--sand); }
.btn-outline-navy {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  transition: background-color .25s ease, border-color .25s ease;
}

/* Transparent variant — floats over a video/image hero, solidifies on scroll */
.site-header.transparent {
  position: absolute;
  width: 100%;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}
.site-header.transparent .logo,
.site-header.transparent .nav-links > li > a,
.site-header.transparent .dropdown > a {
  color: #fff;
}
.site-header.transparent .logo .sub { color: var(--gold-light); }
.site-header.transparent .nav-toggle span { background: #fff; }
.site-header.transparent.is-scrolled {
  position: fixed;
  background: rgba(250, 248, 244, 0.96);
  border-bottom-color: var(--line);
  backdrop-filter: blur(6px);
}
.site-header.transparent.is-scrolled .logo,
.site-header.transparent.is-scrolled .nav-links > li > a,
.site-header.transparent.is-scrolled .dropdown > a {
  color: var(--navy-dark);
}
.site-header.transparent.is-scrolled .logo .sub { color: var(--gold); }
.site-header.transparent.is-scrolled .nav-toggle span { background: var(--navy-dark); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: 0.01em;
}
.logo svg { flex-shrink: 0; }
.logo-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}
.logo span.sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--navy-dark);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--teal); }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 130%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 200px;
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 2px;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { display: flex; }
.dropdown-menu a {
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--navy-dark);
  font-size: 0.92rem;
}
.dropdown-menu a:hover { background: var(--cream); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-dark);
  margin: 5px 0;
  transition: 0.2s;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 55%, var(--teal) 130%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(201,161,90,0.18), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,0.08), transparent 40%);
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 88px;
  padding-bottom: 88px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

/* Video variant — full-bleed background video behind a transparent, scroll-solidifying nav */
.hero--video {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
}
.hero--video::after { display: none; }
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8,18,30,.35) 0%, rgba(8,18,30,.4) 45%, rgba(8,18,30,.72) 100%);
}
.hero--video .container {
  padding-top: 170px;
  padding-bottom: 90px;
}
.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-scroll-cue .dot {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0));
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue {
  0% { transform: scaleY(0.2); transform-origin: top; opacity: .4; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0.2); transform-origin: bottom; opacity: .4; }
}
@media (max-width: 720px) {
  .hero--video .container { padding-top: 140px; }
  .hero-scroll-cue { display: none; }
}
.hero-watermark {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 620px;
  max-width: 60%;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 720px) {
  .hero-watermark { display: none; }
}
.hero h1 { color: var(--white); }
.hero .lead {
  font-size: 1.12rem;
  color: #dbe6ec;
  max-width: 520px;
}
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--gold-light);
}
.hero-stats div span {
  font-size: 0.82rem;
  color: #b9c9d3;
  letter-spacing: 0.03em;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(4px);
}
.hero-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 14px; }
.agent-strip {
  display: flex;
  gap: 16px;
}
.agent-chip {
  flex: 1;
  text-align: center;
}
.agent-chip .avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 8px;
  border: 2px solid var(--gold);
  object-fit: cover;
  object-position: center top;
}
.agent-chip strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
}
.agent-chip span {
  font-size: 0.72rem;
  color: #b9c9d3;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: #cdd9e2; max-width: 620px; font-size: 1.05rem; }
.breadcrumb {
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--gold-light); }

/* ---------- Cards / Grid ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.card .icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--cream);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* ---------- Team cards ---------- */
.team-card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.team-card .photo {
  aspect-ratio: 4/3.4;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-card .photo .initials {
  font-family: var(--font-head);
  font-size: 3rem;
  color: rgba(255,255,255,0.92);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  width: 96px; height: 96px;
  display: flex; align-items: center; justify-content: center;
}
.team-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.team-card h3 { margin-bottom: 2px; }
.team-card .role { color: var(--gold); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 12px; }
.team-card .meta { font-size: 0.86rem; color: var(--gray); margin-bottom: 16px; }
.team-card .meta div { margin-bottom: 3px; }
.team-card .excerpt { font-size: 0.92rem; color: var(--charcoal); margin-bottom: 18px; flex: 1; }
.team-card .actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Full bio blocks (about page) */
.bio-block {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 44px;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.bio-block:last-child { border-bottom: none; }
.bio-photo {
  aspect-ratio: 4/4.6;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.bio-photo .initials {
  font-family: var(--font-head);
  font-size: 3.4rem;
  color: rgba(255,255,255,0.92);
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  width: 120px; height: 120px;
  display: flex; align-items: center; justify-content: center;
}
.bio-contact {
  margin-top: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 0.88rem;
}
.bio-contact div { margin-bottom: 6px; display: flex; justify-content: space-between; gap: 12px; }
.bio-contact div span:first-child { color: var(--gray); }
.bio-role { color: var(--gold); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.86rem; margin-bottom: 10px; }
.bio-copy h4 { margin-top: 26px; font-size: 1.05rem; }
.bio-copy h4:first-child { margin-top: 0; }

/* ---------- Buying page split hero ---------- */
.buy-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.buy-hero-photo {
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
}
.buy-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.buy-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
  background: var(--sand);
}
.buy-hero-content .eyebrow { margin-bottom: 14px; }
.buy-hero-content h1 { margin-bottom: 18px; }
.buy-hero-content p.lead {
  color: var(--gray);
  max-width: 460px;
  margin-bottom: 30px;
}
.buy-hero-meta {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
}
.buy-hero-secondary {
  display: inline-block;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 900px) {
  .buy-hero { grid-template-columns: 1fr; min-height: auto; }
  .buy-hero-photo { height: 360px; }
  .buy-hero-content { padding: 48px 28px; }
}

/* ---------- Selling page split hero ---------- */
.sell-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.sell-hero-photo {
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
}
.sell-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.sell-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
  background: var(--sand);
}
.sell-hero-content .eyebrow { margin-bottom: 14px; }
.sell-hero-content h1 { margin-bottom: 18px; }
.sell-hero-content p.lead {
  color: var(--gray);
  max-width: 460px;
  margin-bottom: 30px;
}
.sell-hero-meta {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sell-hero-secondary {
  display: inline-block;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 900px) {
  .sell-hero { grid-template-columns: 1fr; min-height: auto; }
  .sell-hero-photo { height: 360px; }
  .sell-hero-content { padding: 48px 28px; }
}

/* ---------- Buyer's guide download ---------- */
.guide-section {
  padding: 90px 0;
  background: var(--sand);
}
.guide-grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 64px;
  align-items: center;
}
.guide-cover {
  position: relative;
}
.guide-cover img {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.guide-copy h2 { margin-bottom: 20px; }
.guide-copy p.lead {
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 30px;
  font-size: 1.05rem;
}
.guide-copy .btn { padding: 15px 32px; font-size: 1rem; }
.guide-meta {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--gray);
}
@media (max-width: 900px) {
  .guide-grid { grid-template-columns: 1fr; gap: 36px; }
  .guide-cover { max-width: 380px; margin: 0 auto; }
}

/* ---------- Home buying videos ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.video-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: var(--navy-dark);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy-dark);
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(201, 161, 90, 0.92);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  transition: background 0.18s ease;
}
.video-card:hover .video-play { background: var(--gold-light); }
.video-caption {
  padding: 16px 18px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--sand);
}
@media (max-width: 900px) {
  .video-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* ---------- Cities ---------- */
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.city-pill {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy-dark);
  transition: 0.15s;
}
.city-pill:hover { border-color: var(--gold); color: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ---------- Stats band ---------- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-band strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--gold-light);
}
.stats-band span { font-size: 0.85rem; color: #cdd9e2; letter-spacing: 0.02em; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.testimonial .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial p { font-style: italic; color: var(--charcoal); }
.testimonial .who { font-weight: 600; color: var(--navy-dark); font-style: normal; margin-top: 12px; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 6px;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--sand);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.8rem; color: var(--gray); margin-top: 10px; }

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--cream);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 260px;
  max-width: 420px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--font-body);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: #b9c9d3;
  padding: 60px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: #b9c9d3; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-grid p { color: #b9c9d3; font-size: 0.92rem; }
.footer-logo {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo .logo-badge {
  width: 34px;
  height: 34px;
}
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 10px;
}
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--sand);
}
.social-row a:hover { border-color: var(--gold); color: var(--gold-light); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 40px; }
.hidden { display: none !important; }
.badge {
  display: inline-block;
  background: var(--cream);
  color: var(--navy-dark);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .bio-block { grid-template-columns: 1fr; }
  .bio-photo { max-width: 280px; }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 720px) {
  .nav-links, .nav .btn-primary { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 82px; left: 0; right: 0;
    background: var(--sand);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
  }
  .nav.open .dropdown-menu { position: static; box-shadow: none; display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .newsletter { flex-direction: column; align-items: flex-start; }
}
