/**
 * SizePass theme – main styles (from landing page)
 */
:root {
  --cream: #F5F0E8;
  --ink: #1A1714;
  --rust: #C4502A;
  --rust-light: #E06B42;
  --tan: #D4C4A8;
  --mid: #6B5E4E;
  --white: #FDFAF5;
}

/* Nav (header uses .site-nav for clarity, same styles as .nav) */
.site-nav,
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 4rem;
  background: rgba(245,240,232,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(180,160,130,0.25);
  animation: fadeDown .6s ease both;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

.nav-logo span { color: var(--rust); }

.nav-links,
.site-nav .nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover { color: var(--rust); }

.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: .65rem 1.6rem;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}

.nav-cta:hover { background: var(--rust); transform: translateY(-1px); }

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 4rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55vw;
  height: 110vh;
  background: radial-gradient(ellipse at 60% 40%, #D4C4A8 0%, transparent 65%),
              linear-gradient(135deg, var(--tan) 0%, transparent 60%);
  opacity: .45;
  border-radius: 40% 60% 60% 40% / 30% 30% 70% 70%;
  animation: blobFloat 10s ease-in-out infinite alternate;
}

@keyframes blobFloat {
  from { transform: rotate(-3deg) scale(1); }
  to   { transform: rotate(3deg) scale(1.04); }
}

.hero-text { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rust);
  border-left: 2px solid var(--rust);
  padding-left: .8rem;
  margin-bottom: 1.8rem;
  animation: fadeUp .7s .2s ease both;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.03em;
  color: var(--ink);
  animation: fadeUp .7s .35s ease both;
}

.hero-headline em { font-style: italic; color: var(--rust); }

.hero-sub {
  margin-top: 1.8rem;
  max-width: 42ch;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--mid);
  animation: fadeUp .7s .5s ease both;
}

.hero-actions {
  margin-top: 2.8rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  animation: fadeUp .7s .65s ease both;
}

.btn-primary {
  background: var(--rust);
  color: var(--white);
  padding: 1rem 2.2rem;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(196,80,42,.25);
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--rust-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,80,42,.35);
}

.btn-ghost {
  color: var(--mid);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}

.btn-ghost:hover { color: var(--ink); border-color: var(--ink); }

.btn-ghost .arrow { transition: transform .2s; }
.btn-ghost:hover .arrow { transform: translateX(4px); }

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp .8s .4s ease both;
}

.size-card {
  background: var(--white);
  border: 1px solid rgba(180,160,130,.3);
  padding: 2.4rem 2.8rem;
  box-shadow: 0 24px 80px rgba(26,23,20,.1), 0 4px 16px rgba(26,23,20,.05);
  width: 340px;
  position: relative;
}

.size-card::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--rust);
  opacity: .35;
}

.card-label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.4rem;
}

.card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.card-tag { font-size: .8rem; color: var(--mid); margin-bottom: 2rem; }

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

.size-item {
  background: var(--cream);
  padding: .9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.size-item .si-label {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: .4rem;
  margin-left: 1rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform .25s ease, opacity .2s ease, top .25s ease;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.site-nav.is-open .nav-toggle span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.site-nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.site-nav.is-open .nav-toggle span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* Back to top button */
.sp-back-to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: var(--ink);
  color: var(--cream);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(15,23,42,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s, transform .15s;
  z-index: 120;
}
.sp-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.sp-back-to-top:hover {
  transform: translateY(-2px);
}

/* Responsive layout */
@media (max-width: 900px) {
  .site-nav,
  nav {
    padding: 1rem 1.5rem;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 3rem;
    row-gap: 3rem;
  }
  .hero-visual {
    order: -1;
  }
  .hero-sub {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .site-nav,
  nav {
    padding: .85rem 1.25rem;
  }
  .site-nav {
    flex-wrap: wrap;
    align-items: center;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    position: relative;
    z-index: 101;
  }
  .nav-links,
  .site-nav .nav-links {
    order: 4;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 1rem;
    background: rgba(245,240,232,0.98);
    padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(180,160,130,0.25);
    box-shadow: 0 14px 30px rgba(26,23,20,.08);
    display: none;
  }
  .nav-cta {
    display: none;
    order: 5;
    width: 100%;
    margin-top: .75rem;
    text-align: center;
  }
  .site-nav.is-open .nav-links {
    display: flex;
  }
  .site-nav.is-open .nav-cta {
    display: inline-block;
  }
  .hero {
    padding-top: 6rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 5.5rem 1rem 3rem;
  }
  .size-card {
    width: 100%;
    padding: 1.8rem 1.6rem;
  }
}

.size-item .si-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}

.card-divider {
  height: 1px;
  background: var(--tan);
  margin: 1.6rem 0;
}

.card-share-btn {
  width: 100%;
  padding: .8rem;
  background: var(--ink);
  color: var(--cream);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
  display: block;
  text-align: center;
  font-family: inherit;
}

.card-share-btn:hover { background: var(--rust); color: var(--cream); }

.floating-badge {
  position: absolute;
  top: -24px;
  right: -24px;
  background: var(--rust);
  color: var(--white);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: .7rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  letter-spacing: .04em;
  box-shadow: 0 8px 24px rgba(196,80,42,.3);
  animation: badgeSpin 18s linear infinite;
}

@keyframes badgeSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Ticker */
.ticker {
  background: var(--ink);
  overflow: hidden;
  padding: .85rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.ticker-inner {
  display: flex;
  gap: 4rem;
  animation: tickerScroll 22s linear infinite;
  width: max-content;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-item {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tan);
  white-space: nowrap;
}

.ticker-item .dot { color: var(--rust); margin-right: 4rem; }

/* Section common */
.section {
  padding: 8rem 4rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
  max-width: 16ch;
}

.section-title em { font-style: italic; color: var(--rust); }

.steps {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--tan);
}

.step {
  padding: 3rem 2.8rem;
  border-right: 1px solid var(--tan);
  position: relative;
  transition: background .3s;
}

.step:last-child { border-right: none; }
.step:hover { background: var(--white); }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--tan);
  line-height: 1;
  margin-bottom: 1.6rem;
  transition: color .3s;
}

.step:hover .step-num { color: var(--rust); }

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .8rem;
}

.step-desc { font-size: .92rem; line-height: 1.7; color: var(--mid); }

/* Measurements section */
.measurements-section {
  padding: 8rem 4rem;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.measurements-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,80,42,.15) 0%, transparent 65%);
  border-radius: 50%;
}

.measurements-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.measurements-section .section-label { color: var(--rust-light); }
.measurements-section .section-title { color: var(--cream); max-width: 20ch; }
.measurements-section .section-title em { color: var(--rust-light); }
.measurements-section p { color: rgba(245,240,232,.65); line-height: 1.75; margin-top: 1.5rem; font-size: .95rem; }

.measurements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
}

.m-item {
  background: rgba(26,23,20,.8);
  padding: 1.5rem 1.6rem;
  transition: background .2s;
}

.m-item:hover { background: rgba(196,80,42,.12); }
.m-icon { font-size: 1.4rem; margin-bottom: .6rem; }
.m-name { font-size: .78rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--tan); margin-bottom: .3rem; }
.m-unit { font-family: 'Playfair Display', serif; font-size: 1rem; color: rgba(245,240,232,.4); }

/* Share section */
.share-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.share-desc, .share-section p.reveal {
  color: var(--mid);
  line-height: 1.75;
  margin-top: 1.5rem;
  font-size: .95rem;
}

.share-list {
  margin-top: 2rem;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.share-list li {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .9rem;
  color: var(--mid);
}

.share-list .check { color: var(--rust); font-size: 1rem; }

.share-preview {
  background: var(--white);
  border: 1px solid var(--tan);
  padding: 2.4rem;
  box-shadow: 0 16px 60px rgba(26,23,20,.08);
  position: relative;
}

.share-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--tan);
}

.share-logo { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.1rem; }
.share-logo span { color: var(--rust); }

.share-badge {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--cream);
  padding: .3rem .7rem;
  color: var(--mid);
  border: 1px solid var(--tan);
}

.share-user { margin-bottom: 1.8rem; }
.share-user strong { font-family: 'Playfair Display', serif; font-size: 1.2rem; display: block; margin-bottom: .2rem; }
.share-user span { font-size: .82rem; color: var(--mid); }

.share-sizes { display: flex; flex-direction: column; gap: .7rem; }

.share-size-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 1rem;
  background: var(--cream);
}

.share-size-row .sr-cat { font-size: .78rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--mid); }
.share-size-row .sr-val { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; }

.share-footer {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--tan);
  font-size: .74rem;
  color: var(--mid);
  text-align: center;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Retailers / demo store */
.retailers-section {
  padding: 6rem 4rem;
  background: var(--cream);
  border-top: 1px solid var(--tan);
}

.retailers-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.retailers-inner .section-title { max-width: 100%; margin: 0 auto; }

.retailers-desc,
.retailers-note {
  color: var(--mid);
  margin-top: 1rem;
  font-size: .95rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.retailers-note { margin-top: 2.5rem; font-size: .82rem; letter-spacing: .04em; }

.demo-products {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--tan);
}

.demo-product {
  background: var(--cream);
  padding: 2.5rem 1.8rem;
  text-align: center;
  transition: background .25s;
  position: relative;
  overflow: hidden;
}

.demo-product:hover { background: var(--white); }

.demo-product::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.demo-product:hover::after { transform: scaleX(1); }

.dp-icon { font-size: 2.6rem; margin-bottom: 1rem; }
.dp-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: .4rem; }
.dp-size { font-size: .82rem; color: var(--mid); margin-bottom: 1rem; }

.dp-rec {
  display: inline-block;
  background: var(--ink);
  color: var(--cream);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem .9rem;
}

.dp-rec-label { color: var(--rust-light); }

/* CTA section */
.cta-section {
  padding: 10rem 4rem;
  background: var(--rust);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 65%);
  border-radius: 50%;
}

.cta-inner { position: relative; z-index: 2; }

.cta-section .section-label { color: rgba(255,255,255,.6); }
.cta-section .section-title { color: var(--white); max-width: 100%; margin: 0 auto .5rem; }
.cta-section .section-title em { color: rgba(255,255,255,.7); }

.cta-sub { color: rgba(255,255,255,.75); margin: 1.5rem auto 0; max-width: 45ch; font-size: 1rem; line-height: 1.7; }

.cta-form {
  margin-top: 3rem;
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-input {
  width: 320px;
  padding: 1rem 1.4rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  outline: none;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  transition: border-color .2s, background .2s;
}

.cta-input::placeholder { color: rgba(255,255,255,.55); }
.cta-input:focus { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.2); }

.cta-btn {
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 2.2rem;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  font-family: inherit;
}

.cta-btn:hover { background: var(--white); color: var(--ink); transform: translateY(-2px); }

.cta-note { margin-top: 1rem; font-size: .78rem; color: rgba(255,255,255,.5); }

/* Footer */
.site-footer,
footer {
  background: var(--ink);
  color: var(--tan);
  padding: 4rem 4rem 2.4rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .nav-logo { color: var(--cream); display: block; margin-bottom: .8rem; }
.footer-brand p { font-size: .85rem; line-height: 1.7; color: rgba(212,196,168,.6); max-width: 26ch; }

.footer-col h4 {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rust-light);
  margin-bottom: 1.2rem;
}

.footer-col ul,
.footer-col .footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin: 0;
  padding: 0;
}

.footer-col a {
  font-size: .85rem;
  color: rgba(212,196,168,.6);
  text-decoration: none;
  transition: color .2s;
}

.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: rgba(212,196,168,.4);
}

/* Animations */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible { opacity: 1; transform: none; }

/* Default blog/content */
.site-main.content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 4rem 4rem;
}

.entry-header { margin-bottom: 1.5rem; }
.entry-title { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--ink); }
.entry-content { font-size: 1rem; line-height: 1.7; color: var(--mid); }

/* Responsive */
@media (max-width: 960px) {
  .site-nav,
  nav { padding: 1.2rem 2rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 7rem 2rem 4rem; gap: 3rem; }
  .hero::before { display: none; }
  .hero-visual { order: -1; }
  .size-card { width: 100%; max-width: 340px; }
  .section { padding: 5rem 2rem; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--tan); }
  .step:last-child { border-bottom: none; }
  .measurements-inner { grid-template-columns: 1fr; gap: 3rem; }
  .share-section { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 2rem; }
  .share-section { grid-template-columns: 1fr; gap: 3rem; }
  .demo-products { grid-template-columns: repeat(2, 1fr); }
  .cta-section { padding: 6rem 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: .8rem; text-align: center; }
  .measurements-section { padding: 5rem 2rem; }
  .retailers-section { padding: 5rem 2rem; }
  .site-main.content-area { padding: 6rem 2rem 3rem; }
}

@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; }
}
