:root {
  --obsidian: #07040a;
  --charcoal: #0f0c14;
  --plum: #241127;
  --purple: #4c1e5a;
  --wine: #4a1f35;
  --gold: #c9a257;
  --gold-soft: #e4c981;
  --champagne: #f1e5d0;
  --sage: #7d8e7a;
  --clay: #a66f42;
  --muted: #b8a994;
  --line: rgba(201, 162, 87, 0.28);
  --line-soft: rgba(241, 229, 208, 0.12);
  --panel: rgba(255, 255, 255, 0.045);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--obsidian);
  color: var(--champagne);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.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;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 16px 34px;
  color: var(--champagne);
  background: rgba(7, 4, 10, 0.68);
  border-bottom: 1px solid rgba(201, 162, 87, 0.16);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  color: var(--gold-soft);
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--obsidian);
  background: var(--gold-soft);
  border-radius: 50%;
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(241, 229, 208, 0.78);
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  content: "";
  background: var(--gold-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--champagne);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--champagne);
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100svh - 72px);
  padding: 124px 34px 28px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 4, 10, 0.94) 0%, rgba(7, 4, 10, 0.78) 42%, rgba(7, 4, 10, 0.32) 100%),
    linear-gradient(180deg, rgba(7, 4, 10, 0.18) 0%, rgba(7, 4, 10, 0.18) 62%, var(--obsidian) 100%);
}

.hero-bg {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  opacity: 0.9;
}

.hero-content {
  width: min(760px, 100%);
  margin: 0 auto 42px;
  transform: translateX(calc((min(100vw, var(--max)) - min(100vw, 100%)) / 2));
}

.eyebrow,
.section-kicker,
.card-kicker {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  font-size: 7.4rem;
}

h2 {
  font-size: 3.55rem;
}

h3 {
  font-size: 1.75rem;
}

.hero-subtitle {
  margin: 18px 0 0;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.hero-copy {
  max-width: 670px;
  margin: 18px 0 0;
  color: rgba(241, 229, 208, 0.78);
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--obsidian);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.button-secondary {
  color: var(--champagne);
  background: rgba(255, 255, 255, 0.04);
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--max), 100%);
  margin: 0 auto;
  border: 1px solid rgba(201, 162, 87, 0.22);
  background: rgba(15, 12, 20, 0.72);
  backdrop-filter: blur(18px);
}

.hero-strip a {
  min-height: 94px;
  padding: 18px;
  border-right: 1px solid rgba(201, 162, 87, 0.16);
}

.hero-strip a:last-child {
  border-right: 0;
}

.hero-strip strong {
  display: block;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.hero-strip span {
  display: block;
  margin-top: 5px;
  color: rgba(241, 229, 208, 0.66);
  font-size: 0.92rem;
}

.section {
  padding: 96px 34px;
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.intro-grid,
.ethics-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: start;
}

.section-intro {
  background:
    linear-gradient(180deg, var(--obsidian), #0d0710),
    var(--obsidian);
}

.intro-copy p,
.section-heading p,
.split p,
.via-grid p,
.shop-content p,
.ethics-copy p,
.contact-grid p {
  color: rgba(241, 229, 208, 0.74);
  font-size: 1.03rem;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p {
  max-width: 600px;
}

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

.offering-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 87, 0.2);
  border-radius: 8px;
  background: var(--panel);
}

.offering-card img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
  opacity: 0.88;
}

.offering-card div {
  padding: 22px;
}

.offering-card p {
  color: rgba(241, 229, 208, 0.7);
}

.offering-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--gold-soft);
  font-weight: 800;
}

.ritual-band,
.school-section {
  background: #0d0710;
}

.split {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 62px;
  align-items: center;
}

.split-reverse {
  grid-template-columns: 1fr 0.78fr;
}

.image-panel {
  overflow: hidden;
  border: 1px solid rgba(201, 162, 87, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.image-panel-wide img {
  aspect-ratio: 1 / 1.12;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 30px 0;
}

.feature-list div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 4px 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}

.feature-list span {
  grid-row: span 2;
  color: var(--sage);
  font-weight: 900;
}

.feature-list strong {
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
}

.feature-list p {
  margin: 0;
}

.via-section {
  background:
    linear-gradient(180deg, #0d0710, var(--obsidian));
}

.via-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 62px;
  align-items: start;
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.principles article {
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(201, 162, 87, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.principles span {
  display: block;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.shop-preview {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  isolation: isolate;
}

.shop-preview::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 4, 10, 0.94), rgba(7, 4, 10, 0.66) 55%, rgba(7, 4, 10, 0.3)),
    linear-gradient(180deg, rgba(7, 4, 10, 0.2), var(--obsidian));
}

.shop-bg {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
}

.shop-content {
  max-width: var(--max);
  padding-top: 88px;
}

.shop-content p {
  max-width: 620px;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 900px;
  margin-top: 34px;
}

.product-row article {
  min-height: 130px;
  padding: 20px;
  border: 1px solid rgba(201, 162, 87, 0.22);
  border-radius: 8px;
  background: rgba(7, 4, 10, 0.72);
}

.product-row strong {
  display: block;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.product-row span {
  display: block;
  margin-top: 8px;
  color: rgba(241, 229, 208, 0.66);
}

.clean-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.clean-list li {
  padding-left: 26px;
  color: rgba(241, 229, 208, 0.74);
  background: linear-gradient(var(--gold-soft), var(--gold-soft)) left 0.75em / 10px 1px no-repeat;
}

.ethics-section {
  background: linear-gradient(180deg, #0d0710, #120b12);
}

.ethics-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.ethics-points span {
  padding: 8px 12px;
  border: 1px solid rgba(125, 142, 122, 0.45);
  border-radius: 999px;
  color: #d6dfd2;
  background: rgba(125, 142, 122, 0.1);
  font-size: 0.92rem;
}

.contact-section {
  background: #0b070e;
}

.contact-note {
  display: grid;
  gap: 6px;
  max-width: 520px;
  margin-top: 28px;
  padding: 18px;
  border-left: 3px solid var(--clay);
  background: rgba(166, 111, 66, 0.12);
}

.contact-note strong {
  color: var(--gold-soft);
}

.contact-note span {
  color: rgba(241, 229, 208, 0.7);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(201, 162, 87, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(241, 229, 208, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(241, 229, 208, 0.16);
  border-radius: 8px;
  color: var(--champagne);
  background: rgba(7, 4, 10, 0.82);
  padding: 12px 13px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(228, 201, 129, 0.32);
  border-color: rgba(228, 201, 129, 0.78);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--gold-soft);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 34px;
  border-top: 1px solid rgba(201, 162, 87, 0.16);
  background: var(--obsidian);
  color: rgba(241, 229, 208, 0.68);
}

.site-footer strong {
  display: block;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.site-footer div:last-child {
  display: flex;
  gap: 18px;
}

.shop-hero {
  position: relative;
  min-height: 680px;
  padding: 150px 34px 80px;
  overflow: hidden;
  isolation: isolate;
}

.shop-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 4, 10, 0.95) 0%, rgba(7, 4, 10, 0.72) 48%, rgba(7, 4, 10, 0.42) 100%),
    linear-gradient(180deg, rgba(7, 4, 10, 0.12) 0%, var(--obsidian) 100%);
}

.shop-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  opacity: 0.82;
}

.shop-hero-inner {
  display: grid;
  align-content: end;
  min-height: 450px;
}

.shop-hero h1 {
  max-width: 780px;
  font-size: 6.4rem;
}

.shop-hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(241, 229, 208, 0.78);
  font-size: 1.1rem;
}

.access-path {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 900px;
  margin-top: 32px;
}

.access-path span {
  padding: 8px 12px;
  border: 1px solid rgba(241, 229, 208, 0.16);
  border-radius: 999px;
  color: rgba(241, 229, 208, 0.64);
  background: rgba(7, 4, 10, 0.58);
  font-size: 0.9rem;
}

.access-path .is-open {
  color: var(--obsidian);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  font-weight: 800;
}

.shop-definitions {
  background: #0d0710;
}

.definition-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.definition-row article {
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(201, 162, 87, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.definition-row h3 {
  color: var(--gold-soft);
  font-size: 1.6rem;
}

.definition-row p {
  color: rgba(241, 229, 208, 0.7);
}

.product-section {
  background: linear-gradient(180deg, #0d0710, var(--obsidian));
}

.product-heading {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 42px;
  max-width: none;
  align-items: end;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid rgba(201, 162, 87, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.product-media {
  position: relative;
}

.product-media img {
  width: 100%;
  aspect-ratio: 0.82 / 1;
  object-fit: cover;
}

.product-media span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 7px 9px;
  border: 1px solid rgba(228, 201, 129, 0.3);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(7, 4, 10, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.product-body {
  padding: 22px;
}

.product-body p:not(.card-kicker) {
  color: rgba(241, 229, 208, 0.68);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.product-footer strong {
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.access-section {
  background: #0b070e;
}

.level-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.level-card {
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(201, 162, 87, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.level-open {
  border-color: rgba(228, 201, 129, 0.5);
  background:
    linear-gradient(135deg, rgba(201, 162, 87, 0.13), rgba(255, 255, 255, 0.04));
}

.level-reserved {
  color: rgba(241, 229, 208, 0.58);
}

.level-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.level-topline span,
.level-topline strong {
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.level-card h3 {
  color: var(--champagne);
  font-size: 1.7rem;
}

.level-card p {
  color: rgba(241, 229, 208, 0.68);
}

.level-access {
  color: var(--sage);
  font-weight: 800;
}

.reserved-message {
  margin-top: 20px;
  padding: 12px;
  border-left: 3px solid var(--clay);
  color: rgba(241, 229, 208, 0.78);
  background: rgba(166, 111, 66, 0.12);
}

@media (max-width: 980px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    padding: 14px 20px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 4, 10, 0.96);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(201, 162, 87, 0.12);
  }

  h1 {
    font-size: 5.3rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .hero {
    min-height: calc(100svh - 54px);
    padding: 112px 20px 20px;
  }

  .hero-content {
    margin-bottom: 32px;
  }

  .hero-strip,
  .offering-grid,
  .product-row {
    grid-template-columns: 1fr;
  }

  .hero-strip a {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(201, 162, 87, 0.16);
  }

  .hero-strip a:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 78px 20px;
  }

  .intro-grid,
  .ethics-grid,
  .contact-grid,
  .split,
  .split-reverse,
  .via-grid,
  .product-heading {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .shop-hero {
    padding: 124px 20px 64px;
  }

  .shop-hero h1 {
    font-size: 4.8rem;
  }

  .definition-row,
  .product-grid,
  .level-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-reverse .image-panel {
    order: -1;
  }
}

@media (max-width: 620px) {
  .brand {
    font-size: 1.08rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

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

  .hero::before {
    background:
      linear-gradient(90deg, rgba(7, 4, 10, 0.94), rgba(7, 4, 10, 0.72)),
      linear-gradient(180deg, rgba(7, 4, 10, 0.2), var(--obsidian));
  }

  .hero-bg {
    object-position: center top;
    opacity: 0.58;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.48rem;
  }

  .hero-subtitle {
    font-size: 1.48rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .shop-hero h1 {
    font-size: 3.35rem;
  }

  .definition-row,
  .product-grid,
  .level-grid {
    grid-template-columns: 1fr;
  }

  .feature-list div {
    grid-template-columns: 1fr;
  }

  .feature-list span {
    grid-row: auto;
  }

  .site-footer {
    display: grid;
  }

  .site-footer div:last-child {
    flex-wrap: wrap;
  }
}
