/* ============================================================
   MDM — Design System
   Premium clinical-professional. Navy + teal + warm neutrals.
   ============================================================ */

@import url('https://api.fontshare.com/v2/css?f[]=general-sans@400,500,600,700&f[]=satoshi@400,500,700&display=swap');

:root {
  /* Brand palette */
  --navy-900: #0d2438;
  --navy-800: #123049;
  --navy-700: #1a4062;
  --navy-600: #22527d;
  --teal-600: #0f7d84;
  --teal-500: #159aa2;
  --teal-400: #35b5bc;
  --teal-50:  #e6f4f4;

  /* Warm neutral surfaces */
  --sand-50:  #faf8f4;
  --sand-100: #f4f0e9;
  --sand-200: #e9e2d6;
  --paper:    #ffffff;

  /* Ink */
  --ink-900: #14202b;
  --ink-700: #33454f;
  --ink-500: #5c6b74;
  --ink-400: #85939c;
  --line: #e4e8ea;

  --shadow-sm: 0 1px 2px rgba(13,36,56,.06), 0 1px 3px rgba(13,36,56,.05);
  --shadow-md: 0 6px 20px rgba(13,36,56,.08);
  --shadow-lg: 0 18px 48px rgba(13,36,56,.12);

  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;

  --maxw: 1200px;
  --font-sans: 'General Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Satoshi', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--sand-50);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open {
  overflow: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-sans); color: var(--ink-900); line-height: 1.12; letter-spacing: -.02em; font-weight: 600; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
p { color: var(--ink-700); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(56px, 9vw, 110px) 0; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }

/* ---- Utility ---- */
.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--teal-600);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before { content:""; width: 22px; height: 2px; background: var(--teal-500); display:inline-block; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink-500); max-width: 62ch; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.muted { color: var(--ink-500); }
.mt-s { margin-top: 12px; } .mt-m { margin-top: 24px; } .mt-l { margin-top: 44px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-sans); font-weight: 600; font-size: .98rem;
  padding: 14px 26px; border-radius: 100px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--teal-600); color: #fff; box-shadow: 0 6px 18px rgba(15,125,132,.28); }
.btn--primary:hover { background: var(--teal-500); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(15,125,132,.34); }
.btn--navy { background: var(--navy-800); color: #fff; }
.btn--navy:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--navy-800); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--teal-500); color: var(--teal-600); }
.btn--light { background: rgba(255,255,255,.12); color:#fff; border-color: rgba(255,255,255,.3); }
.btn--light:hover { background: rgba(255,255,255,.2); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--sand-50);
  backdrop-filter: none;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(13,36,56,.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 11px; color: var(--navy-900); }
.brand svg { height: 34px; width: auto; }
.brand .brand-logo { height: 38px; width: 92px; }
.brand .brand-logo-image {
  width: 170px;
  height: auto;
  object-fit: contain;
  display: block;
}
.footer-wordmark .brand-logo-image {
  width: 138px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}
.brand-text { font-family: var(--font-sans); font-weight: 700; font-size: 1.28rem; letter-spacing: -.02em; color: var(--navy-900); }
.brand-text span { color: var(--teal-600); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-sans); font-weight: 500; font-size: .96rem;
  color: var(--ink-700); padding: 9px 14px; border-radius: 9px; transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--sand-100); color: var(--navy-800); }
.nav-links a.active { color: var(--teal-600); }
.nav-cta { display: flex; align-items: center; gap: 10px; margin-left: 8px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 26px; height: 26px; color: var(--navy-800); }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.hero::after {
  content:""; position:absolute; right:-8%; top:-20%; width: 60%; height: 140%;
  background: radial-gradient(circle at 60% 40%, rgba(53,181,188,.18), transparent 62%);
  pointer-events:none;
}
.hero .container { position: relative; z-index: 2; }
.hero h1, .hero h2, .hero h3 { color: #fff; }
.hero .lead { color: rgba(255,255,255,.82); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding-top: clamp(56px,8vw,104px); padding-bottom: clamp(56px,8vw,104px); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px; font-family: var(--font-sans); font-weight:500;
  font-size:.82rem; padding: 8px 14px; border-radius: 100px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.9);
}
.hero-badge svg { width:16px; height:16px; color: var(--teal-400); }
.home-signoff {
  padding: 46px 0 72px;
  background: var(--sand-50);
}
.home-signoff__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.home-signoff__logo {
  width: min(210px, 62vw);
  height: auto;
}
.home-signoff__inner p {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: .01em;
}
.hero-visual {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }

/* ---- Section header ---- */
.sec-head { max-width: 720px; margin-bottom: 48px; }
.sec-head.center { margin-left:auto; margin-right:auto; }
.sec-head h2 { margin-top: 14px; }
.sec-head p { margin-top: 16px; }

/* ---- Cards / grids ---- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.contact-layout-container { max-width: 1120px; }
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  align-items: start;
  gap: clamp(36px, 5vw, 68px);
}

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-400); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .98rem; }
.card-icon {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  background: var(--teal-50); color: var(--teal-600); margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; }

/* ---- Rep fit comparison ---- */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.fit-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 38px);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.fit-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--teal-600);
}
.fit-card--no::before {
  background: var(--ink-400);
}
.fit-label {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 13px;
  margin-bottom: 20px;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal-600);
  background: var(--teal-50);
}
.fit-card--no .fit-label {
  color: var(--ink-700);
  background: var(--sand-100);
}
.fit-list {
  display: grid;
  gap: 14px;
  list-style: none;
}
.fit-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-700);
  font-size: .98rem;
}
.fit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--teal-500);
  box-shadow: 0 0 0 4px var(--teal-50);
}
.fit-card--no .fit-list li::before {
  background: var(--ink-400);
  box-shadow: 0 0 0 4px var(--sand-100);
}

/* Audience chips */
.chip-grid { display:flex; flex-wrap:wrap; gap:12px; }
.chip {
  display:inline-flex; align-items:center; gap:9px; padding: 11px 18px; border-radius: 100px;
  background: var(--paper); border:1px solid var(--line); font-family: var(--font-sans); font-weight:500; font-size:.94rem; color: var(--navy-800);
}
.chip svg { width:18px; height:18px; color: var(--teal-600); }

/* ---- Feature split ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.split-media { border-radius: var(--radius); overflow:hidden; background: var(--sand-100); }
.visual-stack {
  display: grid;
  gap: 18px;
}
.site-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13,36,56,.1);
  background: var(--sand-100);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.site-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,36,56,0) 45%, rgba(13,36,56,.16) 100%);
  pointer-events: none;
  mix-blend-mode: multiply;
}
.hero .site-photo {
  border-color: rgba(255,255,255,.16);
}
.site-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.site-photo--hero img {
  min-height: 310px;
}
.site-photo--wide {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.site-photo--wide img {
  aspect-ratio: 16 / 7;
}
.section-photo {
  margin-bottom: 34px;
}

/* ---- MDM brief / leave-behind inspired layouts ---- */
.medspa-hero::after {
  background: radial-gradient(circle at 60% 40%, rgba(53,181,188,.14), transparent 62%);
}
.brief-card {
  background: var(--paper);
  color: var(--ink-700);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-lg);
  padding: clamp(28px, 4vw, 44px);
}
.brief-card--compact {
  padding: clamp(22px, 3vw, 32px);
}
.hero .brief-card h3,
.brief-card h3 {
  color: var(--navy-900);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  max-width: 16ch;
}
.brief-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-sans);
}
.brief-card__top strong {
  color: var(--navy-900);
  font-size: 1.15rem;
  letter-spacing: -.02em;
}
.brief-card__top span {
  color: var(--ink-500);
  font-size: .82rem;
  text-align: right;
}
.brief-topic-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.brief-topic-grid div {
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal-600);
  border-radius: 12px;
  padding: 16px 18px;
  background: var(--sand-50);
}
.brief-topic-grid span {
  display: block;
  font-family: var(--font-sans);
  color: var(--teal-600);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.brief-topic-grid strong {
  display: block;
  color: var(--navy-900);
  font-family: var(--font-sans);
}
.brief-topic-grid p {
  margin-top: 3px;
  font-size: .92rem;
  color: var(--ink-500);
}
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--teal-50);
}
.proof-strip div {
  padding: clamp(22px, 3vw, 30px);
}
.proof-strip div + div {
  border-left: 1px solid rgba(15,125,132,.16);
}
.proof-strip h3 {
  color: var(--teal-600);
  font-size: 1.08rem;
}
.proof-strip p {
  margin-top: 8px;
  font-size: .95rem;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.portfolio-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.portfolio-grid--product-categories {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.portfolio-grid--five {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.portfolio-grid--five .portfolio-card {
  grid-column: span 2;
}
.portfolio-grid--five .portfolio-card:nth-child(4),
.portfolio-grid--five .portfolio-card:nth-child(5) {
  grid-column: span 3;
}
.portfolio-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  min-height: 230px;
  overflow: hidden;
}
.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--teal-600);
  border-radius: var(--radius) 0 0 var(--radius);
}
.portfolio-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--teal-50);
  color: var(--teal-600);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .86rem;
  margin-bottom: 18px;
}
.portfolio-card__image {
  margin: -28px -28px 22px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand-100);
  border-bottom: 1px solid var(--line);
}
.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portfolio-card p {
  margin-top: 10px;
  font-size: .98rem;
}
.portfolio-card ul {
  margin-top: 16px;
  padding-left: 18px;
  color: var(--ink-500);
  font-size: .92rem;
}
.portfolio-card li + li { margin-top: 5px; }

.about-model-section {
  padding: clamp(56px, 6.5vw, 84px) 0;
}

.about-model-section .split {
  align-items: start;
}

.about-model-section .portfolio-grid--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-model-section .portfolio-card {
  min-height: 0;
}

/* ---- Product cards ---- */
.product-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card .pc-media { background: var(--sand-100); aspect-ratio: 4/3; display:grid; place-items:center; padding: 22px; }
.product-card .pc-media img { max-height: 100%; width: auto; object-fit: contain; }
.product-card .pc-body { padding: 26px; flex: 1; display:flex; flex-direction:column; }
.product-card .pc-tag { font-family: var(--font-sans); font-size:.72rem; font-weight:600; text-transform:uppercase; letter-spacing:.1em; color: var(--teal-600); }
.product-card h3 { margin: 8px 0 10px; }
.pc-list { list-style:none; margin: 14px 0 0; }
.pc-list li { position:relative; padding-left: 26px; margin-bottom: 8px; font-size:.94rem; color: var(--ink-700); }
.pc-list li::before {
  content:""; position:absolute; left:0; top:7px; width:15px; height:15px; border-radius: 50%;
  background: var(--teal-50);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230f7d84' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position: center;
}

/* ---- Steps ---- */
.steps { counter-reset: step; display: grid; gap: 4px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: none; }
.step-num {
  counter-increment: step; width: 46px; height: 46px; border-radius: 12px; flex: none;
  background: var(--navy-800); color:#fff; font-family: var(--font-sans); font-weight: 700; font-size: 1.15rem;
  display: grid; place-items: center;
}
.step-num::before { content: counter(step); }
.step h3 { margin-bottom: 6px; }
.step p { font-size: .98rem; }

/* ---- Stat band ---- */
.statband { background: var(--navy-800); color:#fff; border-radius: var(--radius-lg); padding: clamp(36px,5vw,56px); }
.statband .grid-4 { gap: 28px; }
.stat h3 { color:#fff; font-size: clamp(2rem,4vw,2.8rem); }
.stat .num { color: var(--teal-400); }
.stat p { color: rgba(255,255,255,.7); font-family: var(--font-sans); font-weight:500; font-size:.92rem; margin-top:4px; }
.stat-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 0;
  padding: 18px 24px;
  border: 1px solid rgba(15, 125, 132, .18);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--navy-800);
  font-family: var(--font-sans);
  font-size: .96rem;
  font-weight: 600;
}
.stat-strip span {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  padding: 0 18px;
}
.stat-strip span + span {
  border-left: 1px solid rgba(15, 125, 132, .2);
}
.stat-strip strong {
  color: var(--teal-600);
  font-size: 1.08rem;
}
.stat-strip small {
  color: var(--ink-500);
  font-size: .82rem;
  font-weight: 500;
}
.lead-note {
  margin-top: 14px;
  max-width: 760px;
  color: var(--teal-700);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
}

/* ---- FAQ ---- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width:100%; text-align:left; background:none; border:none; cursor:pointer;
  padding: 22px 0; display:flex; justify-content:space-between; align-items:center; gap:20px;
  font-family: var(--font-sans); font-weight:600; font-size: 1.08rem; color: var(--navy-900);
}
.faq-q svg { width:22px; height:22px; flex:none; color: var(--teal-600); transition: transform .25s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition: max-height .3s ease; }
.faq-a p { padding-bottom: 22px; color: var(--ink-500); }

/* ---- CTA band ---- */
.cta-band {
  background: linear-gradient(135deg, var(--teal-600), var(--navy-700));
  color:#fff; border-radius: var(--radius-lg); padding: clamp(40px,6vw,72px); text-align:center; position:relative; overflow:hidden;
}
.cta-band h2 { color:#fff; }
.cta-band p { color: rgba(255,255,255,.85); margin: 16px auto 0; max-width: 56ch; }
.cta-band .btn-row { justify-content:center; margin-top: 32px; }

/* ---- Forms ---- */
.form-tabs { display:flex; flex-wrap:wrap; gap:8px; margin-bottom: 28px; }
.form-tab {
  font-family: var(--font-sans); font-weight:600; font-size:.92rem; padding: 11px 20px; border-radius: 100px;
  border:1.5px solid var(--line); background: var(--paper); cursor:pointer; color: var(--ink-700); transition: all .18s;
}
.form-tab.active { background: var(--navy-800); color:#fff; border-color: var(--navy-800); }
.form-card { background: var(--paper); border:1px solid var(--line); border-radius: var(--radius); padding: clamp(26px,4vw,44px); box-shadow: var(--shadow-sm); }
.form-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display:flex; flex-direction:column; gap:7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-sans); font-weight:500; font-size:.9rem; color: var(--navy-900); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size:1rem; padding: 13px 15px; border:1.5px solid var(--line);
  border-radius: 10px; background: var(--sand-50); color: var(--ink-900); transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline:none; border-color: var(--teal-500); box-shadow: 0 0 0 3px rgba(21,154,162,.14); background:#fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size:.86rem; color: var(--ink-500); margin-top: 6px; }
.form-success {
  display:none; background: var(--teal-50); border:1px solid var(--teal-400); border-radius: 12px;
  padding: 20px 22px; color: var(--navy-800); margin-bottom: 22px; font-family: var(--font-sans); font-weight:500;
}
.form-success.show { display:flex; gap:12px; align-items:flex-start; }
.form-success svg { width:22px; height:22px; color: var(--teal-600); flex:none; }

/* QR mock */
.qr-mock {
  width: 128px; height: 128px; border-radius: 14px; background:#fff; border:1px solid var(--line);
  display:grid; place-items:center; padding:12px; box-shadow: var(--shadow-sm);
}
.qr-mock svg { width:100%; height:100%; }

/* Resource card */
.res-card { display:flex; flex-direction:column; }
.res-card .res-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; }
.res-badge { font-family: var(--font-sans); font-size:.7rem; font-weight:600; text-transform:uppercase; letter-spacing:.08em; padding:5px 11px; border-radius:100px; background: var(--sand-100); color: var(--ink-500); }
.res-dl { margin-top:auto; padding-top:18px; display:inline-flex; align-items:center; gap:8px; font-family:var(--font-sans); font-weight:600; font-size:.9rem; color: var(--teal-600); }
.res-dl svg { width:17px; height:17px; }

/* Note box */
.notebox {
  background: var(--teal-50); border-left: 4px solid var(--teal-500); border-radius: 0 10px 10px 0;
  padding: 20px 24px;
}
.notebox strong { color: var(--navy-800); font-family: var(--font-sans); }

/* Breadcrumb-style page hero (interior) */
.page-hero { background: linear-gradient(160deg, var(--navy-900), var(--navy-800)); color:#fff; padding: clamp(56px,8vw,92px) 0; position:relative; overflow:hidden;}
.page-hero::after { content:""; position:absolute; right:-6%; bottom:-40%; width:50%; height:120%; background: radial-gradient(circle, rgba(53,181,188,.16), transparent 60%);}
.page-hero .container { position:relative; z-index:2; }
.page-hero h1 { color:#fff; margin-top:14px; max-width: 20ch; }
.page-hero .lead { color: rgba(255,255,255,.82); margin-top:18px; }
.page-hero .eyebrow { color: var(--teal-400); }
.page-hero .eyebrow::before { background: var(--teal-400); }

/* ---- Footer ---- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.72); padding: 64px 0 32px; }
.footer-grid { display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand svg { height: 34px; }
.footer-brand .brand-text { color:#fff; }
.footer-brand p { color: rgba(255,255,255,.6); font-size:.94rem; margin-top: 16px; max-width: 34ch; }
.footer-col h4 { color:#fff; font-size:.82rem; text-transform:uppercase; letter-spacing:.1em; margin-bottom:16px; font-weight:600; }
.footer-col a { display:block; color: rgba(255,255,255,.66); font-size:.94rem; padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: var(--teal-400); }
.footer-shop {
  margin-top: 32px; background: rgba(53,181,188,.1); border:1px solid rgba(53,181,188,.25);
  border-radius: 14px; padding: 20px 24px; display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:16px;
}
.footer-shop p { color: rgba(255,255,255,.85); font-size:.95rem; }
.footer-shop strong { color:#fff; }
.footer-bottom {
  margin-top: 44px; padding-top: 26px; border-top:1px solid rgba(255,255,255,.1);
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:14px; font-size:.85rem; color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* ---- Logo concepts ---- */
.logo-guidance {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.logo-guidance-list {
  display: grid;
  gap: 10px;
}
.logo-guidance-list span {
  display: block;
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--teal-50);
  color: var(--navy-800);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .92rem;
}
.logo-grid {
  display: grid;
  gap: 24px;
}
.logo-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 24px;
  align-items: stretch;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.logo-card__visual {
  display: grid;
  place-items: center;
  min-height: 240px;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--sand-50), #fff);
  border: 1px solid var(--line);
}
.logo-card__visual svg {
  width: min(100%, 620px);
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(13,36,56,.08));
}
.logo-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.logo-label {
  display: inline-flex;
  width: max-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--teal-50);
  color: var(--teal-600);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.logo-card h3 { margin-top: 14px; }
.logo-card p { margin-top: 10px; }
.logo-fit {
  color: var(--ink-500);
  font-size: .95rem;
}

/* ---- Rep Login ---- */
.portal-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: stretch;
}
.portal-status-card,
.portal-access-note,
.portal-screen {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-md);
}
.portal-status-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.portal-badge {
  display: inline-flex;
  width: max-content;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--teal-50);
  color: var(--teal-600);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.portal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.portal-module {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.portal-module__top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.portal-module__top span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--navy-900);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .86rem;
}
.portal-module p { margin-top: 12px; }
.portal-module ul {
  margin-top: 16px;
  padding-left: 19px;
  color: var(--ink-500);
  font-size: .95rem;
}
.portal-module li + li { margin-top: 6px; }
.portal-screen {
  overflow: hidden;
  align-self: start;
  background: var(--navy-900);
  color: #fff;
}
.portal-screen__bar {
  display: flex;
  gap: 7px;
  padding: 16px 18px;
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.portal-screen__bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
}
.portal-screen__header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  padding: 26px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.portal-screen__header strong {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1.25rem;
}
.portal-screen__header p {
  color: rgba(255,255,255,.62);
  margin-top: 4px;
}
.portal-screen__rows {
  display: grid;
  gap: 10px;
  padding: 20px;
}
.portal-screen__rows div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
}
.portal-screen__rows span {
  color: rgba(255,255,255,.7);
}
.portal-screen__rows strong {
  color: var(--teal-400);
  font-family: var(--font-sans);
  font-size: .92rem;
  white-space: nowrap;
}
.portal-request-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
}
.portal-access-note {
  padding: 28px;
  position: sticky;
  top: 96px;
}
.contact-form select {
  width: 100%;
  min-height: 48px;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 12px 13px;
  color: var(--ink-700);
  background: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
}

/* Reveal animation */
.reveal { opacity:0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity:1; transform:none; }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .site-photo--wide img { aspect-ratio: 4 / 3; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .fit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .logo-guidance, .logo-card { grid-template-columns: 1fr; }
  .logo-card__visual { min-height: 190px; }
  .portal-intro,
  .portal-request-grid { grid-template-columns: 1fr; }
  .portal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portal-access-note { position: static; }
  .proof-strip,
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid--five .portfolio-card,
  .portfolio-grid--five .portfolio-card:nth-child(4),
  .portfolio-grid--five .portfolio-card:nth-child(5) {
    grid-column: auto;
  }
  .proof-strip div + div { border-left: 0; border-top: 1px solid rgba(15,125,132,.16); }
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  h1 { font-size: clamp(1.9rem, 9.2vw, 2.42rem); line-height: .98; }
  h2 { font-size: clamp(1.68rem, 7vw, 2.15rem); line-height: 1.05; }
  .section { padding: 46px 0; }
  .section--tight { padding: 34px 0; }
  .sec-head { margin-bottom: 24px; }
  .sec-head p { margin-top: 12px; }
  .hero-grid { padding-top: 32px; padding-bottom: 42px; gap: 18px; }
  .hero .brief-card { display: none; }
  .site-photo--hero img { min-height: 206px; }
  .hero .lead { font-size: 1rem; margin-top: 16px; }
  .hero .btn-row { margin-top: 20px; gap: 9px; }
  .hero .btn-row .btn:first-child { width: 100%; justify-content: center; }
  .hero .btn-row .btn:not(:first-child) {
    width: 100%;
    justify-content: center;
    padding: 11px 15px;
    min-height: 42px;
    font-size: .92rem;
  }
  .hero-badges { gap: 6px; margin-top: 16px; }
  .hero-badge { white-space: normal; }
  .site-photo { border-radius: 20px; }
  .card { padding: 22px; }
  .proof-strip { gap: 0; }
  .proof-strip div { padding: 22px; }
  .portfolio-card { padding: 24px; min-height: auto; }
  .cta-band { padding: 30px 20px; }
  .cta-band .btn-row { margin-top: 22px; }
  .home-signoff { padding: 34px 0; }
  .btn-row { flex-direction: column; align-items: flex-start; }
  .btn { width: auto; max-width: 100%; white-space: normal; text-align: center; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .site-header.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 74px; left:0; right:0; background: var(--sand-50);
    border-bottom:1px solid var(--line); padding: 12px 24px 20px; gap: 2px; box-shadow: var(--shadow-md);
  }
  .site-header.open .nav-links a { padding: 14px 14px; min-height: 44px; display: flex; align-items: center; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .portal-grid { grid-template-columns: 1fr; }
  .proof-strip,
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-grid--five .portfolio-card,
  .portfolio-grid--five .portfolio-card:nth-child(4),
  .portfolio-grid--five .portfolio-card:nth-child(5) {
    grid-column: auto;
  }
  .stat-strip {
    border-radius: 22px;
    align-items: stretch;
    padding: 10px 18px;
  }
  .stat-strip span {
    width: 100%;
    justify-content: center;
    padding: 10px 0;
  }
  .stat-strip span + span {
    border-left: 0;
    border-top: 1px solid rgba(15, 125, 132, .16);
  }
  .portal-status-card, .portal-access-note, .portal-module { padding: 22px; }
  .portal-screen__header, .portal-screen__rows { padding: 18px; }
  .portal-screen__rows div { align-items: flex-start; flex-direction: column; gap: 4px; }
  body { font-size: 16px; }
}
