/* ─── Variables ────────────────────────────────────────────────────────────── */
:root {
  --ink:          #080808;
  --ink-2:        #1a1a1a;
  --ink-3:        #2e2e2e;
  --gold:         #c4a45a;
  --gold-dark:    #8c7238;
  --gold-light:   #f5edd8;
  --cream:        #f2ede4;
  --off-white:    #faf8f3;
  --border-warm:  #e0d8ca;
  --border-dark:  rgba(255,255,255,.1);
  --text:         #1a1a1a;
  --text-muted:   #7a7570;
  --text-light:   #a09890;

  /* Aliases for admin/blog/generated-page compatibility */
  --primary:      #080808;
  --primary-dark: #000000;
  --primary-light:#f2ede4;
  --accent:       #c4a45a;
  --accent-dark:  #8c7238;
  --accent-light: #f5edd8;
  --bg:           #faf8f3;
  --bg-alt:       #f2ede4;
  --border:       #e0d8ca;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.05);
  --shadow-md:    0 4px 24px rgba(0,0,0,.07);
  --shadow-lg:    0 16px 56px rgba(0,0,0,.1);

  --radius:       3px;
  --radius-sm:    2px;
  --radius-lg:    5px;
  --font:         system-ui, -apple-system, 'Segoe UI', sans-serif;
  --max-width:    1220px;
  --header-h:     70px;
}

/* ─── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Layout ───────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section     { padding: 6rem 0; }
.section-sm  { padding: 3.5rem 0; }
.section-alt { background: var(--cream); }
.section-dark {
  background: var(--ink);
  color: #fff;
}

/* ─── Typography ───────────────────────────────────────────────────────────── */
h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.045em;
  color: #fff;
}
h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
}
h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.3; letter-spacing: -0.01em; }
p  { color: var(--text-muted); font-weight: 300; line-height: 1.8; }

.overline {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--gold);
  display: block;
  margin-bottom: .875rem;
}

/* ─── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 2.25rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
  border-radius: 0;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-white {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn-white:hover { background: var(--cream); border-color: var(--cream); }
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.3);
}
.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,.8);
}
.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--ink);
}
.btn-lg { padding: 1.125rem 2.75rem; font-size: .8125rem; }

/* ─── Header / Nav ─────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.07);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}
.logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-name {
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #fff;
  line-height: 1.2;
}
.logo-tagline {
  font-size: .625rem;
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1;
}
.main-nav { margin-left: auto; }
.main-nav > ul {
  display: flex;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: rgba(255,255,255,.55);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: .5rem 1rem;
  text-decoration: none;
  transition: color .15s;
  display: block;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active { color: #fff; }
.main-nav a.active { color: var(--gold); }

/* Dropdown */
.has-dropdown > a::after { content: ' ▾'; font-size: .6em; opacity: .4; }

/* Extend parent's hover area downward to bridge the visual gap to the dropdown.
 * Without this, the cursor leaves the parent during the gap traversal and the
 * dropdown closes before the user can reach it. */
.has-dropdown {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: -10px;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,.1);
  min-width: 220px;
  padding: .5rem 0;
  z-index: 300;
  list-style: none;
  margin: 0;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown.open .nav-dropdown,
.nav-dropdown:hover { display: block; }
.nav-dropdown li { list-style: none; }
.nav-dropdown a {
  padding: .75rem 1.25rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.6);
  border-radius: 0;
}
.nav-dropdown a:hover { color: #fff; background: rgba(255,255,255,.05); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}
.header-phone {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .15s;
  white-space: nowrap;
}
.header-phone:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .375rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: rgba(255,255,255,.7);
  transition: all .22s;
}

/* ─── Image Placeholders ────────────────────────────────────────────────────── */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem;
  gap: .75rem;
}
.img-placeholder--dark {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.25);
}
.img-placeholder--light {
  background: var(--cream);
  border: 1px dashed var(--border-warm);
  color: var(--text-light);
}
.img-placeholder--gold {
  background: rgba(196,164,90,.06);
  border: 1px solid rgba(196,164,90,.25);
  color: rgba(196,164,90,.5);
}
.img-placeholder-icon {
  width: 36px;
  height: 28px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  position: relative;
  opacity: .7;
}
.img-placeholder-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 10px;
  height: 10px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}
.img-placeholder-label {
  font-size: .6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  line-height: 1.6;
}
.img-placeholder-label small {
  display: block;
  font-size: .625rem;
  font-weight: 400;
  opacity: .6;
  text-transform: none;
  letter-spacing: 0;
  margin-top: .25rem;
}

/* ─── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--ink);
  color: #fff;
  padding: 7rem 0 0;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 5rem;
  align-items: center;
  padding-bottom: 5rem;
  width: 100%;
}
.hero-kicker {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-kicker::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero h1 { margin-bottom: 2rem; }
.hero-body {
  color: rgba(255,255,255,.5);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 3rem;
}
.hero-actions { display: flex; gap: 1.25rem; flex-wrap: wrap; align-items: center; }

/* Photo frame — portrait with gold accent line */
.hero-photo-col {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
}
.hero-photo-frame {
  width: 100%;
  position: relative;
}
.hero-photo-frame::before {
  content: '';
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.hero-photo-frame::after {
  content: '';
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.hero-photo-frame .img-placeholder {
  aspect-ratio: 2/3;
  width: 100%;
}

/* ─── Marquee ticker ────────────────────────────────────────────────────────── */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: .875rem 0;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  gap: 0;
  animation: marquee 28s linear infinite;
}
.marquee-inner span {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--ink);
  padding: 0 2.5rem;
}
.marquee-sep {
  color: var(--ink);
  opacity: .35;
  font-size: .5rem;
  padding: 0 .25rem;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Stats strip ────────────────────────────────────────────────────────────── */
.stats-strip {
  background: var(--off-white);
  border-bottom: 1px solid var(--border-warm);
  padding: 4.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 0 2rem;
  border-right: 1px solid var(--border-warm);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: .375rem;
  display: block;
}
.stat-label {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--text-muted);
}

/* ─── Service list ───────────────────────────────────────────────────────────── */
.service-list { border-top: 1px solid var(--border-warm); }
.service-list-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto 1.5rem;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-warm);
  cursor: default;
  transition: background .2s;
}
.service-list-item:hover { background: var(--cream); margin: 0 -2rem; padding: 2rem 2rem; }
.sli-num {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold);
}
.sli-name {
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.sli-tag {
  font-size: .8125rem;
  font-weight: 300;
  color: var(--text-muted);
  text-align: right;
  white-space: nowrap;
}
.sli-arrow {
  font-size: 1rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity .2s, transform .2s;
  display: flex;
  align-items: center;
}
.service-list-item:hover .sli-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* ─── About (dark editorial) ─────────────────────────────────────────────────── */
.about-dark {
  background: var(--ink-2);
  padding: 7rem 0;
}
.about-dark-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 6rem;
  align-items: center;
}
.about-photo-dark .img-placeholder {
  aspect-ratio: 3/4;
}
.about-pull-quote {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  position: relative;
  padding-top: 2rem;
}
.about-pull-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.about-attribution {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 2rem;
}
.about-dark p {
  color: rgba(255,255,255,.45);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.credential-list { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; }
.credential-item {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  font-weight: 300;
  padding: .625rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  gap: .875rem;
}
.credential-item::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── Testimonials (pure minimal) ───────────────────────────────────────────── */
.testimonials-section {
  background: var(--off-white);
  padding: 7rem 0;
}
.t-overline {
  text-align: center;
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: 5rem;
}
.t-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
}
.t-item {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-warm);
}
.t-item:first-child { border-top: 1px solid var(--border-warm); }
.t-item blockquote {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.t-item blockquote::before {
  content: '\201C';
  font-style: normal;
  font-size: 1.5em;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: .2em;
}
.t-cite {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--text-muted);
}

/* ─── CTA ─────────────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--ink);
  text-align: center;
  padding: 7rem 0;
}
.cta-band h2 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
}
.cta-band p {
  color: rgba(255,255,255,.4);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 3rem;
  font-size: 1.0625rem;
}
.cta-actions { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }

/* ─── Page Hero (interior) ───────────────────────────────────────────────────── */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 5.5rem 0 6.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.page-hero .overline { text-align: center; }
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: #fff;
  text-align: center;
  margin-bottom: .75rem;
}
.page-hero p {
  color: rgba(255,255,255,.45);
  font-size: 1rem;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

/* ─── Section header ─────────────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .eyebrow {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-header h2 { color: var(--text); margin-bottom: .875rem; }
.section-header p { color: var(--text-muted); font-weight: 300; max-width: 520px; margin: 0 auto; }

/* ─── Cards (about/services inner pages) ───────────────────────────────────── */
.card {
  background: var(--off-white);
  border: 1px solid var(--border-warm);
  padding: 2.25rem;
  transition: box-shadow .2s;
}
.card:hover { box-shadow: var(--shadow-md); }
.card-num {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.card h3 { margin-bottom: .625rem; color: var(--text); }
.card p   { font-size: .9375rem; }

/* ─── Grid layouts ──────────────────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* ─── Service cards (services page detail view) ──────────────────────────────── */
.svc-detail {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--off-white);
  border: 1px solid var(--border-warm);
  border-left: 3px solid var(--gold);
  padding: 1.875rem;
  transition: box-shadow .2s;
}
.svc-detail:hover { box-shadow: var(--shadow-md); }
.svc-num-badge {
  width: 44px;
  height: 44px;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: .875rem;
  font-weight: 800;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-body h3 { margin-bottom: .5rem; }
.svc-body p  { font-size: .9375rem; margin-bottom: .875rem; }
.condition-tags { display: flex; flex-wrap: wrap; gap: .375rem; }
.condition-tag {
  background: var(--cream);
  color: var(--text-muted);
  font-size: .6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .25rem .75rem;
  border: 1px solid var(--border-warm);
}

/* ─── About page extras ─────────────────────────────────────────────────────── */
.bio-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
}
.bio-photo-frame {
  position: relative;
  padding: 0 1rem 1rem 0;
}
.bio-photo-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  height: 80%;
  background: transparent;
  border: 1px solid var(--gold);
  opacity: .4;
  pointer-events: none;
}
.bio-photo-frame .img-placeholder {
  position: relative;
  z-index: 1;
  aspect-ratio: 4/5;
}
.bio-content h2 { margin-bottom: 1rem; }
.bio-content p  { margin-bottom: 1rem; }

/* Process steps */
.process-step { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-num {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .875rem;
  flex-shrink: 0;
  letter-spacing: .05em;
}
.step-body h3 { margin-bottom: .375rem; }

/* About grid on homepage */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 6rem;
  align-items: center;
}

/* ─── Contact ────────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.ci-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .05em;
}
.ci-label { font-size: .6875rem; text-transform: uppercase; letter-spacing: .15em; color: var(--text-muted); font-weight: 600; }
.ci-value { font-weight: 600; color: var(--text); margin-top: .25rem; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 1.25rem; }
.hours-table td { padding: .625rem 0; border-bottom: 1px solid var(--border-warm); font-size: .9375rem; }
.hours-table td:last-child { text-align: right; color: var(--text-muted); font-weight: 300; }
.hours-table tr:last-child td { border-bottom: none; }

.form-card {
  background: var(--off-white);
  border: 1px solid var(--border-warm);
  padding: 2.5rem;
}
.form-card h3 { margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.125rem; }
.form-group label {
  display: block;
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--text);
  margin-bottom: .5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--border-warm);
  border-radius: 0;
  font-size: .9375rem;
  font-family: var(--font);
  font-weight: 300;
  outline: none;
  transition: border-color .15s;
  background: #fff;
  color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── Blog ──────────────────────────────────────────────────────────────────── */
.blog-card {
  background: var(--off-white);
  border: 1px solid var(--border-warm);
  border-top: 2px solid transparent;
  transition: border-top-color .2s, box-shadow .2s;
}
.blog-card:hover { border-top-color: var(--gold); box-shadow: var(--shadow-md); }
.blog-card-body { padding: 1.75rem; }
.blog-meta {
  font-size: .6875rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--text-muted);
  margin-bottom: .875rem;
  font-weight: 600;
}
.blog-card h3 { font-size: 1.125rem; margin-bottom: .625rem; }
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { font-size: .9375rem; margin-bottom: 1rem; }
.read-more {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);
}

/* ─── Blog pagination ─────────────────────────────────────────────────────── */
.blog-pagination {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  margin-top: 3rem;
}
.blog-pagination a, .blog-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px;
  border-radius: 6px;
  font-weight: 500; font-size: .9375rem;
  color: #111827; background: #fff; border: 1px solid #e5e7eb;
  text-decoration: none;
  padding: 0 12px;
  transition: border-color .15s, color .15s;
}
.blog-pagination a:hover { border-color: var(--gold, #d4a72c); color: var(--gold, #d4a72c); }
.blog-pagination .current { background: var(--text, #111827); color: #fff; border-color: var(--text, #111827); }
.blog-pagination .disabled { opacity: .4; pointer-events: none; }
.blog-pagination .ellipsis { background: transparent; border: 0; color: #9ca3af; }

/* ─── Blog article ───────────────────────────────────────────────────────────── */
.section article { max-width: 720px; margin: 0 auto; }
.section article h2 { font-size: 1.5rem; font-weight: 700; margin-top: 2.5rem; margin-bottom: .75rem; color: var(--text); }
.section article h3 { font-size: 1.1875rem; font-weight: 600; margin-top: 1.75rem; margin-bottom: .5rem; color: var(--text); }
.section article p  { line-height: 1.9; margin-bottom: 1.375rem; color: var(--text); font-weight: 300; }
.section article ul,
.section article ol { margin: 0 0 1.25rem 1.5rem; line-height: 1.9; }
.section article li { margin-bottom: .375rem; }
.section article strong { font-weight: 600; }
.section article a { color: var(--gold); text-decoration: underline; }
.post-meta {
  font-size: .6875rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-warm);
}

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.45);
  padding-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-desc { font-size: .875rem; line-height: 1.8; max-width: 240px; font-weight: 300; }
.footer-col h4 {
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: rgba(255,255,255,.25);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .625rem; }
.footer-col ul li { font-size: .875rem; font-weight: 300; }
.footer-col ul a { color: rgba(255,255,255,.45); transition: color .15s; }
.footer-col ul a:hover { color: #fff; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: .875rem;
  font-weight: 300;
  padding: .375rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.hours-list li:last-child { border-bottom: none; }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .6875rem;
  letter-spacing: .08em;
  color: rgba(255,255,255,.2);
}
.footer-bottom a { color: rgba(255,255,255,.2); transition: color .15s; }
.footer-bottom a:hover { color: rgba(255,255,255,.5); }

/* ─── Alert Banner ──────────────────────────────────────────────────────────── */
.site-banner {
  color: #fff;
  text-align: center;
  padding: .75rem 3rem;
  font-size: .875rem;
  font-weight: 300;
  line-height: 1.5;
  position: relative;
}
.site-banner a { color: #fff; font-weight: 700; text-decoration: underline; }
.site-banner-dismiss {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 .25rem;
  transition: color .15s;
}
.site-banner-dismiss:hover { color: #fff; }

/* ─── Special Popup ──────────────────────────────────────────────────────────── */
.site-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  animation: fadeInOverlay .2s ease;
}
@keyframes fadeInOverlay { from { opacity: 0; } to { opacity: 1; } }
.site-popup {
  background: #fff;
  max-width: 460px;
  width: 100%;
  padding: 3rem 2.5rem 2.5rem;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.3);
  animation: slideUpPopup .25s ease;
}
@keyframes slideUpPopup {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.site-popup h2 { font-size: 1.5rem; margin-bottom: .75rem; color: var(--text); }
.site-popup p  { color: var(--text-muted); font-size: .9375rem; font-weight: 300; line-height: 1.7; margin-bottom: 1.75rem; }
.site-popup .btn { width: 100%; justify-content: center; }
.site-popup-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.375rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
  padding: .25rem;
  transition: color .15s;
}
.site-popup-close:hover { color: var(--text); }

/* ─── Animations ────────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .bio-grid { grid-template-columns: 260px 1fr; gap: 2.5rem; }
  .hero-inner { grid-template-columns: 1fr 360px; gap: 3.5rem; }
  .about-dark-inner { grid-template-columns: 360px 1fr; gap: 4rem; }
  .about-grid { grid-template-columns: 1fr 340px; gap: 4rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 2rem 0; border-bottom: 1px solid var(--border-warm); border-right: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border-warm); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo-col { display: none; }
  .hero { padding: 5rem 0 3rem; min-height: auto; }
  .about-dark-inner { grid-template-columns: 1fr; }
  .about-photo-dark { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .bio-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .service-list-item { grid-template-columns: 2rem 1fr 1.5rem; gap: 1.5rem; }
  .sli-tag { display: none; }
  .service-list-item:hover { margin: 0 -1.5rem; padding: 2rem 1.5rem; }

  .main-nav, .header-phone { display: none; }
  .main-nav.open {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--ink);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: .5rem 1.5rem 1.5rem;
    z-index: 199;
    overflow-y: auto;
    max-height: calc(100vh - var(--header-h));
  }
  .main-nav.open > ul { flex-direction: column; gap: 0; }
  .main-nav.open a { padding: .875rem 0; font-size: .875rem; border-bottom: 1px solid rgba(255,255,255,.06); border-radius: 0; }
  .main-nav.open a:last-child { border-bottom: none; }
  .main-nav.open .nav-dropdown {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    border-left: 1px solid rgba(196,164,90,.3);
    padding: 0 0 0 .75rem;
    margin: .25rem 0 .25rem 1rem;
    background: transparent;
  }
  .has-dropdown > a::after { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .btn { padding: .625rem 1.25rem; font-size: .6875rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 4.5rem 0; }
  .cta-band { padding: 5.5rem 0; }
  .hero { padding: 4rem 0 3rem; }
}
