:root {
  --brand: #7f9a8a;
  --ink: #2f3432;
  --muted: #6a706c;
  --line: #dde4dd;
  --paper: #f5f7f4;
  --panel: #ffffff;
  --sand: #d8c7aa;
  --accent: #e59a45;
  --accent-dark: #b86c27;
  --soft-blue: #e7eee9;
  --soft-green: #dfe8e1;
  --soft-yellow: #efe3cf;
  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;
  overflow-x: hidden;
}

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;
  gap: clamp(14px, 5vw, 70px);
  font-size: 13px;
  font-weight: 700;
  height: 34px;
  justify-content: center;
  padding: 0 18px;
  text-align: center;
}

.promo-bar span {
  white-space: nowrap;
}

.site-header {
  align-items: center;
  background: rgba(245, 247, 244, 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);
}

.mobile-actions {
  display: none;
}

.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, var(--sand) 0%, #e7eee9 50%, var(--paper) 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(--brand);
  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;
}

.hero-dots {
  display: none;
}

.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(--accent);
  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(--brand);
  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;
}

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

.campaign {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 430px;
  padding: clamp(30px, 5vw, 58px);
  position: relative;
}

.campaign:last-child {
  border-right: 0;
}

.campaign span {
  color: var(--brand);
  display: block;
  font-size: 12px;
  font-weight: 860;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.campaign h2 {
  font-size: clamp(30px, 4.3vw, 58px);
  line-height: 1;
  margin-bottom: 18px;
  max-width: 560px;
}

.campaign p {
  color: rgba(22, 22, 22, 0.64);
  font-size: 18px;
}

.campaign-access {
  background: var(--sand);
}

.campaign-flow {
  background: var(--soft-green);
}

.campaign-air {
  background: var(--soft-blue);
}

.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: 250px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

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

.category-band img {
  aspect-ratio: 4 / 3;
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0.88;
  position: absolute;
  transition: transform 220ms ease;
  width: 100%;
}

.category-band a:hover img {
  transform: scale(1.04);
}

.category-band a::after {
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.08), rgba(22, 22, 22, 0.58));
  content: "";
  inset: 0;
  position: absolute;
}

.category-band span {
  align-self: end;
  color: #fff;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 850;
  line-height: 1;
  padding: 0 22px;
  position: relative;
  z-index: 1;
}

.category-band small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 650;
  padding: 0 22px 22px;
  position: relative;
  z-index: 1;
}

.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-tabs {
  background: #f4f2ee;
  border-radius: 999px;
  display: inline-flex;
  gap: 4px;
  margin: 0 0 26px;
  padding: 5px;
}

.product-tabs a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  min-width: 132px;
  padding: 12px 18px;
  text-align: center;
}

.product-tabs a.active {
  background: var(--brand);
  color: #fff;
}

.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(--brand);
  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: var(--brand);
}

.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(--brand);
  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;
}

.journal-strip {
  background: var(--paper);
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 64px);
}

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

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

.journal-cards article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 220px;
  padding: 22px;
}

.journal-cards span {
  color: var(--brand);
  display: block;
  font-size: 12px;
  font-weight: 860;
  margin-bottom: 26px;
}

.journal-cards h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.journal-cards p {
  color: var(--muted);
  margin-bottom: 0;
}

.series {
  background: #eef2ee;
}

.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: var(--accent);
  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 {
    gap: 10px;
    grid-template-columns: auto 1fr auto;
  }

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

  .brand {
    justify-self: center;
  }

  .mobile-actions {
    align-items: center;
    display: flex;
    gap: 6px;
    justify-self: end;
  }

  .mobile-actions a {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    font-size: 0;
    height: 32px;
    justify-content: center;
    width: 32px;
  }

  .mobile-actions a::before {
    color: var(--ink);
    font-size: 13px;
    font-weight: 850;
  }

  .mobile-actions a[aria-label="Search"]::before {
    content: "S";
  }

  .mobile-actions a[aria-label="Account"]::before {
    content: "A";
  }

  .mobile-actions a[aria-label="Cart"]::before {
    content: "C";
  }

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

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

  h1 {
    font-size: clamp(46px, 9vw, 72px);
    max-width: 720px;
  }

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

  .category-band,
  .campaign-grid,
  .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;
  }

  .journal-strip {
    grid-template-columns: 1fr;
  }

  .journal-cards {
    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: 820px) {
  .promo-bar {
    gap: 18px;
    height: 38px;
    min-height: 36px;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 14px;
    scrollbar-width: none;
  }

  .promo-bar::-webkit-scrollbar {
    display: none;
  }

  .site-header {
    height: 66px;
    padding: 0 14px;
  }

  .hero {
    align-items: end;
    display: grid;
    min-height: 540px;
    overflow: hidden;
    padding: 0;
    position: relative;
  }

  h1 {
    font-size: clamp(42px, 13vw, 54px);
    line-height: 0.96;
    max-width: 100%;
  }

  .hero-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.45;
  }

  .hero-copy {
    color: #fff;
    max-width: none;
    padding: 0 24px 42px;
    position: relative;
    text-align: center;
    z-index: 1;
  }

  .hero .eyebrow {
    color: rgba(255, 255, 255, 0.86);
  }

  .hero-product {
    border: 0;
    border-radius: 0;
    inset: 0;
    min-height: 0;
    position: absolute;
  }

  .hero-product::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 20%, rgba(0, 0, 0, 0.62) 100%);
    content: "";
    inset: 0;
    position: absolute;
  }

  .hero-product img {
    height: 100%;
    object-position: center;
  }

  .hero-product-card {
    display: none;
  }

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

  .hero-actions {
    flex-direction: column;
    margin: 22px auto 0;
    max-width: 260px;
  }

  .hero .primary-action,
  .hero .secondary-action {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.82);
    color: #fff;
  }

  .hero-dots {
    display: flex;
    gap: 9px;
    justify-content: center;
    margin-top: 22px;
  }

  .hero-dots i {
    background: rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    display: block;
    height: 8px;
    width: 8px;
  }

  .hero-dots i.active {
    background: #fff;
  }

  .campaign {
    min-height: 300px;
    padding: 28px 18px;
  }

  .campaign h2,
  .feature-tile h2,
  .story-copy h2,
  .journal-strip h2,
  .section-heading h2,
  .newsletter h2 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.04;
  }

  .category-band a {
    min-height: 210px;
  }

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

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

  .category-band a:last-child {
    grid-column: 1 / -1;
  }

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

  .product-section .section-heading {
    text-align: center;
  }

  .product-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-left: auto;
    margin-right: auto;
    max-width: 340px;
    width: 100%;
  }

  .product-tabs a {
    min-width: 0;
    padding: 12px 10px;
  }

  .product-info {
    padding: 12px;
  }

  .product-info > span {
    font-size: 10px;
  }

  .product-info h3 {
    font-size: 15px;
  }

  .product-info p {
    font-size: 13px;
  }

  .product-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .support-strip {
    text-align: center;
  }

  .support-strip div {
    min-height: 210px;
  }

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

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

  .story-media img {
    min-height: 320px;
  }

  .story-copy,
  .journal-strip {
    padding: 42px 18px;
  }

  .section {
    padding: 48px 18px;
  }

  .footer {
    padding: 34px 18px;
  }
}
