:root {
  --ink: #171513;
  --charcoal: #24221f;
  --stone: #e8e1d4;
  --bone: #f7f2e9;
  --gold: #b9894d;
  --red: #6f1f24;
  --jade: #2f746b;
  --muted: #766c61;
  --line: rgba(23, 21, 19, 0.14);
  --shadow: 0 24px 60px rgba(23, 21, 19, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bone);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--bone);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 242, 233, 0.92);
  box-shadow: 0 1px 18px rgba(23, 21, 19, 0.08);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
}

.brand-mark {
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  padding: 5px;
}
.brand-mark img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  display: block;
}
.brand-word {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-wordmark {
  position: relative;
  display: inline-grid;
  align-items: center;
  width: clamp(92px, 10vw, 132px);
  height: 28px;
}

.brand-wordmark {
  position: relative;
  display: inline-grid;
  align-items: center;
  width: clamp(92px, 10vw, 132px);
  height: 28px;
}

.wordmark {
  display: block;
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 180ms ease;
}

.wordmark-dark {
  opacity: 0;
}

.site-header.is-scrolled .wordmark-light {
  opacity: 0;
}

.site-header.is-scrolled .wordmark-dark {
  opacity: 1;
}

.footer-wordmark .wordmark-light {
  opacity: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-cta {
  border: 1px solid currentColor;
  padding: 10px 14px;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--bone);
  background: var(--charcoal);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 9, 8, 0.84), rgba(10, 9, 8, 0.35) 46%, rgba(10, 9, 8, 0.08)),
    linear-gradient(0deg, rgba(10, 9, 8, 0.48), rgba(10, 9, 8, 0));
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
  padding: 160px clamp(20px, 6vw, 76px) 82px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 16vw, 13rem);
  line-height: 0.82;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 5.3rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.hero-copy {
  max-width: 620px;
  color: rgba(247, 242, 233, 0.84);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #11100f;
}

.button.ghost {
  border-color: rgba(247, 242, 233, 0.72);
  color: var(--bone);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.intro-band > div {
  min-height: 148px;
  padding: 28px clamp(20px, 4vw, 56px);
  background: var(--ink);
  color: var(--bone);
}

.metric {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.section,
.split-section,
.product-detail,
.contact,
.site-footer {
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 38px;
}

.section-heading p,
.body-copy,
.article-item p,
.service p,
.contact p,
.site-footer p,
.product-card p,
.detail-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.compact {
  margin-bottom: 0;
}

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

.product-card {
  display: grid;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.product-art {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 0;
  background: var(--charcoal);
  cursor: pointer;
}
.product-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-art::before,
.product-art::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(247, 242, 233, 0.52);
  transform: rotate(45deg);
}

.product-art::after {
  inset: 31%;
  border-color: rgba(184, 137, 77, 0.72);
}

.product-art span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: var(--bone);
  font-weight: 800;
  text-transform: uppercase;
}

.product-art-1 { background: radial-gradient(circle at 50% 42%, #b9894d 0 12%, transparent 13%), linear-gradient(135deg, #1f1d1a, #514337); }
.product-art-2 { background: linear-gradient(135deg, #171513 0 54%, #6f1f24 55%); }
.product-art-3 { background: linear-gradient(135deg, #2f746b, #171513 58%); }
.product-art-4 { background: linear-gradient(135deg, #3a2019, #b9894d); }
.product-art-5 { background: radial-gradient(circle at 52% 46%, #2f746b 0 9%, transparent 10%), #24221f; }
.product-art-6 { background: linear-gradient(135deg, #e8e1d4, #766c61); }

.product-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  align-items: baseline;
}

.product-meta p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-meta h3,
.product-meta span {
  margin: 0;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  background: var(--ink);
  color: var(--bone);
}

.detail-media {
  display: grid;
  place-items: center;
  min-height: 420px;
  background:
    linear-gradient(90deg, rgba(184, 137, 77, 0.13) 1px, transparent 1px),
    linear-gradient(rgba(184, 137, 77, 0.13) 1px, transparent 1px),
    #201e1b;
  background-size: 28px 28px;
}

.watch-render {
  position: relative;
  width: min(70vw, 320px);
  aspect-ratio: 1;
}

.watch-render::before,
.watch-render::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 24%;
  height: 34%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #111, #44382f, #111);
  border: 1px solid rgba(184, 137, 77, 0.5);
}

.watch-render::before { top: -19%; }
.watch-render::after { bottom: -19%; }

.watch-case {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, #161412 52%, #c79b60 53% 58%, #111 59% 68%, #766c61 69%);
  box-shadow: var(--shadow);
}

.watch-face {
  position: relative;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(247, 242, 233, 0.26);
  background:
    conic-gradient(from 12deg, rgba(184, 137, 77, 0.2), transparent 10%, rgba(184, 137, 77, 0.4) 12%, transparent 18%),
    radial-gradient(circle, #26211d, #111);
}

.watch-face span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3px;
  height: 42%;
  background: var(--gold);
  transform-origin: bottom;
}

.watch-face span:nth-child(1) { transform: translate(-50%, -100%) rotate(32deg); }
.watch-face span:nth-child(2) { height: 32%; transform: translate(-50%, -100%) rotate(112deg); }
.watch-face span:nth-child(3) { height: 18%; transform: translate(-50%, -100%) rotate(220deg); }

.spec-list {
  display: grid;
  gap: 1px;
  margin: 28px 0;
  background: rgba(247, 242, 233, 0.14);
}

.spec-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 14px 0;
  background: var(--ink);
}

.spec-list dt {
  color: var(--gold);
  font-weight: 800;
}

.spec-list dd {
  margin: 0;
  color: rgba(247, 242, 233, 0.76);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(32px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}

.body-copy {
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.lookbook {
  background: var(--stone);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

figure {
  margin: 0;
}

.look {
  min-height: 420px;
  background: #222;
}

.look-one {
  background:
    linear-gradient(135deg, transparent 0 58%, rgba(184, 137, 77, 0.82) 59% 62%, transparent 63%),
    linear-gradient(120deg, #171513, #2f746b 56%, #e8e1d4);
}

.look-two {
  background:
    radial-gradient(circle at 54% 44%, #b9894d 0 13%, transparent 14%),
    linear-gradient(155deg, #6f1f24, #171513 58%);
}

.look-three {
  background:
    linear-gradient(45deg, rgba(247, 242, 233, 0.22) 25%, transparent 25% 50%, rgba(247, 242, 233, 0.22) 50% 75%, transparent 75%),
    #3a2019;
  background-size: 54px 54px;
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.journal {
  background: var(--bone);
}

.article-list,
.faq-grid {
  display: grid;
  gap: 14px;
}

.article-item,
details {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

details summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1.08rem;
}

details p {
  margin: 14px 0 0;
}

.service {
  background: #fffaf1;
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
  background: var(--red);
  color: var(--bone);
}

.contact p {
  color: rgba(247, 242, 233, 0.78);
}

.signup-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
  background: rgba(23, 21, 19, 0.26);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(247, 242, 233, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(247, 242, 233, 0.26);
  border-radius: 0;
  padding: 0 14px;
  color: var(--bone);
  background: rgba(23, 21, 19, 0.38);
  font: inherit;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  background: #11100f;
  color: var(--bone);
}

.site-footer p {
  margin: 12px 0 0;
  color: rgba(247, 242, 233, 0.68);
}

.footer-links a {
  color: rgba(247, 242, 233, 0.76);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid currentColor;
    background: transparent;
    color: currentColor;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(247, 242, 233, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .intro-band,
  .product-grid,
  .product-detail,
  .split-section,
  .lookbook-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(10, 9, 8, 0.78), rgba(10, 9, 8, 0.28));
  }

  .hero-content {
    padding-top: 130px;
  }

  .look {
    min-height: 300px;
  }
}

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

  .hero-content {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 54px;
  }

  h1 {
    font-size: clamp(4.3rem, 25vw, 7rem);
  }

  .section,
  .split-section,
  .product-detail,
  .contact,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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