:root {
  --bg: #f7f1e8;
  --bg-deep: #eadfce;
  --paper: rgba(255, 252, 247, 0.72);
  --paper-solid: #fbf7f0;
  --ink: #16120d;
  --muted: #655744;
  --muted-soft: #8b7961;
  --line: rgba(73, 54, 27, 0.12);
  --gold: #c79b42;
  --gold-soft: #e4c481;
  --gold-deep: #9d6f22;
  --charcoal: #0c0b0a;
  --shadow: 0 26px 80px rgba(58, 42, 17, 0.12);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(228, 196, 129, 0.22), transparent 24%),
    linear-gradient(180deg, #fcf8f2 0%, #f3ebdf 46%, #ece2d3 100%);
  font-family: "Manrope", "Trebuchet MS", sans-serif;
}

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

img {
  max-width: 100%;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 18px 0 32px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 18px;
  margin: 0 0 28px;
  background:
    radial-gradient(circle at top, rgba(255, 217, 138, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(22, 19, 15, 0.92), rgba(10, 9, 8, 0.94));
  border: 1px solid rgba(255, 224, 156, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(16, 12, 7, 0.28);
}

.brandmark {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brandmark img {
  width: 88px;
  height: 88px;
  display: block;
  flex-shrink: 0;
}

.brandmark-copy {
  display: grid;
}

.brandmark-title,
.brandmark-subtitle,
.eyebrow,
.site-nav a,
.ritual-meta,
.package-meta,
.hero-highlights li,
.button {
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brandmark-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  line-height: 0.95;
  letter-spacing: 0.12em;
  color: #f6efe2;
}

.brandmark-subtitle {
  margin-top: 3px;
  font-size: 0.74rem;
  color: #d9c29c;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 0.74rem;
  color: #e8dcc7;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  color: #17120c;
  font-size: 0.76rem;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(157, 111, 34, 0.18);
}

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

.button-outline,
.button-ghost {
  background: transparent;
  border-color: rgba(84, 62, 30, 0.15);
  color: var(--ink);
  box-shadow: none;
}

.site-header .button-outline {
  border-color: rgba(255, 224, 156, 0.22);
  color: #f6efe2;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.intro-band,
.ritual-card,
.video-card,
.split-panel,
.location-card,
.site-footer {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 64px 52px 58px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 18%, rgba(228, 196, 129, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(249, 243, 234, 0.8));
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 700;
}

h1,
h2,
h3,
.footer-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 7vw, 5.9rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.94;
}

h3 {
  font-size: 1.9rem;
  line-height: 0.98;
}

p {
  margin: 0;
  line-height: 1.75;
}

.hero-text {
  max-width: 38rem;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.02rem;
}

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

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-highlights li {
  position: relative;
  padding: 0 0 0 16px;
  border: 0;
  background: transparent;
  color: var(--muted-soft);
  font-size: 0.72rem;
  line-height: 1.6;
}

.hero-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
}

.hero-card {
  display: grid;
  align-items: center;
  padding: 26px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top, rgba(255, 219, 144, 0.15), transparent 30%),
    linear-gradient(180deg, #181512 0%, #0d0b09 100%);
  color: #f5eddf;
}

.hero-card-inner {
  padding: 34px;
  border-radius: calc(var(--radius-xl) - 8px);
  border: 1px solid rgba(255, 224, 156, 0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}

.hero-logo {
  width: 114px;
  display: block;
  margin-bottom: 22px;
}

.hero-card-label {
  margin-bottom: 8px;
  color: #d6bd8a;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-card h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.hero-card p {
  margin-top: 16px;
  color: #d9cdb7;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 226, 171, 0.14);
  color: #efd29b;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: end;
  margin-top: 26px;
  padding: 38px 40px;
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 247, 0.66);
}

.intro-band-text {
  color: var(--muted);
}

.section {
  margin-top: 30px;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 44rem;
  margin-bottom: 22px;
}

.section-heading p {
  color: var(--muted);
}

.video-section .section-heading {
  margin-bottom: 26px;
}

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

.video-card {
  display: grid;
  gap: 20px;
  padding: 18px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top, rgba(228, 196, 129, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(248, 241, 230, 0.9));
}

.video-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: calc(var(--radius-lg) - 4px);
  border: 1px solid rgba(84, 62, 30, 0.12);
  background:
    radial-gradient(circle at top, rgba(255, 217, 138, 0.08), transparent 32%),
    linear-gradient(180deg, #16120d 0%, #090807 100%);
}

.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0a0908;
}

.video-card-copy {
  display: grid;
  gap: 10px;
  padding: 4px 6px 2px;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--gold-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.video-card p {
  color: var(--muted);
}

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

.ritual-card {
  grid-column: span 4;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 247, 0.64);
}

.ritual-card-featured {
  grid-column: span 8;
  background:
    radial-gradient(circle at top left, rgba(228, 196, 129, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(250, 245, 236, 0.85));
}

.ritual-card-accent {
  background:
    linear-gradient(180deg, rgba(255, 247, 230, 0.92), rgba(244, 231, 208, 0.92));
}

.ritual-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--gold-deep);
  font-size: 0.74rem;
  font-weight: 700;
}

.ritual-card p {
  margin-top: 14px;
  color: var(--muted);
}

.ritual-card ul {
  padding-left: 18px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

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

.split-panel {
  padding: 32px;
  border-radius: var(--radius-xl);
}

.split-panel-dark {
  background:
    radial-gradient(circle at top, rgba(255, 217, 138, 0.12), transparent 28%),
    linear-gradient(180deg, #171411 0%, #0b0b0a 100%);
  color: #f5eee3;
}

.split-panel-dark .eyebrow {
  color: #dfbe84;
}

.split-panel-dark p {
  color: #dacdb7;
}

.feature-list {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.feature-list article {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 225, 163, 0.1);
}

.feature-list h3 {
  font-size: 1.65rem;
}

.split-panel-light {
  background: rgba(255, 251, 245, 0.68);
}

.package-stack {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.package-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(87, 66, 32, 0.1);
  background: rgba(255, 255, 255, 0.6);
}

.package-card p {
  margin-top: 8px;
  color: var(--muted);
}

.package-meta {
  display: grid;
  gap: 6px;
  justify-items: end;
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 700;
}

.location-section {
  padding: 10px 0 0;
}

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

.location-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 247, 0.68);
}

.location-card h3 {
  margin-bottom: 10px;
}

.muted {
  color: var(--muted-soft);
}

.text-link {
  color: var(--gold-deep);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
  padding: 26px 30px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(228, 196, 129, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.76), rgba(248, 241, 230, 0.86));
}

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

.footer-main {
  display: grid;
  gap: 14px;
}

.footer-brand img {
  width: 62px;
  height: 62px;
  display: block;
}

.footer-title {
  font-size: 2rem;
  line-height: 0.95;
}

.footer-copy {
  margin-top: 8px;
  color: var(--muted);
}

.footer-meta {
  color: var(--muted-soft);
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-meta a {
  color: var(--gold-deep);
  font-weight: 700;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1100px) {
  .hero,
  .intro-band,
  .split-section,
  .video-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .ritual-card,
  .ritual-card-featured {
    grid-column: span 6;
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: start;
    border-radius: 28px;
  }

  .site-nav {
    justify-content: start;
    flex-wrap: wrap;
  }

  .hero-copy,
  .hero-card,
  .intro-band,
  .split-panel,
  .location-card,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .ritual-card,
  .ritual-card-featured {
    grid-column: span 12;
  }

  .package-card,
  .site-footer {
    flex-direction: column;
    align-items: start;
  }

  .package-meta {
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding-top: 10px;
  }

  .site-header {
    top: 8px;
    gap: 14px;
    padding: 16px;
  }

  .brandmark {
    align-items: start;
  }

  .brandmark img {
    width: 74px;
    height: 74px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  h3 {
    font-size: 1.6rem;
  }

  .hero-copy {
    padding-top: 42px;
  }

  .hero-card-inner {
    padding: 24px;
  }

  .hero-highlights {
    flex-direction: column;
    gap: 8px;
  }
}
