/* ============================================================
   OPM.LLC — Master Stylesheet v1.0
   Primary:  #057188 (teal)
   Dark:     #002933
   Gold:     #C4922A
   Fonts:    Asap (headings) + Atkinson Hyperlegible (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Asap:wght@400;700;800&family=Atkinson+Hyperlegible+Next:wght@400;700&display=swap');

/* --- Variables --------------------------------------------- */
:root {
  --teal-darkest:   #001a20;
  --teal-dark:      #002933;
  --teal-mid-dark:  #033e50;
  --teal-primary:   #057188;
  --teal-medium:    #0e98ba;
  --teal-light:     #7fd4e8;
  --teal-pale:      #eaf6fa;

  --gold:           #c4922a;
  --gold-light:     #e6b84b;
  --gold-pale:      #fdf5e6;

  --white:          #ffffff;
  --off-white:      #f5f5f5;
  --gray-100:       #f0f4f6;
  --gray-200:       #dde5ea;
  --gray-400:       #8a9aa5;
  --gray-600:       #4a5a65;
  --text-dark:      #1a2733;
  --text-body:      #2d3e48;

  --font-heading:   'Asap', sans-serif;
  --font-body:      'Atkinson Hyperlegible Next', sans-serif;

  --nav-height:     60px;
  --max-width:      1100px;
  --section-v:      3rem;
  --section-h:      1.25rem;

  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      16px;
  --radius-pill:    999px;

  --shadow-sm:      0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:      0 4px 14px rgba(0,0,0,0.10);
  --shadow-lg:      0 8px 28px rgba(0,0,0,0.15);
  --transition:     0.2s ease;
}

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

/* --- Typography -------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.05;
}
h1 { font-size: clamp(2.2rem, 8vw, 4.5rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 800; letter-spacing: -0.01em; }
h3 { font-size: 1.1rem; font-weight: 700; }
h4 { font-size: 0.92rem; font-weight: 700; }

.tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal-light);
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal-primary);
  margin-bottom: 0.4rem;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout ------------------------------------------------ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-h);
}
.section {
  padding: var(--section-v) var(--section-h);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* --- NAVIGATION -------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  height: var(--nav-height);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 34px; width: auto; }
.nav-logo-wordmark {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--teal-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}
.nav-logo-wordmark em {
  font-style: normal;
  color: var(--gold);
}

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

/* Gold CTA button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-cta .arr { font-size: 0.85rem; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--teal-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 99;
  padding: 0.5rem 1.25rem 1.5rem;
  border-top: 2px solid var(--teal-pale);
}
.nav-drawer.open { display: block; }
.nav-drawer nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--gray-100);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nav-drawer nav a .nav-arr { color: var(--teal-primary); }
.nav-drawer nav a:last-child { border-bottom: none; }

/* --- HERO -------------------------------------------------- */
.hero {
  background: var(--teal-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}
.hero-photo {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  object-fit: cover;
  object-position: top center;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--teal-dark) 38%,
    rgba(0,41,51,0.82) 58%,
    rgba(0,41,51,0.3) 80%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
  width: 100%;
}
.hero .tagline { margin-bottom: 1rem; }
.hero h1 {
  color: var(--white);
  text-transform: uppercase;
  max-width: 600px;
  margin-bottom: 1.25rem;
}
.hero-body {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.82);
  max-width: 400px;
  margin-bottom: 1.75rem;
}
.trust-bar {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.13);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  max-width: 420px;
}
.trust-bar .star { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.trust-bar p { font-size: 0.79rem; color: rgba(255,255,255,0.72); margin: 0; line-height: 1.5; }
.trust-bar strong { color: var(--white); }

/* --- LOAN TYPE SECTION ------------------------------------- */
.loan-types { background: var(--off-white); }
.loan-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.loan-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--teal-primary);
  transition: box-shadow var(--transition), transform var(--transition);
}
.loan-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.loan-card h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--teal-dark);
  margin-bottom: 0.35rem;
}
.loan-card p {
  font-size: 0.76rem;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
  line-height: 1.45;
}
.loan-card .explore {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.loan-card .explore:hover { color: var(--teal-primary); }

/* --- WHERE WE LEND ----------------------------------------- */
.where-lend-strip {
  background: var(--teal-dark);
  padding: 1.75rem 1.25rem;
}
.where-lend-inner { max-width: var(--max-width); margin: 0 auto; }
.where-lend-strip .section-label { color: rgba(255,255,255,0.45); margin-bottom: 0.75rem; }
.where-lend-strip h2 { color: var(--white); font-size: 1rem; margin-bottom: 0.9rem; font-weight: 700; }
.state-badges { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.state-badge {
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.18);
}
.state-badge.more {
  background: var(--teal-primary);
  border-color: var(--teal-primary);
  color: var(--white);
  cursor: pointer;
}
.state-badge.more:hover { background: var(--teal-medium); }

/* --- BUTTONS (general) ------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--teal-primary); color: var(--white); }
.btn-primary:hover { background: var(--teal-medium); }
.btn-outline { background: transparent; color: var(--teal-primary); border: 2px solid var(--teal-primary); }
.btn-outline:hover { background: var(--teal-primary); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); }

/* --- FOOTER PILL GROUP ------------------------------------- */
/*  Border-radius only on outermost edges (first-child, last-child) */
.btn-group {
  display: inline-flex;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.btn-group a {
  display: inline-block;
  padding: 0.52rem 1.05rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.07);
  border-right: 1px solid rgba(255,255,255,0.18);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-group a:last-child { border-right: none; }
.btn-group a:first-child { border-radius: var(--radius-pill) 0 0 var(--radius-pill); }
.btn-group a:last-child  { border-radius: 0 var(--radius-pill) var(--radius-pill) 0; }
.btn-group a:hover { background: var(--teal-primary); color: var(--white); }

/* --- FOOTER ------------------------------------------------ */
.footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.65);
  padding: 2.5rem 1.25rem 1.5rem;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.footer-logo-text em { font-style: normal; color: var(--gold); }
.footer .tagline { margin-bottom: 1.25rem; }
.footer-contact { margin-bottom: 1.5rem; }
.footer-contact a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 0.2rem;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--white); }
.footer-nav { margin-bottom: 2rem; }
.footer-copy {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
}

/* --- SECTION HEADER ---------------------------------------- */
.section-header { margin-bottom: 1.5rem; }
.section-header h2 { color: var(--teal-dark); }
.section-header p { font-size: 0.9rem; color: var(--gray-600); margin-top: 0.4rem; }

/* --- BLOG CARDS -------------------------------------------- */
.blog-grid { display: flex; flex-direction: column; gap: 1rem; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.blog-cat {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-primary);
  margin-bottom: 0.4rem;
}
.blog-card h3 { font-size: 0.97rem; margin-bottom: 0.35rem; color: var(--text-dark); }
.blog-card p { font-size: 0.8rem; color: var(--gray-600); margin-bottom: 0.75rem; }
.blog-card .read-more {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.blog-card .read-more:hover { color: var(--teal-primary); }

/* --- FAQ --------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.2rem;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.faq-q .faq-icon { color: var(--teal-primary); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-a.open { max-height: 500px; padding: 0 1.2rem 1rem; }
.faq-a p { font-size: 0.85rem; color: var(--gray-600); margin: 0; line-height: 1.65; }

/* --- GET FUNDED FLOW --------------------------------------- */
.gf-hero { background: var(--teal-dark); padding: 2.5rem 1.25rem; text-align: center; }
.gf-hero h1 { color: var(--white); font-size: clamp(1.8rem, 6vw, 3rem); text-transform: uppercase; margin-bottom: 0.75rem; }
.gf-hero p { color: rgba(255,255,255,0.75); font-size: 0.95rem; max-width: 480px; margin: 0 auto; }
.gf-grid { display: flex; flex-direction: column; gap: 1rem; margin-top: 0; padding-top: 0; }
.gf-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--teal-primary);
  text-align: center;
}
.gf-card.gold-top { border-top-color: var(--gold); }
.gf-card .gf-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.gf-card h3 { margin-bottom: 0.5rem; font-size: 1.05rem; color: var(--teal-dark); }
.gf-card p { font-size: 0.83rem; color: var(--gray-600); margin-bottom: 1.25rem; }

/* --- LOAN CATEGORY PAGE ------------------------------------ */
.loan-hero {
  background: var(--teal-primary);
  color: var(--white);
  padding: 2.5rem 1.25rem;
}
.loan-hero .section-label { color: rgba(255,255,255,0.55); }
.loan-hero h1 { color: var(--white); font-size: clamp(1.9rem, 6vw, 3rem); text-transform: uppercase; margin-bottom: 0.6rem; }
.loan-hero .loan-desc { font-size: 0.9rem; color: rgba(255,255,255,0.82); max-width: 520px; }

.loan-insight {
  background: var(--teal-pale);
  border-left: 4px solid var(--teal-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.5rem;
}
.loan-insight .ins-label {
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--teal-primary);
  margin-bottom: 0.2rem;
}
.loan-insight p { font-size: 0.83rem; color: var(--text-body); margin: 0; line-height: 1.55; }

.subtypes { display: flex; flex-direction: column; gap: 0.7rem; }
.subtype-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 3px solid var(--teal-medium);
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.subtype-card:hover { box-shadow: var(--shadow-md); transform: translateX(3px); }
.subtype-card h4 { font-size: 0.88rem; color: var(--teal-dark); margin-bottom: 0.15rem; }
.subtype-card p { font-size: 0.75rem; color: var(--gray-600); margin: 0; }
.subtype-card .sc-arr { color: var(--gold); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }

/* --- LOAN PRODUCT (Sub-product) PAGE ----------------------- */
.product-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-primary) 100%);
  color: var(--white);
  padding: 2.5rem 1.25rem;
}
.product-hero .section-label { color: rgba(255,255,255,0.5); }
.product-hero h1 { color: var(--white); font-size: clamp(1.8rem, 6vw, 3rem); text-transform: uppercase; margin-bottom: 0.6rem; }
.product-hero .product-desc { font-size: 0.9rem; color: rgba(255,255,255,0.8); max-width: 480px; }

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.info-card h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal-primary); margin-bottom: 0.6rem; }
.info-card ul { display: flex; flex-direction: column; gap: 0.35rem; }
.info-card ul li {
  font-size: 0.83rem;
  color: var(--text-body);
  padding-left: 1rem;
  position: relative;
}
.info-card ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--teal-primary);
  font-weight: 700;
}

/* --- ABOUT ------------------------------------------------- */
.about-photo-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 280px;
  margin: 0 auto 1.75rem;
}
.about-photo-wrap img { width: 100%; }
.about-role {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--teal-primary);
  margin-bottom: 0.2rem;
}
.about-quote {
  background: var(--teal-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1rem 1.2rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--teal-dark);
}

/* --- CONTACT FORM ------------------------------------------ */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--teal-dark);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.875rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--off-white);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal-primary); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.73rem; color: var(--gray-400); margin-top: 0.3rem; }

/* --- COMING SOON ------------------------------------------- */
.cs-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-stamp {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3.5rem, 14vw, 8rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(5,113,136,0.10);
  border: 0.06em solid rgba(5,113,136,0.10);
  padding: 0.1em 0.35em;
  border-radius: 0.08em;
  transform: rotate(-32deg);
  white-space: nowrap;
  user-select: none;
}
.cs-banner {
  background: var(--teal-primary);
  color: var(--white);
  text-align: center;
  padding: 1rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.cs-banner a { color: var(--gold); text-decoration: underline; }

/* --- RESPONSIVE -------------------------------------------- */
@media (min-width: 640px) {
  :root { --section-h: 1.75rem; }
}
@media (min-width: 768px) {
  .loan-types-grid { grid-template-columns: repeat(4, 1fr); }
  .blog-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .gf-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .hero-photo { width: 50%; }
  .about-photo-wrap { float: right; margin: 0 0 1.5rem 2rem; max-width: 240px; }
  .nav-drawer { display: none !important; }
  /* Desktop nav - show inline links */
  .desktop-nav { display: flex !important; }
  .hamburger { display: none !important; }
}
@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }
  .desktop-nav a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-dark);
    transition: color var(--transition);
  }
  .desktop-nav a:hover { color: var(--teal-primary); }
}
.desktop-nav { display: none; }

@media (min-width: 1024px) {
  :root { --section-h: 2.5rem; }
}

/* --- UTILITIES --------------------------------------------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.divider { border: none; border-top: 1px solid var(--gray-200); margin: 1.5rem 0; }
