@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
  --ivory: #fffaf2;
  --paper: #f8f0e4;
  --gold: #b58a45;
  --gold-soft: #e8d1a0;
  --burgundy: #7d1d2b;
  --ink: #2a1b18;
  --muted: #76665e;
  --line: rgba(181, 138, 69, .28);
  --shadow: 0 24px 70px rgba(54, 27, 20, .12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(232,209,160,.28), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, var(--paper) 100%);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 20px;
  background: rgba(255, 250, 242, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(181,138,69,.18);
}

.nav-links {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #6d5650;
}

.nav-links a:hover {
  color: var(--burgundy);
  background: rgba(181,138,69,.10);
}

.menu-toggle {
  display: none;
}

.brand-hero {
  text-align: center;
  padding: clamp(28px, 5vw, 60px) 20px 22px;
}

.brand-logo {
  display: inline-flex;
  justify-content: center;
}

.brand-logo img {
  width: min(780px, 92vw);
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(86,45,22,.10));
}

.brand-kicker {
  margin: 6px 0 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 800;
  font-size: 12px;
}

.page-logo {
  padding-bottom: 8px;
}

.page-logo .brand-logo img {
  width: min(520px, 86vw);
  max-height: 170px;
}

.category-marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, #6d1825, #8b2432, #b58a45);
  color: #fffaf3;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 4px;
  padding: 14px 0;
  animation: marquee 32s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-track a {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(16px, 1.8vw, 22px);
  white-space: nowrap;
  padding: 0 18px;
}

.marquee-track a::after {
  content: "✦";
  color: #f5d58c;
  margin-left: 26px;
  font-size: 13px;
}

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

main {
  overflow: hidden;
}

.hero-section {
  max-width: 1180px;
  margin: 52px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.hero-copy {
  background: rgba(255,255,255,.64);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow);
}

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

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
  color: var(--burgundy);
}

h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: -.04em;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -.035em;
}

h3 {
  margin: 0 0 8px;
  font-size: 25px;
}

p {
  line-height: 1.75;
  color: var(--muted);
}

.hero-copy p:not(.eyebrow) {
  font-size: 17px;
  max-width: 560px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
}

.primary {
  background: linear-gradient(135deg, var(--burgundy), var(--gold));
  color: #fffaf2;
  box-shadow: 0 14px 32px rgba(125,29,43,.18);
}

.secondary {
  background: var(--ivory);
  border-color: var(--line);
  color: var(--burgundy);
}

.ghost {
  background: rgba(255,255,255,.72);
  border-color: var(--line);
  color: var(--burgundy);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 34px;
  border: 1px solid rgba(181,138,69,.22);
  box-shadow: var(--shadow);
}

.section {
  max-width: 1180px;
  margin: 76px auto 0;
  padding: 0 20px;
}

.collection-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.collection-links a {
  padding: 24px 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.60);
  color: var(--burgundy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(54,27,20,.08);
}

.section-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 32px;
}

.section-head.compact {
  margin-bottom: 24px;
}

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

.lookbook-grid article {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(54,27,20,.09);
}

.lookbook-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.lookbook-grid h3 {
  padding: 18px 20px 22px;
  font-size: 22px;
}

.craft-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.craft-copy {
  padding: 34px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,250,242,.72));
  box-shadow: var(--shadow);
}

.video-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.video-row video,
.video-row img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid var(--line);
}

.process-grid,
.subpage-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-grid article,
.feature-panel,
.contact-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 16px 42px rgba(54,27,20,.08);
}

.process-grid span,
.collection-card span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .12em;
}

.contact-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(32px, 6vw, 64px);
}

footer {
  margin-top: 80px;
  padding: 44px 20px;
  text-align: center;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.45);
}

footer img {
  width: min(340px, 80vw);
  margin: 0 auto 8px;
}

/* Subpages */
.subpage-hero {
  max-width: 1120px;
  margin: 42px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.subpage-hero > div {
  padding: clamp(28px, 5vw, 54px);
  border-radius: 34px;
  background: rgba(255,255,255,.66);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.subpage-hero img {
  width: 100%;
  aspect-ratio: 16 / 12;
  object-fit: cover;
  border-radius: 34px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.subpage-content {
  grid-template-columns: 1.2fr .8fr;
}

.feature-panel ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 2;
}

.muted-panel {
  background: linear-gradient(135deg, rgba(125,29,43,.06), rgba(181,138,69,.12));
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
    margin: 0 auto 8px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.76);
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    text-align: center;
  }

  .hero-section,
  .craft-grid,
  .subpage-hero,
  .subpage-content {
    grid-template-columns: 1fr;
  }

  .collection-links,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .brand-logo img {
    width: min(620px, 94vw);
  }
}

@media (max-width: 620px) {
  .brand-hero {
    padding-top: 24px;
  }

  .brand-logo img {
    width: 96vw;
    max-height: 190px;
  }

  .hero-section {
    margin-top: 30px;
  }

  .hero-copy {
    padding: 26px;
    border-radius: 26px;
  }

  .collection-links,
  .process-grid,
  .video-row {
    grid-template-columns: 1fr;
  }

  .video-row video,
  .video-row img {
    min-height: 360px;
  }

  footer img {
    width: min(300px, 84vw);
  }
}
