:root {
  --cream: #f6f1e8;
  --paper: #fffdf8;
  --navy: #1e3a56;
  --navy-deep: #152a3f;
  --ink: #243040;
  --muted: #5c6773;
  --line: rgba(30, 58, 86, 0.12);
  --open: #1f6b45;
  --open-bg: #e6f4ec;
  --closed: #8a3418;
  --closed-bg: #f8ece6;
  --star: #c49214;
  --radius: 1.15rem;
  --shadow: 0 16px 40px rgba(21, 42, 63, 0.08);
  --font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --display: Georgia, "Times New Roman", serif;
  --space: clamp(3rem, 7vw, 6rem);
  --chrome-height: 8.25rem;
  --page-gutter: clamp(1.5rem, 2.4vw, 2.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--navy);
}

h1,
h2,
h3,
.footer-name {
  font-family: var(--display);
  line-height: 1.15;
  color: var(--navy-deep);
}

h1,
h2,
h3 {
  margin: 0 0 0.55em;
}

h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.7rem);
}

h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.3rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
}

address {
  font-style: normal;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.narrow {
  width: min(720px, calc(100% - 2rem));
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -4rem;
  z-index: 80;
  background: var(--navy);
  color: #fff;
  padding: 0.6rem 0.9rem;
}

.skip-link:focus {
  top: 0.75rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-chrome {
  position: sticky;
  top: 0;
  z-index: 40;
}

.rainbow {
  height: 6px;
  background: linear-gradient(90deg, #d62828, #f77f00, #fcbf49, #2d6a4f, #1d4e89, #5c4d7a);
}

.status-bar {
  text-align: center;
  padding: 0.8rem 1rem;
  font-size: 1.05rem;
}

.status-bar p {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.status-bar.is-open {
  background: var(--open);
  color: #fff;
}

.status-bar.is-closed {
  background: var(--closed);
  color: #fff;
}

.status-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}

.status-detail {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  min-height: 4.8rem;
  gap: 0.75rem;
  padding-inline: var(--page-gutter);
}

.logo {
  display: flex;
  align-items: center;
  justify-self: start;
  text-decoration: none;
  min-height: 44px;
}

.logo img {
  display: block;
  height: 2.7rem;
  width: auto;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.3rem;
  height: 2px;
  background: var(--navy);
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.site-nav {
  display: none;
  flex-direction: column;
  width: 100%;
  padding-bottom: 0.8rem;
}

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

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}

.site-nav a[aria-current="page"] {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

.nav-phones {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.1rem;
}

.nav-phone {
  color: var(--navy) !important;
  gap: 0.4rem;
}

.nav-phone-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: none;
}


.hero {
  display: flex;
  align-items: stretch;
  min-height: calc(100svh - var(--chrome-height));
  padding: clamp(1rem, 2.2vw, 1.6rem) var(--page-gutter);
}

.hero-layout {
  display: grid;
  grid-template-rows: minmax(13rem, 1fr) auto;
  gap: 1.25rem;
  width: 100%;
  max-width: none;
  flex: 1;
  min-height: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media picture,
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center top;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy,
.page-hero {
  padding-top: 0.2rem;
}

.page-hero {
  padding: clamp(2.4rem, 5vw, 4rem) 0 0.4rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.lead {
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.btn {
  min-height: 48px;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.btn svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: none;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}

.btn-primary:hover {
  background: var(--navy-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  box-shadow: inset 0 0 0 1.5px var(--navy);
}

.btn-light {
  background: #fff;
  color: var(--navy-deep);
}

.btn-line {
  background: transparent;
  color: #fffdf8;
  box-shadow: inset 0 0 0 1.5px #fffdf8;
}

.btn-line:hover {
  background: rgba(255, 253, 248, 0.12);
}

.section {
  padding: var(--space) 0;
}

.hero + .section {
  padding-top: clamp(2.2rem, 4.2vw, 3.4rem);
}

.page-hero + .section {
  padding-top: clamp(1.4rem, 3vw, 2.4rem);
}

.section-alt {
  background: var(--cream);
}

.section-head {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.founder {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 0;
  align-items: center;
}

.founder .section-head {
  margin-bottom: 0;
  max-width: none;
}

.founder-photo {
  margin: 0;
  max-width: 17.5rem;
}

.founder-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 14%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.founder-photo figcaption {
  margin-top: 0.6rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.section-cta {
  margin: 1.5rem 0 0;
}

.text-link {
  font-weight: 700;
}

.feature-grid,
.product-grid,
.review-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  grid-template-columns: 1fr;
}

.product-grid,
.review-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card,
.tile,
.review,
.split-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem 1.15rem;
  box-shadow: var(--shadow);
  min-width: 0;
}

.card h2,
.card h3,
.tile h3 {
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.card h2 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}

.slogan-list {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.slogan-list li {
  margin: 0;
  font-weight: 700;
  color: var(--navy);
}

.tile {
  text-decoration: none;
  color: inherit;
  min-height: 8.5rem;
  overflow: hidden;
}

.tile img,
.assortment-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0.7rem;
  margin-bottom: 0.95rem;
}

.tile:hover,
.card-featured {
  box-shadow: 0 18px 44px rgba(21, 42, 63, 0.12);
}

.card-featured {
  border-color: color-mix(in srgb, var(--navy) 22%, var(--line));
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.review p {
  margin-bottom: 0;
}

.review footer {
  color: var(--muted);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.2rem 1.1rem;
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  min-height: 48px;
  display: flex;
  align-items: center;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  margin-left: auto;
  padding-left: 1rem;
  color: var(--navy);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  color: var(--muted);
  padding-bottom: 0.4rem;
}

.stars {
  display: flex;
  gap: 0.15rem;
  color: var(--star);
}

.stars svg {
  width: 1rem;
  height: 1rem;
}

.cta-band {
  background: var(--navy);
  color: #f6f1e8;
}

.cta-band h2 {
  color: #fffdf8;
}

.stack {
  display: grid;
  gap: 1rem;
}

.assortment {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.assortment-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.25rem 1.55rem;
  box-shadow: var(--shadow);
  min-width: 0;
  overflow: hidden;
}

.assortment-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #d62828, #f77f00, #fcbf49, #2d6a4f, #1d4e89, #5c4d7a);
}

.assortment-nr {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.assortment-card h2 {
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  overflow-wrap: anywhere;
}

.assortment-card p:last-child {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: grid;
  gap: 0.15rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 0.9rem;
}

.contact-form label,
.check {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 0.75rem 0.85rem;
  font: inherit;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--navy);
  outline-offset: 1px;
}

.optional {
  font-weight: 500;
  color: var(--muted);
}

.check {
  grid-template-columns: 1.2rem 1fr;
  align-items: start;
  font-weight: 500;
}

.check input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

.form-feedback {
  padding: 0.85rem 1rem;
  border-radius: 0.8rem;
}

.form-feedback.is-success {
  background: var(--open-bg);
  color: var(--open);
}

.form-feedback.is-error {
  background: var(--closed-bg);
  color: var(--closed);
}

.map-wrap {
  margin-top: 1rem;
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #e8e4dc;
}

.map-consent {
  min-height: 320px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: 1.5rem;
}

.map-consent p {
  max-width: 40rem;
}

.map-wrap iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

.legal {
  padding: var(--space) 0;
}

.legal-lead {
  color: var(--muted);
}

.legal ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.site-footer {
  background: var(--navy-deep);
  color: #e8e4dc;
  padding: 2.5rem 0 1.4rem;
}

.site-footer a {
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 1.6rem;
}

.footer-name,
.footer-heading {
  font-family: var(--display);
  font-size: 1.25rem;
  color: #fffdf8;
  margin-bottom: 0.5rem;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
}

.footer-legal nav {
  display: flex;
  gap: 1rem;
}

@media (min-width: 800px) {
  .nav-toggle {
    display: none;
  }

  .logo img {
    height: 3.35rem;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(1.8rem, 3.4vw, 3.2rem);
    align-items: center;
  }

  .site-nav {
    display: flex;
    flex-direction: row;
    width: auto;
    justify-self: stretch;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.15rem 1.65rem;
    padding: 0;
  }

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

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

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

  .assortment {
    grid-template-columns: 1.15fr 1fr;
  }

  .assortment-even {
    grid-template-columns: 1fr 1fr;
  }

  .assortment-wide {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
  }

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

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

  .review-grid .review:first-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: 34rem;
  }

  .hero-layout {
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr;
    gap: clamp(1.8rem, 3.4vw, 3.2rem);
    align-items: stretch;
    min-height: calc(100svh - var(--chrome-height) - 3.2rem);
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 4.4vw, 3.85rem);
  }

  .hero-copy .lead {
    font-size: clamp(1.08rem, 1.5vw, 1.22rem);
  }

  .founder {
    grid-template-columns: minmax(14rem, 17.5rem) 1fr;
    gap: 2.6rem;
    align-items: center;
  }

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
