:root {
  --ink: #17110d;
  --ink-soft: #2b2019;
  --cream: #f3ead9;
  --cream-deep: #deceb5;
  --paper: #fffaf0;
  --ember: #e64218;
  --ember-deep: #9f2512;
  --copper: #bb6b35;
  --line: rgba(36, 25, 18, 0.18);
  --shadow: 0 28px 80px rgba(15, 8, 4, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  border: 8px solid var(--ink);
  pointer-events: none;
  content: "";
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: -5rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  color: var(--paper);
  background: var(--ember);
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 8px;
  right: 8px;
  left: 8px;
  color: var(--cream);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(19, 14, 10, 0.94);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.nav-shell {
  width: min(100% - 5rem, 1440px);
  min-height: 5.4rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.wordmark-eye {
  width: 1.7rem;
  height: 1.05rem;
  display: inline-block;
  border: 1px solid var(--cream-deep);
  border-radius: 80% 20% 80% 20%;
  background: radial-gradient(circle, #ffd169 0 10%, var(--ember) 12% 28%, #44120a 30% 45%, transparent 47%);
  transform: rotate(-45deg);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.6rem);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
}

nav a:not(.nav-cta) {
  padding-block: 0.75rem;
  border-bottom: 1px solid transparent;
}

nav a:not(.nav-cta):hover,
nav a:not(.nav-cta):focus-visible {
  border-color: var(--ember);
}

.nav-cta {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(243, 234, 217, 0.5);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--ink);
  background: var(--cream);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 9rem max(2.5rem, calc((100vw - 1440px) / 2)) 4.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  overflow: hidden;
  color: var(--cream);
  background:
    linear-gradient(115deg, rgba(19, 14, 10, 0.99) 0%, rgba(29, 17, 11, 0.98) 55%, rgba(42, 20, 12, 0.94) 100%);
}

.hero::after {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  pointer-events: none;
}

.ember-field {
  position: absolute;
  z-index: 1;
  right: -12vw;
  bottom: -30vw;
  width: 75vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 66, 24, 0.28), rgba(230, 66, 24, 0.07) 34%, transparent 69%);
  filter: blur(2px);
}

.hero-copy,
.hero-mark {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: #efa572;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.footer-brand {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(3.65rem, 6.9vw, 7.4rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.06em;
}

h1 em {
  color: var(--ember);
  font-weight: 400;
}

.hero-lede {
  max-width: 42rem;
  margin: 2.2rem 0 0;
  color: #d9cbb8;
  font-size: clamp(1.03rem, 1.35vw, 1.24rem);
  line-height: 1.75;
}

.hero-actions {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  gap: 1.7rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 3.5rem;
  padding: 0 1.4rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.button-primary {
  color: #fff6e7;
  background: var(--ember);
  box-shadow: 0 14px 32px rgba(230, 66, 24, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff5428;
  transform: translateY(-2px);
}

.text-link {
  padding-block: 0.5rem;
  border-bottom: 1px solid rgba(243, 234, 217, 0.5);
  color: var(--cream);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  color: #ff8d5c;
  border-color: var(--ember);
}

.hero-notes {
  max-width: 43rem;
  margin: 4rem 0 0;
  padding-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(243, 234, 217, 0.18);
}

.hero-notes div {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
}

.hero-notes dt {
  color: var(--ember);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-notes dd {
  margin: 0;
  color: #bcae9b;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-mark {
  align-self: center;
  justify-self: center;
}

.hero-mark img {
  position: relative;
  z-index: 2;
  width: min(42vw, 650px);
  filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.42));
  animation: settle-in 900ms cubic-bezier(0.18, 0.78, 0.22, 1) both;
}

.logo-halo {
  position: absolute;
  z-index: 1;
  inset: 14%;
  border: 1px solid rgba(255, 144, 81, 0.3);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 66, 24, 0.23), transparent 67%);
  box-shadow: 0 0 90px rgba(230, 66, 24, 0.19);
  transform: scale(1.16);
}

.logo-caption {
  margin: -0.2rem 0 0;
  color: #bfae98;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.logo-caption span {
  color: var(--ember);
}

@keyframes settle-in {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.marquee {
  position: relative;
  z-index: 3;
  padding: 1.1rem 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--ember);
  border-block: 1px solid #7e1b0a;
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: slow-drift 28s linear infinite alternate;
}

.marquee-track b {
  font-size: 0.55rem;
}

@keyframes slow-drift {
  from { transform: translateX(1.5vw); }
  to { transform: translateX(-10vw); }
}

.section-shell {
  width: min(100% - 5rem, 1440px);
  margin: 0 auto;
}

.craft {
  padding-block: clamp(6rem, 10vw, 10rem);
}

.section-kicker {
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
  color: var(--ember-deep);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-number {
  color: rgba(37, 24, 15, 0.48);
}

.craft-grid {
  padding-top: 3.2rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(3rem, 9vw, 10rem);
  align-items: start;
}

.craft h2,
.lineup h2,
.coming-soon h2 {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 6.8rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.craft-copy {
  padding-top: 0.8rem;
}

.craft-copy p {
  margin: 0 0 1.4rem;
  color: #5c4c3f;
  font-size: 1.03rem;
  line-height: 1.8;
}

.craft-copy .lead {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.45;
}

.lineup {
  width: 100%;
  padding: clamp(5rem, 9vw, 9rem) max(2.5rem, calc((100vw - 1440px) / 2));
  color: var(--cream);
  background: var(--ink-soft);
}

.section-kicker-light {
  color: #ff8c5b;
  border-color: rgba(243, 234, 217, 0.2);
}

.section-kicker-light .section-number {
  color: rgba(243, 234, 217, 0.4);
}

.lineup-heading {
  padding: 3.2rem 0 4rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}

.lineup-heading p {
  max-width: 26rem;
  margin: 0 0 0.7rem;
  color: #bcae9b;
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.product-card {
  min-height: 32rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid rgba(243, 234, 217, 0.16);
  background: #35251c;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.product-card:hover {
  border-color: rgba(255, 118, 65, 0.65);
  background: #3e2b20;
  transform: translateY(-8px);
}

.card-number {
  color: rgba(243, 234, 217, 0.42);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
}

.product-icon {
  width: 7.2rem;
  height: 7.2rem;
  display: grid;
  place-items: center;
  align-self: center;
  border: 1px solid rgba(243, 234, 217, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(230, 66, 24, 0.28), transparent 36%),
    repeating-radial-gradient(circle, transparent 0 12px, rgba(243, 234, 217, 0.09) 13px 14px);
}

.product-icon span {
  color: var(--ember);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
  font-weight: 900;
}

.product-type {
  margin: 0 0 0.8rem;
  color: #ff8d5c;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.product-card div > p:last-child {
  margin: 0;
  color: #bfae9b;
  font-size: 0.9rem;
  line-height: 1.65;
}

.quote-band {
  min-height: 30rem;
  padding: 5rem 2.5rem;
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  align-items: center;
  color: var(--ink);
  background: var(--ember);
}

.quote-mark {
  color: rgba(36, 18, 9, 0.3);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(12rem, 25vw, 26rem);
  line-height: 0.5;
  text-align: center;
}

.quote-band blockquote {
  margin: 0;
}

.quote-band blockquote p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 5.5vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.quote-band blockquote footer {
  margin-top: 2rem;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.coming-soon {
  min-height: 42rem;
  padding-block: clamp(6rem, 10vw, 10rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 10vw, 11rem);
  align-items: center;
}

.coming-soon-copy > p:not(.eyebrow):not(.launch-note) {
  max-width: 36rem;
  margin: 2rem 0;
  color: #5d4c3f;
  font-size: 1.05rem;
  line-height: 1.75;
}

.launch-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pulse {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 0 rgba(230, 66, 24, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 0.7rem rgba(230, 66, 24, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 66, 24, 0); }
}

.eye-art {
  position: relative;
  width: min(100%, 31rem);
  aspect-ratio: 1;
  justify-self: center;
  display: grid;
  place-items: center;
}

.eye-ring {
  position: absolute;
  border-radius: 50%;
}

.eye-ring-outer {
  inset: 0;
  border: 1px solid rgba(37, 23, 14, 0.2);
  background: repeating-radial-gradient(circle, transparent 0 30px, rgba(37, 23, 14, 0.05) 31px 32px);
}

.eye-ring-inner {
  inset: 17%;
  border: 2px solid var(--ink);
  box-shadow: inset 0 0 0 12px var(--cream), inset 0 0 0 13px var(--line);
}

.eye-core {
  position: relative;
  width: 35%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 0.65rem solid var(--ink);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, #ffc06d 0 4%, #fc4c20 8% 22%, #8f160a 46%, #2b0d08 72%);
  box-shadow: 0 0 55px rgba(230, 66, 24, 0.38);
}

.flame {
  color: #ffd36c;
  font-size: 2.5rem;
  text-shadow: 0 0 14px #ffb443;
  transform: translateY(-0.15rem);
}

.site-footer {
  padding: 4rem max(2.5rem, calc((100vw - 1440px) / 2)) 2rem;
  color: var(--cream);
  background: var(--ink);
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.footer-top {
  padding-bottom: 3.5rem;
}

.footer-brand {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.footer-top div > p:last-child {
  margin: 0.5rem 0 0;
  color: #b6a590;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.footer-top div > p:last-child span {
  color: var(--ember);
}

.footer-top a {
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(243, 234, 217, 0.35);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-bottom {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(243, 234, 217, 0.15);
  color: #8d7e6d;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 10rem;
  }

  .hero-copy {
    max-width: 52rem;
  }

  .hero-mark img {
    width: min(72vw, 620px);
  }

  .craft-grid,
  .coming-soon {
    grid-template-columns: 1fr;
  }

  .craft-copy {
    max-width: 45rem;
  }

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

  .product-card {
    min-height: 23rem;
    display: grid;
    grid-template-columns: auto 0.35fr 1fr;
    align-items: center;
  }

  .product-icon {
    width: 6.5rem;
    height: 6.5rem;
  }

  .eye-art {
    width: min(70vw, 29rem);
  }
}

@media (max-width: 720px) {
  body::before {
    border-width: 5px;
  }

  .site-header {
    top: 5px;
    right: 5px;
    left: 5px;
  }

  .nav-shell,
  .section-shell {
    width: min(100% - 2.5rem, 1440px);
  }

  .nav-shell {
    min-height: 4.8rem;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .wordmark {
    font-size: 0.95rem;
  }

  .hero {
    padding: 6.5rem 1.25rem 4rem;
  }

  .hero-mark {
    order: -1;
    margin-bottom: -1.6rem;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 5.1rem);
  }

  .hero-notes {
    grid-template-columns: 1fr;
  }

  .hero-mark img {
    width: min(68vw, 18rem);
  }

  .logo-caption {
    display: none;
  }

  .craft,
  .coming-soon {
    padding-block: 5rem;
  }

  .craft h2,
  .lineup h2,
  .coming-soon h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .section-kicker {
    gap: 1rem;
  }

  .lineup {
    padding: 5rem 1.25rem;
  }

  .lineup-heading {
    display: block;
  }

  .lineup-heading p {
    margin-top: 1.5rem;
  }

  .product-card {
    min-height: 29rem;
    display: flex;
  }

  .quote-band {
    min-height: 34rem;
    grid-template-columns: 1fr;
    padding-inline: 1.25rem;
  }

  .quote-mark {
    height: 5rem;
    font-size: 11rem;
    text-align: left;
  }

  .quote-band blockquote p {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }

  .site-footer {
    padding-inline: 1.25rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
