/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  color-scheme: light;
  --ink:       #1a1a1a;
  --ink-soft:  #2e2e2e;
  --muted:     #6b6b6b;
  --ivory:     #faf8f4;
  --linen:     #f0ebe0;
  --brass:     #c9a45c;
  --bronze:    #8b6914;
  --gold:      #d4af37;
  --gold-light:#f0d97a;
  --line:      rgba(26, 26, 26, 0.08);
  --shadow:    0 8px 32px rgba(26, 19, 14, 0.08);
  --shadow-lg: 0 20px 60px rgba(26, 19, 14, 0.14);
  --shadow-xl: 0 32px 80px rgba(26, 19, 14, 0.18);
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.hidden {
  display: none !important;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.8;
  position: relative;
  overflow-x: hidden;
}

/* ─── Ambient Background ─────────────────────────────────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 0%,   rgba(212,175,55,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 100%, rgba(139,105,20,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%,  rgba(201,164,92,0.03) 0%, transparent 70%),
    linear-gradient(180deg, #fdfcfa 0%, #f8f4ed 50%, #faf8f4 100%);
  z-index: -1;
}

/* Floating ambient orb */
body::after {
  content: "";
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.04) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  z-index: -1;
  animation: floatOrb 12s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes floatOrb {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-40px, 60px) scale(1.1); }
}

a {
  color: inherit;
  text-decoration: none;
}

/* ─── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(253, 252, 250, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  transition: box-shadow 0.4s ease, background 0.4s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(26, 19, 14, 0.10);
  background: rgba(253, 252, 250, 0.97);
}

/* Gold shimmer line at bottom of header */
.site-header::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--brass) 30%,
    var(--gold)  50%,
    var(--brass) 70%,
    transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.site-header.scrolled::after {
  opacity: 1;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s var(--ease-out);
}

.site-header.scrolled .header-inner {
  padding: 16px 24px;
}

/* ─── Logo ───────────────────────────────────────────────────── */
.logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: height 0.4s var(--ease-out);
}

.site-header.scrolled .logo-img {
  height: 60px;
}

/* ─── Navigation ─────────────────────────────────────────────── */
.site-nav {
  display: flex;
  gap: 36px;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
  padding: 8px 0;
  position: relative;
  transition: color 0.35s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), var(--gold));
  transition: width 0.35s var(--ease-out);
}

.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { width: 100%; }

.nav-link.active { color: var(--ink); }
.nav-link.active::after { width: 100%; }

/* ─── Page Content ───────────────────────────────────────────── */
.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* ─── Typography ─────────────────────────────────────────────── */
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.68rem;
  color: var(--brass);
  margin: 0 0 12px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

/* Kicker shimmer sweep */
.kicker::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.35), transparent);
  animation: shimmerSweep 3.5s ease-in-out infinite;
}

@keyframes shimmerSweep {
  0%   { left: -100%; }
  50%  { left: 160%; }
  100% { left: 160%; }
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 500;
  margin: 0 0 16px;
  color: var(--ink);
  line-height: 1.3;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }

p {
  color: var(--muted);
  margin: 0 0 20px;
  font-size: 1rem;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.hero-copy {
  background: linear-gradient(135deg, #ffffff 0%, #faf8f4 100%);
  padding: 56px 60px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  animation: heroReveal 1s var(--ease-out) both;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animated top gold bar */
.hero-copy::before {
  content: "";
  position: absolute;
  top: 0; left: -100%; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--gold), var(--gold-light), var(--gold), var(--brass));
  animation: goldBarSlide 1s var(--ease-out) 0.3s both;
}

@keyframes goldBarSlide {
  from { left: -100%; }
  to   { left: 0; }
}

/* Subtle corner accent */
.hero-copy::after {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at 100% 100%, rgba(212,175,55,0.08), transparent 70%);
  pointer-events: none;
}

.hero-copy h1 { margin-bottom: 24px; }

.hero-copy h1,
.hero-copy .kicker,
.hero-copy p,
.hero-copy .rating,
.hero-copy .contact-info {
  animation: fadeUp 0.8s var(--ease-out) both;
}
.hero-copy .kicker       { animation-delay: 0.2s; }
.hero-copy h1            { animation-delay: 0.35s; }
.hero-copy .rating       { animation-delay: 0.5s; }
.hero-copy p:nth-of-type(1){ animation-delay: 0.6s; }
.hero-copy p:nth-of-type(2){ animation-delay: 0.7s; }
.hero-copy .contact-info { animation-delay: 0.8s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Hero Office Photo ──────────────────────────────────────── */
.hero-office {
  position: relative;
  display: flex;
  flex-direction: column;
  animation: heroReveal 1s var(--ease-out) 0.2s both;
}

.office-img-frame {
  position: relative;
  flex: 1;
  overflow: hidden;
  border: 1px solid rgba(201,164,92,0.3);
  border-right: none;
  box-shadow: var(--shadow-xl);
}

/* Gold top accent bar */
.office-img-frame::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--gold), var(--gold-light), var(--gold), var(--brass));
  z-index: 2;
  animation: goldBarSlide 1s var(--ease-out) 0.5s both;
}

/* Bottom-left corner accent */
.office-img-frame::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at 0% 100%, rgba(212,175,55,0.14), transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.office-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: var(--linen);
  transition: transform 0.8s var(--ease-out);
}

.office-img-frame:hover .office-img {
  transform: scale(1.04);
}

/* Gradient overlay — darker at base */
.office-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 19, 14, 0.04) 0%,
    rgba(26, 19, 14, 0.22) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.office-caption {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0;
  padding: 14px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #faf8f4 100%);
  border: 1px solid rgba(201,164,92,0.22);
  border-top: none;
  border-right: none;
  font-weight: 600;
  animation: fadeUp 0.8s var(--ease-out) 0.9s both;
}

.rating {
  color: var(--brass);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating::before {
  content: "★";
  font-size: 1rem;
}

/* ─── Contact Info ───────────────────────────────────────────── */
.contact-info {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.contact-info p {
  margin: 0 0 14px;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info strong {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-info .phone-link {
  color: var(--brass);
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.contact-info .phone-link:hover {
  color: var(--gold);
}

/* ─── Section Head ───────────────────────────────────────────── */
.section-head {
  margin-bottom: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.section-head h1 {
  position: relative;
  display: inline-block;
  margin: 0;
}

.section-head h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brass), var(--gold), var(--brass));
  transition: width 0.8s var(--ease-out);
}

.section-head.in-view h1::after {
  width: 70px;
}

/* ─── Partners Grid ──────────────────────────────────────────── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
}

/* Scroll reveal base state */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid children */
.reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal:nth-child(2) { transition-delay: 0.18s; }
.reveal:nth-child(3) { transition-delay: 0.31s; }
.reveal:nth-child(4) { transition-delay: 0.44s; }

/* ─── Partner Card ───────────────────────────────────────────── */
.partner-card {
  background: linear-gradient(145deg, #ffffff 0%, #faf8f4 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 0;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease;
  position: relative;
  overflow: hidden;
}

/* Animated shimmer overlay on hover */
.partner-card::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(212,175,55,0.07) 50%, transparent 60%);
  transition: left 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.partner-card:hover::before {
  left: 160%;
}

/* Gold top border */
.partner-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brass), var(--gold), var(--brass), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.partner-card:hover::after {
  opacity: 1;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.partner-media {
  background: var(--linen);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  position: relative;
}

.partner-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.partner-card:hover .partner-media img {
  transform: scale(1.05);
}

.partner-card > div:last-child {
  padding: 24px 28px 28px;
}

.partner-card h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.partner-card p {
  font-size: 0.92rem;
  margin: 0;
}

/* ─── Contact ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.contact-card {
  background: linear-gradient(135deg, #ffffff 0%, #faf8f4 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 36px;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brass), var(--gold), var(--brass));
}

.contact-card::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(212,175,55,0.06) 50%, transparent 60%);
  transition: left 0.6s ease;
  pointer-events: none;
}

.contact-card:hover::after {
  left: 160%;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.contact-card h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.contact-card h2::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), var(--gold));
  transition: width 0.5s var(--ease-out);
}

.contact-card:hover h2::after {
  width: 40px;
}

.contact-card p {
  margin: 0 0 16px;
}

.contact-card .phone-link {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--brass);
  transition: color 0.3s ease;
}

.contact-card .phone-link:hover {
  color: var(--gold);
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 14px 32px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brass) 0%, var(--bronze) 100%);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  transition: all 0.35s var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  transition: left 0.5s ease;
}

.btn:hover::after { left: 160%; }
.btn:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--brass) 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(178, 138, 83, 0.38);
}

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 56px;
  background: linear-gradient(180deg, #f3ede0 0%, #ede6d6 100%);
  position: relative;
  overflow: hidden;
}

/* Footer gold shimmer line */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--brass) 25%,
    var(--gold)  50%,
    var(--brass) 75%,
    transparent 100%);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 0.88rem;
  text-align: center;
}

.footer-inner p { margin: 0; }

.powered { font-size: 0.8rem; }
.powered a {
  color: var(--bronze);
  transition: color 0.3s ease;
}
.powered a:hover { color: var(--brass); }

/* ─── Disclaimer ─────────────────────────────────────────────── */
.disclaimer {
  position: fixed;
  inset: 0;
  background: rgba(12, 10, 8, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 200;
  animation: fadeIn 0.5s ease;
  backdrop-filter: blur(12px);
}

.disclaimer.hidden { display: none; }

.disclaimer-card {
  background: linear-gradient(145deg, #ffffff 0%, #f9f7f3 100%);
  max-width: 490px;
  width: 100%;
  box-shadow:
    0 4px 6px rgba(0,0,0,0.02),
    0 25px 80px rgba(0,0,0,0.22);
  animation: disclaimerSlideUp 0.6s var(--ease-out);
  overflow: hidden;
  position: relative;
}

/* Gold top bar on disclaimer */
.disclaimer-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--gold), var(--brass));
}

@keyframes disclaimerSlideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.disclaimer-body {
  padding: 48px 44px 40px;
  text-align: center;
}

.disclaimer-icon {
  width: 60px; height: 60px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--brass) 0%, var(--bronze) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(178, 138, 83, 0.35);
  animation: iconPulse 2.5s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(178,138,83,0.35); }
  50%       { box-shadow: 0 6px 32px rgba(212,175,55,0.55); }
}

.disclaimer-icon svg {
  width: 28px; height: 28px;
  color: #ffffff;
}

.disclaimer-body h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.disclaimer-intro {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--muted);
}

.disclaimer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}

.disclaimer-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--muted);
}

.disclaimer-list li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: var(--brass);
  font-size: 1rem;
  line-height: 1.5;
}

.disclaimer-note {
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 28px;
  padding: 16px;
  background: linear-gradient(135deg, #f8f4ed 0%, #f0ebe0 100%);
  border-left: 3px solid var(--brass);
  text-align: left;
}

/* ─── Gold Button ────────────────────────────────────────────── */
.btn-gold {
  display: block;
  width: 100%;
  padding: 18px 32px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brass) 0%, var(--bronze) 100%);
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  box-shadow: 0 4px 18px rgba(178, 138, 83, 0.32);
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.16) 50%, transparent 60%);
  transition: left 0.5s ease;
}

.btn-gold:hover::after { left: 160%; }
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--brass) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212, 175, 55, 0.42);
}

/* ─── Keyframes ──────────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s var(--ease-out) forwards;
}

/* ─── Decorative Gold Divider ────────────────────────────────── */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0;
  opacity: 0.5;
}

.gold-divider::before,
.gold-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass));
}

.gold-divider::after {
  background: linear-gradient(90deg, var(--brass), transparent);
}

.gold-divider span {
  color: var(--brass);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 40px 32px;
  }

  .office-img-frame {
    border-left: 1px solid rgba(201,164,92,0.3);
    border-top: none;
  }

  .office-img {
    min-height: 280px;
  }

  .office-caption {
    border-left: 1px solid rgba(201,164,92,0.22);
  }

  .content {
    padding: 32px 20px 60px;
  }
}

@media (max-width: 700px) {
  .site-nav {
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.78rem;
  }

  .partners-grid    { grid-template-columns: 1fr; }
  .contact-grid     { grid-template-columns: 1fr; }
  .hero-copy        { padding: 32px 24px; }
  .disclaimer-body  { padding: 32px 26px; }

  .office-img {
    min-height: 220px;
  }
}
