/* ============================================
   Office Change — Article / Service Page Styles
   ============================================ */

:root {
  --green:       #0B3D2E;
  --green-mid:   #155A40;
  --green-light: #1E7A55;
  --gold:        #C9A84C;
  --gold-lt:     #E2C97A;
  --cream:       #F6F4EF;
  --white:       #FFFFFF;
  --ink:         #1A1A1A;
  --ink-mid:     #3A3A3A;
  --ink-lt:      #6A6A6A;
}

*,*::before,*::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── NAV ───────────────────────────────────── */
.a-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 18px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 61, 46, 0.97);
  backdrop-filter: blur(18px);
  box-shadow: 0 4px 30px rgba(0,0,0,.15);
}
.a-nav-logo img { height: 56px; object-fit: contain; }
.a-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .3s;
}
.a-nav-back:hover { color: var(--gold); }
.a-nav-back i { font-size: 11px; }

/* ── HERO ──────────────────────────────────── */
.a-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  margin-top: 0;
}
.a-hero img {
  width: 100%; height: 100%; object-fit: cover;
}
.a-hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 61, 46, .55) 0%,
    rgba(11, 61, 46, .75) 50%,
    rgba(7, 28, 20, .92) 100%
  );
}
.a-hero-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 64px;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 5;
}
.a-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.a-tag::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}
.a-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  max-width: 900px;
  margin-bottom: 24px;
}
.a-hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255,255,255,.5);
  font-size: 12px;
  letter-spacing: .04em;
  flex-wrap: wrap;
}
.a-hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.a-hero-meta i { color: var(--gold); font-size: 11px; }

/* ── ARTICLE BODY ──────────────────────────── */
.a-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 100px 32px;
}
.a-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-mid);
  margin-bottom: 56px;
  padding-left: 28px;
  border-left: 2px solid var(--gold);
}
.a-section {
  margin-bottom: 64px;
}
.a-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 24px;
}
.a-section h3 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 32px 0 14px;
}
.a-section p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-mid);
  margin-bottom: 18px;
  font-weight: 400;
}
.a-section ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}
.a-section ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-mid);
}
.a-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.a-section strong { color: var(--ink); font-weight: 600; }

/* ── STATS BAND ────────────────────────────── */
.a-stats {
  background: var(--green);
  padding: 60px 40px;
  margin: 64px -40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-radius: 4px;
}
.a-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.a-stat-num sup { font-size: 22px; }
.a-stat-lbl {
  font-size: 11.5px;
  color: rgba(255,255,255,.65);
  letter-spacing: .03em;
  line-height: 1.5;
}

/* ── PULL QUOTE ────────────────────────────── */
.a-quote {
  margin: 64px 0;
  padding: 48px 40px;
  background: var(--white);
  border-left: 3px solid var(--gold);
  position: relative;
}
.a-quote::before {
  content: '\201C';
  position: absolute;
  top: -10px; left: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 96px;
  color: var(--gold);
  line-height: 1;
  opacity: .35;
}
.a-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2vw, 26px);
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 16px;
}
.a-quote cite {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── FIGURE / IMAGE ────────────────────────── */
.a-figure {
  margin: 48px 0;
}
.a-figure img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 2px;
}
.a-figure figcaption {
  font-size: 12.5px;
  color: var(--ink-lt);
  font-style: italic;
  margin-top: 12px;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
}

/* ── CTA SECTION ───────────────────────────── */
.a-cta {
  background: var(--green);
  color: #fff;
  padding: 80px 40px;
  margin: 80px -40px 0;
  text-align: center;
  border-radius: 4px;
}
.a-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}
.a-cta p {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.a-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  padding: 16px 38px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all .3s;
}
.a-cta-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.3);
}

/* ── RELATED ───────────────────────────────── */
.a-related {
  background: var(--cream);
  padding: 80px 32px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.a-related-in { max-width: 1100px; margin: 0 auto; }
.a-related h4 {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.a-related h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.4vw, 36px);
  margin-bottom: 40px;
}
.a-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.a-related-card {
  background: #fff;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: transform .3s, box-shadow .3s;
  border-radius: 2px;
  display: block;
}
.a-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.a-related-card h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.a-related-card p {
  font-size: 13px;
  color: var(--ink-lt);
  line-height: 1.6;
  margin-bottom: 14px;
}
.a-related-card span {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ── FOOTER ────────────────────────────────── */
.a-foot {
  background: #060E09;
  padding: 60px 64px 30px;
  color: rgba(255,255,255,.5);
}
.a-foot-in {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.a-foot img { height: 44px; }
.a-foot p { font-size: 11.5px; color: rgba(255,255,255,.3); }
.a-foot-cert {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  color: rgba(201,168,76,.65);
  letter-spacing: .06em;
}

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 1024px) {
  .a-nav { padding: 14px 28px; }
  .a-hero-body { padding: 32px; }
  .a-body { padding: 60px 24px; }
  .a-stats { grid-template-columns: repeat(2, 1fr); margin: 48px -24px; }
  .a-cta { margin: 60px -24px 0; }
  .a-related-grid { grid-template-columns: 1fr 1fr; }
  .a-foot { padding: 40px 28px 24px; }
}
@media (max-width: 640px) {
  .a-nav-logo img { height: 44px; }
  .a-related-grid { grid-template-columns: 1fr; }
  .a-stats { grid-template-columns: 1fr; gap: 24px; padding: 40px 28px; }
  .a-quote { padding: 32px 24px; }
}
