/* ═══════════════════════════════════════════════════
   OSHEA V2 Styles  |  Version: 1.3
   Last updated: 2026-05-20
   ═══════════════════════════════════════════════════ */

/* ══════════════════════════════
   SITE LOCK OVERLAY
══════════════════════════════ */
#sitelock {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--emerald);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
#sitelock.unlocked { display: none; }
.lock-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 48px 40px;
  width: 100%; max-width: 380px;
  text-align: center;
}
.lock-logo {
  width: 80px; height: 80px; border-radius: 50%;
  border: 2px solid var(--gold);
  margin: 0 auto 24px;
  overflow: hidden;
}
.lock-logo img { width: 100%; height: 100%; object-fit: cover; }
.lock-title {
  font-family: var(--ff-display);
  font-size: 1.5rem; font-weight: 600;
  color: var(--white); margin-bottom: 6px;
}
.lock-sub {
  font-size: .8rem; color: rgba(255,255,255,.4);
  margin-bottom: 28px; line-height: 1.5;
}
.lock-input {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  color: var(--white); font-size: 1.4rem;
  font-family: var(--ff-body);
  letter-spacing: .35em; text-align: center;
  outline: none; margin-bottom: 14px;
  transition: border-color .2s;
  -webkit-text-security: disc;
}
.lock-input:focus { border-color: var(--gold); }
.lock-btn {
  width: 100%; padding: 13px;
  background: var(--gold); color: var(--emerald);
  border: none; border-radius: 10px;
  font-family: var(--ff-body); font-size: .88rem;
  font-weight: 700; letter-spacing: .04em;
  cursor: pointer; transition: background .2s;
}
.lock-btn:hover { background: var(--gold-lt); }
.lock-error {
  font-size: .78rem; color: #ff6b6b;
  margin-top: 10px; min-height: 18px;
}
.lock-badge {
  margin-top: 28px; font-size: .68rem;
  color: rgba(255,255,255,.2); letter-spacing: .05em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   OSHEA V2 — Editorial Light Design
   Palette: Cream #f7f3ee | Navy #0c1730 | Charcoal #1c1c1e | Gold #c9a535
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ═══════════════════════════════════════════════════════ */
:root {
  --cream:      #f7f3ee;
  --cream-dark: #ede7dd;
  --emerald:    #0c1730;
  --emerald-dk: #07101f;
  --emerald-lt: #1a2d52;
  --gold:       #c9a535;
  --gold-lt:    #e0c060;
  --charcoal:   #1c1c1e;
  --gray-1:     #3a3a3c;
  --gray-2:     #6e6e73;
  --gray-3:     #aeaeb2;
  --gray-4:     #e5e5ea;
  --white:      #ffffff;
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;
  --r:          8px;
  --r-lg:       16px;
  --r-xl:       24px;
  --sh:         0 4px 24px rgba(12,23,48,.1);
  --sh-lg:      0 16px 64px rgba(12,23,48,.15);
  --t:          .35s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); font-size: 16px; line-height: 1.7; color: var(--charcoal); background: var(--white); overflow-x: hidden; }
img  { max-width: 100%; display: block; object-fit: cover; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── UTILS ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; } .d4 { transition-delay: .45s; }

/* ── PILL TAG ── */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(12,23,48,.08);
  color: var(--emerald);
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 16px;
}
.pill--light { background: rgba(255,255,255,.15); color: var(--white); }
.pill--gold  { background: rgba(201,165,53,.12); color: var(--gold); }
.pill i { font-size: .55rem; }

/* ── HEADINGS ── */
.display-heading {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600; line-height: 1.12; color: var(--charcoal);
}
.display-heading em { font-style: italic; color: var(--emerald); }
.display-heading--light { color: var(--white); }
.display-heading--light em { color: var(--gold-lt); }
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600; line-height: 1.18; color: var(--charcoal);
}
.section-title--light { color: var(--white); }
.body-text { font-size: .95rem; color: var(--gray-2); line-height: 1.8; }
.body-text--light { color: rgba(255,255,255,.6); }
.rule { width: 48px; height: 2px; background: var(--emerald); margin: 18px 0 28px; }
.rule--gold { background: var(--gold); }
.rule--center { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r); font-family: var(--ff-body);
  font-size: .875rem; font-weight: 600; cursor: pointer;
  border: 2px solid transparent; transition: all var(--t);
}
.btn--emerald { background: var(--emerald); color: var(--white); }
.btn--emerald:hover { background: var(--emerald-lt); transform: translateY(-2px); box-shadow: var(--sh); }
.btn--outline-dark { border-color: var(--charcoal); color: var(--charcoal); background: transparent; }
.btn--outline-dark:hover { background: var(--charcoal); color: var(--white); transform: translateY(-2px); }
.btn--outline-white { border-color: rgba(255,255,255,.5); color: var(--white); background: transparent; }
.btn--outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--charcoal); }
.btn--gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,165,53,.35); }
.btn--white { background: var(--white); color: var(--emerald); font-weight: 700; }
.btn--white:hover { background: var(--cream); transform: translateY(-2px); }

/* ══════════════════════════════
   NAV — Light / Cream
══════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: background var(--t), box-shadow var(--t), padding var(--t);
}
.nav.scrolled {
  background: rgba(247,243,238,.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--cream-dark), 0 4px 24px rgba(0,0,0,.06);
  padding: 12px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid rgba(12,23,48,.25); }
.nav__logo-name { font-family: var(--ff-display); font-size: .95rem; font-weight: 700; color: var(--charcoal); line-height: 1.1; }
.nav__logo-sub  { font-size: .58rem; letter-spacing: .1em; color: var(--emerald); text-transform: uppercase; font-weight: 600; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__link {
  font-size: .82rem; font-weight: 500; color: var(--gray-1);
  position: relative; padding-bottom: 2px; transition: color var(--t);
}
.nav__link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--emerald);
  transition: width var(--t); border-radius: 2px;
}
.nav__link:hover { color: var(--emerald); }
.nav__link:hover::after { width: 100%; }
.nav__cta { padding: 10px 20px; font-size: .82rem; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all var(--t); }

/* ══════════════════════════════
   HERO — Split Screen
══════════════════════════════ */
.hero-wrap {
  background: var(--cream);
  padding-top: 72px;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 0;
}
.hero__left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px 52px 40px 0;
  position: relative;
  overflow: hidden;
}
.hero__content { position: relative; z-index: 1; max-width: 520px; }
/* Featured logo */
.hero__logo { margin-bottom: 20px; }
.hero__logo img {
  width: 150px; height: 150px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 10px 36px rgba(12,23,48,.2);
}
.hero__heading { margin-bottom: 14px; }
.hero__sub { font-size: .95rem; color: var(--gray-2); line-height: 1.75; margin-bottom: 24px; max-width: 420px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__right {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.hero__right img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.hero__right:hover img { transform: scale(1.04); }
/* Emerald overlay bottom */
.hero__right::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(0deg, rgba(12,23,48,.7), transparent);
}
.hero__right-caption {
  position: absolute; bottom: 32px; left: 32px; right: 32px;
  z-index: 2; color: var(--white);
}
.hero__right-caption-title {
  font-family: var(--ff-display); font-size: 1.3rem; font-style: italic; font-weight: 400;
  line-height: 1.4; margin-bottom: 4px;
}
.hero__right-caption-sub { font-size: .75rem; color: rgba(255,255,255,.6); letter-spacing: .06em; text-transform: uppercase; }

/* ══════════════════════════════
   ABOUT — Horizontal Split
══════════════════════════════ */
.about-wrap {
  background: var(--cream); /* matches content side, fills viewport edge-to-edge */
}
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 420px;
}
.about__img {
  position: relative;
  overflow: hidden;
}
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,23,48,.4), transparent 60%);
}
/* Floating stat card */
.about__img-card {
  position: absolute; bottom: 40px; right: -24px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  box-shadow: var(--sh-lg);
  border-left: 4px solid var(--gold);
  width: 200px;
  z-index: 2;
}
.about__img-card-num { font-family: var(--ff-display); font-size: 2.4rem; font-weight: 700; color: var(--emerald); line-height: 1; }
.about__img-card-label { font-size: .78rem; color: var(--gray-2); margin-top: 4px; line-height: 1.4; }
.about__content {
  background: transparent;
  padding: 52px 56px 52px 44px;
  display: flex; flex-direction: column; justify-content: center;
}
.about__content .body-text { margin-bottom: 14px; }
.about__values { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.about__value {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 14px; background: var(--white);
  border: 1px solid var(--cream-dark); border-radius: 100px;
  font-size: .8rem; font-weight: 500; color: var(--charcoal);
  transition: all var(--t);
}
.about__value:hover { border-color: var(--emerald); color: var(--emerald); }
.about__value i { color: var(--emerald); font-size: .65rem; }
.about__cta { margin-top: 32px; }

/* ══════════════════════════════
   SERVICES — Compact Cards
══════════════════════════════ */
.services { padding: 60px 0; background: var(--white); }
.services__header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 32px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.photo-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--gold);
}
.photo-card__img {
  width: 100%; height: 155px;
  overflow: hidden;
}
.photo-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.photo-card:hover .photo-card__img img { transform: scale(1.05); }
.photo-card__body {
  padding: 18px 20px 20px;
}
.photo-card__cat {
  font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.photo-card__title {
  font-family: var(--ff-display); font-size: 1.1rem; font-weight: 600;
  color: var(--charcoal); line-height: 1.3; margin-bottom: 6px;
}
.photo-card__text {
  font-size: .8rem; color: var(--gray-2); line-height: 1.6;
}

/* ══════════════════════════════
   INSIGHTS — Magazine Layout
══════════════════════════════ */
.insights { padding: 60px 0; background: var(--cream); }
.insights__header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 32px;
}
.insights__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
}
/* Featured article */
.article-featured {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t);
  display: flex; flex-direction: column;
}
.article-featured:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.article-featured__img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.article-featured__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.article-featured:hover .article-featured__img img { transform: scale(1.05); }
.article-featured__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(12,23,48,.6), transparent 60%);
}
.article-featured__cat {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--charcoal);
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 100px; z-index: 2;
}
.article-featured__body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.article-featured__title {
  font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600;
  color: var(--charcoal); line-height: 1.35; margin-bottom: 12px;
  transition: color var(--t);
}
.article-featured:hover .article-featured__title { color: var(--emerald); }
.article-featured__text { font-size: .875rem; color: var(--gray-2); line-height: 1.75; flex: 1; }
.article-featured__footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--gray-4);
}
/* Article list (right column) */
.article-list { display: flex; flex-direction: column; gap: 20px; }
.article-item {
  background: var(--white); border-radius: var(--r-lg);
  padding: 22px; display: flex; gap: 16px;
  transition: all var(--t);
}
.article-item:hover { transform: translateX(4px); box-shadow: var(--sh); }
.article-item__thumb {
  width: 72px; height: 72px; border-radius: var(--r); overflow: hidden; flex-shrink: 0;
  background: var(--emerald);
  display: flex; align-items: center; justify-content: center;
}
.article-item__thumb i { font-size: 1.6rem; color: rgba(255,255,255,.4); }
.article-item__cat {
  font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--emerald); margin-bottom: 5px;
}
.article-item__title {
  font-family: var(--ff-display); font-size: .98rem; font-weight: 600;
  color: var(--charcoal); line-height: 1.35; margin-bottom: 6px;
  transition: color var(--t);
}
.article-item:hover .article-item__title { color: var(--emerald); }
.article-item__date { font-size: .72rem; color: var(--gray-3); }
.read-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .78rem; font-weight: 600; color: var(--emerald);
  transition: gap var(--t);
}
.read-link:hover { gap: 9px; }

/* ══════════════════════════════
   NUMBERS
══════════════════════════════ */
.numbers {
  background: var(--emerald);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.numbers__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.number-item {
  text-align: center; padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,.1);
  position: relative;
}
.number-item:last-child { border-right: none; }
.number-item__num {
  font-family: var(--ff-display); font-size: 2.2rem; font-weight: 700;
  color: var(--white); line-height: 1;
  display: block;
}
.number-item__num span { color: var(--gold); }
.number-item__label { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 6px; letter-spacing: .04em; }

/* ══════════════════════════════
   DOCS / PROFESSIONAL SERVICE
══════════════════════════════ */
.docs {
  padding: 60px 0;
  background: var(--white);
}
.docs__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.docs__img {
  position: relative;
  min-height: 380px;
}
.docs__img img { width: 100%; height: 100%; object-fit: cover; }
.docs__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,23,48,.75), rgba(7,16,31,.5));
}
.docs__img-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 44px;
  z-index: 2;
}
.docs__img-quote {
  font-family: var(--ff-display); font-size: 1.3rem; font-style: italic;
  color: var(--white); line-height: 1.55; margin-bottom: 16px;
}
.docs__img-author { font-size: .75rem; color: rgba(255,255,255,.55); letter-spacing: .06em; text-transform: uppercase; }
.docs__content {
  background: var(--cream);
  padding: 44px 44px;
  display: flex; flex-direction: column; justify-content: center;
}
.docs__content .body-text { margin-bottom: 16px; }
.docs__items { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.docs__item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--cream-dark);
  transition: all var(--t);
}
.docs__item:hover { border-color: var(--emerald); transform: translateX(4px); }
.docs__item-icon {
  width: 38px; height: 38px; border-radius: var(--r);
  background: rgba(12,23,48,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: var(--emerald); flex-shrink: 0;
}
.docs__item-title { font-size: .88rem; font-weight: 600; color: var(--charcoal); margin-bottom: 2px; }
.docs__item-desc  { font-size: .78rem; color: var(--gray-2); line-height: 1.5; }

/* ══════════════════════════════
   CONTACT BAND
══════════════════════════════ */
.contact-band {
  background: var(--emerald);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}
.contact-band::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--gold), var(--emerald));
}
.contact-band__inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
}
.contact-band__title {
  font-family: var(--ff-display); font-size: clamp(1.8rem,3vw,2.8rem);
  font-weight: 600; color: var(--white); line-height: 1.2; margin-bottom: 12px;
}
.contact-band__title em { font-style: italic; color: var(--gold-lt); }
.contact-band__sub { font-size: .92rem; color: rgba(255,255,255,.5); max-width: 480px; }
.contact-band__actions { display: flex; flex-direction: column; gap: 11px; min-width: 200px; }
.contact-info-row {
  display: flex; gap: 24px; margin-top: 20px; flex-wrap: wrap;
}
.contact-info-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; color: rgba(255,255,255,.5);
}
.contact-info-item i { color: var(--gold); font-size: .9rem; }

/* ══════════════════════════════
   DISCLAIMER
══════════════════════════════ */
.disclaimer {
  background: var(--emerald);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
}
.disclaimer p { font-size: .74rem; color: rgba(255,255,255,.32); line-height: 1.6; }
.disclaimer strong { color: rgba(255,255,255,.5); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--emerald);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 32px 0 16px;
}
.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__brand img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(201,165,53,.4); }
.footer__brand-name { font-family: var(--ff-display); font-size: .98rem; font-weight: 700; color: var(--white); }
.footer__brand-sub  { font-size: .58rem; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; }
.footer__nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__nav a { font-size: .8rem; color: rgba(255,255,255,.45); transition: color var(--t); }
.footer__nav a:hover { color: var(--gold); }
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  width: 30px; height: 30px; border-radius: 6px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: rgba(255,255,255,.4);
  transition: all var(--t);
}
.footer__social a:hover { background: rgba(201,165,53,.2); border-color: var(--gold); color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 14px; display: flex; align-items: center; justify-content: space-between; }
.footer__copy { font-size: .74rem; color: rgba(255,255,255,.28); }

/* ══════════════════════════════
   NAV ACTIVE STATE
══════════════════════════════ */
.nav__link--active { color: var(--emerald) !important; font-weight: 600; }
.nav__link--active::after { width: 100% !important; }

/* ══════════════════════════════
   PAGE BANNER (inner pages)
══════════════════════════════ */
.page-banner {
  background: var(--emerald);
  padding: 80px 0 48px;
}
.page-banner__inner { padding-top: 12px; }
.page-banner__breadcrumb {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-banner__breadcrumb a { color: rgba(255,255,255,.35); transition: color var(--t); }
.page-banner__breadcrumb a:hover { color: var(--gold); }
.page-banner__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.page-banner__title em { color: var(--gold); font-style: italic; }
.page-banner__sub {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  margin-top: 12px;
  max-width: 500px;
  line-height: 1.65;
}

/* ══════════════════════════════
   CONTACT PAGE
══════════════════════════════ */
.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-detail-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail__icon {
  width: 40px; height: 40px; border-radius: var(--r);
  background: var(--white); border: 1px solid var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--emerald); font-size: .9rem; flex-shrink: 0;
}
.contact-detail__label { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-3); margin-bottom: 2px; }
.contact-detail__value { font-size: .9rem; color: var(--charcoal); }
.contact-detail__value a { color: var(--emerald); }
.contact-detail__value a:hover { text-decoration: underline; }
.footer__social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--cream-dark); border: 1px solid var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-2); font-size: .82rem; transition: all var(--t);
}
.footer__social-link:hover { background: var(--emerald); border-color: var(--emerald); color: var(--white); }

/* ── Form ── */
.contact-page__form {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--sh);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: .78rem; font-weight: 600; color: var(--charcoal); letter-spacing: .02em; }
.form-input {
  padding: 11px 16px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--r);
  font-family: var(--ff-body);
  font-size: .88rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  width: 100%;
}
.form-input:focus { border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(12,23,48,.08); background: var(--white); }
.form-textarea { min-height: 130px; resize: vertical; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__right { height: 300px; min-height: 0; }
  .hero__left  { padding: 32px 24px 32px 0; }
  .hero__left::before { display: none; }
  .about  { grid-template-columns: 1fr; }
  .about__img { height: 400px; }
  .about__img-card { right: 16px; }
  .about__content { padding: 56px 32px; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .photo-card--tall { grid-row: span 1; }
  .photo-card--tall img { min-height: 300px; }
  .insights__grid { grid-template-columns: 1fr; }
  .numbers__grid { grid-template-columns: repeat(3,1fr); }
  .docs__inner { grid-template-columns: 1fr; }
  .docs__img { height: 360px; }
  .docs__content { padding: 44px 36px; }
  .contact-band__inner { grid-template-columns: 1fr; }
  .contact-band__actions { flex-direction: row; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .hero__stats { flex-wrap: wrap; gap: 20px; }
  .services__header, .insights__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .services__grid { grid-template-columns: 1fr; }
  .numbers__grid { grid-template-columns: repeat(3,1fr); }
  .contact-band__actions { flex-direction: column; }
  .contact-page__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__nav { gap: 16px; }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; }
  .strip__cta { display: none; }
  .strip__text { font-size: .95rem; }
}
