:root {
  --ink: #191715;
  --muted: #6c625b;
  --paper: #fbf7f1;
  --white: #ffffff;
  --berry: #7d2441;
  --rose: #e7a3a9;
  --sage: #9caf8d;
  --clay: #c97654;
  --charcoal: #292522;
  --line: rgba(25, 23, 21, 0.14);
  --shadow: 0 18px 60px rgba(25, 23, 21, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 247, 241, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.site-header nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-header nav a,
.footer-links a {
  border-bottom: 1px solid transparent;
}

.site-header nav a:hover,
.footer-links a:hover {
  border-color: currentColor;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-weight: 750;
  line-height: 1;
}

.button.primary,
.header-cta {
  background: var(--ink);
  color: var(--white);
}

.button.ghost {
  background: transparent;
  color: var(--ink);
}

.button.dark {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  min-height: calc(100vh - 78px);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: clamp(48px, 7vw, 96px) clamp(22px, 6vw, 88px);
}

.eyebrow {
  margin: 0;
  color: var(--berry);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 9ch;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 9vw, 8.6rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.hero-text {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
}

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

.hero-media {
  position: relative;
  margin: 0;
  min-height: 560px;
  background: var(--sage);
}

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

.marquee {
  overflow: hidden;
  background: var(--berry);
  color: var(--white);
  white-space: nowrap;
}

.marquee p {
  margin: 0;
  padding: 18px 0;
  font-size: clamp(1.1rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: center;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  padding: 28px clamp(18px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

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

.proof-strip strong {
  display: block;
  color: var(--berry);
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
}

.proof-strip span {
  color: var(--muted);
}

.intro,
.care-section,
.community {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(56px, 8vw, 104px) clamp(22px, 6vw, 88px);
  border-bottom: 1px solid var(--line);
}

.intro > p,
.community-copy p,
.care-list {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.28rem);
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--charcoal);
  color: var(--white);
}

.values article {
  min-height: 280px;
  padding: clamp(28px, 5vw, 56px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.values article:last-child {
  border-right: 0;
}

.values h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.values p {
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.72);
}

.shop-section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(320px, 1.35fr);
  gap: 30px;
  margin-bottom: clamp(28px, 5vw, 60px);
}

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

.product-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  min-height: 520px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.featured-product {
  grid-column: 1 / -1;
}

.product-image {
  min-height: 360px;
  background: var(--sage);
}

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

.product-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
}

.product-kicker {
  margin-bottom: 10px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  margin-bottom: 18px;
  color: var(--rose);
  font-size: 1.35rem;
  font-weight: 850;
}

.product-content p:not(.product-kicker, .price),
.product-content li,
.community-panel li {
  color: rgba(255, 255, 255, 0.74);
}

.product-content ul,
.care-list,
.community-panel ol {
  padding-left: 20px;
}

.product-content li + li,
.care-list li + li,
.community-panel li + li {
  margin-top: 8px;
}

.size-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 20px;
}

.size-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  font-weight: 800;
}

.split-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.classes-card .product-image img {
  min-height: 100%;
}

.care-section {
  background: var(--white);
}

.care-list {
  margin: 0;
  padding-top: 4px;
}

.community {
  align-items: stretch;
  background: var(--berry);
  color: var(--white);
}

.community .eyebrow {
  color: var(--rose);
}

.community-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.community-panel {
  align-self: stretch;
  padding: clamp(28px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.community-panel h3 {
  margin-bottom: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 46px clamp(22px, 6vw, 88px);
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  max-width: 38ch;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  .site-header nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .hero,
  .intro,
  .care-section,
  .community,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .hero-media img {
    min-height: 420px;
  }

  .proof-strip,
  .values,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip div,
  .values article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .values article {
    border-color: rgba(255, 255, 255, 0.16);
  }

  .product-card,
  .featured-product {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .header-cta {
    display: none;
  }

  .site-header nav {
    overflow-x: auto;
    justify-content: flex-start;
  }

  h1 {
    max-width: 8ch;
    font-size: clamp(3.8rem, 18vw, 5.2rem);
  }

  .hero-copy,
  .intro,
  .care-section,
  .community,
  .shop-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-media,
  .hero-media img,
  .product-image {
    min-height: 320px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .split-image {
    grid-template-columns: 1fr;
  }

  .product-content {
    padding: 26px 20px;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }
}
