/* ==========================================================================
   Urgent Care of NJ — Shared Stylesheet
   Warm, approachable healthcare theme
   build: 20260807-1730
   ========================================================================== */

:root {
  /* Color palette */
  --cream: #fffaf3;
  --cream-soft: #fbf1e3;
  --navy: #0b1b32;
  --navy-dark: #071224;
  --navy-light: #e7ecf2;
  --red: #7f0013;
  --red-dark: #5d0606;
  --red-light: #fbeae8;
  --red-bright: #a0030d;
  --ink: #201a18;
  --ink-soft: #6e6558;
  --ink-faint: #9a9082;
  --white: #ffffff;
  --border: #ede1d0;
  --shadow-sm: 0 2px 8px rgba(46, 42, 37, 0.06);
  --shadow-md: 0 8px 24px rgba(46, 42, 37, 0.1);
  --shadow-lg: 0 20px 50px rgba(46, 42, 37, 0.14);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --font-head: "Quicksand", sans-serif;
  --font-body: "Nunito Sans", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p { color: var(--ink-soft); }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 88px 0;
}

@media (max-width: 720px) {
  section { padding: 56px 0; }
}

.section-alt {
  background: var(--cream-soft);
}

.section-sage {
  background: var(--navy);
  color: var(--white);
}

.section-sage h2, .section-sage p { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-dark);
  background: var(--red-light);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p {
  margin-top: 14px;
  font-size: 1.08rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--red-bright);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(160, 3, 13, 0.35);
}
.btn-primary:hover { background: var(--red-dark); }

.btn-secondary {
  background: var(--white);
  color: var(--navy-dark);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { background: var(--navy-light); }

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.15); }

.btn-outline-sage {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy-dark);
}
.btn-outline-sage:hover { background: var(--navy-light); }

.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ==========================================================================
   Top utility bar
   ========================================================================== */
.topbar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.topbar-item svg { width: 15px; height: 15px; flex-shrink: 0; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.14);
  padding: 3px 12px;
  border-radius: var(--radius-pill);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8de3a1;
}

.status-pill.closed .status-dot { background: #f2a0a0; }

.topbar a.tel { font-weight: 700; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  padding: 3px;
}

.lang-switch a {
  padding: 3px 11px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.lang-switch a.active {
  background: var(--white);
  color: var(--navy-dark);
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--ink);
  white-space: nowrap;
  min-width: 0;
}

.logo .mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.logo img.logo-img {
  height: 64px;
  width: auto;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .logo img.logo-img { height: 50px; }
}

.logo .logo-text {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.logo .logo-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-dark);
  white-space: nowrap;
}

.logo {
  flex-shrink: 1;
  min-width: 0;
}

.logo .mark { flex-shrink: 0; }

.nav-actions {
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .logo { font-size: 1.02rem; }
  .logo .logo-sub { display: none; }
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

nav.main-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--ink-soft);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

nav.main-nav a:hover,
nav.main-nav a[aria-current="page"] {
  color: var(--navy-dark);
  border-color: var(--red);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 940px) {
  nav.main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    box-shadow: var(--shadow-lg);
  }
  nav.main-nav.open { transform: translateX(0); }
  nav.main-nav a { font-size: 1.1rem; }
  .nav-toggle { display: flex; }
  .nav-actions .btn-primary-nav-text { display: none; }
  .nav-actions .btn-primary { padding: 13px; }
  .nav-actions .btn-primary svg { width: 20px; height: 20px; }
}

@media (min-width: 941px) {
  .nav-scrim { display: none !important; }
}

.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(46, 42, 37, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 90;
}

.nav-scrim.open {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%);
  padding: 76px 0 90px;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(2px);
}

.hero-blob.one {
  width: 320px; height: 320px;
  background: var(--navy-light);
  top: -80px; right: -60px;
}
.hero-blob.two {
  width: 220px; height: 220px;
  background: var(--red-light);
  bottom: -60px; left: 40%;
}

.hero-content { position: relative; z-index: 1; }

.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--red); }

.hero p.lead {
  font-size: 1.18rem;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy-dark);
}

.hero-badge svg { width: 20px; height: 20px; color: var(--navy); flex-shrink: 0; }

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  position: relative;
}

.hero-card .icon-tile {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--navy-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.hero-card .icon-tile svg { width: 28px; height: 28px; color: var(--navy-dark); }

.hero-card h3 { margin-bottom: 8px; }
.hero-card p { font-size: 0.96rem; margin-bottom: 18px; }

.hero-stat-row {
  display: flex;
  gap: 22px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 4px;
}

.hero-stat .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy-dark);
}
.hero-stat .label {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.floating-chip {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.88rem;
}

.floating-chip.chip-top {
  top: -22px; right: 18px;
}
.floating-chip.chip-bottom {
  bottom: -20px; left: -24px;
}

.floating-chip svg { width: 22px; height: 22px; color: var(--red); }

@media (max-width: 940px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .floating-chip { display: none; }
}

/* ==========================================================================
   Trust bar
   ========================================================================== */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}

.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}

.trust-item svg { width: 24px; height: 24px; color: var(--navy); flex-shrink: 0; }

/* ==========================================================================
   Cards grid (services)
   ========================================================================== */
.grid {
  display: grid;
  gap: 26px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 940px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card .icon-tile {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--navy-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card .icon-tile svg { width: 26px; height: 26px; color: var(--navy-dark); }

.card.accent .icon-tile { background: var(--red-light); }
.card.accent .icon-tile svg { color: var(--red-dark); }

.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.96rem; margin-bottom: 14px; }

.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-dark);
  margin-bottom: 12px;
}

.card-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link svg { width: 16px; height: 16px; transition: transform 0.15s ease; }
.card-link:hover svg { transform: translateX(3px); }

/* Service detail blocks (services.html) */
.service-block {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }

.service-block .icon-tile {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--navy-light);
  display: flex; align-items: center; justify-content: center;
}
.service-block .icon-tile svg { width: 32px; height: 32px; color: var(--navy-dark); }

.service-block ul.checklist {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}

@media (max-width: 640px) {
  .service-block { grid-template-columns: 52px 1fr; }
  .service-block .icon-tile { width: 52px; height: 52px; border-radius: 14px; }
  .service-block .icon-tile svg { width: 24px; height: 24px; }
  .service-block ul.checklist { grid-template-columns: 1fr; }
}

ul.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
ul.checklist li svg {
  width: 17px; height: 17px;
  color: var(--navy);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ==========================================================================
   Why choose us
   ========================================================================== */
.why-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 720px) {
  .why-row { grid-template-columns: 1fr; }
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.why-item .icon-tile {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--red-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-item .icon-tile svg { width: 22px; height: 22px; color: var(--red-dark); }
.why-item h4 { margin-bottom: 6px; }
.why-item p { font-size: 0.92rem; }

/* ==========================================================================
   Provider profile
   ========================================================================== */
.provider-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 40px;
  display: flex;
  gap: 36px;
  align-items: center;
}

.provider-photo {
  width: 220px;
  height: 280px;
  border-radius: var(--radius-lg);
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.provider-photo svg { width: 76px; height: 76px; color: var(--navy); }
.provider-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

@media (max-width: 720px) {
  .provider-photo { width: 200px; height: 240px; }
}

.provider-info h3 { margin-bottom: 2px; }

.provider-credential {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--red-dark);
  margin-bottom: 14px;
}

.provider-info p.bio { font-size: 0.98rem; margin-bottom: 12px; }
.provider-info p.bio:last-of-type { margin-bottom: 0; }

.provider-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.provider-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--cream-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.provider-badge svg { width: 15px; height: 15px; color: var(--navy); flex-shrink: 0; }

@media (max-width: 720px) {
  .provider-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  .provider-badges { justify-content: center; }
}

/* ==========================================================================
   Locations
   ========================================================================== */
.location-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.location-card .map-embed {
  width: 100%;
  height: 260px;
  border: none;
  filter: saturate(0.9);
}

.location-card .location-body { padding: 28px; }

.location-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--navy-light);
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.location-card .badge.closed {
  background: var(--red-light);
  color: var(--red-dark);
}

.location-card h3 { margin-bottom: 6px; }
.location-card address { font-style: normal; color: var(--ink-soft); margin-bottom: 16px; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.hours-table td {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.94rem;
}
.hours-table td:first-child { color: var(--ink-soft); }
.hours-table td:last-child { text-align: right; font-weight: 700; }
.hours-table tr:last-child td { border-bottom: none; }

.location-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-lg);
  padding: 56px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner h2 { color: var(--white); margin-bottom: 10px; }
.cta-banner p { color: rgba(255, 255, 255, 0.88); max-width: 420px; }
.cta-banner .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 720px) {
  .cta-banner { padding: 36px 26px; text-align: center; justify-content: center; }
  .cta-banner p { margin: 0 auto; }
  .cta-banner .cta-actions { justify-content: center; }
}

/* ==========================================================================
   Insurance
   ========================================================================== */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 720px) {
  .insurance-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .insurance-grid { grid-template-columns: 1fr; }
}

.insurance-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 84px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.insurance-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.insurance-pill img {
  max-height: 36px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
.insurance-pill span {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--ink-faint);
  letter-spacing: 0.03em;
}

.notice-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--red-light);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 0 auto 40px;
  max-width: 760px;
}
.notice-box svg { width: 22px; height: 22px; color: var(--red-dark); flex-shrink: 0; margin-top: 2px; }
.notice-box p { margin: 0; font-size: 0.95rem; color: var(--ink); }
.notice-box strong { color: var(--red-dark); }

/* FAQ accordion */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
}

.faq-question .plus {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--navy-light);
  color: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  font-size: 1.1rem;
  line-height: 1;
}

.faq-item.open .faq-question .plus { transform: rotate(45deg); background: var(--red-light); color: var(--red-dark); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.96rem;
  color: var(--ink-soft);
}

/* ==========================================================================
   Contact form
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 7px;
  color: var(--ink);
}

input, textarea, select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.15s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--navy);
}

textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin-top: 14px;
}

.contact-info-card {
  background: var(--navy-light);
  border-radius: var(--radius-lg);
  padding: 34px;
  margin-bottom: 20px;
}

.contact-info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(11, 27, 50, 0.15);
}
.contact-info-row:last-child { border-bottom: none; }
.contact-info-row svg { width: 22px; height: 22px; color: var(--navy-dark); flex-shrink: 0; margin-top: 2px; }
.contact-info-row h4 { margin-bottom: 3px; font-size: 1rem; }
.contact-info-row p { font-size: 0.92rem; margin: 0; }

.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--navy-light);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.92rem;
}
.form-status.show { display: block; }
.form-status.error { background: var(--red-light); color: var(--red-dark); }

/* ==========================================================================
   Footer
   ========================================================================== */
footer.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 64px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-grid h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-grid li { margin-bottom: 11px; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--white); }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo img {
  height: 64px;
  width: auto;
  background: var(--cream);
  border-radius: 12px;
  padding: 6px 10px;
}

.footer-tagline { font-size: 0.9rem; max-width: 280px; margin-bottom: 18px; color: rgba(255,255,255,0.6); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 0.85rem;
}

.footer-bottom .legal-links { display: flex; gap: 22px; }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero {
  background: var(--navy-light);
  padding: 64px 0 56px;
  text-align: center;
}
.page-hero .eyebrow { background: var(--white); }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy-dark);
  color: var(--white);
  padding: 10px 18px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
