@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --navy: #10243a;
  --ink: #1a2b3c;
  --muted: #5c6b78;
  --line: #cfd8dc;
  --paper: #e7eef0;
  --mist: #d5e7ea;
  --white: #ffffff;
  --accent: #1a6d78;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

.preview-banner {
  background: var(--navy);
  color: #d9e2ea;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 8px 16px;
}
.preview-banner strong { color: #fff; font-weight: 600; }

.topbar {
  background: #c5dce0;
  border-bottom: 1px solid #b4cdd2;
  font-size: 0.86rem;
  color: var(--navy);
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.topbar a { color: var(--navy); font-weight: 600; }

header.site {
  background: var(--mist);
  border-bottom: 1px solid #b7cfd4;
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 0;
}
.brand { display: flex; align-items: center; }
.brand img { width: 236px; height: auto; }
nav.links { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; }
nav.links a {
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
}
nav.links a:hover { color: var(--accent); }
nav.links a.cart-link { font-weight: 700; }

.hero {
  padding: 32px 0 12px;
  background: var(--mist);
}
.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
  color: var(--navy);
  max-width: 16ch;
}
.hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 32px 40px;
  align-items: start;
}
.hero-copy .kicker { margin-top: 0; }
.kicker {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.lead { color: var(--muted); font-size: 1.08rem; max-width: 62ch; }
.hero-note {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 0;
  max-width: none;
}
.hero-note p {
  margin: 0;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
}
.hero-note span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 6px;
}

.section { padding: 56px 0; }
.section.alt { background: #dce8eb; }
.products-first { padding-top: 24px; }
.section h2, .page-hero h1, .story h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  color: var(--navy);
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  margin: 0 0 16px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  color: inherit;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.card:hover { text-decoration: none; border-color: #c5ced6; }
.card .pic { background: #fff; min-height: 0; overflow: hidden; }
.card .pic img { width: 100%; height: auto; object-fit: contain; display: block; }
.home-lines { padding-top: 20px; }
.home-lines .card .pic img { height: auto; object-fit: contain; background: #fff; }
.card .body { padding: 22px 22px 26px; }
.card h2, .card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0 0 8px;
  font-size: 1.55rem;
  color: var(--navy);
}
.card p { margin: 0; color: var(--muted); }

.story p { max-width: 68ch; color: var(--muted); font-size: 1.08rem; }
.partner-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.partner-points li {
  margin: 0;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}
.home-note-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.cert-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.cert-logos figure { margin: 0; text-align: center; }
.cert-logos img {
  height: 72px;
  width: auto;
  margin: 0 auto 8px;
  object-fit: contain;
}
.cert-logos figcaption { color: var(--muted); font-size: 0.88rem; }

.policy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.btn {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { background: var(--accent); text-decoration: none; color: #fff; }
.btn.ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn.ghost:hover { background: var(--navy); color: #fff; }

.page-hero { padding: 40px 0 8px; }
.sku-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.sku-grid .product .pic {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.sku-grid .product .pic img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
}
.thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}
.thumbs img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: #fff;
  padding: 4px;
  cursor: pointer;
}
.meta { margin: 10px 0 0; font-size: 0.92rem; color: var(--muted); }
.price { margin-top: 14px; font-size: 1.55rem; font-weight: 700; color: var(--navy); }
.moq { margin-top: 6px; font-size: 0.9rem; color: var(--muted); }
.qty-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
  margin-top: 16px;
}
.qty-row label { font-size: 0.88rem; color: var(--muted); }
.qty {
  display: block;
  margin-top: 6px;
  width: 96px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  font: inherit;
}

.sell-sheet img, .fc-banner img { width: 100%; }
.fc-banner { background: var(--paper); }
.sectors, .pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.sector, .pillar {
  padding: 16px;
  border: 1px solid var(--line);
  background: #fff;
}
.pillar h3 { margin: 0 0 8px; font-size: 1rem; color: var(--navy); }
.pillar p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.use-list { padding-left: 18px; color: var(--muted); }
.dial-cta {
  margin-top: 28px;
  padding: 22px;
  background: var(--paper);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.cart-foot {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
  align-items: start;
}
.pay-secure .meta { max-width: 42ch; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
form input, form textarea, form select {
  width: 100%;
  margin: 0 0 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  font: inherit;
}
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px; }
.stat {
  border: 1px solid var(--line);
  background: #fff;
  padding: 16px;
}
.stat strong { display: block; font-size: 1.2rem; color: var(--navy); }

footer.site {
  border-top: 1px solid var(--line);
  padding: 36px 0 28px;
  background: var(--navy);
  color: #c5d0da;
  margin-top: 24px;
}
footer.site a { color: #fff; }
.foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}
.foot strong { color: #fff; display: block; margin-bottom: 6px; }

.urd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  background: rgba(16, 36, 58, 0.9);
}
.urd-lightbox[hidden] { display: none !important; }
.urd-lightbox img {
  max-width: min(96vw, 1100px);
  max-height: 90vh;
  object-fit: contain;
  background: #fff;
}
.urd-lightbox-close, .urd-lightbox-prev, .urd-lightbox-next {
  position: absolute;
  border: 0;
  background: var(--white);
  color: var(--navy);
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 26px;
}
.urd-lightbox-close { top: 16px; right: 18px; }
.urd-lightbox-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.urd-lightbox-next { right: 16px; top: 50%; transform: translateY(-50%); }

@media (max-width: 900px) {
  .grid-3, .sku-grid, .partner-points, .policy-grid, .grid-2, .cert-logos, .sectors, .pillars, .stat-row, .hero-note, .hero-row {
    grid-template-columns: 1fr;
  }
  .brand img { width: 176px; }
  nav.links a { font-size: 1.02rem; }
  .card .pic img { height: 200px; }
  .sku-grid .product .pic img { height: 100%; }
}
