/* -- RESET & BASE -- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1a2b3c;
  --navy-mid: #243647;
  --steel: #2c4a5e;
  --steel-light: #3d6480;
  --accent: #7ab3cc;
  --accent-light: #a8d0e3;
  --gold: #c9a84c;
  --gold-light: #e4c97a;
  --off-white: #f5f3ef;
  --cream: #ede9e1;
  --text-dark: #1c2a36;
  --text-mid: #4a5d6e;
  --text-light: #7a8e9d;
  --border: rgba(44, 74, 94, 0.15);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Source Sans 3", sans-serif;
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* -- TOP BAR -- */
.topbar {
  background: var(--navy);
  color: #fff;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  border-bottom: 1px solid rgba(122, 179, 204, 0.2);
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  text-decoration: none;
}
.brand-sep {
  width: 1px;
  height: 22px;
  background: rgba(122, 179, 204, 0.4);
  align-self: center;
}
.brand-sub {
  font-size: 0.85rem;
  color: var(--accent-light);
  font-weight: 300;
  letter-spacing: 0.04em;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.topbar-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.topbar-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.topbar-links a:hover {
  color: #fff;
}
.topbar-phone {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(122, 179, 204, 0.3);
}

/* NAV */
.main-nav {
  background: var(--steel);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
/* scroll mask */
.nav-inner {
 mask-image: linear-gradient(
to right,
transparent 0%,
black 40px,
black calc(100% - 40px),
transparent 100%
);
-webkit-mask-image: linear-gradient(
to right,
transparent 0%,
black 40px,
black calc(100% - 80px),
transparent 100%
);
}
.nav-inner var,
.nav-inner .ul1,
.nav-inner li,
.nav-inner .l1 {
  display: contents;
  list-style: none;
}
.nav-inner::-webkit-scrollbar {
  display: none;
}
.nav-inner a {
  color: rgba(200, 219, 232, 0.85);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.95rem 1.1rem;
  display: block;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-inner a:hover,
.nav-inner a.selected {
  color: #fff;
  border-bottom-color: var(--gold);
}
.nav-inner .lc,
.nav-inner .rc,
.nav-inner .aw,
.nav-inner .ul2 {
  display: none;
}

/* -- PAGE HERO -- */
.page-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 3.5rem 2.5rem 3rem;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 60% 80% at 80% 50%,
      rgba(44, 74, 94, 0.6) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 10% 80%,
      rgba(201, 168, 76, 0.08) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.page-hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.page-hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.page-hero-desc {
  font-size: 0.98rem;
  color: rgba(200, 219, 232, 0.75);
  max-width: 580px;
  line-height: 1.7;
  font-weight: 300;
}

/* -- MAIN LAYOUT -- */
.main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}
.main.full-width {
  grid-template-columns: 1fr;
}

/* -- NOTICE -- */
.notice {
  background: #fff;
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.notice-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}
.notice p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* -- CALCULATOR CARD -- */
.calc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26, 43, 60, 0.07);
}
.calc-header {
  background: var(--navy);
  padding: 1.5rem 2rem;
}
.calc-header h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
  font-weight: 600;
}
.calc-header p {
  font-size: 0.85rem;
  color: var(--accent-light);
  margin-top: 0.25rem;
  font-weight: 300;
}
.calc-body {
  padding: 2rem;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field-group.full {
  grid-column: 1 / -1;
}
label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
input[type="number"],
select {
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
input[type="number"]:focus,
select:focus {
  border-color: var(--accent);
  background: #fff;
}
.input-prefix {
  position: relative;
}
.input-prefix span {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: var(--text-light);
}
.input-prefix input {
  padding-left: 1.6rem;
}
.calc-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}
.calc-btn {
  width: 100%;
  padding: 0.85rem;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background var(--transition);
}
.calc-btn:hover {
  background: var(--steel);
}

/* Calculator Results */
.results {
  background: var(--cream);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  display: none;
}
.results.visible {
  display: block;
}
.results-title {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 1rem;
}
.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}
.result-row:last-child {
  border-bottom: none;
}
.result-label {
  font-size: 0.9rem;
  color: var(--text-mid);
}
.result-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}
.result-highlight {
  background: var(--navy);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.result-highlight .label {
  font-size: 0.85rem;
  color: var(--accent-light);
}
.result-highlight .value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
}

/* -- CONTENT CARDS (General Pages) -- */
.content-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.content-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.content-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--steel);
  margin: 1.25rem 0 0.6rem;
}
.content-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 0.85rem;
}
.content-card p:last-child {
  margin-bottom: 0;
}
.content-card a {
  color: var(--steel);
}
.content-card a:hover {
  color: var(--navy);
}

/* -- DUTY LIST -- */
.duty-list {
  list-style: none;
  padding: 0;
}

.duty-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  font-size: 0.92rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.duty-list li:last-child {
  border-bottom: none;
}

.duty-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ── ANCHORED SECTION ── */
.section-anchor {
  scroll-margin-top: 5rem;
}

/* ── FAQ ITEM ── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.faq-item:first-child {
  padding-top: 0;
}
.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.faq-q {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.75rem;
}
.faq-q::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 1px;
}
.faq-a {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  padding-left: 2rem;
}

/* -- SIDEBAR (CMS READY) -- */
.sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.sidebar-card-head {
  background: var(--navy);
  padding: 0.9rem 1.25rem;
}
.sidebar-card-head h3 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.sidebar-card-body {
  padding: 1.25rem;
}


/* CMS Sidebar Flattening */
.sidebar-card-body var,
.sidebar-card-body .ul1,
.sidebar-card-body li,
.sidebar-card-body .l1 {
  display: contents;
  list-style: none;
}
.sidebar-card-body a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.sidebar-card-body a::after {
  content: "›";
  font-size: 1.1rem;
  color: var(--accent);
}
.sidebar-card-body a:hover,
.sidebar-card-body a.selected {
  color: var(--navy);
}
.sidebar-card-body a.selected {
  font-weight: 600;
}
.sidebar-card-body li:last-of-type a {
  border-bottom: none;
}
.sidebar-card-body .lc,
.sidebar-card-body .rc,
.sidebar-card-body .aw,
.sidebar-card-body .ul2 {
  display: none;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-row:last-child {
  border-bottom: none;
}
.contact-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-width: 70px;
  padding-top: 1px;
}
.contact-value {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}
.contact-value a {
  color: var(--steel);
  text-decoration: none;
  display: block;
  padding: revert;
  font-size: revert;
  color: var(--steel);
  border-bottom: revert;
}
.contact-value a:hover {
  text-decoration: underline;
}

.contact-value a::after {
  display: none;
}

/* - NAV LIST -*/

.nav-list {
  list-style: none;
  padding: 0;
}

.nav-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.nav-list li:last-child a {
  border-bottom: none;
}
.nav-list li a:hover {
  color: var(--navy);
}

.nav-list li a::after {
  content: "›";
  font-size: 1.1rem;
  color: var(--accent);
}

/* -- LINK GROUP & LIST STYLING -- */
.link-group {
  margin-bottom: 1.5rem;
}
.link-group-title {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.link-list {
  list-style: none;
  padding: 0;
}

.link-list li {
  border-bottom: 1px solid var(--border);
}

.link-list li:last-child {
  border-bottom: none;
}

.link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--steel);
  text-decoration: none;
  line-height: 1.5;
  transition: color var(--transition);
}

.link-list a:hover {
  color: var(--navy);
}

/* The arrow indicator on the right */
.link-list a::after {
  content: "→";
  font-size: 0.85rem;
  color: var(--accent);
  margin-left: 1rem;
  flex-shrink: 0;
}

/* ── FORMS LIST ── */
.form-group {
  margin-bottom: 2rem;
}
.form-group-title {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.form-item:last-child {
  border-bottom: none;
}
.form-item-name {
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 500;
}
.form-item-links {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.form-badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--accent);
  transition: background var(--transition);
}
.form-badge:hover {
  background: var(--steel);
}

/* ── GLOSSARY ── */
.gloss-letter {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  margin-bottom: 0.75rem;
  padding-bottom: 0.2rem;
  display: inline-block;
  min-width: 2rem;
}
.gloss-term {
  margin-bottom: 1.25rem;
}
.gloss-dt {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.gloss-dd {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── ALPHA NAV ── */
.alpha-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 2rem;
}
.alpha-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--steel);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.alpha-nav a:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ── PROCEDURES TABLE ── */
.proc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.proc-table th {
  background: var(--navy);
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 1rem;
  text-align: left;
}
.proc-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  vertical-align: top;
  line-height: 1.6;
}
.proc-table tr:last-child td {
  border-bottom: none;
}
.proc-table tr:nth-child(even) td {
  background: rgba(245, 243, 239, 0.5);
}
.proc-table td:first-child {
  font-weight: 500;
  color: var(--text-dark);
  width: 45%;
}
.proc-table a {
  color: var(--steel);
}

/* ── CONTACT GRID ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
}
.contact-box h3 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--navy);
  margin: -1.5rem -1.5rem 1.25rem;
  padding: 0.75rem 1.25rem;
  border-radius: 9px 9px 0 0;
  font-weight: 500;
}
.contact-box p,
.contact-box address {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: normal;
  margin-bottom: 0.5rem;
}
.contact-box a {
  color: var(--steel);
  text-decoration: none;
}
.contact-box a:hover {
  text-decoration: underline;
}

/* -- FOOTER -- */
footer {
  background: var(--navy);
  color: rgba(200, 219, 232, 0.5);
  text-align: center;
  padding: 1.75rem 2.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  border-top: 1px solid rgba(122, 179, 204, 0.1);
}
footer span {
  color: var(--accent);
  margin: 0 0.5rem;
}

/* HOME HERO */
.hero {
  padding: 5rem 2.5rem 4.5rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 5rem 2.5rem 4.5rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 60% 80% at 80% 50%,
      rgba(44, 74, 94, 0.6) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 10% 80%,
      rgba(201, 168, 76, 0.08) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(200, 219, 232, 0.8);
  max-width: 520px;
  line-height: 1.75;
  font-weight: 300;
}
.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(122, 179, 204, 0.2);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  text-align: center;
  min-width: 200px;
  backdrop-filter: blur(8px);
}

.hero-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.hero-card-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
  font-weight: 400;
}

.hero-divider {
  border: none;
  border-top: 1px solid rgba(122, 179, 204, 0.15);
  margin: 1.25rem 0;
}

/* QUICK LINKS */
.quick-section {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.quick-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.25rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.quick-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-dark);
  transition: box-shadow var(--transition), border-color var(--transition),
    transform var(--transition);
}
.quick-item:hover {
  box-shadow: 0 4px 20px rgba(26, 43, 60, 0.1);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.quick-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quick-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.quick-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1px;
}
.quick-sub {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* -- RESPONSIVE -- */
@media (max-width: 900px) {
  .topbar {
    padding: 0 1.5rem;
  }
  .brand-name {
    font-size: 1.3rem;
  }
  .brand-sub,
  .brand-sep {
    display: none;
  }
  .page-hero {
    padding: 2.5rem 1.5rem 2rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-card {
    text-align: left;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-value a {
    display: block;
    padding: revert;
    font-size: revert;
    color: var(--steel);
    border-bottom: revert;
  }

  .contact-value a::after {
    display: none;
  }
  .quick-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem;
  }
  .main {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }
  .nav-inner {
    padding: 0 2rem 0 1rem;
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  .topbar-links {
    display: none;
  }
  .quick-inner {
    grid-template-columns: 1fr;
  }
}
