/* =========================================================
   Maven Care Ltd — Design System
   Concept: "The Supply Bridge" — a visible, precise link
   between manufacturer and clinic. Clinical teal, warm
   amber signal accent, technical type, real-time cues.
========================================================= */

:root {
  --teal-950: #0A2E2C;
  --teal-900: #0E3B39;
  --teal-700: #145F5B;
  --teal-500: #1C8A83;
  --teal-100: #E4F1EF;
  --amber-600: #C97A22;
  --amber-500: #E0932C;
  --amber-100: #FBEAD3;
  --ink: #12201F;
  --ink-soft: #4C5C5A;
  --paper: #F6F8F7;
  --paper-raised: #FFFFFF;
  --line: #D8E4E1;
  --radius: 4px;
  --shadow-sm: 0 1px 2px rgba(10, 46, 44, 0.08);
  --shadow-md: 0 6px 24px rgba(10, 46, 44, 0.10);
  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--teal-950);
  margin: 0 0 .5em;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; color: var(--ink-soft); }
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-600);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--amber-500);
  border-radius: 50%;
  display: inline-block;
}
.pulse::before {
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(224,147,44,.55); }
  70% { box-shadow: 0 0 0 8px rgba(224,147,44,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,147,44,0); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--teal-900); color: #fff; }
.btn-primary:hover { background: var(--teal-700); box-shadow: var(--shadow-md); }
.btn-amber { background: var(--amber-500); color: var(--teal-950); }
.btn-amber:hover { background: var(--amber-600); color: #fff; }
.btn-outline { background: transparent; color: var(--teal-900); border-color: var(--teal-900); }
.btn-outline:hover { background: var(--teal-900); color: #fff; }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* Navbar */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: var(--teal-950);
  border-bottom: 3px solid var(--amber-500);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  max-width: 1180px; margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  color: #fff;
}
.brand .mark { width: 34px; height: 34px; border-radius: 8px; background: var(--amber-500); display: flex; align-items: center; justify-content: center; color: var(--teal-950); font-size: 16px; font-weight: 700; }
.brand-logo-img { height: 38px; width: auto; max-width: 160px; object-fit: contain; background: #fff; border-radius: 6px; padding: 3px 6px; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { font-size: 14.5px; font-weight: 600; color: #D9E8E6; padding: 6px 0; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: #fff; border-color: var(--amber-500); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle span { background: #fff; }
.nav-toggle { display: none; }

/* Search bar */
.nav-search {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); border-radius: 30px;
  padding: 6px 6px 6px 14px;
}
.nav-search input[type=search] {
  border: none; padding: 4px 0; font-size: 13.5px; width: 170px; background: transparent; color: #fff;
}
.nav-search input[type=search]::placeholder { color: #9FC0BC; }
.nav-search input[type=search]:focus { outline: none; }
.nav-search button {
  border: none; background: var(--amber-500); color: var(--teal-950); width: 30px; height: 30px;
  border-radius: 50%; cursor: pointer; font-size: 13px; display: flex; align-items: center; justify-content: center;
}
.nav-search-mobile { display: none; }
@media (max-width: 1080px) { .nav-search { display: none; } }
@media (max-width: 860px) {
  .nav-search-mobile { display: flex; width: 100%; margin-top: 4px; background: rgba(255,255,255,0.08); }
  .nav-search-mobile input { width: 100%; }
}

/* Products nav dropdown (category quick-links) — deliberately obvious */
.nav-item-dropdown { position: relative; display: flex; align-items: center; gap: 6px; }
.dropdown-caret {
  background: var(--amber-500); border: none; cursor: pointer; font-size: 11px; color: var(--teal-950);
  width: 22px; height: 22px; border-radius: 50%; line-height: 1;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}
.dropdown-caret:hover { background: #fff; }
.nav-item-dropdown.open .dropdown-caret { transform: rotate(180deg); }
.nav-dropdown-panel {
  display: none; position: absolute; top: calc(100% + 14px); left: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-md);
  min-width: 230px; max-width: 280px; padding: 10px;
  z-index: 200;
}
.nav-dropdown-panel::before {
  content: 'Browse by Category';
  display: block; font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .05em;
  color: var(--ink-soft); padding: 4px 12px 8px; border-bottom: 1px solid var(--line); margin-bottom: 6px;
}
.nav-dropdown-panel a {
  display: block; padding: 9px 12px; font-size: 13.5px; border-radius: 6px; border: none; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nav-dropdown-panel a:hover { background: var(--teal-100); color: var(--teal-900); }
.nav-item-dropdown.open .nav-dropdown-panel { display: block; }
@media (max-width: 860px) {
  .nav-item-dropdown { flex-wrap: wrap; }
  .nav-dropdown-panel {
    position: static; display: none; width: 100%; max-width: none;
    box-shadow: none; border: none; background: rgba(255,255,255,0.06);
    border-radius: 8px; margin-top: 6px; padding: 8px 6px;
  }
  .nav-dropdown-panel::before { color: #9FC0BC; border-color: rgba(255,255,255,0.15); }
  .nav-dropdown-panel a { color: #D9E8E6; }
  .nav-dropdown-panel a:hover { background: rgba(255,255,255,0.1); color: #fff; }
  .nav-item-dropdown.open .nav-dropdown-panel { display: block; }
}
.cart-icon {
  position: relative;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  padding: 4px;
}
.cart-badge {
  position: absolute; top: -4px; right: -6px;
  background: var(--amber-500); color: var(--teal-950);
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  min-width: 17px; height: 17px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
}

/* Homepage image slider */
.slider {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-md);
}
.slider-track { display: flex; height: 100%; transition: transform .6s ease; }
.slide { position: relative; min-width: 100%; height: 100%; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,46,44,.82) 0%, rgba(10,46,44,.45) 55%, rgba(10,46,44,.1) 100%);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 56px; max-width: 640px;
}
.slide-overlay h2 { color: #fff; font-size: clamp(24px, 3.2vw, 36px); margin-bottom: 10px; }
.slide-overlay p { color: #D9E8E6; font-size: 16px; max-width: 46ch; }
.slide-overlay .btn { margin-top: 18px; align-self: flex-start; }
.slider-dots { position: absolute; bottom: 20px; left: 56px; display: flex; gap: 8px; z-index: 5; }
.slider-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(255,255,255,.4); cursor: pointer; padding: 0;
}
.slider-dots button.active { background: var(--amber-500); width: 22px; border-radius: 5px; }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.15); color: #fff; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; z-index: 5;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: rgba(255,255,255,.28); }
.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }
@media (max-width: 760px) {
  .slider { height: 320px; }
  .slide-overlay { padding: 0 24px; }
  .slider-dots { left: 24px; }
}

/* Cart & checkout pages */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); padding: 10px 6px; border-bottom: 1px solid var(--line); }
.cart-table td { padding: 16px 6px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.cart-item-info { display: flex; align-items: center; gap: 14px; }
.cart-item-info img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); flex-shrink: 0; }
.cart-item-info h4 { font-size: 15px; margin: 0 0 3px; }
.qty-input { width: 64px; padding: 8px 10px; }
.cart-summary { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 24px; }
.cart-summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14.5px; }
.cart-summary-row.total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; font-weight: 700; font-size: 17px; color: var(--teal-950); }
.remove-link { color: #B23A2E; font-size: 13px; font-weight: 600; }
.empty-cart { text-align: center; padding: 70px 20px; }

/* Testimonials */
.testimonial-card {
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: 12px;
  padding: 26px; display: flex; flex-direction: column; gap: 14px;
}
.testimonial-stars { color: var(--amber-500); font-size: 14px; letter-spacing: 2px; }
.testimonial-message { font-style: italic; color: var(--ink); font-size: 15px; line-height: 1.6; margin: 0; }
.testimonial-person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-person img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--teal-100); }
.testimonial-person .name { font-weight: 700; font-size: 14.5px; color: var(--teal-950); }
.testimonial-person .role { font-size: 12.5px; color: var(--ink-soft); }

/* Google review CTA banner */
.google-review-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 22px 26px; margin-top: 36px;
}
.google-review-text { display: flex; align-items: center; gap: 14px; }

/* Stats strip */
.stats-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  background: var(--teal-950); border-radius: 14px; padding: 40px 32px;
  margin: 12px 0 8px;
}
@media (max-width: 700px) { .stats-strip { grid-template-columns: 1fr; gap: 28px; } }
.stat-block { text-align: center; }
.stat-block .stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--amber-500); }
.stat-block .stat-label { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: #C9DAD8; margin-top: 6px; }

/* Value/feature cards with icons (About / Services) */
.icon-card { text-align: center; padding: 30px 22px; }
.icon-card .icon-circle {
  width: 56px; height: 56px; border-radius: 50%; background: var(--teal-100);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  margin: 0 auto 16px;
}

/* Process timeline (Services "how it works") */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
@media (max-width: 860px) { .timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .timeline { grid-template-columns: 1fr; } }
.timeline-step { position: relative; padding-top: 10px; }
.timeline-step .step-num {
  font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: #fff;
  background: var(--teal-900); width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.timeline-step.amber .step-num { background: var(--amber-500); color: var(--teal-950); }

/* Product filter bar (search + category + price range) */
.filter-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-bottom: 30px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px;
}
.filter-search { flex: 1; min-width: 220px; }
.filter-search input[type=search] {
  width: 100%; padding: 11px 16px; border: 1px solid var(--line); border-radius: 30px; font-size: 14px;
}
.filter-selects { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.filter-selects select { padding: 10px 14px; border: 1px solid var(--line); border-radius: 30px; font-size: 13.5px; background: #fff; }
@media (max-width: 700px) { .filter-bar { flex-direction: column; align-items: stretch; } .filter-selects { justify-content: stretch; } .filter-selects select { flex:1; } }

/* Catalog download banner */
.catalog-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: var(--amber-100); border: 1px solid var(--amber-500); border-radius: 12px;
  padding: 22px 26px; margin-bottom: 34px;
}
.catalog-banner h4 { margin: 0 0 4px; font-size: 16px; }
.catalog-banner p { margin: 0; font-size: 13.5px; }

/* Contact page image */
.contact-photo { border-radius: 12px; overflow: hidden; border: 1px solid var(--line); margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.contact-photo img { width: 100%; height: 260px; object-fit: cover; }

/* Product detail image gallery thumbnails */
.product-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.product-thumb {
  width: 64px; height: 64px; padding: 0; border-radius: 8px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer; background: none;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-thumb.active { border-color: var(--teal-500); }
.product-thumb:hover { border-color: var(--amber-500); }

/* About story pull-quote styling */
.story-lede { font-size: 19px; color: var(--teal-950); font-weight: 500; line-height: 1.5; }

@media (max-width: 860px) {
  .nav-links { position: fixed; inset: 68px 0 0 0; background: var(--teal-950); flex-direction: column; align-items: flex-start; padding: 32px 24px; gap: 22px; transform: translateX(100%); transition: transform .25s ease; overflow-y: auto;}
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: flex; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 8px; }
  .nav-toggle span { width: 22px; height: 2px; background: #fff; }
  .nav-cta .btn { display: none; }
}

/* Hero */
.hero {
  padding: 64px 0 40px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { font-size: clamp(30px, 4.4vw, 48px); }
.hero-sub { font-size: 17px; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

/* Bridge diagram (signature element) */
.bridge {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 20px;
  box-shadow: var(--shadow-md);
}
.bridge-row { display: flex; align-items: center; justify-content: space-between; }
.bridge-node {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  width: 92px; text-align: center;
}
.bridge-node .dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--teal-100); border: 2px solid var(--teal-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.bridge-node.mid .dot { background: var(--amber-100); border-color: var(--amber-500); }
.bridge-node span { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .04em; }
.bridge-line {
  flex: 1; height: 2px; margin: 0 6px 28px;
  background-image: linear-gradient(90deg, var(--teal-500) 0 6px, transparent 6px 12px);
  background-size: 12px 2px;
  position: relative;
}
.bridge-line::after {
  content: ''; position: absolute; top: -3px; left: 0;
  width: 8px; height: 8px; border-radius: 50%; background: var(--amber-500);
  animation: travel 3s linear infinite;
}
@keyframes travel { 0% { left: 0; } 100% { left: calc(100% - 8px); } }
.bridge-caption { text-align: center; font-size: 13px; color: var(--ink-soft); margin-top: 18px; }

/* Trust strip / feature columns */
.strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding: 36px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
@media (max-width: 760px) { .strip { grid-template-columns: 1fr; } }
.strip-item { display: flex; gap: 14px; align-items: flex-start; }
.strip-item .num { font-family: var(--font-mono); color: var(--amber-600); font-size: 13px; padding-top: 3px; }
.strip-item h4 { margin: 0 0 4px; font-size: 16px; }
.strip-item p { margin: 0; font-size: 14px; }

/* Section */
.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(24px, 3vw, 32px); }

/* Category / product cards */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
  display: flex; flex-direction: column;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-link-wrap { display: block; color: inherit; }
.card-media { aspect-ratio: 4/3; background: var(--teal-100); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 18px 18px 6px; display: flex; flex-direction: column; gap: 8px; }
.card-body h3, .card-body h4 { font-size: 17px; }
.card-body p { font-size: 14px; margin-bottom: 4px; }
.card-actions { padding: 0 18px 18px; margin-top: auto; display: flex; flex-direction: column; gap: 10px; }
.card-foot { display: flex; align-items: center; justify-content: space-between; }
.add-to-cart-form { margin: 0; }
.price { font-family: var(--font-mono); font-weight: 600; color: var(--teal-900); }
.badge {
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .04em;
  padding: 4px 9px; border-radius: 20px; display: inline-flex; align-items: center; gap: 6px;
}
.badge-stock { background: var(--teal-100); color: var(--teal-700); }
.badge-stock .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-500); }
.badge-out { background: #F4E7E3; color: #9A4B33; }

/* Category tag list on home */
.cat-pill {
  border: 1px solid var(--line); border-radius: 30px; padding: 8px 16px;
  font-size: 13.5px; font-weight: 500; display: inline-flex; gap: 8px; align-items: center;
  background: var(--paper-raised);
}
.cat-pill:hover { border-color: var(--teal-500); }

/* CTA band */
.cta-band {
  background: var(--teal-950);
  color: #fff;
  border-radius: 14px;
  padding: 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cta-band h3 { color: #fff; font-size: 24px; margin-bottom: 6px; }
.cta-band p { color: #C9DAD8; margin: 0; }

/* Footer */
footer.site-footer {
  background: var(--teal-950);
  color: #C9DAD8;
  padding: 56px 0 24px;
  margin-top: 64px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 32px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
footer .brand { color: #fff; }
footer .brand .mark { background: var(--amber-500); color: var(--teal-950); }
footer h5 { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: #7FA6A2; margin: 0 0 14px; }
footer a { color: #C9DAD8; font-size: 14px; display: block; margin-bottom: 10px; }
footer a:hover { color: var(--amber-500); }
.footer-bottom { border-top: 1px solid #1D4E4B; margin-top: 40px; padding-top: 20px; font-size: 13px; color: #7FA6A2; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.social-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icon-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid #1D4E4B;
  display: flex; align-items: center; justify-content: center;
  color: #C9DAD8; transition: background .15s ease, color .15s ease;
}
.social-icon-link:hover { background: var(--amber-500); color: var(--teal-950); border-color: var(--amber-500); }

/* Page header (inner pages) */
.page-header { padding: 48px 0 16px; border-bottom: 1px solid var(--line); }
.breadcrumb { font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .05em; }

/* Forms */
.form-group { margin-bottom: 18px; }
label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; color: var(--teal-950); }
input[type=text], input[type=email], input[type=tel], input[type=password], input[type=number], input[type=search], select, textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 14.5px; background: #fff; color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--teal-500); outline-offset: 1px; border-color: var(--teal-500); }
textarea { resize: vertical; min-height: 130px; }

/* Alerts */
.alert { padding: 14px 16px; border-radius: var(--radius); font-size: 14.5px; margin-bottom: 20px; }
.alert-success { background: var(--teal-100); color: var(--teal-900); border: 1px solid var(--teal-500); }
.alert-error { background: #FBEAE6; color: #9A4B33; border: 1px solid #E0A692; }

/* Contact page layout */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.info-line { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-line .tag { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; color: var(--amber-600); width: 90px; flex-shrink: 0; padding-top: 2px; }

/* Utility */
.text-center { text-align: center; }
.muted { color: var(--ink-soft); }
.mt-0 { margin-top: 0; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-soft); }
