/* ==========================================================================
   Urbanox Capital — Design System
   Brand: Navy #1A2332 / Gold #B8841F / Ivory #FAF7F0
   Mobile-first; breakpoints at 640px, 900px, 1100px.
   ========================================================================== */

:root {
  /* Brand colors */
  --navy:        #1A2332;
  --navy-dark:   #0F1820;
  --navy-soft:   #2A3447;
  --gold:        #B8841F;
  --gold-dark:   #8F6614;
  --gold-soft:   #E8D9B0;
  --gold-tint:   #F5EDD5;
  --ivory:       #FAF7F0;
  --sand:        #E8E2D2;
  --slate:       #4A5568;
  --slate-light: #8B95A1;
  --white:       #FFFFFF;

  /* Functional */
  --text-primary:   #1A2332;
  --text-secondary: #4A5568;
  --text-tertiary:  #8B95A1;
  --border:         #E8E2D2;
  --border-strong:  #D5CBB0;

  /* Layout */
  --max:        1200px;
  --max-narrow: 880px;
  --gutter:     20px;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;

  /* Type scale (mobile) */
  --fs-display: 30px;
  --fs-h1:      26px;
  --fs-h2:      22px;
  --fs-h3:      18px;
  --fs-body:    16px;
  --fs-small:   14px;
  --fs-tiny:    12px;
}

@media (min-width: 900px) {
  :root {
    --gutter: 32px;
    --fs-display: 52px;
    --fs-h1: 40px;
    --fs-h2: 30px;
    --fs-h3: 22px;
  }
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: var(--max-narrow); }
section { padding: 56px 0; }
@media (min-width: 900px) { section { padding: 88px 0; } }

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title { font-size: var(--fs-h2); margin-bottom: 12px; }
.section-lead {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 40px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: all .18s ease;
  cursor: pointer;
  letter-spacing: .01em;
  white-space: nowrap;
}
.btn--primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn--primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.btn--dark { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--dark:hover { background: var(--navy-dark); color: var(--gold-soft); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--white); }
.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn--ghost-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn--block { width: 100%; }
.btn--sm { min-height: 40px; padding: 8px 16px; font-size: 14px; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-logo img { height: 44px; width: auto; }
.site-logo-text { display: flex; flex-direction: column; line-height: 1; }
.site-logo-text strong { font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: 16px; color: var(--navy); letter-spacing: .04em; }
.site-logo-text span { font-size: 10px; letter-spacing: .18em; color: var(--gold); margin-top: 3px; }

.primary-menu { display: none; }
.primary-menu ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 28px; }
.primary-menu a { color: var(--text-primary); font-size: 14px; font-weight: 500; padding: 8px 0; position: relative; }
.primary-menu a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width .2s ease;
}
.primary-menu a:hover::after, .primary-menu .current-menu-item > a::after { width: 100%; }
.primary-menu a:hover { color: var(--navy); }

.nav-cta { display: none; }
@media (min-width: 900px) {
  .primary-menu { display: block; }
  .nav-cta { display: inline-flex; }
}

/* Mobile menu toggle */
.mobile-toggle {
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  padding: 0;
}
.mobile-toggle span {
  width: 18px; height: 2px; background: var(--navy);
  transition: transform .25s ease, opacity .2s ease;
}
.mobile-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
.mobile-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) { .mobile-toggle { display: none; } }

.mobile-menu {
  position: fixed; inset: 68px 0 0 0;
  background: var(--white);
  z-index: 49;
  padding: 24px var(--gutter) 120px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .28s ease;
  display: flex; flex-direction: column;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu ul { list-style: none; padding: 0; margin: 0 0 24px; }
.mobile-menu li { border-bottom: 1px solid var(--border); }
.mobile-menu a {
  display: block; padding: 18px 0;
  font-size: 18px; font-weight: 500; color: var(--navy);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 20px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--white) 100%);
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 900px) { .hero { padding: 80px 0 96px; } }

.hero-grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: center; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-tint); color: var(--gold-dark);
  padding: 6px 14px; border-radius: 99px;
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero h1 {
  font-size: var(--fs-display);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.55;
  max-width: 540px;
}
@media (min-width: 900px) { .hero-sub { font-size: 19px; } }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-cta .btn { flex: 1 1 auto; }
@media (min-width: 480px) { .hero-cta .btn { flex: 0 0 auto; } }

.trust-strip {
  display: flex; flex-wrap: wrap; gap: 8px 20px;
  font-size: 13px; color: var(--text-tertiary);
  align-items: center;
}
.trust-strip span { display: inline-flex; align-items: center; gap: 6px; }
.trust-strip span::before {
  content: '✓'; color: var(--gold); font-weight: 700;
}

/* ==========================================================================
   Hero lead form
   ========================================================================== */
.lead-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 12px 40px -16px rgba(26,35,50,.18);
}
.lead-form-head { margin-bottom: 20px; }
.lead-form-head h3 { font-size: 20px; margin-bottom: 6px; }
.lead-form-head p { font-size: 13px; color: var(--text-secondary); margin: 0; }

.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 12px; font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  letter-spacing: .04em; text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 110px; padding: 12px 14px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,132,31,.12);
}
.checkbox-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--text-secondary);
  margin: 14px 0 18px;
}
.checkbox-row input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gold); }
.lead-form .btn { width: 100%; }
.form-microcopy { font-size: 12px; color: var(--text-tertiary); text-align: center; margin: 12px 0 0; }

/* ==========================================================================
   Property cards
   ========================================================================== */
.property-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .property-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .property-grid { grid-template-columns: repeat(3, 1fr); } }

.property-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex; flex-direction: column;
}
.property-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -20px rgba(26,35,50,.22);
  border-color: var(--gold-soft);
}
.property-card-image {
  aspect-ratio: 16 / 11;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
  position: relative;
  overflow: hidden;
}
.property-card-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(184,132,31,.18) 100%);
}
.property-card-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--white); color: var(--navy);
  padding: 5px 12px; border-radius: 99px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  z-index: 2;
}
.property-card-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.property-card h3 { font-size: 19px; margin-bottom: 4px; }
.property-card-loc { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }
.property-card-loc::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold);
}
.property-card-meta {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 14px 0; margin: 0 0 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.property-card-meta div span:first-child {
  display: block; font-size: 11px; color: var(--text-tertiary);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px;
}
.property-card-meta div span:last-child { font-size: 14px; font-weight: 600; color: var(--navy); }
.property-card-link {
  margin-top: auto;
  font-size: 14px; font-weight: 600; color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
}
.property-card-link::after { content: '→'; transition: transform .2s ease; }
.property-card-link:hover::after { transform: translateX(3px); }

/* ==========================================================================
   Why us / pillar grid
   ========================================================================== */
.pillar-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .pillar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .pillar-grid { grid-template-columns: repeat(4, 1fr); } }

.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color .2s ease, transform .2s ease;
}
.pillar:hover { border-color: var(--gold); transform: translateY(-2px); }
.pillar-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--gold); letter-spacing: .1em;
  margin-bottom: 14px; display: block;
}
.pillar h3 { font-size: 18px; margin-bottom: 8px; }
.pillar p { font-size: 14px; color: var(--text-secondary); margin: 0; line-height: 1.6; }

.section-alt { background: var(--ivory); }

/* ==========================================================================
   Locations
   ========================================================================== */
.location-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .location-grid { grid-template-columns: repeat(3, 1fr); } }

.location-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease;
}
.location-card::before {
  content: ''; position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: var(--gold); opacity: .08;
  border-radius: 50%;
  transition: transform .35s ease, opacity .35s ease;
}
.location-card:hover { transform: translateY(-3px); }
.location-card:hover::before { transform: scale(1.4); opacity: .14; }
.location-card h3 { color: var(--white); font-size: 24px; margin-bottom: 8px; position: relative; }
.location-card-tag { font-size: 12px; color: var(--gold); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; position: relative; }
.location-card-desc { font-size: 14px; color: rgba(255,255,255,.78); line-height: 1.6; margin-bottom: 20px; position: relative; }
.location-card-meta {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 18px; margin-bottom: 22px;
  font-size: 13px; color: rgba(255,255,255,.7);
  position: relative;
}
.location-card-meta strong { color: var(--gold-soft); display: block; font-size: 16px; font-weight: 600; margin-top: 4px; }
.location-card-link {
  font-size: 14px; font-weight: 600; color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
  position: relative;
}
.location-card-link:hover { color: var(--gold-soft); }
.location-card-link::after { content: '→'; transition: transform .2s ease; }
.location-card-link:hover::after { transform: translateX(3px); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial {
  max-width: 760px; margin: 0 auto;
  text-align: center; padding: 40px 0;
}
.testimonial-quote {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--navy);
  margin: 0 0 24px;
}
@media (min-width: 900px) { .testimonial-quote { font-size: 28px; } }
.testimonial-quote::before { content: '"'; color: var(--gold); font-size: 1.2em; margin-right: 4px; }
.testimonial-quote::after { content: '"'; color: var(--gold); font-size: 1.2em; margin-left: 2px; }
.testimonial-cite {
  font-size: 13px; font-weight: 600; color: var(--gold);
  letter-spacing: .12em; text-transform: uppercase;
}
.testimonial-cite span { display: block; color: var(--text-secondary); font-weight: 400; letter-spacing: 0; text-transform: none; margin-top: 4px; font-size: 14px; }

/* ==========================================================================
   Final CTA dark band
   ========================================================================== */
.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,132,31,.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band h2 { color: var(--white); font-size: var(--fs-h2); margin-bottom: 12px; position: relative; }
.cta-band p { color: rgba(255,255,255,.75); font-size: 17px; max-width: 520px; margin: 0 auto 28px; position: relative; }
.cta-band .btn-row { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; position: relative; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 56px 0 28px;
  font-size: 14px;
}
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1fr; margin-bottom: 40px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.footer-brand img { height: 48px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 320px; color: rgba(255,255,255,.6); }
.footer-col h4 {
  color: var(--gold);
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,.7); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex; flex-direction: column; gap: 10px;
  align-items: center; justify-content: space-between;
  text-align: center;
  font-size: 13px; color: rgba(255,255,255,.5);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; text-align: left; } }

/* ==========================================================================
   Mobile sticky action bar
   ========================================================================== */
.mobile-bar {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 40;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: 0 16px 40px -10px rgba(26,35,50,.4);
}
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 4px;
  color: var(--white); font-size: 11px; font-weight: 600;
  padding: 8px 4px; border-radius: var(--radius-sm);
  text-align: center; line-height: 1.2;
  letter-spacing: .03em;
}
.mobile-bar a:hover, .mobile-bar a:active { background: var(--navy-soft); color: var(--gold-soft); }
.mobile-bar a.is-primary { background: var(--gold); color: var(--navy); }
.mobile-bar a.is-primary:hover { background: var(--gold-dark); color: var(--white); }
.mobile-bar svg { width: 20px; height: 20px; }
@media (min-width: 900px) { .mobile-bar { display: none; } }
@media (max-width: 899px) { body { padding-bottom: 84px; } }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero {
  background: var(--ivory);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 56px;
  text-align: center;
}
@media (min-width: 900px) { .page-hero { padding: 80px 0 88px; } }
.page-hero .eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  color: var(--gold); letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero h1 {
  font-size: var(--fs-h1);
  margin: 0 auto 14px;
  max-width: 760px;
}
.page-hero p {
  max-width: 620px; margin: 0 auto;
  color: var(--text-secondary); font-size: 17px;
}

/* ==========================================================================
   Generic content prose (about, blog, pages)
   ========================================================================== */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: var(--fs-h2); margin-top: 2.2em; }
.prose h3 { font-size: var(--fs-h3); margin-top: 1.8em; color: var(--navy); }
.prose p, .prose li { font-size: 16px; line-height: 1.8; color: var(--text-secondary); }
.prose strong { color: var(--text-primary); font-weight: 600; }
.prose blockquote {
  border-left: 3px solid var(--gold);
  padding: 6px 0 6px 20px;
  margin: 1.4em 0;
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  color: var(--navy);
  font-size: 18px;
}
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.prose img { border-radius: var(--radius-md); margin: 1.5em 0; }

/* ==========================================================================
   Service cards
   ========================================================================== */
.service-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: all .2s ease;
}
.service-card:hover { border-color: var(--gold); box-shadow: 0 12px 30px -16px rgba(184,132,31,.3); }
.service-icon {
  width: 48px; height: 48px;
  background: var(--gold-tint); color: var(--gold-dark);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-secondary); margin: 0 0 20px; line-height: 1.6; }
.service-card .property-card-link { margin-top: auto; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 56px; } }

.contact-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-bottom: 14px;
}
.contact-block-label {
  font-size: 12px; font-weight: 600;
  color: var(--gold); letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-block-value { font-size: 17px; font-weight: 600; color: var(--navy); margin: 0 0 4px; }
.contact-block-meta { font-size: 13px; color: var(--text-secondary); margin: 0; }

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden; transition: all .2s ease;
}
.blog-card:hover { border-color: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 12px 30px -16px rgba(26,35,50,.18); }
.blog-card-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
}
.blog-card-body { padding: 22px 24px 26px; }
.blog-card-cat { font-size: 11px; font-weight: 600; color: var(--gold); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.blog-card h3 { font-size: 18px; margin-bottom: 10px; }
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card-excerpt { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin: 0 0 16px; }
.blog-card-meta { font-size: 12px; color: var(--text-tertiary); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq-item summary {
  font-size: 16px; font-weight: 600; color: var(--navy);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; color: var(--gold); font-size: 22px; font-weight: 400;
  transition: transform .2s ease; flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 14px 0 0; color: var(--text-secondary); font-size: 15px; line-height: 1.7; }

/* ==========================================================================
   Utility
   ========================================================================== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-md { margin-top: 24px; }
.divider { height: 1px; background: var(--border); margin: 56px 0; border: 0; }
