/* Exotic Marine Transshippers — ocean / marine theme */
:root {
  --deep: #041526;
  --navy: #0a2744;
  --ocean: #0c3d5c;
  --teal: #0d9488;
  --teal-bright: #14b8a6;
  --sky: #38bdf8;
  --foam: #e0f2fe;
  --sand: #f0f9ff;
  --ink: #0f172a;
  --muted: #64748b;
  --white: #ffffff;
  --card: rgba(255, 255, 255, 0.96);
  --border: rgba(14, 116, 144, 0.18);
  --shadow: 0 12px 40px rgba(4, 21, 38, 0.18);
  --radius: 14px;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Instrument Serif", Georgia, serif;
  --max: 1100px;
  --narrow: 720px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.025rem;
  line-height: 1.62;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--teal); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ocean); }

code {
  font-size: 0.88em;
  background: rgba(13, 148, 136, 0.1);
  padding: 0.1em 0.4em;
  border-radius: 4px;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.container.narrow {
  width: min(100% - 2rem, var(--narrow));
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal);
  color: white;
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* Header — light bar so blue logo stays visible */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04), 0 4px 16px rgba(4, 21, 38, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}
.logo:hover { color: var(--teal); opacity: 0.92; }
.logo-img {
  display: block;
  height: 88px;
  width: auto;
  max-width: min(400px, 68vw);
  object-fit: contain;
}
.logo-mark { color: var(--teal); font-size: 1.25rem; }

.site-nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.site-nav a {
  color: #1e293b;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--teal); }
.site-nav a:active { color: #0f766e; }
.site-nav a.is-active,
.site-nav a[aria-current="page"] {
  color: var(--teal);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0f172a;
  border-radius: 1px;
}

/* Hero — full-width photo banner */
.hero {
  position: relative;
  min-height: clamp(380px, 68vh, 720px);
  display: flex;
  align-items: center;
  color: var(--foam);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--deep);
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(4, 21, 38, 0.72) 0%,
      rgba(4, 21, 38, 0.48) 42%,
      rgba(4, 21, 38, 0.28) 100%
    ),
    linear-gradient(
      to top,
      rgba(4, 21, 38, 0.4) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 5.5rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-bright);
  background: rgba(13, 148, 136, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.35);
  border-radius: 999px;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(4, 21, 38, 0.55);
}

.tagline {
  margin: 0 0 1rem;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: rgba(224, 242, 254, 0.95);
  max-width: 36ch;
  text-shadow: 0 1px 12px rgba(4, 21, 38, 0.45);
}

.hero-experience {
  margin: 0.15rem 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #5eead4;
  text-shadow: 0 1px 12px rgba(4, 21, 38, 0.45);
}
.hero-note {
  margin: 0 0 1.75rem;
  max-width: 42ch;
  font-size: 0.95rem;
  color: rgba(186, 230, 253, 0.88);
  text-shadow: 0 1px 10px rgba(4, 21, 38, 0.4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Partnership band — refined card between hero and About */
.partner-band {
  position: relative;
  z-index: 2;
  margin-top: -1.75rem;
  padding: 0 0 0.25rem;
}
.partner-badge {
  max-width: 36rem;
  margin: 0 auto;
  padding: 1.4rem 1.75rem 1.5rem;
  text-align: center;
  background:
    linear-gradient(180deg, #fbfaf6 0%, #ffffff 55%, #f8fafc 100%);
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 0.85rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 28px rgba(4, 21, 38, 0.1);
}
.partner-badge-label {
  display: block;
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9a227;
}
.partner-badge-logo {
  display: block;
  width: min(170px, 100%);
  height: auto;
  max-width: 170px;
  margin: 0 auto 0.85rem;
  object-fit: contain;
}
.partner-badge-name {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-weight: 400;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.partner-badge-desc {
  margin: 0 auto 0.35rem;
  max-width: 32rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #334155;
}
.partner-badge-trust {
  margin: 0 auto;
  max-width: 32rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #475569;
  font-style: italic;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--teal-bright);
  color: var(--deep);
  border-color: var(--teal-bright);
}
.btn-primary:hover {
  background: #2dd4bf;
  color: var(--deep);
}

.btn-ghost {
  background: rgba(4, 21, 38, 0.35);
  color: var(--foam);
  border-color: rgba(224, 242, 254, 0.45);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(4, 21, 38, 0.55);
  border-color: var(--sky);
  color: #fff;
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

.btn-outline {
  background: transparent;
  color: var(--ocean);
  border-color: rgba(12, 61, 92, 0.3);
}
.btn-outline:hover {
  background: var(--foam);
  color: var(--deep);
  border-color: var(--teal);
}

.btn-solid {
  background: var(--navy);
  color: var(--foam);
  border-color: var(--navy);
}
.btn-solid:hover {
  background: var(--ocean);
  color: #fff;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-head {
  margin-bottom: 2.25rem;
  max-width: 36rem;
}
.section-head h2,
.about h2,
.contact h2 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.section-head p { margin: 0; color: var(--muted); }
.section-head .section-note {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.about {
  background: var(--white);
  border-block: 1px solid var(--border);
}
.about p { margin: 0 0 1rem; color: #334155; }
.about p:last-child { margin-bottom: 0; }

.about-teaser-more { margin-top: 1.25rem !important; }
.text-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--teal);
}
.text-link:hover { color: var(--ocean); text-decoration: underline; }

/* Inner page banner (About / Contact) */
.page-banner {
  background:
    linear-gradient(135deg, var(--deep) 0%, var(--navy) 55%, var(--ocean) 100%);
  color: var(--foam);
  padding: 3rem 0 2.75rem;
  border-bottom: 1px solid rgba(56, 189, 248, 0.15);
}
.page-banner .eyebrow {
  color: var(--teal-bright);
  background: rgba(13, 148, 136, 0.2);
}
.page-banner h1 {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
}
.page-banner-lead {
  margin: 0;
  max-width: 36rem;
  font-size: 1.05rem;
  color: rgba(224, 242, 254, 0.85);
  line-height: 1.55;
}

.about-page .page-actions,
.contact-page .page-actions {
  margin-top: 2rem;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.5rem;
}

.contact-note {
  margin: 0 0 1.5rem;
  padding: 1rem 1.15rem;
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.28);
  border-left: 4px solid var(--teal);
  border-radius: 10px;
  color: #134e4a;
  font-size: 0.98rem;
  line-height: 1.55;
}
.contact-note strong { color: var(--navy); }

.contact-cta-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
}
.contact-cta-copy {
  margin: 0 0 0.25rem;
  color: #334155;
}
.contact-cta-actions { margin-top: 1.25rem; }

.muted { color: var(--muted); }
.small { font-size: 0.88rem; }

/* Order lists — card per origin */
.order-lists {
  background:
    linear-gradient(180deg, var(--sand) 0%, #e0f2fe 100%);
}

.origin-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.15rem;
}

.origin-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(4, 21, 38, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
}
.origin-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(4, 21, 38, 0.14);
}

.origin-card-accent {
  height: 4px;
  background: var(--card-accent, var(--teal));
}

.origin-card-body {
  padding: 1.35rem 1.4rem 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.origin-name {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.8vw, 1.85rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.origin-dates {
  margin: 0;
  padding: 0.85rem 0;
  border-block: 1px solid rgba(14, 116, 144, 0.12);
  display: grid;
  gap: 0.65rem;
}

.origin-date {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.5rem;
  align-items: baseline;
}

.origin-date dt {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.origin-date dd {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
}

.btn-view-list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  background: rgba(13, 148, 136, 0.08);
  color: var(--teal);
  border: 1.5px solid rgba(13, 148, 136, 0.35);
  padding: 0.75rem 1rem;
  min-height: 3rem;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-view-list:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.origin-hint {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.order-cta {
  margin: 2.5rem auto 0;
  max-width: 420px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}
.order-cta .btn {
  min-width: min(100%, 280px);
}
.order-cta-note {
  margin: 0;
  max-width: 36ch;
}

.badge {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fcd34d;
}
.badge-sm {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  background: #fef3c7;
  color: #92400e;
  vertical-align: middle;
}

/* How to order */
.how {
  background: var(--white);
  border-block: 1px solid var(--border);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}

.steps li {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  padding: 1.25rem 1.35rem;
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-num {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--ocean));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.steps h3 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  color: var(--navy);
}
.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Contact */
.contact {
  background:
    linear-gradient(180deg, #e0f2fe 0%, var(--sand) 100%);
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
}

.contact-loc {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.contact-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.contact-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(14, 116, 144, 0.12);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list .label {
  min-width: 4.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: var(--deep);
  color: rgba(224, 242, 254, 0.7);
  padding: 2rem 0;
  text-align: center;
}
.site-footer p { margin: 0.25rem 0; }
.site-footer .muted { color: rgba(186, 230, 253, 0.45); }

/* Mobile nav */
@media (max-width: 720px) {
  .hero {
    min-height: clamp(320px, 58vh, 520px);
  }
  .hero-content {
    padding: 3rem 0 3.5rem;
  }
  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(4, 21, 38, 0.58) 0%,
        rgba(4, 21, 38, 0.62) 55%,
        rgba(4, 21, 38, 0.72) 100%
      );
  }

  .nav-toggle { display: flex; }
  .logo-img { height: 62px; }


  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #ffffff;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 20px rgba(4, 21, 38, 0.08);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    padding: 0.85rem 1.25rem;
    color: #1e293b;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  }
  .site-nav a:hover,
  .site-nav a:focus-visible { color: var(--teal); background: #f8fafc; }
  .site-nav a.is-active,
  .site-nav a[aria-current="page"] {
    color: var(--teal);
    background: #f0fdfa;
    font-weight: 600;
  }

  .page-banner { padding: 2.25rem 0 2rem; }
  .page-actions .btn,
  .page-actions .btn-outline { width: 100%; }
  .contact-cta-actions .btn,
  .contact-cta-actions .btn-outline { width: 100%; }

  .origin-cards {
    grid-template-columns: 1fr;
  }
  .origin-date {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
  .btn-view-list {
    min-height: 3.1rem;
  }
  .order-cta .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .origin-card { transition: none; }
}

/* Footer admin link */
.footer-admin {
  margin-top: 0.75rem !important;
}
.footer-admin a {
  color: rgba(186, 230, 253, 0.55);
  font-size: 0.8rem;
  text-decoration: none;
}
.footer-admin a:hover {
  color: var(--teal-bright);
  text-decoration: underline;
}

/* Local preview banner */
.preview-banner {
  background: #fef3c7;
  color: #92400e;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  border-bottom: 1px solid #fcd34d;
}
.preview-banner a { color: #92400e; font-weight: 600; }
.preview-banner code {
  background: rgba(146, 64, 14, 0.1);
}

/* Admin page */
.admin-page {
  background: var(--sand);
}

.admin-main {
  padding-top: 2.5rem;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.admin-panel {
  margin: 0;
  padding: 1.35rem 1.5rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(4, 21, 38, 0.06);
  border-top: 4px solid var(--card-accent, var(--teal));
}

.admin-panel legend {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--navy);
  padding: 0 0.35rem;
}

.admin-region {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal);
  margin-left: 0.35rem;
}

.admin-grid {
  display: grid;
  gap: 0.85rem 1rem;
  margin-top: 0.75rem;
}
.admin-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.admin-form label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.admin-form input[type="text"],
.admin-form input[type="email"],
.admin-form input[type="date"],
.admin-form textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink);
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(14, 116, 144, 0.25);
  border-radius: 8px;
  background: var(--sand);
}
.admin-form input:focus,
.admin-form textarea:focus {
  outline: 2px solid rgba(20, 184, 166, 0.45);
  border-color: var(--teal);
  background: #fff;
}

.admin-full { margin-top: 0.85rem; }

.admin-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  margin-top: 0.85rem;
}

.admin-check {
  flex-direction: row !important;
  align-items: center;
  gap: 0.5rem !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  padding-bottom: 0.55rem;
}
.admin-check input { width: 1.05rem; height: 1.05rem; }

.admin-grow { flex: 1; min-width: 12rem; }

.origin-forms {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0.5rem 0 0.25rem;
}

.admin-ghost-dark {
  background: transparent;
  color: var(--navy);
  border-color: rgba(12, 61, 92, 0.25);
}
.admin-ghost-dark:hover {
  border-color: var(--teal);
  color: var(--deep);
}

.admin-workflow {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  line-height: 1.7;
}

.admin-status {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}
.admin-status--ok {
  background: rgba(13, 148, 136, 0.12);
  color: #0f766e;
  border: 1px solid rgba(13, 148, 136, 0.3);
}
.admin-status--info {
  background: #e0f2fe;
  color: #075985;
  border: 1px solid rgba(14, 165, 233, 0.35);
}

@media (max-width: 720px) {
  .admin-grid-3 {
    grid-template-columns: 1fr;
  }
  .admin-actions .btn {
    width: 100%;
  }
}


/* Policies page — professional cards */
.policy-card {
  margin: 0 0 1.75rem;
  padding: 1.75rem 1.6rem 1.6rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  box-shadow: 0 8px 28px rgba(4, 21, 38, 0.06);
}
.policy-card-secondary {
  padding: 1.4rem 1.5rem;
  background: rgba(240, 253, 250, 0.55);
  border-color: rgba(13, 148, 136, 0.22);
}
.policy-card-head h2,
.policy-card > h2 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
  color: #0f172a;
}
.policy-card-lead {
  margin: 0 0 1.25rem;
  color: #475569;
  line-height: 1.55;
}
.policy-highlights {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.35rem;
}
@media (min-width: 640px) {
  .policy-highlights {
    grid-template-columns: 1fr 1fr;
  }
}
.policy-callout {
  padding: 1.1rem 1.15rem 1.15rem;
  background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 100%);
  border: 1px solid rgba(13, 148, 136, 0.28);
  border-left: 4px solid #0d9488;
  border-radius: 0.75rem;
}
.policy-callout-kicker {
  display: inline-block;
  margin: 0 0 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f766e;
}
.policy-callout h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: #0f172a;
}
.policy-callout p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #334155;
}
.policy-steps {
  padding: 1rem 1.15rem 1.05rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.policy-steps-title {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  font-weight: 650;
  color: #0f172a;
}
.policy-steps ol {
  margin: 0;
  padding-left: 1.2rem;
}
.policy-steps li {
  margin: 0.4rem 0;
  line-height: 1.5;
  color: #334155;
  font-size: 0.92rem;
}
.policy-list {
  margin: 1rem 0 1.5rem;
  padding-left: 1.25rem;
}
.policy-list li {
  margin: 0.75rem 0;
  line-height: 1.55;
}
