:root {
  --ivory: #f4f1ea;
  --cream: #e8e0d2;
  --stone: #d4cdc1;
  --charcoal: #111111;
  --soft-black: #1d1d1b;
  --white: #ffffff;
  --burgundy: #4a171c;
  --olive: #66624a;
  --line: rgba(17, 17, 17, 0.16);
  --muted: rgba(17, 17, 17, 0.62);
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button {
  font: inherit;
  cursor: pointer;
}

body.shop-open {
  overflow: hidden;
}

.announce {
  height: 30px;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--ivory);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.announce-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.announce span {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 34px;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(244, 241, 234, 0.94);
  backdrop-filter: blur(18px);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 0 clamp(18px, 4vw, 56px);
}

.nav-links,
.nav-actions,
.line-tabs,
.actions {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  flex-wrap: wrap;
}

.nav-actions {
  justify-content: flex-end;
}

.nav a,
.line-tabs a,
.eyebrow,
.btn,
.meta,
.product small,
.footer h3 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}

.hero {
  min-height: min(calc(100svh - 106px), 860px);
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(20px, 4vw, 62px);
  align-items: stretch;
  padding: clamp(36px, 6vw, 86px) clamp(18px, 4vw, 56px) clamp(46px, 7vw, 92px);
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 24px;
  min-width: 0;
  width: 100%;
  max-width: 620px;
}

.eyebrow {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
}

h1 {
  font-size: clamp(76px, 7.8vw, 118px);
  line-height: 0.82;
}

.hero-copy p:not(.eyebrow),
.section-lede,
.product p,
.footer a {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy p:not(.eyebrow) {
  max-width: min(40ch, 100%);
  margin: 0;
  font-size: 17px;
}

.hero-media {
  min-width: 0;
  width: 100%;
  min-height: 680px;
  border: 1px solid var(--line);
  background: var(--cream);
  overflow: hidden;
}

.line-tabs {
  padding: 16px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft-black);
  color: var(--ivory);
}

.line-tabs a {
  opacity: 0.7;
}

.line-tabs a.active {
  opacity: 1;
  color: var(--cream);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--ivory);
}

.btn.light {
  border-color: var(--ivory);
  background: var(--ivory);
  color: var(--charcoal);
}

.link-btn {
  padding: 9px 0;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-pad {
  padding: clamp(68px, 9vw, 122px) clamp(18px, 4vw, 56px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 4vw, 54px);
}

.section-title {
  max-width: 12ch;
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.88;
}

.section-lede {
  max-width: 460px;
  margin: 0;
}

.lookbook {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.lookbook figure {
  margin: 0;
  min-height: 560px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  overflow: hidden;
}

.products {
  background: var(--soft-black);
  color: var(--ivory);
}

.products .section-lede {
  color: rgba(244, 241, 234, 0.72);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(244, 241, 234, 0.18);
  border-left: 1px solid rgba(244, 241, 234, 0.18);
}

.product {
  display: grid;
  gap: 16px;
  padding: 16px;
  border-right: 1px solid rgba(244, 241, 234, 0.18);
  border-bottom: 1px solid rgba(244, 241, 234, 0.18);
}

.product figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  background: var(--cream);
  overflow: hidden;
}

.product figure img {
  transition:
    opacity 280ms ease,
    transform 520ms ease;
}

.product figure img + img {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product:hover figure img:first-child {
  opacity: 0;
  transform: scale(1.03);
}

.product:hover figure img + img {
  opacity: 1;
  transform: scale(1.03);
}

.product h3 {
  font-size: 34px;
  line-height: 1;
}

.product p {
  margin: 0;
  color: rgba(244, 241, 234, 0.72);
}

.meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(244, 241, 234, 0.86);
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.add-to-cart {
  min-height: 44px;
  border: 1px solid var(--ivory);
  background: var(--ivory);
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-note {
  color: rgba(244, 241, 234, 0.58);
  font-size: 12px;
  line-height: 1.5;
}

.cart-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--ivory);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shop-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: min(430px, 100vw);
  height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 22px;
  background: var(--ivory);
  color: var(--charcoal);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.16);
  transform: translateX(105%);
  transition: transform 280ms ease;
}

.shop-drawer.open {
  transform: translateX(0);
}

.shop-drawer-top,
.shop-drawer-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.shop-drawer-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 22px;
}

.shop-items {
  display: grid;
  align-content: start;
  gap: 14px;
  overflow: auto;
}

.shop-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.shop-item img {
  aspect-ratio: 1;
  background: var(--cream);
}

.shop-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1;
}

.shop-item span {
  color: var(--muted);
  font-size: 13px;
}

.shop-empty {
  color: var(--muted);
  line-height: 1.65;
}

.shop-drawer-footer {
  display: grid;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.checkout-btn {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--ivory);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-band {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(280px, 1fr);
  align-items: end;
  gap: clamp(22px, 4vw, 56px);
  background: var(--cream);
}

.story-band figure {
  margin: 0;
  height: 100%;
  min-height: 680px;
  overflow: hidden;
}

.story-copy {
  padding: clamp(32px, 6vw, 86px) clamp(18px, 4vw, 56px);
}

.footer {
  background: var(--charcoal);
  color: var(--ivory);
  padding: clamp(54px, 8vw, 92px) clamp(18px, 4vw, 56px) 22px;
}

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

.footer h3 {
  margin: 0 0 16px;
}

.footer a {
  display: block;
  width: max-content;
  margin: 9px 0;
  color: rgba(244, 241, 234, 0.7);
}

.footer-brand {
  margin-top: clamp(48px, 9vw, 116px);
  font-family: var(--serif);
  font-size: clamp(86px, 21vw, 320px);
  line-height: 0.75;
  letter-spacing: 0.04em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 241, 234, 0.18);
  color: rgba(244, 241, 234, 0.62);
  font-size: 12px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .hero,
  .story-band {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .story-band figure {
    min-height: 560px;
  }

  .lookbook,
  .product-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .announce,
  .announce span {
    height: 28px;
  }

  .nav {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: auto;
    padding-block: 14px;
  }

  .nav-links,
  .nav-actions {
    justify-content: center;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(74px, 24vw, 112px);
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 28ch;
  }

  .hero-media,
  .story-band figure {
    min-height: 460px;
  }

  .section-head {
    display: grid;
  }

  .lookbook,
  .product-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .lookbook figure {
    min-height: 470px;
  }

  .footer-bottom {
    display: grid;
  }
}
