/* ============================================================
   U&H Consulting — site styles
   Brand: Caregiver + Sage. Serif display + clean sans body.
   ============================================================ */

:root{
  /* Brand palette (from the brand book) */
  --navy-900:   #0A1F44;  /* Azul Resguardo */
  --navy-800:   #0B2A5B;  /* Azul Institucional — primary */
  --navy-700:   #163C7A;  /* Azul Confianza */
  --navy-500:   #2E5BA8;  /* link blue */
  --periwinkle: #A9B8D4;  /* Azul Guía — soft accent */
  --pale-blue:  #E8EDF5;
  --pale-blue-2:#F1F4FA;

  --cream:      #F4F2EE;  /* primary background */
  --cream-2:    #FAF8F4;
  --paper:      #FFFFFF;
  --ink:        #0A1F44;
  --ink-soft:   #4B587A;
  --rule:       #DDE3EE;

  --gold:       #B59B6A;  /* subtle warm accent for divider lines, like the underlines in hero */

  --shadow-card: 0 10px 30px -16px rgba(10,31,68,.18), 0 2px 6px -2px rgba(10,31,68,.06);
  --shadow-nav:  0 8px 26px -10px rgba(10,31,68,.18);

  --radius-pill: 999px;
  --radius-card: 22px;
  --radius-tile: 14px;

  --container: 1240px;

  --font-display: "Cormorant Garamond","EB Garamond",Georgia,serif;
  --font-body: "Inter","Helvetica Neue",Helvetica,Arial,sans-serif;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.6;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font: inherit; border: 0; background: transparent; cursor: pointer; color: inherit}

/* Background pattern: soft pale-blue arrows/triangles repeating subtly,
   mirroring the geometric "U" shield logo motif from the brand book. */
.bg-arrows{
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.bg-arrows::before{
  content:"";
  position:absolute; inset:0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='560' viewBox='0 0 600 560'><g fill='none' stroke='%23A9B8D4' stroke-width='1' opacity='.55'><path d='M-60 380 L120 200 L300 380'/><path d='M120 380 L300 200 L480 380'/><path d='M300 380 L480 200 L660 380'/><path d='M-60 660 L120 480 L300 660'/><path d='M120 660 L300 480 L480 660'/></g></svg>");
  background-size: 600px 560px;
  opacity:.45;
  z-index:-1;
  pointer-events:none;
}

/* ===== Layout ===== */
.container{max-width: var(--container); margin: 0 auto; padding: 0 28px}
.section{padding: 96px 0}
.section-tight{padding: 64px 0}
.eyebrow{
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-700);
  display:inline-flex; align-items:center; gap:10px;
}
.eyebrow::before{
  content:""; width:28px; height:1px; background: var(--navy-700);
}
h1,h2,h3,h4{font-family: var(--font-display); color: var(--ink); font-weight: 500; line-height: 1.08; letter-spacing: -.005em; margin: 0}
h1{font-size: clamp(48px, 5.6vw, 86px)}
h2{font-size: clamp(36px, 3.6vw, 56px)}
h3{font-size: clamp(24px, 2.1vw, 32px)}
h4{font-size: 22px}
.italic{font-style: italic}
.lead{font-size: 18px; color: var(--ink-soft); max-width: 62ch; line-height: 1.65}
p{margin: 0 0 1em}
.muted{color: var(--ink-soft)}

/* ===== Buttons ===== */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: 15px;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-primary{ background: var(--navy-800); color: #fff }
.btn-primary:hover{ background: var(--navy-900); transform: translateY(-1px); box-shadow: 0 12px 24px -14px rgba(10,31,68,.6) }
.btn-ghost{ border: 1.5px solid var(--navy-800); color: var(--navy-800) }
.btn-ghost:hover{ background: var(--navy-800); color:#fff }
.btn-light{ background:#fff; color: var(--navy-800); box-shadow: var(--shadow-card) }
.btn-light:hover{ background: var(--navy-800); color:#fff }
.btn .arr{ display:inline-block; transition: transform .2s ease }
.btn:hover .arr{ transform: translateX(3px) }

/* ===== NAVBAR — floating white pill ===== */
.nav-wrap{
  position: sticky; top: 18px; z-index: 100;
  padding: 0 28px;
}
.nav{
  max-width: var(--container);
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-nav);
  display:flex; align-items:center; justify-content:space-between;
  padding: 10px 16px 10px 22px;
  gap: 24px;
  position: relative;
}
.nav-logo{ display:flex; align-items:center; gap:0; }
.nav-logo svg{ height: 38px; width: auto; display:block }
.nav-links{ display:flex; align-items:center; gap: 6px }
.nav-link{
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  position: relative;
  cursor: pointer;
  display:inline-flex; align-items:center; gap:6px;
}
.nav-link:hover{ color: var(--navy-800) }
.nav-link.active{ color: var(--navy-800); font-weight: 600 }
.nav-link .chev{ transition: transform .2s ease; opacity:.6 }
.nav-link[aria-expanded="true"] .chev{ transform: rotate(180deg) }

.nav-cta{ display:flex; gap:8px; align-items:center }
.nav-cta .btn{ padding: 10px 18px; font-size: 14px }

/* ===== Mega menu (Insurance) — YC Shalom-style ===== */
.mega{
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translate(-50%, -8px);
  width: min(1180px, calc(100vw - 56px));
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 30px 60px -22px rgba(10,31,68,.28), 0 6px 16px -8px rgba(10,31,68,.10);
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease .18s, transform .18s ease .18s, visibility .18s .18s;
}
/* Hover bridge to survive the gap between trigger link and panel */
.mega::before{
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -16px;
  height: 16px;
}
.has-mega:hover .mega,
.has-mega:focus-within .mega,
.mega:hover,
.mega[data-open="true"]{
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, 0);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

/* Row 1 — intro col + 3 category cards with 16:9 hero images */
.mega-row{ display: grid; gap: 22px; }
.mega-row-cats{ grid-template-columns: 280px 1fr 1fr 1fr; align-items: stretch; }

.mega-intro{
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: #fff;
  border-radius: 18px;
  padding: 24px 22px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.mega-intro::after{
  content: "";
  position: absolute;
  right: -50px; bottom: -50px;
  width: 220px; height: 220px;
  background: radial-gradient(closest-side, rgba(169,184,212,.30), transparent 70%);
  pointer-events: none;
}
.mega-eyebrow{
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #A9B8D4;
  margin: 0 0 8px;
}
.mega-intro h4{
  font-family: var(--font-display);
  font-size: 26px; line-height: 1.15; margin: 0 0 8px;
  color: #fff;
}
.mega-intro p{ font-size: 13.5px; color: #C9D2E5; margin: 0 0 16px; line-height: 1.5; }
.mega-intro .btn-light{ align-self: flex-start; background: #fff; color: var(--navy-800); }

.mega-cat{
  display: flex; flex-direction: column;
  background: #DDE6F2;   /* soft sky-blue card tint — sits between pale-blue and pale-blue-2 */
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
  position: relative;
}
.mega-cat:hover{ transform: translateY(-2px); box-shadow: 0 14px 28px -16px rgba(10,31,68,.22); }
.mega-cat-img{
  width: 100%;
  aspect-ratio: 5 / 4;            /* landscape crop — works for both landscape and portrait sources */
  overflow: hidden;
  background: var(--pale-blue-2, #DDE6F2);
}
.mega-cat-img img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;    /* keep faces in frame when cropping portraits */
  display: block;
  transition: transform .35s ease;
}
.mega-cat:hover .mega-cat-img img{ transform: scale(1.04); }
.mega-cat-text{ padding: 14px 16px 16px; }
.mega-cat-title{
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
  display: inline-flex; align-items: center; gap: 4px;
}
.mega-cat-title .cat-arrow{
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .18s ease, transform .18s ease;
  color: var(--navy-800);
}
.mega-cat:hover .cat-arrow{ opacity: 1; transform: translateX(0); }
.mega-cat-desc{
  display: block;
  font-size: 12.5px; color: var(--ink-soft);
  margin-top: 4px; line-height: 1.45;
}

/* Divider between row 1 (categories) and row 2 (per-category product lists) */
.mega-divider{
  height: 1px;
  background: var(--line, #E7E4DC);
  margin: 22px 0;
}

/* Row 2 — 3 per-category product groups, displayed side by side */
.mega-row-products{
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  align-items: start;
}
.mega-row-products + .mega-row-products{ margin-top: 18px; }
.mega-section-title{
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
  margin: 2px 0 0;
}
.mega-products-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 12px;
}
.mega-product{
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .15s ease;
}
.mega-product:hover{ background: var(--pale-blue-2, #DDE6F2); }
.mp-icon{
  width: 26px; height: 26px; flex: none;
  background: var(--pale-blue-2, #DDE6F2);
  border-radius: 7px;
  display: inline-grid; place-items: center;
  color: var(--navy-800);
}
.mp-text{ display: flex; flex-direction: column; min-width: 0; }
.mp-name{
  font-weight: 600;
  color: var(--ink);
  font-size: 13.5px;
  display: inline-flex; align-items: center; gap: 4px;
}
.mp-arrow{
  opacity: 0;
  transform: translateX(-3px);
  transition: opacity .18s ease, transform .18s ease;
  color: var(--navy-800);
}
.mega-product:hover .mp-arrow{ opacity: 1; transform: translateX(0); }
.mp-sub{
  font-size: 12px; color: var(--ink-soft);
  line-height: 1.4; margin-top: 1px;
}

/* === Mega-mini (Demos dropdown) — keeps its own positioning context
   so the small panel stays anchored to its trigger, while the main
   Insurance mega is centred relative to the page width === */
.has-mega-mini{ position: relative; }
.mega-mini{
  width: 180px;
  padding: 8px;
  display: flex; flex-direction: column;
  gap: 1px;
}
.has-mega-mini .mega{ left: auto; right: 0; transform: translate(0, -8px); }
.has-mega-mini:hover .mega,
.has-mega-mini:focus-within .mega{ transform: translate(0, 0); }
.mega-mini-link{
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: background .15s ease;
}
.mega-mini-link:hover{ background: var(--pale-blue-2, #DDE6F2); color: var(--navy-800); }

/* === Mega-menu responsive — collapse layout on narrow viewports === */
@media (max-width: 980px){
  .mega-row-cats{ grid-template-columns: 1fr 1fr; }
  .mega-row-cats .mega-intro{ grid-column: 1 / -1; min-height: auto; }
  .mega-row-products{ grid-template-columns: 1fr; gap: 12px; }
  .mega-products-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px){
  .mega{ display: none; }  /* mobile uses regular links via the hamburger if any */
}

/* ===== HERO ===== */
.hero{
  position: relative;
  padding: 60px 0 70px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero h1{
  font-size: clamp(32px, 3.4vw, 56px);
  line-height: 1.1;
  color: var(--navy-800);
  letter-spacing: -.01em;
}
.hero h1 em{ font-style: italic; font-weight: 400 }
.hero-sub{
  margin-top: 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--navy-800);
  border-top: 1px solid var(--gold);
  padding-top: 18px;
  max-width: 460px;
}
.hero-cta{
  margin-top: 40px;
  display:flex; gap:14px; flex-wrap: wrap;
}
.hero-photo{
  position:relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(10,31,68,.35);
  aspect-ratio: 510/750;
  max-width: 480px;
  margin-left: auto;
}
.hero-photo img{ width:100%; height:100%; object-fit: cover }
.hero-mark{
  position:absolute; left: -10px; bottom: -10px;
  width: 90px; height:30px;
  background: var(--navy-800);
  border-radius: 6px;
}

/* ===== Trust strip ===== */
.trust{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 28px 36px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  margin-top: -20px;
  position: relative;
  z-index: 2;
}
.trust-item .num{
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  color: var(--navy-800);
  font-weight: 500;
}
.trust-item .lbl{
  font-size: 13px; color: var(--ink-soft); margin-top: 6px;
  letter-spacing: .02em;
}

/* ===== Pillars (3 service categories) ===== */
.pillars{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pillar{
  background: #fff;
  border-radius: var(--radius-card);
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-card);
  display:flex; flex-direction:column;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
}
.pillar:hover{ transform: translateY(-4px); box-shadow: 0 24px 50px -22px rgba(10,31,68,.28)}
.pillar .num-tag{
  font-family: var(--font-display);
  font-style: italic;
  color: var(--periwinkle);
  font-size: 28px;
  margin-bottom: 12px;
}
.pillar h3{ color: var(--navy-800); margin-bottom: 12px }
.pillar p{ color: var(--ink-soft); font-size: 15px}
.pillar ul{ list-style: none; padding: 0; margin: 14px 0 24px; font-size: 14.5px}
.pillar ul li{ padding: 8px 0; border-bottom: 1px dashed var(--rule); color: var(--ink) }
.pillar ul li:last-child{ border-bottom: 0}
.pillar .pillar-link{
  margin-top: auto;
  display:inline-flex; align-items:center; gap:8px;
  color: var(--navy-800); font-weight: 600; font-size: 14px;
}
.pillar .pillar-link:hover .arr{ transform: translateX(3px)}
.pillar .arr{ transition: transform .2s ease}

/* ===== Section header ===== */
.section-head{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
  align-items: end;
}
.section-head h2{ color: var(--navy-800); max-width: 14ch }
.section-head .sub{ color: var(--ink-soft); font-size: 17px}

/* ===== Method (VIDA) ===== */
.method{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.method-step{
  background: var(--cream-2);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 28px 24px;
  position: relative;
  transition: background .2s ease;
}
.method-step:hover{ background: #fff }
.method-step .letter{
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--navy-800);
  line-height: 1;
  font-style: italic;
}
.method-step h4{ margin: 12px 0 6px; color: var(--navy-800)}
.method-step p{ color: var(--ink-soft); font-size: 14.5px; margin: 0 }

/* ===== Product grid (insurance) ===== */
.products{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card{
  background: #fff;
  border-radius: var(--radius-card);
  padding: 30px;
  box-shadow: var(--shadow-card);
  display:flex; flex-direction:column;
  transition: transform .2s ease, box-shadow .2s ease;
  border-top: 4px solid var(--navy-800);
}
.product-card:hover{ transform: translateY(-4px); box-shadow: 0 24px 50px -22px rgba(10,31,68,.28) }
.product-card .pc-icon{
  width: 52px; height: 52px;
  background: var(--pale-blue-2);
  color: var(--navy-800);
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.product-card h3{ font-size: 26px; color: var(--navy-800); margin-bottom: 8px}
.product-card .pc-desc{ color: var(--ink-soft); font-size: 15px; margin-bottom: 18px}
.product-card .pc-bullets{ list-style: none; padding: 0; margin: 0 0 22px; font-size: 14px}
.product-card .pc-bullets li{
  display:flex; gap:10px; padding: 6px 0; align-items: flex-start;
}
.product-card .pc-bullets li::before{
  content: "✓";
  color: var(--navy-800);
  font-weight: 700;
  flex: none;
  width: 18px;
}
.product-card .pc-foot{
  margin-top: auto;
  display:flex; justify-content: space-between; align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
}
.product-card .pc-foot .price{ font-family: var(--font-display); font-size: 22px; color: var(--navy-800)}
.product-card .pc-foot a{ color: var(--navy-800); font-weight: 600 }

/* ===== Process / steps ===== */
.steps{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  counter-reset: step;
}
.step{
  position: relative;
  padding: 30px 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}
.step .step-num{
  position:absolute; top:-18px; left:24px;
  width: 40px; height: 40px;
  background: var(--navy-800); color: #fff;
  border-radius: 50%;
  display:grid; place-items:center;
  font-family: var(--font-display); font-size: 20px;
}
.step h4{ color: var(--navy-800); margin: 8px 0 6px; font-size: 18px}
.step p{ color: var(--ink-soft); font-size: 14px; margin: 0}

/* ===== Quote / CTA banner ===== */
.cta-banner{
  background: var(--navy-800);
  color: #fff;
  border-radius: 28px;
  padding: 64px 56px;
  display:grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::after{
  content:"";
  position: absolute; right: -80px; top: -40px; width: 380px; height: 380px;
  background: radial-gradient(closest-side, rgba(169,184,212,.25), transparent 70%);
}
.cta-banner h2{ color: #fff; max-width: 18ch }
.cta-banner h2 em{ font-style: italic; color: var(--periwinkle)}
.cta-banner p{ color: #C9D2E5; margin-top: 14px; font-size: 17px}
.cta-banner .actions{ display:flex; gap: 14px; flex-wrap: wrap; justify-self: end }

/* ===== FAQ ===== */
.faq-list{ width: 100%; margin: 0 } /* full container width — pluses pin to the right edge */
.faq-item{
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
}
.faq-q{
  display:flex; justify-content:space-between; gap:24px;
  font-family: var(--font-display);
  font-size: 24px; color: var(--navy-800);
  width: 100%; text-align: left;
  cursor: pointer;
}
.faq-q .plus{
  width: 30px; height: 30px;
  border-radius: 50%; border: 1.5px solid var(--navy-800);
  display:grid; place-items:center;
  flex: none;
  font-size: 20px;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.faq-item.open .faq-q .plus{ transform: rotate(45deg); background: var(--navy-800); color:#fff}
.faq-a{
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  color: var(--ink-soft); font-size: 16px;
  padding-top: 0;
}
.faq-item.open .faq-a{ max-height: 500px; padding-top: 14px }

/* ===== About bio ===== */
.bio-grid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.bio-photo{
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px -28px rgba(10,31,68,.35);
}
.bio-photo img{ width:100%; height:100%; object-fit:cover}
.bio-name{
  font-family: var(--font-display);
  font-style: italic;
  color: var(--navy-800);
  font-size: 24px;
}
.bio-quote{
  border-left: 3px solid var(--gold);
  padding-left: 22px;
  margin: 28px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--navy-800);
}

/* ===== Footer ===== */
.footer{
  background: var(--navy-900);
  color: #C9D2E5;
  padding: 80px 0 30px;
  margin-top: 80px;
}
.footer a{ color:#C9D2E5}
.footer a:hover{ color:#fff}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer h5{
  color:#fff; font-family: var(--font-body); font-size: 13px;
  text-transform: uppercase; letter-spacing: .15em; margin: 0 0 18px;
  font-weight: 600;
}
.footer ul{ list-style: none; padding:0; margin: 0 }
.footer ul li{ padding: 6px 0; font-size: 14.5px}
.footer-tag{ font-family: var(--font-display); font-size: 22px; color:#fff; margin: 18px 0; line-height: 1.3}
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display:flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 13px; color: #93A2BC;
}

/* Page header (used on all subpages) */
.page-hero{
  padding: 70px 0 60px;
  position: relative;
}
.crumb{ font-size: 13px; color: var(--ink-soft); margin-bottom: 18px; letter-spacing: .04em}
.crumb a{ color: var(--ink-soft) }
.crumb a:hover{ color: var(--navy-800) }
.page-hero h1{ font-size: clamp(42px, 5vw, 72px); color: var(--navy-800); max-width: 18ch}
.page-hero .ph-sub{ color: var(--ink-soft); font-size: 18px; max-width: 60ch; margin-top: 18px}

/* Two col content layout */
.two-col{ display:grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start}
.two-col img{ border-radius: 18px}

/* Specs box */
.spec{
  background:#fff; border-radius: 18px; box-shadow: var(--shadow-card);
  padding: 28px 30px;
}
.spec dl{ margin: 0; display:grid; grid-template-columns: 1fr 1.4fr; gap: 8px 24px}
.spec dt{ color: var(--ink-soft); font-size: 13px; padding: 10px 0; border-bottom: 1px dashed var(--rule); letter-spacing: .04em; text-transform: uppercase}
.spec dd{ margin: 0; padding: 10px 0; border-bottom: 1px dashed var(--rule); font-size: 14.5px}
.spec dl > :nth-last-child(-n+2){ border-bottom: 0}

/* Tables */
.table-wrap{ background:#fff; border-radius: 18px; padding: 8px; box-shadow: var(--shadow-card); overflow: auto}
table{ width: 100%; border-collapse: collapse; font-size: 14px}
th, td{ padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--rule)}
th{ background: var(--pale-blue-2); color: var(--navy-800); font-weight: 600; font-size: 13px; letter-spacing: .04em; text-transform: uppercase}
tr:last-child td{ border-bottom: 0}

/* Notes / disclaimers */
.note{
  border-left: 3px solid var(--periwinkle);
  padding: 14px 18px;
  background: var(--pale-blue-2);
  border-radius: 0 12px 12px 0;
  color: var(--ink-soft); font-size: 14px;
  margin: 18px 0;
}

/* Form */
.form{ display:grid; gap: 16px}
.field{ display:flex; flex-direction: column; gap: 6px}
.field label{ font-size: 13px; font-weight: 600; color: var(--navy-800); letter-spacing: .03em}
.field input, .field select, .field textarea{
  font: inherit;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--rule);
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--navy-800);
  box-shadow: 0 0 0 4px rgba(11,42,91,.08);
}
.field textarea{ min-height: 130px; resize: vertical}
.field-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px}
.checkbox{
  display:flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--ink-soft);
}
.checkbox input{ accent-color: var(--navy-800); margin-top: 4px}

/* Doc-list (legal pages) */
.legal-body{ font-size: 16px; line-height: 1.75; color: var(--ink) }
.legal-body h2{ margin-top: 48px; margin-bottom: 12px; font-size: 32px; color: var(--navy-800)}
.legal-body h3{ font-size: 22px; margin: 30px 0 10px; color: var(--navy-800)}
.legal-body ul{ padding-left: 22px}
.legal-body p, .legal-body li{ color: var(--ink-soft) }

/* Pill chip */
.chip{
  display:inline-flex; align-items:center; gap: 6px;
  background: var(--pale-blue-2);
  color: var(--navy-800);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
}
.chip.gold{ background: rgba(181,155,106,.15); color: #6B5836}

/* Mobile */
@media (max-width: 980px){
  .nav-links{ display: none}
  .hero-grid, .two-col, .bio-grid, .cta-banner{ grid-template-columns: 1fr; gap: 32px}
  .pillars, .products, .footer-grid, .method, .steps{ grid-template-columns: 1fr 1fr; gap: 16px}
  .trust{ grid-template-columns: 1fr 1fr}
  .section{ padding: 64px 0}
  .section-head{ grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px}
  .cta-banner{ padding: 40px 28px}
  .cta-banner .actions{ justify-self: start}
  .hero-photo{ max-width: 100%}
  .footer-grid{ grid-template-columns: 1fr 1fr}
}
@media (max-width: 600px){
  .pillars, .products, .method, .steps, .trust, .footer-grid{ grid-template-columns: 1fr }
  .nav-cta .btn-ghost{ display:none}
  .field-row{ grid-template-columns: 1fr}
}
