/* =========================================================
   Keystone Estates — The Owner's Concierge
   Premium property management for Florida owners
   ========================================================= */

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

:root {
  /* Palette */
  --navy: #1B2A4A;
  --navy-dark: #0F1923;
  --navy-card: #1E2D42;
  --gold: #C9A84C;
  --gold-soft: #D9BC66;
  --gold-dim: rgba(201, 168, 76, 0.35);
  --off-white: #FAFAF8;
  --warm: #F5F3EF;
  --ink: #1A1A2E;
  --ink-soft: #4A4A5E;
  --muted: #7A7A8C;
  --line: rgba(201, 168, 76, 0.25);
  --line-dark: rgba(255, 255, 255, 0.08);

  /* Type scale */
  --fs-hero: clamp(2.75rem, 6vw, 4.75rem);
  --fs-h1: clamp(2.25rem, 4vw, 3.25rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.5rem);
  --fs-lead: clamp(1.05rem, 1.3vw, 1.2rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --radius: 6px;
  --radius-lg: 10px;
  --shadow-soft: 0 1px 3px rgba(15, 25, 35, 0.05),
                 0 4px 14px rgba(15, 25, 35, 0.06);
  --shadow-card: 0 1px 2px rgba(15, 25, 35, 0.04),
                 0 6px 22px rgba(15, 25, 35, 0.05);

  /* Fonts */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--gold);
}

button {
  font: inherit;
  cursor: pointer;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: 1.1rem; font-weight: 500; }

p {
  color: var(--ink-soft);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-block;
}

.eyebrow--light { color: var(--gold-soft); }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 62ch;
}

.lead--light { color: rgba(255,255,255,0.78); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--tight { padding: clamp(3rem, 5vw, 4.5rem) 0; }

.section--dark {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.82);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

.section--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.section--warm {
  background: var(--warm);
}

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.section-head p {
  margin-top: 1rem;
}

.divider-gold {
  width: 52px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.93rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--navy-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(26, 26, 46, 0.2);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--ghost-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--small {
  padding: 0.65rem 1.15rem;
  font-size: 0.85rem;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(27, 42, 74, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.05rem 0;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__brand img {
  height: 42px;
  width: auto;
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__brand-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.nav__brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.3rem;
  font-weight: 500;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.93rem;
  color: var(--ink);
  font-weight: 400;
}

.nav__links a:hover {
  color: var(--gold);
}

.nav__cta {
  margin-left: 0.5rem;
}

@media (max-width: 880px) {
  .nav__links li:not(.nav__cta) {
    display: none;
  }
  .nav__brand-tag { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy-dark);
  color: #fff;
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(5rem, 10vw, 8rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(201, 168, 76, 0.12), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(27, 42, 74, 0.65), transparent 50%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.hero__eyebrow {
  color: var(--gold);
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero h1 {
  font-size: var(--fs-hero);
  color: #fff;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.015em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.hero__sub {
  font-size: var(--fs-lead);
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__flourish {
  margin: 1.75rem auto 0;
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* ---------- Trust bar ---------- */
.trustbar {
  background: var(--navy);
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  color: rgba(255, 255, 255, 0.75);
}

.trustbar__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 2.25rem;
  padding: 1.25rem 0;
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.trustbar__row span {
  position: relative;
  display: inline-block;
}

.trustbar__dot {
  color: var(--gold);
}

/* ---------- Pain / Familiar ---------- */
.pain__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.pain__item {
  padding: 1.75rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(27, 42, 74, 0.08);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius);
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.pain__item strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

/* ---------- Services ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(27, 42, 74, 0.07);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.service-card__icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* ---------- Offer / Concierge Package ---------- */
.offer {
  background: var(--navy-dark);
  color: #fff;
  position: relative;
}

.offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(201, 168, 76, 0.08), transparent 60%);
  pointer-events: none;
}

.offer__inner {
  position: relative;
}

.offer__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.offer__head h2 {
  color: #fff;
  font-weight: 500;
}

.offer__value {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.offer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.offer-card {
  background: var(--navy-card);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.offer-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.offer-card__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.offer-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
  line-height: 1.3;
}

.offer-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.55;
}

.offer-card__value {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  width: 100%;
}

.offer__total {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.offer__total-amount {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.offer__total-label {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

/* ---------- Guarantees ---------- */
.guarantees__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.guarantee-card {
  padding: 2rem 1.75rem;
  background: #fff;
  border: 1px solid rgba(27, 42, 74, 0.08);
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-soft);
}

.guarantee-card__seal {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.guarantee-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
}

.guarantee-card p {
  font-size: 0.93rem;
  color: var(--ink-soft);
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}

.step {
  text-align: center;
  padding: 0 0.5rem;
}

.step__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.step p {
  font-size: 0.93rem;
  color: var(--ink-soft);
  max-width: 28ch;
  margin: 0 auto;
}

/* ---------- Pricing ---------- */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.price-card {
  background: #fff;
  border: 1px solid rgba(27, 42, 74, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}



.price-card__label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.price-card__amount {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.price-card__amount-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.price-card__note {
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-top: 1px solid rgba(27, 42, 74, 0.08);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
}

.price-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.price-note strong { color: var(--navy); }

/* ---------- Who We Serve (Avatars) ---------- */
.avatars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.avatar-card {
  padding: 2rem 1.75rem;
  background: #fff;
  border: 1px solid rgba(27, 42, 74, 0.08);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-soft);
}

.avatar-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.avatar-card__tag {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
  display: inline-block;
}

.avatar-card p {
  font-size: 0.94rem;
  color: var(--ink-soft);
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid rgba(27, 42, 74, 0.12);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s ease;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item summary:hover {
  color: var(--gold);
}

.faq__item-body {
  padding: 0 0 1.5rem;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.7;
  max-width: 68ch;
}

/* ---------- Final CTA ---------- */
.cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.1), transparent 60%);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta h2 {
  color: #fff;
  font-weight: 500;
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2rem;
}

.cta__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.cta__contact a {
  color: var(--gold);
}

.cta__contact a:hover {
  color: var(--gold-soft);
}

.cta__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: #0A121C;
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 0 2rem;
  font-size: 0.9rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 780px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__brand-row img {
  height: 44px;
  width: auto;
  filter: brightness(1.1);
}

.footer__brand-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
}

.footer__brand-desc {
  max-width: 34ch;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__heading {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer__list a {
  color: rgba(255, 255, 255, 0.65);
}

.footer__list a:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- Service area page specifics ---------- */
.city-hero {
  background: var(--navy-dark);
  color: #fff;
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.city-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 20%, rgba(201, 168, 76, 0.12), transparent 55%);
  pointer-events: none;
}

.city-hero__inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.city-hero__location {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.city-hero h1 {
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 500;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.city-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--fs-lead);
  max-width: 640px;
  margin: 0 auto 2rem;
}

.city-intro p + p { margin-top: 1rem; }
.city-intro { max-width: 760px; margin: 0 auto; }

.city-offer-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.city-offer-item {
  background: var(--navy-card);
  border: 1px solid rgba(201, 168, 76, 0.18);
  padding: 1.25rem 1.25rem;
  border-radius: var(--radius);
  color: rgba(255,255,255,0.82);
  font-size: 0.93rem;
}

.city-offer-item strong {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.city-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.city-service {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid rgba(27,42,74,0.08);
  border-radius: var(--radius);
  border-left: 2px solid var(--gold);
}

.city-service h3 {
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
}

.city-service p {
  font-size: 0.93rem;
}

.breadcrumbs {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 1rem 0 0;
  letter-spacing: 0.03em;
}

.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { color: var(--gold); padding: 0 0.4rem; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
