:root {
  --white: #ffffff;
  --teal-25: #f3fffd;
  --teal-50: #ecfeff;
  --teal-100: #ccfbf1;
  --teal-500: #0f9f9a;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --navy-900: #082f49;
  --navy-800: #0c4a6e;
  --navy-700: #075985;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --shadow-sm: 0 10px 30px rgba(8, 47, 73, 0.08);
  --shadow-md: 0 22px 60px rgba(8, 47, 73, 0.14);
  --radius: 8px;
  --font-display: "Figtree", "Noto Sans", system-ui, sans-serif;
  --font-body: "Noto Sans", "Figtree", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--navy-900);
  font-family: var(--font-body);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(15, 159, 154, 0.35);
  outline-offset: 3px;
}

.container {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.86);
  backdrop-filter: blur(18px);
}

.top-strip {
  background: var(--navy-900);
  color: var(--teal-50);
  font-size: 0.86rem;
}

.strip-content {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.strip-content a {
  color: var(--white);
  font-weight: 700;
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-logo-wrap {
  width: 220px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.7);
}

.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px 5px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--teal-500), var(--navy-800));
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.2);
}

.brand-mark svg {
  width: 25px;
  height: 25px;
  fill: var(--white);
}

.brand strong {
  display: none;
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--slate-600);
  font-size: 0.78rem;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--slate-700);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a,
.text-link {
  transition: color 180ms ease;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--teal-700);
}

.language-control {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(13, 148, 136, 0.18);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--white), var(--teal-25));
  color: var(--navy-800);
  box-shadow: 0 8px 20px rgba(8, 47, 73, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.language-control:hover,
.language-control:focus-within {
  border-color: rgba(13, 148, 136, 0.45);
  box-shadow: 0 12px 26px rgba(13, 148, 136, 0.12);
}

.language-control::after {
  width: 7px;
  height: 7px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  pointer-events: none;
}

.language-control svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke: var(--teal-700);
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-control select {
  min-height: 42px;
  padding: 0;
  border: 0;
  appearance: none;
  background: transparent;
  color: var(--navy-800);
  cursor: pointer;
  font-weight: 800;
  outline: 0;
}

.nav-cta,
.primary-action,
.secondary-action,
.hero-search button,
.newsletter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: var(--radius);
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.nav-cta,
.primary-action,
.hero-search button,
.newsletter button {
  background: var(--teal-600);
  color: var(--white);
  box-shadow: 0 12px 25px rgba(13, 148, 136, 0.18);
}

.nav-cta {
  padding: 0 18px;
}

.nav-cta:hover,
.primary-action:hover,
.hero-search button:hover,
.newsletter button:hover {
  background: var(--navy-800);
}

.nav-cta svg,
.primary-action svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  order: 4;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy-900);
  cursor: pointer;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.section-band {
  background:
    radial-gradient(circle at 12% 18%, rgba(204, 251, 241, 0.65), transparent 28%),
    linear-gradient(180deg, var(--teal-25), var(--white));
}

.hero {
  overflow: hidden;
  padding: 82px 0 56px;
}

.hero-grid {
  width: min(100% - 40px, 1260px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 56px;
  align-items: center;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--teal-700);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  color: var(--navy-900);
  font-size: clamp(3.3rem, 7vw, 6.6rem);
  font-weight: 800;
}

h2 {
  color: var(--navy-900);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
}

h3 {
  color: var(--navy-900);
  font-size: 1.13rem;
  font-weight: 800;
}

.hero-lede {
  max-width: 640px;
  margin: 22px 0 28px;
  color: var(--slate-700);
  font-size: 1.15rem;
}

.hero-search {
  width: min(100%, 650px);
  min-height: 64px;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 8px;
  background: var(--white);
  border: 1px solid rgba(13, 148, 136, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.hero-search svg {
  width: 22px;
  height: 22px;
  margin-left: 10px;
  stroke: var(--teal-700);
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
}

.hero-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  color: var(--navy-900);
  outline: 0;
}

.hero-search input::placeholder,
.newsletter input::placeholder {
  color: #64748b;
}

.hero-search button {
  padding: 0 22px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.quick-links a {
  padding: 9px 13px;
  border: 1px solid rgba(13, 148, 136, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy-800);
  font-size: 0.9rem;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease;
}

.quick-links a:hover {
  background: var(--teal-50);
  border-color: rgba(13, 148, 136, 0.5);
}

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

.trust-row div {
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.trust-row strong {
  display: block;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.1;
}

.trust-row span {
  display: block;
  margin-top: 5px;
  color: var(--slate-600);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
  width: min(52vw, 690px);
  justify-self: end;
}

.hero-media img {
  width: 100%;
  min-height: 430px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.delivery-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(78%, 310px);
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.delivery-card svg {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  stroke: var(--teal-700);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.delivery-card strong,
.delivery-card span {
  display: block;
}

.delivery-card strong {
  line-height: 1.2;
}

.delivery-card span {
  color: var(--slate-600);
  font-size: 0.85rem;
}

.service-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: -16px;
  padding: 20px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-bar div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  color: var(--navy-800);
  font-weight: 800;
}

.service-bar svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  stroke: var(--teal-700);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: 86px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  margin-bottom: 9px;
}

.text-link {
  color: var(--teal-700);
  font-weight: 800;
}

.category-grid,
.product-grid,
.review-grid {
  display: grid;
  gap: 18px;
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(8, 47, 73, 0.05);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.category-card:hover {
  border-color: rgba(13, 148, 136, 0.38);
  background: var(--teal-25);
  box-shadow: var(--shadow-sm);
}

.icon-wrap {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: var(--radius);
  background: var(--teal-50);
  color: var(--teal-700);
}

.icon-wrap svg {
  width: 29px;
  height: 29px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-card strong {
  display: block;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.25;
}

.category-card span:last-child {
  display: block;
  margin-top: 10px;
  color: var(--slate-600);
  font-size: 0.94rem;
}

.product-section {
  padding: 82px 0;
}

.segmented {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--white);
}

.segmented button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--slate-700);
  cursor: pointer;
  font-weight: 800;
}

.segmented button.active,
.segmented button:hover {
  background: var(--navy-900);
  color: var(--white);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(8, 47, 73, 0.07);
}

.product-image {
  height: 190px;
  display: grid;
  place-items: center;
  background: var(--teal-50);
}

.product-image.teal {
  background: linear-gradient(135deg, #ecfeff, #ccfbf1);
}

.product-image.navy {
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
}

.product-image.aqua {
  background: linear-gradient(135deg, #f0fdfa, #e0f2fe);
}

.product-image svg {
  width: 104px;
  height: 104px;
  stroke: var(--navy-800);
  stroke-width: 2.6;
  fill: rgba(255, 255, 255, 0.72);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-meta {
  flex: 1;
  padding: 24px 24px 18px;
}

.product-meta span {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-meta p {
  margin: 12px 0 0;
  color: var(--slate-600);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 24px 24px;
  border-top: 1px solid var(--slate-100);
}

.product-footer strong {
  color: var(--navy-900);
  font-size: 0.98rem;
}

.product-footer button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: var(--radius);
  background: var(--teal-600);
  color: var(--white);
  cursor: pointer;
  transition: background 180ms ease;
}

.product-footer button:hover {
  background: var(--navy-800);
}

.product-footer svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.care-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: 42px;
  align-items: center;
}

.care-copy p:not(.eyebrow) {
  max-width: 670px;
  margin: 18px 0 0;
  color: var(--slate-700);
  font-size: 1.05rem;
}

.care-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-action,
.secondary-action {
  padding: 0 20px;
}

.secondary-action {
  border: 1px solid rgba(13, 148, 136, 0.3);
  background: var(--white);
  color: var(--navy-800);
}

.secondary-action:hover {
  border-color: var(--teal-600);
  color: var(--teal-700);
}

.care-panel {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.appointment-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.status-dot {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal-100);
  box-shadow: 0 0 0 7px rgba(204, 251, 241, 0.12);
}

.appointment-row strong,
.appointment-row span {
  display: block;
}

.appointment-row span,
.care-panel li {
  color: #dbeafe;
}

.care-panel ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding-left: 21px;
}

.reviews {
  padding: 82px 0;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-grid figure {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 26px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.review-grid blockquote {
  margin: 0;
  color: var(--navy-900);
  font-size: 1.03rem;
}

.review-grid figcaption {
  margin-top: 22px;
  color: var(--teal-700);
  font-weight: 900;
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 28px;
  align-items: center;
  margin-top: 86px;
  margin-bottom: 86px;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--navy-900);
  color: var(--white);
}

.newsletter .eyebrow,
.newsletter h2 {
  color: var(--white);
}

.newsletter form {
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: var(--white);
}

.newsletter input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 12px;
}

.newsletter button {
  padding: 0 18px;
}

.site-footer {
  padding: 54px 0;
  background: #061f31;
  color: #cbd5e1;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) 0.5fr 0.7fr;
  gap: 34px;
}

.footer-brand small {
  color: #bae6fd;
}

.footer-brand .brand-logo-wrap {
  border-color: rgba(255, 255, 255, 0.16);
}

.site-footer p {
  max-width: 510px;
  margin: 18px 0 0;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a:not(.brand) {
  display: block;
  width: fit-content;
  margin-top: 10px;
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--teal-100);
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    inset: 114px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-md);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
    border-radius: 6px;
  }

  .nav-links a:hover {
    background: var(--teal-50);
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .care-grid,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-media {
    width: 100%;
    max-width: 680px;
    justify-self: start;
  }

  .hero-media img {
    min-height: 360px;
  }

  .service-bar,
  .category-grid,
  .product-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .top-strip {
    display: none;
  }

  .navbar {
    min-height: 72px;
    gap: 10px;
  }

  .brand small {
    display: none;
  }

  .brand-logo-wrap {
    width: 164px;
    height: 44px;
  }

  .language-control {
    margin-left: auto;
    min-height: 40px;
    gap: 6px;
    padding: 0 9px;
  }

  .language-control select {
    max-width: 98px;
    min-height: 40px;
    font-size: 0.88rem;
  }

  .language-control svg {
    width: 16px;
    height: 16px;
  }

  .nav-links {
    top: 86px;
  }

  .hero {
    padding: 42px 0 36px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-search,
  .newsletter form {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .hero-search svg {
    display: none;
  }

  .hero-search input,
  .newsletter input {
    min-height: 44px;
    padding: 0 10px;
  }

  .hero-search button,
  .newsletter button {
    width: 100%;
  }

  .trust-row,
  .service-bar,
  .category-grid,
  .product-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-bar {
    margin-top: 0;
  }

  .section,
  .product-section,
  .reviews {
    padding: 62px 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .segmented {
    width: 100%;
    overflow-x: auto;
  }

  .segmented button {
    flex: 1 0 auto;
  }

  .delivery-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .hero-media img {
    min-height: 260px;
    aspect-ratio: 16 / 11;
  }

  .care-panel,
  .newsletter {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
