:root {
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --container: 1180px;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-soft: 0 24px 80px rgba(54, 38, 22, .16);
  --shadow-card: 0 16px 42px rgba(42, 29, 18, .12);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --bg: #f6efe3;
  --surface: #fffaf1;
  --surface-2: #f1e1c9;
  --text: #2f261e;
  --muted: #7d6755;
  --primary: #536a46;
  --primary-dark: #2f4831;
  --accent: #d58f4f;
  --accent-2: #bd5f46;
  --thread: #9a6b3f;
  --border: rgba(80, 55, 33, .15);
  --header-rgb: 255 250 241;
}

html[data-theme="forest"] {
  --bg: #f6efe3;
  --surface: #fffaf1;
  --surface-2: #f1e1c9;
  --text: #2f261e;
  --muted: #7d6755;
  --primary: #536a46;
  --primary-dark: #2f4831;
  --accent: #d58f4f;
  --accent-2: #bd5f46;
  --thread: #9a6b3f;
  --header-rgb: 255 250 241;
}

html[data-theme="berry"] {
  --bg: #fff1f4;
  --surface: #fffafa;
  --surface-2: #ffe0e7;
  --text: #331e29;
  --muted: #805b6b;
  --primary: #883a5d;
  --primary-dark: #582238;
  --accent: #e3978c;
  --accent-2: #b44a6f;
  --thread: #a63e65;
  --header-rgb: 255 250 250;
}

html[data-theme="fjord"] {
  --bg: #edf6f7;
  --surface: #fbffff;
  --surface-2: #d9eef0;
  --text: #183036;
  --muted: #5a7680;
  --primary: #1d7782;
  --primary-dark: #155059;
  --accent: #e0a85e;
  --accent-2: #4ba1ad;
  --thread: #397f8a;
  --header-rgb: 251 255 255;
}

html[data-theme="linen"] {
  --bg: #f8f4ea;
  --surface: #fffdf7;
  --surface-2: #e8dfce;
  --text: #2b2925;
  --muted: #686057;
  --primary: #3e3d37;
  --primary-dark: #24231f;
  --accent: #c99b50;
  --accent-2: #8a7055;
  --thread: #7b6a55;
  --header-rgb: 255 253 247;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 4%, color-mix(in srgb, var(--accent) 20%, transparent) 0 18rem, transparent 28rem),
    radial-gradient(circle at 84% 16%, color-mix(in srgb, var(--primary) 14%, transparent) 0 18rem, transparent 30rem),
    linear-gradient(135deg, var(--bg), color-mix(in srgb, var(--bg) 82%, var(--surface-2)));
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(90deg, rgba(80, 55, 30, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(80, 55, 30, .06) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, .7) 1px, transparent 1.2px);
  background-size: 28px 28px, 28px 28px, 12px 12px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.92), rgba(0,0,0,.15));
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    repeating-linear-gradient(105deg, transparent 0 14px, rgba(255,255,255,.15) 15px 16px, transparent 17px 30px),
    repeating-linear-gradient(15deg, transparent 0 22px, rgba(60,40,20,.06) 23px 24px, transparent 25px 45px);
  opacity: .55;
  mix-blend-mode: multiply;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 36px, var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 112px 0;
}

.section-pad--compact {
  padding: 56px 0;
}

.site-frame {
  position: fixed;
  inset: 14px;
  z-index: 30;
  pointer-events: none;
  border: 1px solid color-mix(in srgb, var(--thread) 26%, transparent);
  border-radius: 26px;
}

.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;
}

.topbar {
  color: color-mix(in srgb, var(--surface) 92%, white);
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  font-size: 13px;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar p {
  margin: 0;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.topbar__links a {
  opacity: .9;
  transition: opacity .2s ease;
}

.topbar__links a:hover {
  opacity: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
}

.navbar {
  border-bottom: 1px solid var(--border);
  background: rgb(var(--header-rgb) / .82);
  backdrop-filter: blur(20px);
}

.navbar__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: -.02em;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-inline: auto;
  color: color-mix(in srgb, var(--text) 86%, var(--muted));
  font-weight: 650;
}

.nav-panel a {
  position: relative;
  padding: 12px 0;
}

.nav-panel a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .26s var(--ease);
}

.nav-panel a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle em {
  font-style: normal;
  font-weight: 700;
}

.scheme-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 78%, white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .04);
}

.scheme-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  border-radius: 999px;
  padding: 8px 10px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  transition: background .22s ease, color .22s ease;
}

.scheme-dot span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: 2px solid rgb(255 255 255 / .85);
  box-shadow: 0 0 0 1px var(--border);
}

.scheme-dot.is-active,
.scheme-dot:hover {
  color: var(--text);
  background: color-mix(in srgb, var(--surface-2) 52%, white);
}

.hero {
  position: relative;
  padding-top: 96px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, color-mix(in srgb, var(--surface) 60%, transparent), transparent 55%),
    radial-gradient(circle at 70% 22%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 34%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 99px;
  background: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-serif);
  line-height: .98;
  letter-spacing: -.055em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 84px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 58px);
}

h3 {
  line-height: 1.15;
  letter-spacing: -.025em;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.btn {
  --btn-bg: var(--surface);
  --btn-color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid color-mix(in srgb, var(--btn-bg) 78%, var(--text));
  border-radius: 999px;
  color: var(--btn-color);
  background: var(--btn-bg);
  font-weight: 850;
  box-shadow: 0 12px 34px rgba(0,0,0,.08);
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), background .26s ease;
}

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

.btn--primary {
  --btn-bg: linear-gradient(135deg, var(--primary), var(--primary-dark));
  --btn-color: white;
  border-color: transparent;
}

.btn--ghost {
  background: color-mix(in srgb, var(--surface) 66%, transparent);
  backdrop-filter: blur(10px);
}

.btn--small {
  min-height: 42px;
  padding-inline: 16px;
  box-shadow: none;
  font-size: 14px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
}

.trust-row span {
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgb(var(--header-rgb) / .58);
  backdrop-filter: blur(12px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.trust-row strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 26px;
}

.image-collage {
  position: relative;
  min-height: 640px;
}

.collage-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 10px solid color-mix(in srgb, var(--surface) 84%, white);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.collage-card:hover img {
  transform: scale(1.055);
}

.collage-card--large {
  inset: 0 72px 40px 20px;
}

.collage-card--small {
  width: 190px;
  height: 190px;
  border-width: 8px;
  border-radius: 30px;
  z-index: 2;
}

.collage-card--top {
  top: 44px;
  right: 0;
  transform: rotate(7deg);
}

.collage-card--bottom {
  left: 0;
  bottom: 0;
  transform: rotate(-8deg);
}

.collage-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border-radius: 999px;
  color: white;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  font-weight: 800;
  font-size: 13px;
}

.collage-note {
  position: absolute;
  right: 4px;
  bottom: 54px;
  z-index: 3;
  max-width: 230px;
  padding: 20px;
  border-radius: 24px;
  color: white;
  background: linear-gradient(135deg, var(--accent-2), var(--primary-dark));
  box-shadow: var(--shadow-card);
}

.collage-note span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.thread {
  position: absolute;
  pointer-events: none;
  color: var(--thread);
}

.thread svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.thread path {
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 14 12;
  opacity: .56;
  animation: sew 12s linear infinite;
}

.thread .needle {
  fill: color-mix(in srgb, var(--thread) 80%, black);
  stroke: transparent;
  opacity: .88;
  transform-origin: center;
  animation: needleFloat 4s var(--ease) infinite alternate;
}

.thread--hero {
  left: 0;
  right: 0;
  top: 168px;
  height: 220px;
  opacity: .65;
}

.thread--footer {
  left: 0;
  right: 0;
  top: -30px;
  height: 160px;
  opacity: .45;
}

@keyframes sew {
  to { stroke-dashoffset: -280; }
}

@keyframes needleFloat {
  to { transform: translate(10px, -8px) rotate(6deg); }
}

.floating-stitches span {
  position: fixed;
  z-index: -1;
  width: 72px;
  height: 18px;
  border-top: 3px solid color-mix(in srgb, var(--thread) 42%, transparent);
  border-radius: 50%;
  animation: floatStitch 8s ease-in-out infinite alternate;
}

.floating-stitches span:nth-child(1) { left: 5%; top: 30%; transform: rotate(24deg); }
.floating-stitches span:nth-child(2) { right: 8%; top: 42%; transform: rotate(-18deg); animation-delay: 1.6s; }
.floating-stitches span:nth-child(3) { left: 14%; bottom: 14%; transform: rotate(-12deg); animation-delay: .6s; }
.floating-stitches span:nth-child(4) { right: 18%; bottom: 20%; transform: rotate(19deg); animation-delay: 2.2s; }

@keyframes floatStitch {
  to { translate: 0 -18px; opacity: .42; }
}

.intro-band {
  position: relative;
}

.intro-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.intro-card {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  box-shadow: var(--shadow-card);
}

.intro-card--dark {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.intro-card h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 3.2vw, 42px);
}

.intro-card p {
  margin-bottom: 0;
  color: color-mix(in srgb, currentColor 70%, var(--muted));
  line-height: 1.7;
}

.intro-card--dark p {
  color: rgba(255, 255, 255, .78);
}

.intro-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent) 22%, var(--surface));
  font-size: 24px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.category-card {
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 18% 10%, color-mix(in srgb, var(--accent) 28%, transparent), transparent 34%),
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 88%, white), color-mix(in srgb, var(--surface-2) 66%, white));
  box-shadow: var(--shadow-card);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease);
}

.category-card::before {
  content: "";
  position: absolute;
  inset: -30px;
  background:
    repeating-linear-gradient(45deg, transparent 0 15px, rgba(255,255,255,.38) 16px 18px, transparent 19px 35px);
  opacity: .45;
  transform: rotate(3deg);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(50, 30, 14, .16);
}

.category-card > * {
  position: relative;
}

.category-card__icon {
  position: absolute;
  top: 22px;
  right: 24px;
  color: color-mix(in srgb, var(--primary) 70%, var(--accent));
  font-size: 52px;
  line-height: 1;
}

.category-card h3 {
  margin-bottom: 8px;
  font-size: 26px;
}

.category-card p {
  min-height: 48px;
  margin-bottom: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.category-card strong {
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  font-size: 13px;
}

.feature-strip {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  color: white;
  background:
    radial-gradient(circle at 84% 8%, color-mix(in srgb, var(--accent) 42%, transparent), transparent 28%),
    linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.feature-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 2px, transparent 2px 18px),
    repeating-linear-gradient(0deg, rgba(0,0,0,.05) 0 2px, transparent 2px 26px);
  opacity: .56;
}

.feature-strip__grid {
  position: relative;
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.feature-strip__image {
  position: relative;
}

.feature-strip__image::after {
  content: "";
  position: absolute;
  left: -20px;
  right: 20px;
  top: 20px;
  bottom: -20px;
  z-index: -1;
  border: 2px dashed rgba(255,255,255,.4);
  border-radius: 34px;
}

.feature-strip__image img {
  aspect-ratio: 1;
  object-fit: cover;
  border: 12px solid rgba(255,255,255,.16);
  border-radius: 34px;
  box-shadow: 0 26px 80px rgba(0,0,0,.28);
}

.feature-strip__copy .eyebrow,
.newsletter-card .eyebrow {
  color: rgba(255,255,255,.8);
}

.feature-strip__copy p {
  max-width: 720px;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.8;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 30px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.86);
  line-height: 1.5;
}

.check-list li::before {
  content: "✓";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--primary-dark);
  background: white;
  font-weight: 900;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-chip {
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--muted);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  font-weight: 800;
  transition: background .22s ease, color .22s ease, transform .22s var(--ease);
}

.filter-chip:hover,
.filter-chip.is-active {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transform: translateY(-1px);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--surface) 88%, white);
  box-shadow: var(--shadow-card);
  transition: transform .32s var(--ease), opacity .24s ease, box-shadow .32s var(--ease);
}

.product-card.is-hidden {
  display: none;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(42, 24, 10, .16);
}

.product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.12;
  background: var(--surface-2);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.product-card:hover .product-card__media img {
  transform: scale(1.06);
}

.sale-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  color: white;
  background: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-card__body {
  padding: 24px;
}

.product-card__category {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 66px;
  margin-bottom: 12px;
  font-size: 20px;
}

.product-card__body > p:not(.product-card__category) {
  min-height: 48px;
  color: var(--muted);
  line-height: 1.55;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  margin: 18px 0 22px;
}

.price-row strong {
  color: var(--primary-dark);
  font-size: 20px;
}

.old-price {
  color: var(--muted);
  text-decoration: line-through;
}

.store-section {
  background:
    linear-gradient(180deg, transparent, color-mix(in srgb, var(--surface-2) 38%, transparent)),
    radial-gradient(circle at 20% 30%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 35%);
}

.store-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 22px;
}

.store-card,
.hours-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.store-card {
  min-height: 460px;
  padding: 44px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 94%, white), color-mix(in srgb, var(--surface-2) 60%, white));
}

.store-card__badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: white;
  background: var(--accent-2);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.store-card p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.contact-line {
  padding: 14px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.contact-line strong {
  color: var(--text);
}

.hours-card {
  padding: 34px;
  color: white;
  background:
    radial-gradient(circle at 10% 10%, color-mix(in srgb, var(--accent) 35%, transparent), transparent 34%),
    linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.hours-card h3 {
  margin-bottom: 24px;
  font-family: var(--font-serif);
  font-size: 38px;
}

.hours-card dl {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
}

.hours-card dl > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .25);
}

.hours-card dt {
  color: rgba(255,255,255,.74);
}

.hours-card dd {
  margin: 0;
  font-weight: 900;
}

.hours-card p {
  color: rgba(255,255,255,.78);
  line-height: 1.7;
}

.newsletter-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.newsletter-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  align-items: end;
  gap: 36px;
  padding: 42px;
  border-radius: var(--radius-xl);
  color: white;
  background:
    radial-gradient(circle at 82% 6%, color-mix(in srgb, var(--accent) 40%, transparent), transparent 32%),
    linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: var(--shadow-soft);
}

.newsletter-card h2 {
  margin-bottom: 0;
  max-width: 760px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
}

.newsletter-form input {
  min-width: 0;
  flex: 1 1 auto;
  border: 0;
  outline: 0;
  padding: 0 16px;
  color: white;
  background: transparent;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,.68);
}

.site-footer {
  padding: 56px 0 70px;
  color: rgba(255,255,255,.8);
  background: color-mix(in srgb, var(--primary-dark) 88%, black);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, .5fr));
  gap: 34px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: white;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: white;
}

.site-footer h3 {
  color: white;
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 520px;
  line-height: 1.7;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 10px;
}

.demo-toast {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 60;
  padding: 14px 18px;
  border-radius: 999px;
  color: white;
  background: var(--primary-dark);
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .24s ease, transform .24s var(--ease);
}

.demo-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .72s ease, transform .72s var(--ease);
}

.reveal--delay {
  transition-delay: .14s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .navbar__inner {
    flex-wrap: wrap;
    min-height: auto;
    padding-block: 14px;
  }

  .scheme-switcher {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero__grid,
  .feature-strip__grid,
  .store-grid,
  .newsletter-card {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    max-width: 680px;
    margin-inline: auto;
  }

  .feature-strip__image {
    max-width: 440px;
  }
}

@media (max-width: 880px) {
  .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 10px;
  }

  .navbar__inner {
    justify-content: space-between;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .menu-toggle em {
    display: none;
  }

  .nav-panel {
    order: 4;
    display: none;
    width: 100%;
    margin: 0;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface);
  }

  .nav-panel.is-open {
    display: grid;
    gap: 2px;
  }

  .nav-panel a {
    padding: 12px;
    border-radius: 14px;
  }

  .nav-panel a:hover {
    background: var(--surface-2);
  }

  .nav-panel a::after {
    display: none;
  }

  .category-grid,
  .product-grid,
  .intro-band__grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .image-collage {
    min-height: 520px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-frame {
    display: none;
  }

  .section-pad {
    padding: 74px 0;
  }

  .topbar__links,
  .hero__actions,
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .brand small {
    display: none;
  }

  .scheme-switcher {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .scheme-dot {
    white-space: nowrap;
  }

  .hero {
    padding-top: 62px;
  }

  .hero__grid {
    gap: 42px;
  }

  .lead,
  .section-head p,
  .feature-strip__copy p,
  .store-card p {
    font-size: 16px;
  }

  .trust-row,
  .category-grid,
  .product-grid,
  .intro-band__grid,
  .store-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .image-collage {
    min-height: 420px;
  }

  .collage-card--large {
    inset: 0 30px 40px 0;
  }

  .collage-card--small {
    width: 132px;
    height: 132px;
  }

  .collage-note {
    left: 20px;
    right: auto;
    bottom: 22px;
  }

  .store-card,
  .hours-card,
  .newsletter-card {
    padding: 26px;
    border-radius: 24px;
  }

  .newsletter-form {
    border-radius: 24px;
  }

  .newsletter-form input {
    min-height: 46px;
  }
}
