:root {
  --ink: #11202a;
  --muted: #58707d;
  --line: #d9e4e8;
  --panel: #f7fbfc;
  --white: #ffffff;
  --aqua: #0a7c8c;
  --aqua-dark: #055464;
  --mint: #dff4f0;
  --gold: #dcae4d;
  --shadow: 0 24px 70px rgba(17, 32, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.95) 0 9%, transparent 10%),
    linear-gradient(145deg, #0fb5bd, #055464 68%, #102630);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  box-shadow:
    0 15px 28px rgba(5, 84, 100, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -18px 24px rgba(0, 0, 0, 0.12);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
}

.brand-mark::before {
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 12px;
}

.brand-mark::after {
  right: 0;
  bottom: 0;
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.brand-drop {
  position: relative;
  z-index: 2;
  width: 19px;
  height: 25px;
  background: linear-gradient(150deg, #ffffff, #bdf6f5 55%, #58cfd5);
  border-radius: 70% 70% 72% 72% / 90% 90% 55% 55%;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.2),
    inset 2px 2px 4px rgba(255, 255, 255, 0.82);
  transform: rotate(45deg);
}

.brand-drop::after {
  position: absolute;
  top: 6px;
  left: 5px;
  width: 6px;
  height: 8px;
  content: "";
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
}

.brand-waves {
  position: absolute;
  right: 9px;
  bottom: 9px;
  z-index: 1;
  width: 25px;
  height: 12px;
  border-top: 2px solid rgba(255, 255, 255, 0.66);
  border-bottom: 2px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  transform: rotate(-12deg);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  color: var(--muted);
  font-weight: 650;
}

nav a:hover {
  color: var(--aqua-dark);
}

.nav-cta {
  color: var(--white);
  background: var(--aqua);
  border-radius: 8px;
  padding: 10px 14px;
}

.nav-cta:hover {
  color: var(--white);
  background: var(--aqua-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
  min-height: calc(100vh - 75px);
  padding: clamp(44px, 7vw, 92px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(110deg, rgba(223, 244, 240, 0.95), rgba(255, 255, 255, 0.4) 47%, rgba(232, 243, 247, 0.75)),
    #f8fcfd;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--aqua-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.65rem, 7vw, 5.65rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.2rem;
}

.hero-lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: #36535f;
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button,
.cart-button,
.quote-link,
.quote-form button,
#checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 13px 18px;
  cursor: pointer;
  font-weight: 800;
}

.button.primary,
.cart-button,
.quote-form button,
#checkout-button {
  color: var(--white);
  background: var(--aqua);
}

.button.primary:hover,
.cart-button:hover,
.quote-form button:hover,
#checkout-button:hover {
  background: var(--aqua-dark);
}

.button.secondary,
.quote-link {
  color: var(--aqua-dark);
  background: var(--white);
  border: 1px solid var(--line);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 36px 0 0;
}

.trust-row div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(10, 124, 140, 0.16);
  border-radius: 8px;
}

.trust-row dt {
  font-weight: 850;
}

.trust-row dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.search-intent,
.products,
.wholesale-band,
.quote-section,
.faq,
footer {
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

.search-intent {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 36px;
  background: var(--white);
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.intent-grid article,
.product-card,
.benefits div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.intent-grid article {
  padding: 24px;
}

.intent-grid span {
  color: var(--gold);
  font-weight: 900;
}

.intent-grid h3 {
  margin-top: 16px;
}

.intent-grid p,
.section-heading p,
.benefits p,
.quote-copy p,
.faq p,
footer p,
.product-card li,
.unit,
.sku {
  color: var(--muted);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-height: 100%;
  padding: 24px;
}

.product-card.featured {
  border-color: rgba(10, 124, 140, 0.45);
  box-shadow: var(--shadow);
}

.badge {
  align-self: flex-start;
  margin: 0;
  color: var(--aqua-dark);
  background: var(--mint);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 850;
}

.sku,
.unit {
  margin: 0;
}

.price {
  margin: 4px 0 0;
  font-size: 2.45rem;
  font-weight: 900;
  line-height: 1;
}

.product-card ul {
  display: grid;
  gap: 8px;
  margin: 8px 0 10px;
  padding-left: 20px;
}

.product-card .cart-button,
.product-card .quote-link {
  margin-top: auto;
}

.wholesale-band {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 42px;
  color: var(--white);
  background: var(--aqua-dark);
}

.wholesale-band .eyebrow {
  color: #9ee2de;
}

.benefits {
  display: grid;
  gap: 14px;
}

.benefits div {
  padding: 22px;
  color: var(--ink);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: var(--panel);
}

.notice {
  border-left: 4px solid var(--gold);
  padding-left: 14px;
  font-weight: 650;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(17, 32, 42, 0.08);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #314c57;
  font-weight: 750;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #c8d8de;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(10, 124, 140, 0.18);
  border-color: var(--aqua);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--aqua-dark);
  font-weight: 750;
}

.page-hero {
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(110deg, rgba(223, 244, 240, 0.95), rgba(255, 255, 255, 0.72)),
    #f8fcfd;
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 0.9fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

.contact-card,
.policy-content {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(17, 32, 42, 0.08);
}

.contact-card {
  align-content: start;
}

.contact-card p,
.contact-list dd,
.policy-content p,
.policy-content li {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 4px 0 0;
}

.contact-list div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-list dt {
  font-weight: 850;
}

.contact-list dd {
  margin: 5px 0 0;
}

.contact-list a,
.policy-content a {
  color: var(--aqua-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.policy-page {
  background: var(--panel);
}

.policy-content {
  max-width: 940px;
  margin: clamp(32px, 5vw, 64px) auto;
}

.policy-content h2 {
  margin-top: 18px;
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  margin: 0;
}

.policy-callout {
  padding: 20px;
  background: #fff8e8;
  border: 1px solid rgba(220, 174, 77, 0.46);
  border-radius: 8px;
}

.policy-callout h2 {
  margin: 0 0 8px;
}

.faq {
  max-width: 980px;
  margin: 0 auto;
}

details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-size: 1.12rem;
  font-weight: 850;
}

.mini-cart {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100vw - 36px);
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

#checkout-button {
  min-height: 38px;
  padding: 8px 12px;
}

#checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: #102630;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.footer-links a {
  color: #c9eef0;
}

@media (max-width: 980px) {
  .hero,
  .search-intent,
  .wholesale-band,
  .quote-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: -1;
  }

  .intent-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  h1 {
    font-size: 2.6rem;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .mini-cart {
    left: 12px;
    right: 12px;
    justify-content: space-between;
  }

  footer {
    flex-direction: column;
    padding-bottom: 112px;
  }
}
