:root {
  --brand-red: #d24a37;
  --brand-cream: #f1ebe9;
  --brand-sky: #bbd9e8;
  --ink: #121212;
  --muted: rgba(18, 18, 18, 0.74);
  --card: rgba(255, 255, 255, 0.92);
  --ring: rgba(210, 74, 55, 0.25);
  --shadow: 0 18px 45px rgba(18, 18, 18, 0.12);
  --radius: 18px;
  --header-offset: 92px;
}

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

html {
  scroll-behavior: smooth;
  /* Prevent rare horizontal overflow from shadows, transforms, or 100vw math on mobile. */
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: linear-gradient(180deg, var(--brand-cream), #ffffff 40%, var(--brand-cream));
  line-height: 1.55;
  padding-top: var(--header-offset);
  overflow-x: clip;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 3px;
  border-radius: 10px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid rgba(18, 18, 18, 0.18);
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(18, 18, 18, 0.12);
  z-index: 9999;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  box-sizing: border-box;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(241, 235, 233, 0.9);
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  box-shadow: 0 10px 24px rgba(18, 18, 18, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 10px 0;
  gap: 12px 20px;
}

/* Mobile menu toggle + dropdown shell (desktop: toggle hidden, shell is inline) */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--brand-red);
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(18, 18, 18, 0.08);
}

.nav-toggle:hover {
  background: #fff;
  border-color: rgba(210, 74, 55, 0.35);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

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

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

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

.site-header.is-nav-open .nav-toggle-bars {
  background: transparent;
}

.site-header.is-nav-open .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-nav-open .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav-shell {
  margin-left: auto;
}

.brand {
  position: relative;
  height: 68px;
  width: 200px;
  flex: 0 0 auto;
}

.brand-logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 112px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 14px;
  margin-left: 0;
  min-width: 0;
}

.site-nav a {
  font-weight: 800;
  font-size: clamp(15px, 1.35vw, 17px);
  letter-spacing: -0.02em;
  color: var(--brand-red);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding: 10px 10px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  flex-shrink: 0;
}

.site-nav a:hover {
  border-bottom-color: var(--brand-red);
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header-offset));
  display: grid;
  align-items: stretch;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("./assets/images/hero-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 22%;
  transform: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.52) 0%,
      rgba(0, 0, 0, 0.38) 45%,
      rgba(0, 0, 0, 0.56) 100%
    ),
    linear-gradient(135deg, rgba(210, 74, 55, 0.12), rgba(187, 217, 232, 0.12));
}

.hero-inner {
  position: relative;
  text-align: center;
  color: #ffffff;
  min-height: calc(100svh - var(--header-offset));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 56px 0;
}

.hero-content {
  width: min(860px, 100%);
  padding: 0;
}

.hero-title {
  margin: 0;
  font-size: clamp(40px, 6vw, 68px);
  letter-spacing: -0.8px;
  line-height: 1.02;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.62);
}

.hero-subtitle {
  margin: 14px auto 0;
  max-width: min(960px, 100%);
  font-size: clamp(16px, 2.3vw, 19px);
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.62);
}

.cta-row {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease,
    border-color 0.12s ease;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.26);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: #ffffff;
  color: var(--brand-red);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-secondary {
  background: rgba(18, 18, 18, 0.34);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(8px);
}

.btn-solid {
  background: linear-gradient(180deg, rgba(210, 74, 55, 1), rgba(187, 43, 31, 1));
  color: #ffffff;
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 18px 34px rgba(210, 74, 55, 0.26), 0 18px 34px rgba(0, 0, 0, 0.12);
}

.btn-solid:hover {
  box-shadow: 0 22px 44px rgba(210, 74, 55, 0.32), 0 22px 44px rgba(0, 0, 0, 0.16);
}

.btn-lg {
  padding: 14px 22px;
  font-size: 15px;
}

.btn-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
}

.btn-label {
  line-height: 1.2;
}

.btn-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.hero .btn-icon,
.hero .btn-icon svg {
  width: 22px;
  height: 22px;
}

.hero .btn-icon svg {
  display: block;
  shape-rendering: geometricPrecision;
}

.btn-icon img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

.btn-primary:hover {
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.16), 0 20px 40px rgba(0, 0, 0, 0.24);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.62);
}

.btn-small {
  padding: 10px 14px;
  font-size: 14px;
  box-shadow: none;
}

/* Sections */
.section {
  padding: 66px 0;
}

#about.section {
  padding: 58px 0 54px;
}

#about .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-alt {
  background: linear-gradient(180deg, rgba(187, 217, 232, 0.28), rgba(241, 235, 233, 0.6));
  border-top: 1px solid rgba(18, 18, 18, 0.06);
  border-bottom: 1px solid rgba(18, 18, 18, 0.06);
}

.section-head {
  margin-bottom: 26px;
  text-align: center;
}

.why-choose-story {
  margin-top: 8px;
}

.about-story {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 14px 30px rgba(18, 18, 18, 0.08);
  max-width: 920px;
  margin: 0 auto;
}

.about-story p {
  color: rgba(18, 18, 18, 0.78);
  max-width: none;
  line-height: 1.75;
}

.about-story p + p {
  margin-top: 14px;
}

.about-actions {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

/* Brand video (Target corporate) */
.video-feature {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}

.video-feature-link {
  display: block;
  max-width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(18, 18, 18, 0.1);
  box-shadow: 0 16px 36px rgba(18, 18, 18, 0.1);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition:
    box-shadow 0.18s ease,
    transform 0.18s ease,
    border-color 0.18s ease;
}

.video-feature-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(18, 18, 18, 0.14);
  border-color: rgba(18, 18, 18, 0.14);
}

.video-feature-link:focus-visible {
  outline: 3px solid rgba(210, 74, 55, 0.45);
  outline-offset: 3px;
}

.video-feature-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: rgba(241, 235, 233, 0.95);
}

.video-feature-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

.video-feature-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(18, 18, 18, 0.05) 0%,
    rgba(18, 18, 18, 0.18) 100%
  );
  transition: background 0.18s ease;
}

.video-feature-link:hover .video-feature-play {
  background: linear-gradient(
    180deg,
    rgba(18, 18, 18, 0.1) 0%,
    rgba(18, 18, 18, 0.28) 100%
  );
}

.video-feature-play svg {
  width: clamp(64px, 12vw, 88px);
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.video-feature-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 18px;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--brand-red);
  background: rgba(255, 255, 255, 0.98);
}

.video-feature-arrow {
  font-weight: 900;
}

.video-feature-note {
  margin: 12px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

h2 {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 34px);
  letter-spacing: -0.4px;
}

.section-lede {
  margin: 10px auto 0;
  color: var(--muted);
  max-width: min(960px, 100%);
  font-size: 16px;
}

h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.2px;
}

p {
  margin: 0;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

/* About explore: equal-height cards so CTAs sit on one baseline */
#explore .grid-3 {
  align-items: stretch;
}

#explore .grid-3 > .card {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

#explore .grid-3 > .card > p {
  flex: 1 1 auto;
  margin-bottom: 20px;
}

#explore .grid-3 > .card > .explore-card-btn {
  margin-top: auto;
  width: 100%;
  box-sizing: border-box;
  border-radius: var(--radius);
  text-decoration: none;
  justify-content: center;
  padding-top: 12px;
  padding-bottom: 12px;
  letter-spacing: normal;
  font-variant: normal;
  text-transform: none;
  font-feature-settings: normal;
}

#explore .grid-3 > .card > .explore-card-btn:hover,
#explore .grid-3 > .card > .explore-card-btn:focus-visible {
  text-decoration: none;
}

.card {
  background: var(--card);
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(18, 18, 18, 0.06);
}

.card-soft {
  background: rgba(255, 255, 255, 0.86);
}

.card-soft p {
  color: var(--muted);
}

.grid-2 > .card h3,
.grid-3 > .card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.2px;
}

.grid-2 > .card > p,
.grid-3 > .card > p {
  color: var(--muted);
  margin: 0 0 10px;
}

.about-explore-foot {
  margin-top: 22px;
  text-align: center;
  font-size: 15px;
}

.about-explore-foot a {
  font-weight: 800;
  color: var(--brand-red);
  text-decoration: none;
  border-bottom: 1px solid rgba(210, 74, 55, 0.35);
  padding-bottom: 1px;
}

.about-explore-foot a:hover {
  border-bottom-color: var(--brand-red);
}

.list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.list li + li {
  margin-top: 6px;
}

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

.product-card {
  background: #fff;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: rgba(241, 235, 233, 0.95);
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid rgba(18, 18, 18, 0.08);
  margin-bottom: 14px;
  display: block;
}

.product-card p {
  color: var(--muted);
}

.product-card h3 {
  margin-top: 2px;
}

.product-card .btn {
  margin-top: auto;
  align-self: center;
  min-width: 210px;
  text-align: center;
  box-shadow: 0 18px 34px rgba(18, 18, 18, 0.14);
}

.product-card .btn:hover {
  box-shadow: 0 22px 44px rgba(18, 18, 18, 0.16);
}

.product-meta {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.25px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(187, 217, 232, 0.45);
  border: 1px solid rgba(187, 217, 232, 0.7);
}

/* Categories */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.category-card {
  background: #fff;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 28px rgba(18, 18, 18, 0.08);
}

.category-card p {
  color: var(--muted);
  margin-top: 2px;
}

.text-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-weight: 900;
  color: var(--brand-red);
  text-transform: none;
  font-variant: normal;
  letter-spacing: normal;
}

.text-cta:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* Trust */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.trust-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
}

.trust-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 12px 14px;
  border-radius: calc(var(--radius) - 6px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(18, 18, 18, 0.08);
  text-decoration: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.trust-logo-link:hover {
  border-color: rgba(18, 18, 18, 0.14);
  box-shadow: 0 8px 20px rgba(18, 18, 18, 0.06);
  background: #fff;
}

.trust-logo-link:focus-visible {
  outline: 3px solid rgba(210, 74, 55, 0.45);
  outline-offset: 2px;
}

.trust-logo {
  display: block;
  width: auto;
  max-width: min(220px, 100%);
  max-height: 44px;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.trust-logo--marysue {
  max-width: min(240px, 100%);
  max-height: 48px;
}

.trust-logo--juststyle {
  max-width: min(200px, 100%);
  max-height: 42px;
}

.trust-card h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: var(--ink);
}

.trust-card p {
  color: var(--muted);
  flex: 1 1 auto;
  margin: 0;
}

/* FAQ */
.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.15px;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--brand-red);
  font-weight: 900;
}

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

.faq-item p {
  margin-top: 10px;
  color: var(--muted);
}

/* Footer */
.site-footer {
  width: 100%;
  box-sizing: border-box;
  background: rgba(18, 18, 18, 0.94);
  color: rgba(255, 255, 255, 0.88);
  padding: 0;
}

.footer-container {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 48px;
  box-sizing: border-box;
  align-items: start;
}

.footer-logo-link {
  display: inline-block;
  line-height: 0;
}

.footer-logo {
  height: clamp(60px, 9vw, 88px);
  width: auto;
  display: block;
  filter: brightness(1.12) contrast(1.05);
}

.footer-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
  max-width: none;
}

.footer-brand {
  min-width: 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  min-width: 0;
  text-align: left;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.footer-links-title {
  display: block;
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 48px 20px 40px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo-link {
    margin: 0 auto;
  }

  .footer-note {
    margin-left: auto;
    margin-right: auto;
    max-width: 36rem;
  }

  .footer-col {
    align-items: center;
    text-align: center;
    width: 100%;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .header-inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    min-height: 0;
    padding-top: 8px;
    padding-bottom: 8px;
    position: relative;
  }

  .brand {
    flex-shrink: 0;
  }

  .site-nav-shell {
    margin-left: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 60;
    display: none;
    padding: 8px 0 16px;
    margin-top: 0;
    background: rgba(241, 235, 233, 0.98);
    border-bottom: 1px solid rgba(18, 18, 18, 0.1);
    box-shadow: 0 18px 40px rgba(18, 18, 18, 0.14);
    backdrop-filter: blur(12px);
  }

  .site-header.is-nav-open .site-nav-shell {
    display: block;
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0;
    padding: 4px 0 8px;
    overflow: visible;
  }

  .site-nav a {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 16px;
    min-height: 48px;
    border-bottom: 1px solid rgba(18, 18, 18, 0.06);
    border-radius: 0;
    box-sizing: border-box;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  body.nav-mobile-open {
    overflow: hidden;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  /* Touch targets: align with WCAG 2.5.5 guidance (~44px) for primary actions. */
  .btn {
    min-height: 44px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .btn-solid.btn-lg {
    min-height: 48px;
  }
  .text-cta {
    min-height: 44px;
    padding-top: 10px;
    padding-bottom: 10px;
    box-sizing: content-box;
  }
  .faq-item summary {
    min-height: 44px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .faq-item summary::after {
    float: none;
    flex-shrink: 0;
  }
}

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

  .site-nav-shell {
    position: static !important;
    display: block !important;
    padding: 0 !important;
    margin-left: auto;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    z-index: auto;
  }
}

@media (max-width: 560px) {
  :root {
    --header-offset: 92px;
  }
  .container {
    width: min(1280px, calc(100% - 24px));
  }
  .hero-bg {
    background-position: center 14%;
  }
  .brand-logo {
    height: 92px;
  }
  .brand {
    width: 220px;
  }
}

/* Subpage: intro + breadcrumb (body already offsets fixed header) */
.subpage-intro {
  padding: 18px 0 40px;
  border-bottom: 1px solid rgba(18, 18, 18, 0.06);
}

.subpage-intro .container.subpage-intro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.subpage-intro nav {
  width: 100%;
  display: flex;
  justify-content: center;
}

.subpage-intro .breadcrumb {
  margin: 0 0 18px;
  justify-content: center;
}

.subpage-intro .section-head {
  text-align: center;
  margin-bottom: 0;
  width: 100%;
}

.subpage-intro .section-head .section-lede {
  margin-left: auto;
  margin-right: auto;
  max-width: 42rem;
}

/* Clothing intro: full-bleed photo + scrim (background asset is self-hosted WebP) */
.subpage-intro--media {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-bottom: 0;
  min-height: clamp(280px, 42vh, 460px);
}

.subpage-intro--media .subpage-intro-bg {
  position: absolute;
  inset: 0;
  background-image: url("./assets/images/clothing-intro-bg.webp");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.subpage-intro--baby .subpage-intro-bg {
  background-image: none;
}

.subpage-intro--baby .subpage-intro-bg-img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.subpage-intro--shoes .subpage-intro-bg {
  background-image: none;
}

.subpage-intro--shoes .subpage-intro-bg-img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.subpage-intro--accessories .subpage-intro-bg {
  background-image: none;
}

.subpage-intro--accessories .subpage-intro-bg-img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.subpage-intro--sizechart .subpage-intro-bg {
  background-image: none;
}

.subpage-intro--sizechart .subpage-intro-bg-img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.subpage-intro--return-policy .subpage-intro-bg {
  background-image: none;
}

.subpage-intro--return-policy .subpage-intro-bg-img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.subpage-intro--about .subpage-intro-bg {
  background-image: url("./assets/images/hero-bg.webp");
  background-size: cover;
  background-position: center 24%;
  background-repeat: no-repeat;
}

.subpage-intro--about .about-hero-note {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.subpage-intro--media .about-hero-note a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 1px;
}

.subpage-intro--media .about-hero-note a:hover {
  border-bottom-color: #ffffff;
}

/* Size chart tables */
.size-chart-section {
  padding: 28px 0 48px;
}

.size-chart-section .section-head {
  text-align: center;
  margin-bottom: 24px;
}

.size-chart-section .section-head .section-lede {
  margin-left: auto;
  margin-right: auto;
  max-width: 44rem;
}

.size-table-wrap {
  overflow-x: auto;
  margin: 0 0 28px;
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.size-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.4;
}

.size-table caption {
  caption-side: top;
  text-align: left;
  padding: 14px 16px 10px;
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  background: rgba(241, 235, 233, 0.95);
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
}

.size-table thead th {
  text-align: left;
  padding: 10px 12px;
  background: rgba(18, 18, 18, 0.78);
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.size-table tbody td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(18, 18, 18, 0.06);
  color: var(--ink);
}

.size-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.55);
}

.size-chart-source {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 52rem;
}

.size-chart-source a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.subpage-intro--media .subpage-intro-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.58) 100%);
}

.subpage-intro--media .container.subpage-intro-inner {
  position: relative;
  z-index: 1;
  padding: 28px 0 40px;
}

.subpage-intro--media .breadcrumb,
.subpage-intro--media .breadcrumb li[aria-hidden="true"] {
  color: rgba(255, 255, 255, 0.72);
}

.subpage-intro--media .breadcrumb [aria-current="page"] {
  color: #ffffff;
}

.subpage-intro--media .breadcrumb a {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.45);
}

.subpage-intro--media .breadcrumb a:hover {
  border-bottom-color: #ffffff;
}

.subpage-intro--media h1 {
  color: #ffffff;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
}

.subpage-intro--media .section-lede {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(18, 18, 18, 0.55);
}

.breadcrumb li[aria-hidden="true"] {
  color: rgba(18, 18, 18, 0.35);
  user-select: none;
}

.breadcrumb a {
  color: var(--brand-red);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(210, 74, 55, 0.35);
  padding-bottom: 1px;
}

.breadcrumb a:hover {
  border-bottom-color: var(--brand-red);
}

.breadcrumb [aria-current="page"] {
  color: var(--ink);
  font-weight: 800;
}

.guide-section .section-head {
  text-align: center;
  margin-bottom: 20px;
}

.guide-section .section-head .section-lede {
  margin-left: auto;
  margin-right: auto;
  max-width: min(56rem, 100%);
}

/* Subpage: long-form article */
.article-prose {
  max-width: min(960px, 100%);
  margin: 0 auto;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.article-prose h2,
.article-prose h3 {
  color: var(--ink);
}

.article-prose h2 {
  margin-top: 8px;
}

.article-prose h3 {
  margin-top: 22px;
  margin-bottom: 0;
  font-size: 18px;
  letter-spacing: -0.2px;
  line-height: 1.25;
}

.article-prose > h3:first-of-type {
  margin-top: 0;
}

.article-prose p,
.article-prose li {
  font-size: 16px;
}

.article-prose ul {
  margin: 0;
  padding-left: 20px;
}

.article-prose li + li {
  margin-top: 6px;
}

.guide-section .article-prose {
  max-width: none;
  width: 100%;
  margin: 0;
  text-align: left;
}

.product-card-note {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(18, 18, 18, 0.62);
}

/* Privacy / Terms / Disclaimer: left reading column, centered titles, light editorial polish */
main.privacy-page .subpage-intro .container.subpage-intro-inner,
main.terms-page .subpage-intro .container.subpage-intro-inner,
main.disclaimer-page .subpage-intro .container.subpage-intro-inner {
  align-items: stretch;
  text-align: left;
}

main.privacy-page .subpage-intro .section-head,
main.terms-page .subpage-intro .section-head,
main.disclaimer-page .subpage-intro .section-head {
  text-align: center;
  width: 100%;
}

main.privacy-page .subpage-intro .section-head h1,
main.terms-page .subpage-intro .section-head h1,
main.disclaimer-page .subpage-intro .section-head h1 {
  text-align: center;
}

main.privacy-page .subpage-intro .section-head .section-lede,
main.privacy-page .subpage-intro .section-head .about-hero-note,
main.terms-page .subpage-intro .section-head .section-lede,
main.terms-page .subpage-intro .section-head .about-hero-note,
main.disclaimer-page .subpage-intro .section-head .section-lede,
main.disclaimer-page .subpage-intro .section-head .about-hero-note {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  max-width: min(56rem, 100%);
  width: 100%;
}

main.privacy-page .section:not(.subpage-intro) .section-head,
main.terms-page .section:not(.subpage-intro) .section-head,
main.disclaimer-page .section:not(.subpage-intro) .section-head {
  text-align: center;
}

main.privacy-page .section:not(.subpage-intro) .section-head h2,
main.terms-page .section:not(.subpage-intro) .section-head h2,
main.disclaimer-page .section:not(.subpage-intro) .section-head h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 0;
}

main.privacy-page .section:not(.subpage-intro) .section-head h2::after,
main.terms-page .section:not(.subpage-intro) .section-head h2::after,
main.disclaimer-page .section:not(.subpage-intro) .section-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-red), rgba(210, 74, 55, 0.35));
}

main.privacy-page .article-prose.privacy-prose,
main.privacy-page .guide-section .article-prose.privacy-prose,
main.terms-page .article-prose.terms-prose,
main.terms-page .guide-section .article-prose.terms-prose,
main.disclaimer-page .article-prose.disclaimer-prose,
main.disclaimer-page .guide-section .article-prose.disclaimer-prose {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: none;
  min-width: 0;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

main.privacy-page .privacy-pull,
main.terms-page .terms-pull,
main.disclaimer-page .disclaimer-pull {
  margin: 0 0 16px;
  padding: 4px 0 4px 18px;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  align-self: stretch;
  flex-shrink: 0;
  border: none;
  border-left: 4px solid var(--brand-red);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: -0.2px;
}

main.privacy-page .article-prose ul.privacy-list,
main.terms-page .article-prose ul.terms-list,
main.disclaimer-page .article-prose ul.disclaimer-list {
  list-style: none;
  padding-left: 0;
  margin: 4px 0 0;
  border-left: 4px solid var(--brand-red);
  padding-left: 18px;
}

main.privacy-page .article-prose ul.privacy-list li + li,
main.terms-page .article-prose ul.terms-list li + li,
main.disclaimer-page .article-prose ul.disclaimer-list li + li {
  margin-top: 14px;
}

main.privacy-page .privacy-contact-card,
main.terms-page .terms-contact-card,
main.disclaimer-page .disclaimer-contact-card {
  margin-top: 8px;
  padding: 18px 20px;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

main.privacy-page .privacy-contact-label,
main.terms-page .terms-contact-label,
main.disclaimer-page .disclaimer-contact-label {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.5);
}

main.privacy-page .privacy-contact-email,
main.terms-page .terms-contact-email,
main.disclaimer-page .disclaimer-contact-email {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
}

main.privacy-page .privacy-contact-email a,
main.terms-page .terms-contact-email a,
main.disclaimer-page .disclaimer-contact-email a {
  color: var(--brand-red);
  text-decoration: none;
  border-bottom: 2px solid rgba(210, 74, 55, 0.35);
  padding-bottom: 2px;
}

main.privacy-page .privacy-contact-email a:hover,
main.terms-page .terms-contact-email a:hover,
main.disclaimer-page .disclaimer-contact-email a:hover {
  border-bottom-color: var(--brand-red);
}

main.privacy-page .privacy-contact-hint,
main.terms-page .terms-contact-hint,
main.disclaimer-page .disclaimer-contact-hint {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
