*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--fog);
  color: var(--navy);
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: var(--cyan); text-decoration: none; }
a:hover { color: var(--cyan-dark); }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  border-bottom: 1px solid rgba(0, 168, 180, 0.35);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 28px;
}
.header-brand { display: flex; align-items: center; flex-shrink: 0; }
.site-header .logo { height: 58px; width: auto; display: block; }
.site-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 28px 14px;
}
.site-nav { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.site-nav a {
  color: var(--silver);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.site-nav a:hover, .site-nav a.active { color: var(--cyan); }
.header-ctas { display: flex; gap: 8px; flex-wrap: wrap; }

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(0, 168, 180, 0.45);
  border-radius: var(--radius);
  background: transparent;
  color: var(--cyan);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}
.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 20px;
}
.nav-toggle-bars span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.site-header.nav-open .nav-toggle-bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.nav-open .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Desktop: bar + menu as one row */
@media (min-width: 901px) {
  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 28px;
  }
  .header-bar {
    padding: 0;
    flex-shrink: 0;
  }
  .site-menu {
    padding: 0;
    flex: 1;
    justify-content: flex-end;
  }
}

/* Mobile / tablet: toggle menu */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .header-bar { padding: 10px 16px; }
  .site-header .logo { height: 48px; }
  .site-menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 16px 16px;
    border-top: 1px solid rgba(0, 168, 180, 0.25);
    background: var(--navy-dark);
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .site-header.nav-open .site-menu { display: flex; }
  .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
  }
  .site-nav a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(184, 197, 206, 0.12);
    font-size: 14px;
    min-height: 44px;
    line-height: 1.2;
  }
  .header-ctas {
    flex-direction: column;
    margin-top: 12px;
    gap: 10px;
  }
  .header-ctas .btn {
    width: 100%;
    text-align: center;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  body.nav-locked { overflow: hidden; }
}

.btn {
  display: inline-block;
  background: var(--copper);
  color: var(--white) !important;
  border: none;
  padding: 12px 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  border-radius: var(--radius);
  cursor: pointer;
}
.btn:hover { background: var(--copper-dark); }
.btn-ghost {
  background: transparent;
  color: var(--cyan) !important;
  border: 1px solid var(--cyan);
}
.btn-ghost:hover { background: rgba(0, 168, 180, 0.1); }

.hero {
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  background:
    var(--grad-hero),
    var(--img-hero, url('/images/generated/hero-stage.png')) center / cover no-repeat;
  color: var(--white);
  padding: 48px 28px 64px;
}
.hero-inner { max-width: 720px; }
.hero-brand {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
}
.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 0.04em;
  line-height: 1.05;
}
.hero p {
  margin: 0 0 28px;
  color: var(--silver);
  font-size: 17px;
  max-width: 36em;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
.eyebrow-light { color: var(--cyan); }

.stat-strip {
  background: var(--navy-dark);
  color: var(--white);
  border-top: 2px solid var(--cyan);
}
.stat-strip-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px;
}
.stat { text-align: center; }
.stat-value {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--cyan);
}
.stat-label {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
}
@media (max-width: 900px) {
  .stat-strip-inner { grid-template-columns: repeat(2, 1fr); padding: 20px 16px; }
  .hero {
    min-height: 70vh;
    padding: 36px 16px 48px;
  }
  .hero p { font-size: 15px; }
  .section { padding: 48px 16px; }
  .section-full > .section { padding-top: 40px; padding-bottom: 40px; }
  .page-wrap { padding: 32px 16px 48px; }
  .page-hero-inner { padding: 40px 16px 32px; }
  .compliance { padding: 12px 16px; font-size: 11px; }
  .site-footer { padding: 36px 16px 0; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
  }
  .chip-row { gap: 6px; }
  .chip { padding: 8px 12px; font-size: 12px; }
  .product-detail-media img { height: 260px; }
  .post-hero { min-height: 260px; }
  .post-hero-overlay { min-height: 260px; }
  .post-hero-inner { padding: 36px 16px 28px; }
  .contact-visual img { height: 220px; }
  .about-visual img { height: 220px; }
  .btn { padding: 12px 16px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { flex: 1 1 auto; text-align: center; width: 100%; }
  .tile img { height: 160px; }
}

@media (max-width: 560px) {
  .stat-strip-inner { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-value { font-size: 24px; }
  .footer-grid-pro { grid-template-columns: 1fr; }
  .site-header .logo { height: 44px; }
}

.section {
  padding: 72px 28px;
  max-width: 1120px;
  margin: 0 auto;
}
.section-full { padding: 0; max-width: none; }
.section-full > .section { padding-top: 64px; padding-bottom: 64px; }
.section h2 {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: 0.04em;
}
.section .lead { color: var(--muted); margin: 0 0 32px; max-width: 40em; }
.section-alt { background: var(--white); }
.section-dark {
  background: var(--navy-dark);
  color: var(--white);
}
.section-dark .lead { color: var(--silver); }
.section-dark h2 { color: var(--white); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

/* Card grids: stack on phone, 2-up on tablet, 3-up on desktop */
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .grid-2 { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 640px) {
  .grid-3,
  .grid-2,
  .services-grid,
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .tile-body { padding: 16px 18px 20px; }
  .tile h3 { font-size: 17px; }
  .tile p { font-size: 14px; }
  .section-more .btn { width: 100%; text-align: center; }
}

/* Featured products — mobile / tablet slider */
.product-slider-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}
.product-slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 168, 180, 0.45);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-size: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.product-slider-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.product-slider-btn:hover:not(:disabled) {
  border-color: var(--cyan);
  color: var(--cyan-dark);
}
.product-slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(6, 24, 40, 0.22);
  cursor: pointer;
}
.product-slider-dot.is-active {
  background: var(--cyan);
  transform: scale(1.2);
}

@media (max-width: 900px) {
  .product-slider {
    margin-inline: -16px;
  }
  .product-slider-track.grid-3 {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 16px 10px;
  }
  .product-slider-track.grid-3::-webkit-scrollbar { display: none; }
  .product-slider-track .product-slide {
    flex: 0 0 min(78vw, 300px);
    width: min(78vw, 300px);
    max-width: 300px;
    scroll-snap-align: start;
  }
  .product-slider-controls { display: flex; }
}

@media (min-width: 901px) {
  .product-slider-controls { display: none !important; }
}

.tile {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(6, 24, 40, 0.16);
}
.tile img { width: 100%; height: 180px; object-fit: cover; }
.tile-body { padding: 18px 20px 22px; }
.tile h3 { margin: 0 0 8px; font-size: 16px; }
.tile p { margin: 0; color: var(--muted); font-size: 14px; }
.tile-flat {
  background: rgba(255, 255, 255, 0.96);
  border-top: 3px solid var(--cyan);
}
.tile-index {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--copper);
  margin-bottom: 8px;
}

/* Services band */
.section-band {
  position: relative;
  background: var(--navy-dark);
  overflow: hidden;
}
.section-band-media {
  position: absolute;
  inset: 0;
}
.section-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.section-band-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.section-band-content h2 { color: var(--white); }
.section-band-content .lead { color: var(--silver); }
.section-band-content .tile,
.section-band-content .tile-link {
  color: var(--navy);
}
.section-band-content .tile h3,
.section-band-content .tile-link h3 {
  color: var(--navy);
}
.section-band-content .tile p,
.section-band-content .tile-link p {
  color: var(--muted);
}
.section-band-content .tile-cta {
  color: var(--cyan-dark);
}
.section-band-content .section-more .btn-ghost {
  color: var(--cyan) !important;
  border-color: var(--cyan);
}

/* Why-wholesale dark section with background image */
.section-why {
  position: relative;
  background:
    linear-gradient(rgba(6, 24, 40, 0.88), rgba(6, 24, 40, 0.92)),
    var(--img-why, url('/images/generated/why-wholesale-stage.png')) center / cover no-repeat;
  color: var(--white);
}
.section-why h2 { color: var(--white); }
.section-why .lead { color: var(--silver); }
.why-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 32px;
}
.why-point {
  border-left: 3px solid var(--cyan);
  padding: 4px 0 4px 16px;
}
.why-point h3 { margin: 0 0 6px; font-size: 15px; color: var(--white); }
.why-point p { margin: 0; font-size: 14px; color: var(--silver); }
@media (max-width: 900px) {
  .why-points { grid-template-columns: 1fr; }
}

.about-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-visual img { width: 100%; height: 320px; object-fit: cover; }

.compliance {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  padding: 14px 20px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  background: var(--black);
  color: var(--silver);
  padding: 48px 28px 0;
  border-top: 1px solid rgba(0, 168, 180, 0.35);
}
.site-footer .footer-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}
.footer-grid-pro {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
}
@media (max-width: 900px) {
  .footer-grid-pro { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid-pro { grid-template-columns: 1fr; }
}
.footer-logo { height: 30px; width: auto; margin-bottom: 14px; }
.footer-brand p { margin: 0; font-size: 13px; line-height: 1.55; max-width: 28em; }
.footer-heading {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li { margin: 0 0 10px; }
.footer-links a {
  color: var(--silver);
  font-size: 13px;
  font-weight: 500;
}
.footer-links a:hover { color: var(--cyan); }
.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 0 24px;
  border-top: 1px solid rgba(184, 197, 206, 0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.footer-powered a {
  color: var(--cyan);
  font-weight: 600;
}
.footer-powered a:hover { color: var(--cyan-light, #33C0CC); }
.site-footer a { color: var(--cyan); }
.legal-prose { max-width: 42em; line-height: 1.7; }
.legal-prose h2 { margin: 28px 0 10px; font-size: 20px; letter-spacing: 0.03em; }
.legal-prose p { margin: 0 0 14px; color: var(--navy); }
.legal-prose ul { margin: 0 0 14px; padding-left: 1.2em; color: var(--navy); }
.legal-meta { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.tile img, .about-visual img, .blog-card-media img, .product-detail-media img, .contact-visual img {
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
}
.tile img { aspect-ratio: 16 / 10; height: auto; min-height: 160px; }
.about-visual img { height: 320px; aspect-ratio: auto; }
.muted { color: var(--muted); }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--slate);
  background: var(--smoke);
  border-radius: var(--radius);
  font: inherit;
  font-size: 16px; /* prevents iOS zoom on focus */
  color: var(--navy);
}
.alert {
  padding: 12px 14px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 14px;
}
.alert-error { background: rgba(196, 69, 58, 0.12); color: var(--error); }
.alert-ok { background: rgba(26, 158, 110, 0.12); color: var(--success); }
.page-wrap { padding: 40px 28px 64px; max-width: 900px; margin: 0 auto; }
.page-wrap-wide { max-width: 1120px; }

/* Inner page hero strip */
.page-hero {
  position: relative;
  background:
    linear-gradient(150deg, rgba(10, 10, 10, 0.85) 0%, rgba(6, 24, 40, 0.9) 55%, rgba(12, 48, 84, 0.88) 100%),
    var(--navy-dark);
  color: var(--white);
  overflow: hidden;
}
.page-hero-media .page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.page-hero-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 28px 44px;
}
.page-hero h1 { margin: 4px 0 8px; font-size: clamp(28px, 4vw, 42px); letter-spacing: 0.04em; }
.page-hero p { margin: 0; color: var(--silver); max-width: 44em; font-size: 16px; }

/* Breadcrumbs */
.crumbs {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.crumbs a { color: var(--cyan); }
.crumbs-dark { color: var(--muted); margin-bottom: 24px; }

/* Category filter chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 99px;
  border: 1px solid var(--slate);
  background: var(--white);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}
.chip:hover { border-color: var(--cyan); color: var(--cyan-dark); }
.chip.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white) !important;
}

/* Clickable tiles */
.tile-link { display: flex; flex-direction: column; color: inherit; }
.tile-link:hover { color: inherit; }
.tile-link .tile-body { display: flex; flex-direction: column; flex: 1; }
.tile-cta {
  margin-top: auto;
  padding-top: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-dark);
}
.tile-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
}

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; }
}
.product-detail-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}
.product-detail-media img { width: 100%; height: 420px; object-fit: cover; }
.product-detail-body h1 { margin: 6px 0 12px; font-size: clamp(26px, 3.6vw, 38px); letter-spacing: 0.03em; }
.product-detail-body .lead { color: var(--muted); font-size: 16px; margin: 0 0 20px; }
.product-detail-note {
  background: var(--white);
  border-left: 3px solid var(--cyan);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.product-detail-note p { margin: 0; font-size: 14px; color: var(--muted); }
.related-block { margin-top: 64px; }
.related-block h2 { margin: 0; font-size: 24px; letter-spacing: 0.04em; }
.section-more { margin: 28px 0 0; }

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
}
.blog-card-media { display: block; }
.blog-card-media img { width: 100%; height: 190px; object-fit: cover; }
.blog-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
}
.blog-date-light { color: var(--silver); margin-top: 10px; }
.blog-card-title { margin: 0 0 8px; font-size: 17px; line-height: 1.3; }
.blog-card-title a { color: var(--navy); }
.blog-card-title a:hover { color: var(--cyan-dark); }

/* Blog post */
.post-hero { position: relative; min-height: 340px; }
.post-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-hero-overlay {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(rgba(6, 24, 40, 0.35), rgba(6, 24, 40, 0.85));
}
.post-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  padding: 48px 28px 36px;
  color: var(--white);
}
.post-hero-inner h1 { margin: 10px 0 0; font-size: clamp(26px, 4vw, 40px); line-height: 1.15; }
.back-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.post-body { padding-top: 36px; }
.post-content {
  line-height: 1.7;
  white-space: pre-wrap;
  font-size: 16px;
  max-width: 42em;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-visual {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.contact-visual img { width: 100%; height: 300px; object-fit: cover; }
.contact-visual-note { padding: 20px 22px 24px; }
.contact-visual-note h3 { margin: 0 0 8px; font-size: 16px; }
.contact-visual-note p { margin: 0 0 8px; font-size: 14px; color: var(--muted); }

/* Focus states */
a:focus-visible, .btn:focus-visible, button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 168, 180, 0.18);
}
