
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy:      #0D1F35;
    --navy-mid:  #162B45;
    --teal:      #22B8CF;
    --teal-light:#67D5E8;
    --teal-pale: #E0F7FA;
    --gold:      #B87820;
    --gold-light:#D4921C;
    --gold-pale: #FDF6EC;
    --cream:     #F8F5F0;
    --cream-dark:#EFE9E0;
    --border:    #E8E3DB;
    --border-dark:#D0C8BC;
    --text:      #111827;
    --text-mid:  #4B5563;
    --text-light:#9CA3AF;
    --white:     #FFFFFF;
    --serif:     'Cormorant Garamond', Georgia, serif;
    --sans:      'DM Sans', system-ui, sans-serif;
    --r: 4px; --rl: 12px;
  }
  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); color: var(--text); background: var(--white); overflow-x: hidden; }
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 5%; height: 70px; background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); transition: box-shadow 0.3s; }
  nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }
  .nav-logo { font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--navy); text-decoration: none; }
  .nav-logo span { color: var(--teal); }
  .nav-links { display: flex; align-items: center; gap: 32px; }
  .nav-links a { font-size: 14px; font-weight: 400; color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--navy); }
  .nav-cta { background: var(--navy) !important; color: var(--white) !important; padding: 10px 22px; border-radius: var(--r); font-weight: 500 !important; font-size: 13px !important; letter-spacing: 0.04em; transition: background 0.2s !important; }
  .nav-cta:hover { background: var(--teal) !important; color: var(--navy) !important; }
  .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .nav-hamburger span { width: 22px; height: 1.5px; background: var(--navy); }
  /* PAGE HERO */
  .page-hero { padding: 120px 5% 72px; background: var(--cream); border-bottom: 1px solid var(--border); }
  .page-hero-inner { max-width: 1200px; margin: 0 auto; }
  .page-eyebrow { font-size: 11px; font-weight: 500; color: var(--teal); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }
  .page-title { font-family: var(--serif); font-size: clamp(36px, 5vw, 62px); font-weight: 300; color: var(--navy); line-height: 1.1; margin-bottom: 18px; }
  .page-title em { font-style: italic; color: var(--teal); }
  .page-sub { font-size: 16px; font-weight: 300; color: var(--text-mid); line-height: 1.8; max-width: 600px; }
  /* SECTIONS */
  section { padding: 88px 5%; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .eyebrow { font-size: 11px; font-weight: 500; color: var(--teal); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 12px; }
  .section-title { font-family: var(--serif); font-size: clamp(30px, 3.5vw, 48px); font-weight: 300; line-height: 1.18; color: var(--navy); margin-bottom: 16px; }
  .section-title em { font-style: italic; color: var(--teal); }
  .section-sub { font-size: 15px; font-weight: 300; color: var(--text-mid); line-height: 1.8; max-width: 560px; margin-bottom: 52px; }
  /* BUTTONS */
  .btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: var(--white); padding: 14px 28px; border-radius: var(--r); font-weight: 500; font-size: 14px; text-decoration: none; transition: background 0.2s; }
  .btn-primary:hover { background: var(--teal); color: var(--navy); }
  .btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--text-mid); border: 1px solid var(--border-dark); padding: 13px 28px; border-radius: var(--r); font-size: 14px; text-decoration: none; transition: all 0.2s; }
  .btn-outline:hover { border-color: var(--navy); color: var(--navy); }
  /* PROSE */
  .prose p { font-size: 15px; font-weight: 300; color: var(--text-mid); line-height: 1.82; margin-bottom: 18px; }
  .prose h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--navy); margin: 28px 0 10px; }
  .prose ul { margin: 10px 0 18px 0; display: flex; flex-direction: column; gap: 8px; }
  .prose ul li { font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.65; padding-left: 18px; position: relative; }
  .prose ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }
  /* HIGHLIGHT BOX */
  .highlight-box { background: var(--teal-pale); border-left: 3px solid var(--teal); border-radius: 0 var(--r) var(--r) 0; padding: 20px 24px; margin: 24px 0; }
  .highlight-box p { font-size: 14px; font-weight: 400; color: var(--text); line-height: 1.7; margin: 0; }
  .highlight-box strong { color: var(--navy); }
  /* WARN BOX */
  .warn-box { background: var(--gold-pale); border-left: 3px solid var(--gold); border-radius: 0 var(--r) var(--r) 0; padding: 20px 24px; margin: 24px 0; }
  .warn-box p { font-size: 14px; font-weight: 400; color: var(--text); line-height: 1.7; margin: 0; }
  /* FOOTER */
  footer { background: var(--navy); padding: 56px 5% 32px; }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .footer-brand-name { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
  .footer-brand-name span { color: var(--teal-light); }
  .footer-brand-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 18px; max-width: 280px; }
  .footer-col h5 { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.3); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--white); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; flex-wrap: wrap; gap: 12px; }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.22); }
  .footer-legal { display: flex; gap: 22px; }
  .footer-legal a { font-size: 12px; color: rgba(255,255,255,0.22); text-decoration: none; }
  .footer-legal a:hover { color: rgba(255,255,255,0.5); }
  /* ANIMATIONS */
  .fade-up { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  /* MOBILE */
  @media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
  }
  @media (max-width: 600px) {
    section { padding: 56px 5%; }
    .page-hero { padding: 100px 5% 52px; }
    .footer-top { grid-template-columns: 1fr; }
  }
  
  .cred-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 44px; }
  .cred-card { background: var(--white); padding: 28px 24px; border-top: 3px solid var(--border); }
  .cred-card.teal { border-top-color: var(--teal); }
  .cred-card.navy { border-top-color: var(--navy); }
  .cred-card.gold { border-top-color: var(--gold); }
  .cred-card-icon { width: 40px; height: 40px; border-radius: var(--r); background: var(--teal-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
  .cred-card h4 { font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--navy); margin-bottom: 8px; }
  .cred-card p { font-size: 13px; font-weight: 300; color: var(--text-mid); line-height: 1.7; }
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
  .val-item { display: flex; gap: 20px; margin-bottom: 32px; }
  .val-bar { width: 3px; background: var(--teal); border-radius: 2px; flex-shrink: 0; }
  .val-item h4 { font-family: var(--serif); font-size: 21px; font-weight: 400; color: var(--navy); margin-bottom: 8px; }
  .val-item p { font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.75; }
  .loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
  .loc-card { background: var(--cream); padding: 28px 24px; }
  .loc-card h4 { font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--navy); margin-bottom: 10px; }
  .loc-card p { font-size: 13.5px; font-weight: 300; color: var(--text-mid); line-height: 1.7; }
  @media (max-width:900px) { .two-col,.cred-grid,.loc-grid { grid-template-columns:1fr; } }

  
  #hsmh-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 101; }
  nav { top: 38px; }
  .page-hero, .hero { padding-top: 158px !important; }

