/* =========================================================
   Turinske & Associates, LLC — style.css
   No frameworks. Mobile-first. WCAG-minded contrast & focus.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --navy-900: #0b1730;
  --navy-800: #0f1f3d;
  --navy-700: #16305c;
  --navy-600: #1e3f78;
  --accent:   #2f6fdb;
  --accent-soft: #e8effc;

  --white:    #ffffff;
  --paper:    #f6f8fb;
  --line:     #d5dce6;

  --slate-900: #0f172a;
  --slate-700: #334155;  /* body text — ~10:1 on white */
  --slate-500: #5b6b82;

  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(15, 31, 61, .06), 0 1px 3px rgba(15, 31, 61, .08);
  --shadow-md: 0 8px 24px rgba(15, 31, 61, .10);
  --shadow-lg: 0 18px 40px rgba(15, 31, 61, .16);

  --font-sans: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --font-head: Arial, "Helvetica Neue", Helvetica, sans-serif;

  --container: 1160px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Modern reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
body { min-height: 100vh; line-height: 1.65; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, picture, svg, video { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
ul[class], ol[class] { list-style: none; }
a { color: inherit; }
p, h1, h2, h3, h4 { overflow-wrap: break-word; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---------- Base typography (larger for readability) ---------- */
body {
  font-family: var(--font-sans);
  font-size: 1.125rem;          /* 18px */
  color: var(--slate-700);
  background: var(--white);
}
@media (min-width: 900px) { body { font-size: 1.1875rem; } } /* 19px */

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-800);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5.5vw, 3.75rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); letter-spacing: -0.02em; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.15rem; }
p + p { margin-top: 1rem; }
strong { color: var(--slate-900); font-weight: 700; }

a { text-decoration-thickness: 2px; text-underline-offset: 3px; transition: color .2s var(--ease); }
a:hover { color: var(--accent); }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 100;
  background: var(--navy-800); color: var(--white);
  padding: .75rem 1.25rem; border-radius: var(--radius-sm); font-weight: 700;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; color: var(--white); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section-alt { background: var(--paper); border-block: 1px solid var(--line); }
.section-head { max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { margin-top: .5rem; }
.section-lead { margin-top: 1rem; font-size: 1.1em; color: var(--slate-500); }

.eyebrow {
  display: inline-block;
  font-size: .85rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy-600);
  padding-bottom: .35rem; border-bottom: 3px solid var(--navy-600);
}
.eyebrow-light { color: var(--white); border-color: var(--white); }

.subhead { margin: clamp(3rem, 6vw, 4.5rem) 0 1.5rem; font-size: 1.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 3.25rem; padding: .85rem 1.6rem;
  border-radius: 999px; border: 2px solid transparent;
  font-weight: 700; font-size: 1.05rem; text-decoration: none; line-height: 1.2;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--white); color: var(--navy-800); box-shadow: var(--shadow-md); }
.btn-primary:hover { color: var(--navy-800); box-shadow: var(--shadow-lg); }
.btn-ghost { border-color: rgba(255, 255, 255, .85); color: var(--white); }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); color: var(--white); }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.5rem; }

.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; color: var(--navy-800); }
.brand:hover { color: var(--navy-800); }
.brand-mark {
  display: grid; place-items: center; width: 2.75rem; height: 2.75rem; flex-shrink: 0;
  border-radius: 10px; background: var(--navy-800); color: var(--white);
  font-weight: 800; font-size: .95rem; letter-spacing: -.02em;
}
.brand-text { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; line-height: 1.1; }
.brand-text .amp { color: var(--navy-600); }
.brand-llc { font-weight: 500; color: var(--slate-500); }
@media (max-width: 420px) { .brand-llc { display: none; } }

/* Mobile menu via <details> (no JS) */
.nav-menu { position: relative; }
.nav-toggle {
  display: inline-flex; align-items: center; gap: .6rem;
  min-height: 2.75rem; padding: .5rem 1rem;
  border: 2px solid var(--navy-800); border-radius: 999px;
  font-weight: 700; color: var(--navy-800); list-style: none; cursor: pointer; user-select: none;
}
.nav-toggle::-webkit-details-marker { display: none; }
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  display: block; width: 18px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }
.nav-menu[open] .nav-toggle-bars { background: transparent; }
.nav-menu[open] .nav-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.nav-menu[open] .nav-toggle-bars::after { transform: translateY(-6px) rotate(-45deg); }

.nav-list {
  position: absolute; right: 0; top: calc(100% + .75rem);
  min-width: 15rem; padding: .5rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: dropIn .22s var(--ease);
}
.nav-list a {
  display: block; padding: .8rem 1rem; border-radius: var(--radius-sm);
  font-weight: 600; text-decoration: none; color: var(--navy-800);
  transition: background-color .2s var(--ease);
}
.nav-list a:hover { background: var(--accent-soft); color: var(--navy-800); }
.nav-list .nav-cta { margin-top: .35rem; background: var(--navy-800); color: var(--white); text-align: center; }
.nav-list .nav-cta:hover { background: var(--navy-600); color: var(--white); }

@keyframes dropIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* Desktop: always-visible horizontal nav; mobile uses the <details> menu */
.nav-desktop { display: none; }
@media (min-width: 900px) {
  .nav-menu { display: none; }
  .nav-desktop { display: flex; align-items: center; gap: .25rem; }
  .nav-desktop a {
    display: block; padding: .55rem .9rem; border-radius: var(--radius-sm);
    font-weight: 600; text-decoration: none; color: var(--navy-800);
    transition: background-color .2s var(--ease), color .2s var(--ease);
  }
  .nav-desktop a:hover { background: var(--accent-soft); color: var(--navy-800); }
  .nav-desktop .nav-cta {
    margin-left: .5rem; padding: .65rem 1.25rem; border-radius: 999px;
    background: var(--navy-800); color: var(--white);
  }
  .nav-desktop .nav-cta:hover { background: var(--navy-600); color: var(--white); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(47, 111, 219, .35), transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: #dbe4f3;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 20%, transparent 90%);
  -webkit-mask-image: linear-gradient(180deg, #000 20%, transparent 90%);
}
.hero-inner { position: relative; z-index: 1; padding-block: clamp(4rem, 11vw, 8rem); }
.hero .eyebrow { color: #cfe0ff; border-color: #cfe0ff; }
.hero h1 { margin-top: 1.25rem; max-width: 18ch; color: var(--white); }
.hero-accent { color: #bcd3ff; }
.hero-lead { margin-top: 1.5rem; max-width: 62ch; font-size: clamp(1.15rem, 2vw, 1.3rem); color: #dbe4f3; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.25rem; }

.hero-stats {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
  margin-top: clamp(2.5rem, 6vw, 4rem); padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .22);
}
.hero-stats li { display: flex; flex-direction: column; gap: .2rem; }
.hero-stats strong { color: var(--white); font-size: 1.6rem; font-family: var(--font-head); }
.hero-stats span { color: #c3cfe3; font-size: 1rem; }
@media (min-width: 640px) { .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

/* ---------- About ---------- */
.about-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.about-copy h2 { margin: .5rem 0 1.5rem; }
@media (min-width: 960px) { .about-grid { grid-template-columns: 1.4fr 1fr; } }

.about-card {
  background: var(--white);
  border: 2px solid var(--navy-800);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-md);
}
.about-card h3 { margin-bottom: 1.25rem; }

.check-list li { position: relative; padding-left: 2rem; }
.check-list li + li { margin-top: 1rem; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .45em;
  width: 1.1rem; height: .6rem;
  border-left: 3px solid var(--navy-600); border-bottom: 3px solid var(--navy-600);
  transform: rotate(-45deg);
}

.principles { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.principles li {
  padding: 1.5rem; border-radius: var(--radius);
  border: 1px solid var(--line); border-top: 4px solid var(--navy-800);
  background: var(--white);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.principles li:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.principles h4 { margin-bottom: .5rem; }

/* ---------- Services grid ---------- */
.services-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 700px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  position: relative; display: flex; flex-direction: column;
  padding: 2rem 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--navy-600); }
.service-num {
  font-family: var(--font-head); font-weight: 800; font-size: .95rem; letter-spacing: .08em;
  color: var(--navy-600); margin-bottom: .75rem;
}
.service-card h3 { margin-bottom: .75rem; }
.service-card > p { flex-grow: 1; }

.service-card-feature { border: 2px solid var(--navy-800); }
@media (min-width: 1080px) { .service-card-feature { grid-column: span 3; } }
@media (min-width: 700px) and (max-width: 1079px) { .service-card-feature { grid-column: span 2; } }

/* Deliverables disclosure */
.service-card details { margin-top: 1.25rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.service-card summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 2.75rem;
  font-weight: 700; color: var(--navy-800); cursor: pointer; list-style: none;
  border-radius: var(--radius-sm);
}
.service-card summary::-webkit-details-marker { display: none; }
.service-card summary::after {
  content: "+"; display: grid; place-items: center; flex-shrink: 0;
  width: 2rem; height: 2rem; border-radius: 50%;
  border: 2px solid var(--navy-800); font-size: 1.2rem; line-height: 1;
  transition: transform .25s var(--ease), background-color .2s var(--ease), color .2s var(--ease);
}
.service-card details[open] summary::after { content: "\2212"; background: var(--navy-800); color: var(--white); }
.service-card summary:hover::after { background: var(--navy-800); color: var(--white); }
.service-card details ul { margin-top: .75rem; padding-left: 1.25rem; animation: fadeUp .25s var(--ease); }
.service-card details li + li { margin-top: .45rem; }
.service-card details li::marker { color: var(--navy-600); }

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

/* ---------- Why grid ---------- */
.why-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.why-grid li {
  padding: 1.75rem; border-radius: var(--radius);
  background: var(--paper); border: 1px solid var(--line); border-left: 5px solid var(--navy-800);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.why-grid li:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-grid h3 { margin-bottom: .5rem; font-size: 1.2rem; }

/* ---------- How I Work (dark) ---------- */
.section-dark { background: linear-gradient(160deg, var(--navy-900), var(--navy-800)); color: #dbe4f3; }
.section-dark h2, .section-dark h3 { color: var(--white); }
.steps { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); counter-reset: step; }
.steps li {
  counter-increment: step; position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, .25); border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.steps li:hover { background: rgba(255, 255, 255, .08); transform: translateY(-3px); }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block; margin-bottom: .75rem;
  font-family: var(--font-head); font-weight: 800; font-size: 1rem; letter-spacing: .08em; color: #bcd3ff;
}
.steps h3 { margin-bottom: .5rem; font-size: 1.2rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1.15fr; } }
.contact-copy h2 { margin: .5rem 0 1.25rem; }

.contact-details { margin-top: 2rem; display: grid; gap: 1rem; }
.contact-details li { display: flex; flex-wrap: wrap; gap: .25rem .75rem; align-items: baseline; }
.contact-details .label {
  min-width: 6rem; font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--navy-800);
}
.contact-details a { color: var(--navy-700); font-weight: 600; word-break: break-word; }

.contact-form {
  background: var(--white);
  border: 2px solid var(--navy-800); border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-lg);
}
.contact-form h3 { font-size: 1.4rem; }
.form-note { margin: .5rem 0 1.5rem; font-size: 1rem; color: var(--slate-500); }

.field-row { display: grid; gap: 0 1.25rem; }
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; margin-bottom: 1.25rem; }
.field label { font-weight: 700; color: var(--slate-900); margin-bottom: .4rem; font-size: 1rem; }
.req {
  display: inline-block; margin-left: .4rem; padding: 0 .45rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  border: 1.5px solid var(--slate-900); border-radius: 4px; color: var(--slate-900);
}

.field input, .field select, .field textarea {
  width: 100%; min-height: 3.1rem; padding: .75rem 1rem;
  background: var(--white); color: var(--slate-900);
  border: 2px solid #8a97ab; border-radius: var(--radius-sm);
  font-size: 1.05rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 8rem; }
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 2.75rem;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--navy-800) 50%),
    linear-gradient(135deg, var(--navy-800) 50%, transparent 50%);
  background-position: calc(100% - 1.3rem) 55%, calc(100% - .95rem) 55%;
  background-size: 6px 6px, 6px 6px; background-repeat: no-repeat;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--navy-700); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-800); box-shadow: 0 0 0 4px rgba(47, 111, 219, .28);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: #b42318; border-style: dashed; }

.contact-form .btn-primary { margin-top: .5rem; background: var(--navy-800); color: var(--white); box-shadow: none; }
.contact-form .btn-primary:hover { background: var(--navy-600); color: var(--white); box-shadow: var(--shadow-md); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #c3cfe3; padding-top: 3.5rem; font-size: 1rem; }
.footer-inner { display: grid; gap: 2rem; padding-bottom: 2.5rem; }
@media (min-width: 800px) { .footer-inner { grid-template-columns: 1.3fr 1fr; align-items: start; } }
.footer-name { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--white); margin-bottom: .5rem; }
.footer-brand p:last-child { max-width: 44ch; }
.footer-links { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }
@media (min-width: 800px) { .footer-links { justify-content: flex-end; } }
.footer-links a, .footer-bottom a { color: var(--white); text-decoration: none; font-weight: 600; }
.footer-links a:hover, .footer-bottom a:hover { color: #bcd3ff; text-decoration: underline; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem;
  padding-block: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .15); font-size: .95rem;
}

/* ---------- Print ---------- */
@media print {
  .site-header, .skip-link, .contact-form, .hero-actions { display: none; }
  .hero, .section-dark, .site-footer { background: none; color: #000; }
  .hero h1, .section-dark h2, .section-dark h3, .footer-name { color: #000; }
  .service-card details > ul { display: block; }
}

/* =========================================================
   Logo, LinkedIn icon, and Request Information page
   ========================================================= */

/* Header logo */
.brand-logo {
  width: 3rem; height: 3rem; flex-shrink: 0;
  border-radius: 8px; border: 2px solid var(--navy-800); object-fit: cover;
}

/* Hero with full logo */
.hero-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
@media (min-width: 1000px) { .hero-grid { grid-template-columns: 1.25fr 1fr; } }
.hero-logo {
  margin: 0; justify-self: center; width: 100%; max-width: 520px;
  border-radius: var(--radius); overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .85);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  transition: transform .35s var(--ease);
}
.hero-logo:hover { transform: translateY(-4px); }
.hero-logo img { width: 100%; height: auto; }

/* Homepage contact call-to-action card */
.contact-cta {
  background: var(--white); border: 2px solid var(--navy-800); border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow-lg); text-align: center;
}
.contact-cta-logo {
  width: 7.5rem; height: 7.5rem; margin: 0 auto 1.25rem;
  border-radius: 12px; border: 2px solid var(--navy-800);
}
.contact-cta h3 { font-size: 1.5rem; margin-bottom: .75rem; }
.contact-cta p { margin-bottom: 1.5rem; }
.contact-cta .btn-primary { background: var(--navy-800); color: var(--white); box-shadow: none; }
.contact-cta .btn-primary:hover { background: var(--navy-600); color: var(--white); }
.cta-alt { margin: 1.25rem 0 0 !important; font-size: 1rem; }
.cta-alt a { color: var(--navy-700); font-weight: 700; }

/* LinkedIn icon links */
.li-link { display: inline-flex; align-items: center; gap: .5rem; }
.li-link img { flex-shrink: 0; }

/* Page banner (inner pages) */
.page-banner {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  color: #dbe4f3; padding-block: clamp(3rem, 8vw, 5rem);
}
.page-banner h1 { color: var(--white); margin-top: .75rem; font-size: clamp(2rem, 5vw, 3.1rem); }
.breadcrumb { font-size: 1rem; color: #c3cfe3; }
.breadcrumb a { color: var(--white); font-weight: 600; }
.breadcrumb a:hover { color: #bcd3ff; }

/* Request page layout */
@media (min-width: 960px) { .contact-grid-page { grid-template-columns: 1.6fr 1fr; } }
.contact-form h2 { font-size: 1.6rem; }
.contact-aside { display: grid; gap: 1.5rem; }
@media (min-width: 960px) { .contact-aside { position: sticky; top: 6rem; } }
.aside-title { font-size: 1.3rem; margin-bottom: 1rem; }
.aside-direct .contact-details { margin-top: 0; }
.aside-note { margin-top: 1.25rem; font-size: 1rem; }

.next-steps { list-style: none; counter-reset: nxt; display: grid; gap: 1rem; }
.next-steps li { counter-increment: nxt; position: relative; padding-left: 2.75rem; }
.next-steps li::before {
  content: counter(nxt); position: absolute; left: 0; top: .1rem;
  display: grid; place-items: center; width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--navy-800); color: var(--white); font-weight: 800; font-size: 1rem;
}

/* Fieldsets and choices */
.form-group { border: 0; padding: 0; margin: 0 0 1.5rem; }
.form-group > legend {
  width: 100%; padding-bottom: .5rem; margin-bottom: 1.25rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--navy-800);
  border-bottom: 2px solid var(--navy-800);
}
.choice-group { border: 0; padding: 0; margin: 0 0 1.25rem; }
.choice-group > legend { font-weight: 700; color: var(--slate-900); font-size: 1rem; margin-bottom: .6rem; }
.choices { display: grid; gap: .6rem; }
.choices-inline { grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); }
.choices-grid { grid-template-columns: 1fr; }
@media (min-width: 640px) { .choices-grid { grid-template-columns: 1fr 1fr; } }

.choice {
  display: flex; align-items: flex-start; gap: .7rem;
  padding: .75rem .9rem; min-height: 3rem;
  border: 2px solid var(--line); border-radius: var(--radius-sm);
  font-size: 1.02rem; color: var(--slate-900); cursor: pointer;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.choice:hover { border-color: var(--navy-700); }
.choice:has(input:checked) { border-color: var(--navy-800); background: var(--accent-soft); font-weight: 600; }
.choice input { width: 1.3rem; height: 1.3rem; margin-top: .15rem; flex-shrink: 0; accent-color: var(--navy-800); cursor: pointer; }
.choice-consent { margin: .5rem 0 1.5rem; }

.field-hint { margin-top: .4rem; font-size: .95rem; color: var(--slate-500); }
.field input::placeholder { color: #6b7a90; }
.form-fineprint { margin-top: 1rem; font-size: .95rem; color: var(--slate-500); text-align: center; }

/* Nav fit fixes: keep labels on one line; switch to desktop nav only when there is room */
.nav-desktop a, .brand-text { white-space: nowrap; }
.nav-desktop a { font-size: 1.02rem; }
@media (min-width: 900px) and (max-width: 1139px) {
  .nav-desktop { display: none; }
  .nav-menu { display: block; }
}
.choices { align-items: start; }
.brand-text { white-space: normal; }
@media (max-width: 480px) {
  .brand-text { font-size: 1rem; }
  .brand-logo { width: 2.5rem; height: 2.5rem; }
  .nav-toggle { padding: .5rem .8rem; }
}
@media (max-width: 360px) { .nav-toggle-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); } }

/* Microsoft Bookings links */
.btn-outline { border-color: var(--navy-800); color: var(--navy-800); background: var(--white); margin-top: .75rem; }
.btn-outline:hover { background: var(--accent-soft); color: var(--navy-800); }
.btn-navy { background: var(--navy-800) !important; color: var(--white) !important; box-shadow: none; }
.btn-navy:hover { background: var(--navy-600) !important; }
.step-link { margin-top: 1rem; }
.text-link-light { color: var(--white); font-weight: 700; }
.text-link-light:hover { color: #bcd3ff; }
.banner-actions { margin-top: 1.75rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; color: var(--white); font-weight: 600; }
.aside-book { margin: 1.5rem 0 .75rem; font-weight: 700; color: var(--slate-900); }

/* Spam-trap field (hidden from people and screen readers) */
.hp-field { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
