*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --color-bg: #140706;
  --color-bg-soft: #25100d;
  --color-surface: rgba(63, 24, 15, 0.72);
  --color-surface-strong: rgba(83, 31, 19, 0.9);
  --color-border: rgba(243, 205, 121, 0.22);
  --color-border-strong: rgba(243, 205, 121, 0.45);
  --color-gold: #e6bf66;
  --color-gold-soft: #f6e4b0;
  --color-gold-deep: #a8762b;
  --color-text: #f8f0df;
  --color-text-soft: #dfccb1;
  --color-shadow: rgba(0, 0, 0, 0.32);
  --color-highlight: rgba(230, 191, 102, 0.12);
  --font-display: "Cormorant Garamond", "Baskerville", "Times New Roman", serif;
  --font-body: "Avenir Next", "Segoe UI", sans-serif;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-lg: 0 28px 60px var(--color-shadow);
  --shadow-md: 0 18px 36px rgba(0, 0, 0, 0.2);
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(230, 191, 102, 0.15), transparent 28%),
    radial-gradient(circle at right center, rgba(124, 83, 24, 0.28), transparent 24%),
    linear-gradient(160deg, #190907 0%, #2d110e 44%, #120504 100%);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

button {
  font: inherit;
}

.site-shell {
  width: min(100%, calc(var(--max-width) + 64px));
  margin: 0 auto;
  padding: 24px 20px 40px;
  padding-top: 68px;
}

.hero,
.section,
.footer {
  position: relative;
}

.hero {
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(18, 5, 4, 0.96), rgba(61, 19, 13, 0.88)),
    linear-gradient(180deg, rgba(230, 191, 102, 0.08), transparent);
  box-shadow: var(--shadow-lg);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  inset: auto -80px -120px auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(230, 191, 102, 0.22), transparent 70%);
}

.hero::after {
  inset: -120px auto auto -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(246, 228, 176, 0.1), transparent 70%);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand__mark {
  display: inline-flex;
  width: 78px;
  height: 78px;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid var(--color-border-strong);
  background: linear-gradient(180deg, rgba(246, 228, 176, 0.12), rgba(49, 16, 10, 0.64));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.brand__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.brand__text-wrap {
  display: flex;
  flex-direction: column;
}

.brand__name,
.footer__brand {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.4vw, 2.65rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand__glyph {
  display: inline-block;
  margin-right: 0.04em;
}

.brand__glyph--upside-down {
  transform: rotate(180deg);
  transform-origin: center;
}

.brand__tag {
  color: var(--color-text-soft);
  font-size: 0.88rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--color-text-soft);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--color-text);
  background: rgba(246, 228, 176, 0.08);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: rgba(246, 228, 176, 0.06);
  color: var(--color-text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: center;
  padding-top: 46px;
}

.eyebrow,
.hero-card__label,
.feature-panel__kicker {
  margin: 0 0 12px;
  color: var(--color-gold-soft);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.05;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 7vw, 6.2rem);
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
}

h3 {
  font-size: 1.55rem;
}

.hero__lede,
.section-copy,
.statement-grid__lead,
.statement-grid__body,
.hero-card p,
.feature-panel p,
.feature-list li,
.footer__copy {
  color: var(--color-text-soft);
}

.hero__lede {
  max-width: 56ch;
  font-size: 1.08rem;
  margin: 18px 0 0;
}

.hero__actions,
.tag-row,
.hero-card__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--solid {
  color: #230a07;
  background: linear-gradient(135deg, #f7df95, #c99331);
  box-shadow: 0 14px 24px rgba(201, 147, 49, 0.18);
}

.button--ghost {
  color: var(--color-gold-soft);
  border-color: var(--color-border-strong);
  background: rgba(246, 228, 176, 0.05);
}

.hero-card,
.feature-panel,
.callout,
.collection-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.hero-card {
  padding: 28px;
}

.hero-card__grid {
  margin-top: 22px;
}

.hero-card__grid-item,
.tag {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(243, 205, 121, 0.16);
  background: rgba(246, 228, 176, 0.05);
}

.hero-card__grid-item strong,
.tag {
  display: block;
  color: var(--color-gold-soft);
}

.section {
  padding: 72px 6px 0;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 28px;
}

.statement-grid,
.experience-layout,
.callout {
  display: grid;
  gap: 20px;
}

.statement-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.statement-grid__copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.statement-grid__lead {
  margin: 0;
  font-size: 1.28rem;
}

.statement-grid__body {
  margin: 0;
}

.statement-photo {
  margin: 0;
  min-height: 100%;
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(246, 228, 176, 0.12), rgba(61, 19, 13, 0.55)),
    rgba(63, 24, 15, 0.72);
  box-shadow: var(--shadow-lg);
}

.statement-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
}

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

.collection-card {
  padding: 22px;
}

.collection-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(247, 223, 149, 0.18), rgba(124, 83, 24, 0.3));
  color: var(--color-gold-soft);
  font-size: 1.3rem;
}

.collection-card p {
  margin: 14px 0 0;
  color: var(--color-text-soft);
}

.experience-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-panel {
  padding: 26px;
}

.feature-panel--accent {
  background:
    linear-gradient(160deg, rgba(230, 191, 102, 0.12), rgba(61, 19, 13, 0.92)),
    rgba(83, 31, 19, 0.9);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f7df95, #c99331);
  box-shadow: 0 0 0 4px rgba(230, 191, 102, 0.1);
}

.tag {
  font-size: 0.92rem;
}

.section--callout {
  padding-bottom: 16px;
}

.callout {
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: center;
  padding: 28px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 6px 10px;
  align-items: center;
}

@media (max-width: 1100px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__content,
  .statement-grid,
  .experience-layout,
  .callout {
    grid-template-columns: 1fr;
  }

  .hero__content {
    padding-top: 34px;
  }
}

/* ── Under Reconstruction ─────────────────────────────────────────────────── */

.wip-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: repeating-linear-gradient(
    -45deg,
    #1a0b05,
    #1a0b05 12px,
    #251008 12px,
    #251008 24px
  );
  border-bottom: 2px solid var(--color-gold);
  color: var(--color-gold-soft);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  text-transform: uppercase;
}

.wip-banner__icon {
  font-size: 1.1rem;
}

.wip-shield {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 20px;
  pointer-events: none;
}

.wip-shield__card {
  pointer-events: auto;
  text-align: center;
  max-width: 520px;
  width: 100%;
  padding: 44px 36px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(18, 5, 4, 0.97), rgba(61, 19, 13, 0.97));
  box-shadow:
    0 0 0 1px rgba(230, 191, 102, 0.08),
    0 40px 80px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.wip-shield__crown {
  font-size: 2.6rem;
  margin-bottom: 18px;
  line-height: 1;
}

.wip-shield__label {
  margin: 0 0 10px;
  color: var(--color-gold-soft);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.wip-shield__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.1;
  color: var(--color-text);
}

.wip-shield__body {
  margin: 0 0 28px;
  color: var(--color-text-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.wip-shield__cta {
  font-size: 0.95rem;
}

.wip-blurred {
  filter: blur(4px) brightness(0.55);
  pointer-events: none;
  user-select: none;
}

/* ── End Under Reconstruction ─────────────────────────────────────────────── */

@media (max-width: 760px) {
  .wip-shield__card {
    padding: 32px 22px;
  }

  .site-shell {
    padding-inline: 14px;
  }

  .hero {
    padding: 20px;
    border-radius: 28px;
  }

  .topbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 10px;
  }

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

  .nav-links a {
    border: 1px solid rgba(243, 205, 121, 0.12);
    background: rgba(246, 228, 176, 0.04);
  }

  h1 {
    max-width: none;
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

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

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