:root {
  --bg: #050505;
  --surface: #0f0f0f;
  --surface-soft: #161616;
  --text: #f5efe1;
  --muted: #bbb1a0;
  --line: rgba(216, 170, 63, 0.2);
  --gold: #d8aa3f;
  --gold-soft: #f3de9b;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(216, 170, 63, 0.12), transparent 28%),
    linear-gradient(180deg, #040404 0%, #0a0a0a 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

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

.site-header,
.hero,
.content-section,
.site-footer {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark,
.crest-ring {
  border: 1px solid rgba(243, 222, 155, 0.55);
  background: linear-gradient(135deg, rgba(243, 222, 155, 0.16), rgba(216, 170, 63, 0.04));
  box-shadow: inset 0 0 20px rgba(243, 222, 155, 0.08);
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  color: var(--gold-soft);
}

.brand-kicker,
.eyebrow,
.shoe-meta p,
.filter-row span,
.crest-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--gold-soft);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
}

.nav-button,
.primary-button,
.secondary-button {
  border-radius: 999px;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.nav-button,
.primary-button {
  border: 1px solid rgba(243, 222, 155, 0.35);
  background: linear-gradient(180deg, rgba(216, 170, 63, 0.22), rgba(216, 170, 63, 0.1));
  color: var(--text);
  box-shadow: var(--shadow);
}

.nav-button {
  padding: 12px 18px;
}

.hero {
  min-height: calc(100vh - 114px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0 72px;
}

.hero-copy h2 {
  margin-top: 12px;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.95;
  max-width: 10ch;
}

.hero-text,
.two-column p,
.feature-card p,
.callout p,
.crest-copy,
.footer-details p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 58ch;
  margin: 20px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  padding: 15px 22px;
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.crest-card,
.feature-card,
.callout {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow);
}

.crest-card {
  width: min(100%, 400px);
  padding: 32px;
  border-radius: 28px;
}

.crest-ring {
  width: 220px;
  height: 220px;
  margin: 28px auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.crest-ring span {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  color: var(--gold);
}

.content-section {
  padding: 72px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section-heading h3 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 14ch;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.feature-card {
  padding: 28px;
  border-radius: 22px;
}

.feature-number {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.feature-card h4 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.callout {
  padding: 36px;
  border-radius: 28px;
  text-align: center;
}

.callout h3 {
  margin: 12px auto 0;
  max-width: 13ch;
  font-size: clamp(2rem, 4vw, 3rem);
}

.callout p {
  max-width: 60ch;
  margin: 18px auto 28px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 48px;
}

.footer-details {
  text-align: right;
}

.nav-button:hover,
.primary-button:hover,
.secondary-button:hover,
.site-nav a:hover {
  transform: translateY(-2px);
}

.fade-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.fade-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-header,
  .hero,
  .site-footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  .hero-panel {
    width: 100%;
    justify-content: flex-start;
  }

  .two-column,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .footer-details {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .content-section,
  .site-footer {
    width: min(100% - 28px, 1120px);
  }

  .hero-copy h2 {
    max-width: none;
  }

  .crest-ring {
    width: 180px;
    height: 180px;
  }
}
