:root {
  --ink: #161616;
  --muted: #66645f;
  --line: #e6e0d7;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --accent: #d66f35;
  --accent-dark: #9b4e2b;
  --soft-blue: #d8e8ee;
  --soft-green: #dfe8dc;
  --soft-yellow: #f4e4bd;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

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

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

button,
input {
  font: inherit;
}

.promo-bar {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: flex;
  font-size: 13px;
  font-weight: 700;
  height: 34px;
  justify-content: center;
  padding: 0 18px;
  text-align: center;
}

.site-header {
  align-items: center;
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr auto;
  height: 74px;
  padding: 0 clamp(18px, 4vw, 54px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 21px;
  font-weight: 820;
  gap: 10px;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 7px;
  color: #fff;
  display: inline-flex;
  font-size: 17px;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.desktop-nav,
.header-actions {
  align-items: center;
  display: flex;
  gap: clamp(16px, 2.2vw, 32px);
}

.desktop-nav {
  justify-content: center;
}

.desktop-nav a,
.header-actions a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.desktop-nav a:hover,
.header-actions a:hover {
  color: var(--ink);
}

.cart-pill {
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink) !important;
  min-height: 34px;
  padding: 7px 14px;
}

.icon-button {
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  display: none;
  flex-direction: column;
  gap: 4px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.icon-button span {
  background: var(--ink);
  border-radius: 999px;
  display: block;
  height: 2px;
  width: 18px;
}

.hero {
  background: linear-gradient(135deg, #f2debe 0%, #d8e8ee 52%, #f8f6ef 100%);
  display: grid;
  gap: clamp(28px, 4vw, 64px);
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  min-height: calc(100vh - 108px);
  padding: clamp(42px, 7vw, 92px) clamp(20px, 5vw, 64px);
}

.hero-copy {
  align-self: center;
  max-width: 650px;
}

.eyebrow,
.section-kicker {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(54px, 8.8vw, 112px);
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 24px;
}

.hero-copy p:not(.eyebrow) {
  color: rgba(22, 22, 22, 0.72);
  font-size: clamp(18px, 2.1vw, 24px);
  max-width: 570px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-action,
.secondary-action,
.text-link,
.newsletter button {
  align-items: center;
  border-radius: 7px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
}

.primary-action,
.newsletter button {
  background: var(--ink);
  color: #fff;
}

.secondary-action,
.text-link {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(22, 22, 22, 0.18);
  color: var(--ink);
}

.hero-product {
  align-self: stretch;
  background: #fff;
  border: 1px solid rgba(22, 22, 22, 0.12);
  border-radius: 8px;
  display: grid;
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.hero-product img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-product-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(22, 22, 22, 0.12);
  border-radius: 8px;
  bottom: 22px;
  left: 22px;
  min-width: 260px;
  padding: 18px;
  position: absolute;
}

.hero-product-card span {
  color: var(--accent-dark);
  display: block;
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero-product-card h2 {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-product-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.category-band {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.category-band a {
  border-right: 1px solid var(--line);
  display: grid;
  gap: 4px;
  min-height: 92px;
  padding: 22px clamp(16px, 3vw, 32px);
}

.category-band a:last-child {
  border-right: 0;
}

.category-band span {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 850;
  line-height: 1;
}

.category-band small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 64px);
}

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

.section-heading h2,
.newsletter h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  margin-bottom: 0;
}

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

.product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  box-shadow: 0 18px 34px rgba(38, 32, 24, 0.1);
  transform: translateY(-3px);
}

.product-image {
  background: #f0eee8;
  display: block;
  overflow: hidden;
  position: relative;
}

.product-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 220ms ease;
  width: 100%;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.badge {
  background: var(--paper);
  border: 1px solid rgba(22, 22, 22, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 780;
  left: 12px;
  padding: 6px 10px;
  position: absolute;
  top: 12px;
  z-index: 1;
}

.product-info {
  padding: 18px;
}

.product-info > span,
.series-card span,
.support-strip span {
  color: var(--accent-dark);
  display: block;
  font-size: 11px;
  font-weight: 860;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.product-info h3 {
  font-size: 18px;
  line-height: 1.16;
  margin-bottom: 7px;
}

.product-info p {
  color: var(--muted);
  margin-bottom: 16px;
}

.product-meta {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.product-meta strong {
  font-size: 18px;
}

.swatches {
  display: flex;
  gap: 6px;
}

.swatches i {
  border: 1px solid rgba(22, 22, 22, 0.2);
  border-radius: 999px;
  display: block;
  height: 16px;
  width: 16px;
}

.black {
  background: #171717;
}

.silver {
  background: #d9d6cf;
}

.blue {
  background: #506b81;
}

.green {
  background: #7f8f71;
}

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

.feature-tile {
  min-height: 430px;
  padding: clamp(30px, 5vw, 64px);
}

.tile-cloud {
  background: var(--soft-blue);
}

.tile-access {
  background: var(--soft-yellow);
}

.feature-tile span {
  color: var(--accent-dark);
  display: block;
  font-size: 12px;
  font-weight: 860;
  margin-bottom: 18px;
}

.feature-tile h2 {
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
  margin-bottom: 18px;
}

.feature-tile p {
  color: rgba(22, 22, 22, 0.68);
  font-size: 18px;
  max-width: 420px;
}

.brand-story {
  background: var(--panel);
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
}

.story-media img {
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  width: 100%;
}

.story-copy {
  align-self: center;
  padding: clamp(42px, 7vw, 88px);
}

.story-copy h2 {
  font-size: clamp(36px, 5.6vw, 76px);
  line-height: 1;
  margin-bottom: 22px;
}

.story-copy > p {
  color: var(--muted);
  font-size: 19px;
  max-width: 660px;
}

.story-stats {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
  padding-top: 28px;
}

.story-stats strong {
  display: block;
  font-size: 42px;
  line-height: 1;
}

.story-stats span {
  color: var(--muted);
  display: block;
  font-size: 14px;
  margin-top: 8px;
}

.series {
  background: #f2f0ea;
}

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

.series-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 208px;
  padding: 22px;
}

.series-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.series-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.detail-grid {
  background: var(--ink);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-grid div {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  min-height: 260px;
  padding: clamp(30px, 5vw, 58px);
}

.detail-grid div:last-child {
  border-right: 0;
}

.detail-grid span {
  color: #f2c18e;
  display: block;
  font-size: 12px;
  font-weight: 860;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.detail-grid h3 {
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1;
  margin-bottom: 16px;
}

.detail-grid p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
  max-width: 430px;
}

.support-strip {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.support-strip div {
  border-right: 1px solid var(--line);
  min-height: 172px;
  padding: 28px clamp(18px, 4vw, 40px);
}

.support-strip div:last-child {
  border-right: 0;
}

.support-strip h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.support-strip p {
  color: var(--muted);
  margin-bottom: 0;
}

.newsletter {
  align-items: center;
  background: var(--soft-green);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 64px);
}

.newsletter form {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(22, 22, 22, 0.14);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 10px;
}

.newsletter input {
  background: transparent;
  border: 0;
  min-height: 48px;
  outline: 0;
  padding: 0 12px;
}

.newsletter button {
  border: 0;
  cursor: pointer;
}

.footer {
  background: var(--ink);
  color: white;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1fr);
  padding: 42px clamp(20px, 5vw, 64px);
}

.footer .brand-mark {
  background: #fff;
  color: var(--ink);
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand {
  color: white;
  margin-bottom: 12px;
}

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

.footer-columns h3 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-columns a {
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 1100px) {
  .collection-grid,
  .series-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .icon-button {
    display: inline-flex;
    justify-self: end;
  }

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

  .hero-product {
    min-height: 460px;
  }

  .category-band,
  .support-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-band a,
  .support-strip div {
    border-bottom: 1px solid var(--line);
  }

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

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

  .detail-grid div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-right: 0;
  }

  .detail-grid div:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .promo-bar {
    height: auto;
    min-height: 36px;
  }

  .site-header {
    height: 66px;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .hero-product {
    min-height: 390px;
  }

  .hero-product-card {
    bottom: 14px;
    left: 14px;
    min-width: 0;
    right: 14px;
  }

  .primary-action,
  .secondary-action,
  .text-link {
    width: 100%;
  }

  .category-band,
  .collection-grid,
  .series-grid,
  .support-strip,
  .story-stats,
  .footer-columns,
  .newsletter form {
    grid-template-columns: 1fr;
  }

  .category-band a,
  .support-strip div {
    border-right: 0;
  }

  .feature-tile {
    min-height: 320px;
  }
}
