:root {
  --black: #050604;
  --charcoal: #11130f;
  --ink: #171a14;
  --green: #082f20;
  --green-2: #10583a;
  --green-3: #183f2c;
  --gold: #f2bf24;
  --gold-2: #d49b18;
  --cream: #f4efe1;
  --muted: #b9b29f;
  --line: rgba(244, 239, 225, 0.14);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(16, 88, 58, 0.28), transparent 34rem),
    linear-gradient(180deg, #07140d 0%, var(--black) 34rem, #07140d 100%);
  color: var(--cream);
  font-family: Arial, Helvetica, system-ui, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(242, 191, 36, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 88, 58, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
  z-index: -1;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 8px clamp(18px, 4vw, 42px);
  background: linear-gradient(180deg, rgba(7, 20, 13, 0.96), rgba(7, 20, 13, 0.62));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(242, 191, 36, 0.12);
}

.brand img {
  width: auto;
  height: 42px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 26px;
  color: rgba(244, 239, 225, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--gold);
}

.header-cta {
  justify-self: end;
  border: 1px solid rgba(242, 191, 36, 0.46);
  background: rgba(8, 47, 32, 0.72);
  color: var(--gold);
  padding: 10px 18px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-bg video,
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.9) contrast(1.04);
  opacity: 0.78;
}

.hero-bg video {
  z-index: 1;
}

.hero-bg img {
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 4, 0.96) 0%, rgba(8, 47, 32, 0.83) 43%, rgba(5, 6, 4, 0.16) 100%),
    linear-gradient(180deg, rgba(5, 6, 4, 0.12), #07140d 96%);
}

.hero-content {
  width: min(var(--max), calc(100% - 36px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 102px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.hero-copy {
  max-width: 740px;
}

.hero-logo {
  width: min(330px, 66vw);
  max-height: 160px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 26px;
}

.eyebrow,
.section-label,
.panel-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 7.7vw, 7.8rem);
  line-height: 1;
}

.hero-subtitle {
  max-width: 620px;
  color: rgba(244, 239, 225, 0.78);
  font-size: clamp(1.05rem, 1.4vw, 1.32rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 22px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button.primary {
  background: var(--gold);
  color: #071108;
  box-shadow: 0 16px 40px rgba(242, 191, 36, 0.2);
}

.button.ghost {
  border-color: rgba(244, 239, 225, 0.22);
  color: var(--cream);
  background: rgba(244, 239, 225, 0.04);
}

.button.full {
  width: 100%;
  gap: 10px;
}

.reservation-panel {
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(160deg, rgba(16, 88, 58, 0.82), rgba(7, 20, 13, 0.88) 58%),
    rgba(13, 23, 16, 0.86);
  border: 1px solid rgba(242, 191, 36, 0.28);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.reservation-panel h2 {
  margin-bottom: 24px;
  font-size: clamp(2.15rem, 3.2vw, 3.5rem);
  line-height: 1;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(244, 239, 225, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-form input {
  width: 100%;
  height: 52px;
  border: 1px solid rgba(244, 239, 225, 0.16);
  background: rgba(5, 6, 4, 0.66);
  color: var(--cream);
  padding: 0 15px;
  font: inherit;
  outline: none;
}

.lead-form input:focus {
  border-color: var(--gold);
}

.microcopy,
.form-status {
  color: rgba(244, 239, 225, 0.64);
  font-size: 0.86rem;
  line-height: 1.55;
}

.form-status {
  min-height: 1.4em;
  color: var(--gold);
  font-weight: 800;
}

.section {
  padding: clamp(76px, 9vw, 140px) clamp(18px, 4vw, 48px);
  border-top: 1px solid rgba(244, 239, 225, 0.08);
}

.brand-section,
.founders {
  background:
    linear-gradient(135deg, rgba(8, 47, 32, 0.94), rgba(5, 6, 4, 0.94) 68%),
    var(--green);
}

.products {
  position: relative;
}

.products::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8, 47, 32, 0.28), rgba(8, 47, 32, 0.06));
}

.section-grid,
.founders,
.products,
.pillars,
.final-cta {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: clamp(34px, 8vw, 100px);
}

.brand-section .section-label {
  font-size: clamp(1.15rem, 1.5vw, 1.55rem);
  line-height: 1;
}

.prose {
  max-width: 850px;
}

.prose h2,
.section-heading h2,
.founders-intro h2,
.final-cta h2 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 5.8vw, 5.9rem);
  line-height: 1;
}

.prose p,
.section-heading p,
.founders-intro p,
.product-manifest,
.founder-rule {
  color: rgba(244, 239, 225, 0.78);
  font-size: clamp(1.04rem, 1.4vw, 1.28rem);
  line-height: 1.8;
}

.prose .standout,
.standout,
.pillars-line {
  color: var(--cream);
  font-weight: 900;
}

.pillars-line {
  color: var(--gold);
  text-transform: uppercase;
}

.founder {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.founder-media {
  min-height: 600px;
  border: 1px solid rgba(244, 239, 225, 0.12);
  box-shadow: 0 28px 90px rgba(8, 47, 32, 0.36);
  overflow: hidden;
  background: var(--charcoal);
}

.founder-media img,
.founder-media video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  object-position: center;
  background: var(--charcoal);
}

.compact p {
  font-size: 1rem;
  line-height: 1.72;
}

.section-heading {
  max-width: 900px;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
  margin-top: 48px;
}

.product-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 225, 0.12);
  background: var(--green);
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.product-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  background: var(--green);
}

.product-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(5, 6, 4, 0.94));
}

.product-card h3 {
  margin-bottom: 6px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
}

.product-card img[alt*="Essential"] {
  object-position: center;
}

.product-card p {
  margin-bottom: 0;
  color: rgba(244, 239, 225, 0.78);
}

.product-manifest {
  max-width: 900px;
  margin: 42px 0 0;
  color: var(--cream);
  font-weight: 800;
}

.founders {
  display: grid;
  gap: 42px;
}

.founders-intro {
  max-width: 980px;
}

.founders-intro .lead {
  color: var(--gold);
  font-weight: 900;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.benefits article {
  min-height: 270px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(244, 239, 225, 0.035), rgba(16, 88, 58, 0.13));
}

.benefits span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.benefits h3 {
  margin: 18px 0 14px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
}

.benefits p {
  color: rgba(244, 239, 225, 0.7);
  font-size: 0.95rem;
  line-height: 1.65;
}

.founder-rule {
  max-width: 760px;
  color: var(--cream);
  font-weight: 900;
}

.pillars {
  text-align: center;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(242, 191, 36, 0.22);
  border: 1px solid rgba(242, 191, 36, 0.22);
}

.pillar-grid div {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 30px 22px;
  background:
    linear-gradient(135deg, rgba(16, 88, 58, 0.9), rgba(5, 6, 4, 0.94)),
    var(--green);
  font-family: "Bebas Neue", Impact, sans-serif;
  line-height: 1;
  text-align: center;
  overflow: hidden;
}

.pillar-grid span {
  max-width: 10ch;
  color: var(--cream);
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  line-height: 0.96;
}

.pillar-grid strong {
  display: block;
  max-width: 11ch;
  color: var(--gold);
  font-weight: 400;
  font-size: clamp(2.4rem, 3.3vw, 3.8rem);
  line-height: 0.96;
}

.final-cta {
  display: grid;
  justify-items: center;
  text-align: center;
}

.final-cta .final-wolf {
  width: min(420px, 68vw);
  max-height: 330px;
  object-fit: contain;
  margin-bottom: 34px;
  opacity: 0.86;
  filter: drop-shadow(0 22px 48px rgba(4, 17, 10, 0.38));
}

.final-cta h2 {
  max-width: 880px;
}

.final-cta p {
  margin-top: 20px;
  color: rgba(244, 239, 225, 0.68);
}

.footer {
  padding: 54px 18px 64px;
  text-align: center;
  border-top: 1px solid rgba(244, 239, 225, 0.08);
}

.footer img {
  width: min(360px, 76vw);
  max-height: 230px;
  object-fit: contain;
  margin: 0 auto 22px;
}

.footer p {
  color: var(--cream);
  font-weight: 900;
}

.footer span {
  color: rgba(244, 239, 225, 0.48);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

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

  .hero-content {
    align-items: center;
    padding-top: 98px;
  }

  h1 {
    max-width: 680px;
    font-size: clamp(3.8rem, 12vw, 6.4rem);
  }

  .prose h2,
  .section-heading h2,
  .founders-intro h2,
  .final-cta h2 {
    font-size: clamp(3rem, 9vw, 5rem);
  }

  .hero-bg video,
  .hero-bg img {
    object-position: center center;
  }

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

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

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    padding: 7px 14px;
  }

  .brand img {
    height: 38px;
  }

  .header-cta {
    padding: 9px 12px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 6, 4, 0.9), rgba(8, 47, 32, 0.78) 50%, #07140d 96%),
      linear-gradient(90deg, rgba(5, 6, 4, 0.54), rgba(5, 6, 4, 0.18));
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-top: 86px;
    padding-bottom: 48px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3.2rem, 16vw, 5rem);
    line-height: 1.02;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .reservation-panel {
    padding: 22px;
  }

  .product-showcase,
  .benefits,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card img,
  .product-video {
    min-height: 430px;
  }

  .founder-media,
  .founder-media img,
  .founder-media video {
    min-height: 500px;
  }

  .benefits article,
  .pillar-grid div {
    min-height: auto;
  }

  .pillar-grid div {
    justify-content: flex-start;
    text-align: left;
    align-items: flex-start;
    min-height: 170px;
  }

  .pillar-grid span,
  .pillar-grid strong {
    max-width: 100%;
  }
}

.thanks-page {
  min-height: 100svh;
  background:
    linear-gradient(rgba(7, 20, 13, 0.88), rgba(7, 20, 13, 0.92)),
    url("assets/brand/dual-diamonds.png") center top / cover no-repeat,
    #07140d;
}

.thanks-shell {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 8vw, 110px) 0 clamp(64px, 8vw, 100px);
  text-align: center;
}

.thanks-mark {
  width: 74px;
  height: auto;
  margin: 0 auto 22px;
}

.thanks-kicker,
.thanks-card h2 {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.thanks-shell h1 {
  max-width: 780px;
  margin: 0 auto 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  font-weight: 700;
  line-height: 1.16;
  text-transform: uppercase;
}

.thanks-shell h1 span {
  color: var(--gold);
}

.thanks-lead {
  max-width: 760px;
  margin: 0 auto 58px;
  color: rgba(244, 239, 225, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.24rem, 2vw, 1.7rem);
  line-height: 1.65;
}

.thanks-card {
  max-width: 850px;
  margin: 0 auto 64px;
  padding: clamp(28px, 5vw, 54px);
  text-align: left;
  background: rgba(24, 63, 44, 0.88);
  border: 1px solid rgba(242, 191, 36, 0.22);
  box-shadow: var(--shadow);
}

.thanks-card ol {
  display: grid;
  gap: 26px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.thanks-card li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.thanks-card li span {
  color: rgba(242, 191, 36, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.2em;
}

.thanks-card p {
  margin: 0;
  color: rgba(244, 239, 225, 0.86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.75;
}

.thanks-card strong {
  color: var(--cream);
}

.thanks-note {
  color: rgba(244, 239, 225, 0.62);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.15rem;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(340px, 100%);
  min-height: 72px;
  margin: 20px auto 58px;
  border: 1px solid rgba(242, 191, 36, 0.44);
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.thanks-root {
  color: rgba(242, 191, 36, 0.68);
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.thanks-footer {
  background: rgba(5, 6, 4, 0.38);
}

@media (max-width: 680px) {
  .thanks-card li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .instagram-link {
    letter-spacing: 0.18em;
  }
}
