:root {
  --orange: #d2844a;
  --orange-deep: #bc7342;
  --orange-soft: #e2a26f;
  --green: #839c7f;
  --green-deep: #667c62;
  --green-soft: #a4b7a0;
  --cream: #fdf8f2;
  --ink: #2c2018;
  --ink-soft: #5d4b3d;
  --line: rgba(253, 248, 242, 0.28);
  --shadow: 0 22px 70px rgba(60, 33, 14, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(240, 177, 123, 0.28), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(169, 197, 152, 0.34), transparent 24%),
    linear-gradient(180deg, #f4d6bc 0%, #f1e5d7 18%, #ddebd9 52%, #f6e3d2 100%);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

.site-shell::before {
  top: -10vw;
  left: -12vw;
  background: rgba(213, 122, 70, 0.65);
}

.site-shell::after {
  right: -10vw;
  bottom: 10vh;
  background: rgba(95, 132, 89, 0.55);
}

.immersive-main::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 6% 24%, rgba(213, 122, 70, 0.22) 0 2.7rem, transparent 2.8rem),
    radial-gradient(circle at 9% 28%, rgba(253, 248, 242, 0.55) 0 0.7rem, transparent 0.75rem),
    radial-gradient(circle at 94% 17%, rgba(95, 132, 89, 0.2) 0 3.1rem, transparent 3.2rem),
    radial-gradient(circle at 88% 20%, rgba(253, 248, 242, 0.5) 0 0.82rem, transparent 0.9rem),
    radial-gradient(circle at 10% 78%, rgba(95, 132, 89, 0.18) 0 4rem, transparent 4.1rem),
    radial-gradient(circle at 92% 74%, rgba(213, 122, 70, 0.18) 0 3.4rem, transparent 3.5rem),
    radial-gradient(circle at 86% 79%, rgba(253, 248, 242, 0.46) 0 0.92rem, transparent 1rem);
  z-index: 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 1.4rem clamp(1.2rem, 2vw, 2rem) 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 225, 196, 0.18), transparent 20%),
    radial-gradient(circle at 78% 20%, rgba(190, 228, 176, 0.24), transparent 22%),
    radial-gradient(circle at 50% 72%, rgba(245, 216, 176, 0.16), transparent 28%),
    linear-gradient(135deg, #c96f3e 0%, #d8864d 33%, #6f8d63 68%, #537651 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 44% 56% 59% 41% / 43% 40% 60% 57%;
  opacity: 0.35;
  animation: floatBlob 16s ease-in-out infinite;
}

.hero::before {
  width: 28rem;
  height: 28rem;
  top: -8rem;
  right: -8rem;
  background: rgba(255, 192, 115, 0.32);
}

.hero::after {
  width: 22rem;
  height: 22rem;
  left: -7rem;
  bottom: 12rem;
  background: rgba(104, 145, 103, 0.28);
  animation-duration: 20s;
}

.hero-aurora,
.hero-grid,
.hero-ribbon,
.hero-nav,
.hero-body {
  position: relative;
  z-index: 1;
}

.hero-aurora {
  position: absolute;
  inset: auto;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: pulseGlow 11s ease-in-out infinite;
}

.hero-aurora-left {
  top: 6rem;
  left: -8rem;
  background: rgba(255, 189, 126, 0.6);
}

.hero-aurora-right {
  right: -6rem;
  bottom: 7rem;
  background: rgba(112, 151, 104, 0.45);
  animation-delay: -5s;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.28), transparent 78%);
  opacity: 0.3;
}

.hero-nav {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.hero-nav-logo-img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.hero-brand-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-nav-links {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-nav-links a {
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hero-nav-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-body {
  max-width: 1280px;
  margin: 0 auto;
  min-height: calc(100vh - 6rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(370px, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  padding: 3.5rem 0 4.5rem;
}

.hero-text {
  max-width: 40rem;
}

.hero-kicker,
.section-kicker,
.closing-kicker,
.story-label,
.duality-tag,
.hero-stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.76rem;
}

.hero-kicker {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(253, 248, 242, 0.12);
  border: 1px solid rgba(253, 248, 242, 0.24);
  margin-bottom: 1.2rem;
}

.hero-title,
.section-intro h2,
.section-header h2,
.closing-shell h2,
.duality-card h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.title-soul {
  color: #ffe5c4;
}

.title-mind {
  color: #d9f0c7;
}

.hero-copy {
  margin-top: 1.4rem;
  max-width: 36rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(253, 248, 242, 0.9);
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-cta {
  text-decoration: none;
  padding: 1rem 1.4rem;
  border-radius: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease;
}

.hero-cta:hover {
  transform: translateY(-4px) scale(1.02);
}

.hero-cta-primary {
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 16px 35px rgba(71, 37, 14, 0.18);
}

.hero-cta-secondary {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(253, 248, 242, 0.28);
  backdrop-filter: blur(8px);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.hero-pills span {
  padding: 0.72rem 0.92rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(253, 248, 242, 0.2);
  color: rgba(253, 248, 242, 0.92);
  font-size: 0.88rem;
}

.hero-stage {
  position: relative;
  min-height: 40rem;
  transform-style: preserve-3d;
  transition: transform 260ms ease;
}

.hero-stage-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: orbitBob 9s ease-in-out infinite;
}

.hero-stage-orb-one {
  width: 9rem;
  height: 9rem;
  top: 1.2rem;
  left: 2rem;
  background: radial-gradient(circle at 35% 35%, #ffd696, #e08b4f 70%);
}

.hero-stage-orb-two {
  width: 7rem;
  height: 7rem;
  right: 1.5rem;
  bottom: 4rem;
  background: radial-gradient(circle at 35% 35%, #cee6bf, #6d8d62 72%);
  animation-delay: -4s;
}

.hero-stage-card {
  position: absolute;
  border-radius: 2rem;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(253, 248, 242, 0.24);
  box-shadow: var(--shadow);
}

.hero-stage-photo {
  inset: 1.2rem 4rem 6rem 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 15%, rgba(253, 248, 242, 0.4), transparent 18%),
    linear-gradient(160deg, rgba(253, 248, 242, 0.18), rgba(253, 248, 242, 0.06));
}

.hero-stage-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 2;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(42, 29, 20, 0.44);
  color: var(--cream);
  border: 1px solid rgba(253, 248, 242, 0.25);
}

.hero-photo-cutout {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: min(100%, 32rem);
  transform: translateX(-50%);
  object-fit: contain;
  filter: drop-shadow(0 28px 44px rgba(40, 23, 8, 0.28));
}

.hero-stage-story {
  right: 0;
  bottom: 0;
  width: min(26rem, 90%);
  padding: 1.2rem;
  background: rgba(253, 248, 242, 0.88);
  color: var(--ink);
}

.hero-logo {
  width: 100%;
  border-radius: 1.4rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(70, 39, 22, 0.12);
}

.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 1rem;
}

.story-split > div {
  padding: 1rem;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 237, 228, 0.88));
}

.story-label {
  color: var(--orange-deep);
  margin-bottom: 0.55rem;
}

.story-split p {
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 0.95rem;
}

.hero-ribbon {
  overflow: hidden;
  padding: 1rem 0 1.1rem;
  border-top: 1px solid rgba(253, 248, 242, 0.15);
  border-bottom: 1px solid rgba(253, 248, 242, 0.15);
  background: linear-gradient(90deg, rgba(253, 248, 242, 0.07), rgba(253, 248, 242, 0.12), rgba(253, 248, 242, 0.07));
}

.hero-ribbon-track,
.blend-band-copy {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1.1rem;
  animation: marquee 22s linear infinite;
}

.hero-ribbon-track span,
.blend-band-copy span {
  position: relative;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-ribbon-track span::after,
.blend-band-copy span::after {
  content: "•";
  margin-left: 1.1rem;
  opacity: 0.7;
}

.immersive-main {
  position: relative;
  padding: 0 1.2rem 2rem;
}

.immersive-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(213, 122, 70, 0.18), transparent 18%),
    radial-gradient(circle at 82% 36%, rgba(95, 132, 89, 0.14), transparent 16%),
    radial-gradient(circle at 35% 76%, rgba(253, 248, 242, 0.35), transparent 20%);
  pointer-events: none;
}

.section-shell {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 2.2rem;
  overflow: hidden;
}

.section-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.duality {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.duality-shell {
  background:
    radial-gradient(circle at 20% 0%, rgba(253, 248, 242, 0.95), rgba(253, 248, 242, 0.68) 34%, transparent 35%),
    linear-gradient(120deg, rgba(255, 243, 231, 0.88), rgba(247, 233, 222, 0.66), rgba(225, 238, 218, 0.82));
  box-shadow: 0 16px 42px rgba(79, 45, 22, 0.12);
}

.section-intro,
.section-header,
.closing-shell {
  text-align: center;
}

.section-kicker,
.closing-kicker,
.duality-tag {
  color: var(--orange-deep);
}

.section-intro h2,
.section-header h2,
.closing-shell h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-subtitle,
.section-intro p:last-child,
.closing-shell p {
  max-width: 44rem;
  margin: 1rem auto 0;
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.duality-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2.2rem;
}

.duality-card {
  padding: 1.8rem;
  border-radius: 1.7rem;
  color: var(--cream);
  min-height: 15rem;
  box-shadow: 0 16px 30px rgba(70, 39, 22, 0.12);
}

.duality-card h3 {
  font-size: 2rem;
  line-height: 1.02;
  margin-top: 1rem;
}

.duality-card p {
  margin-top: 0.85rem;
  max-width: 26rem;
  line-height: 1.75;
  color: rgba(253, 248, 242, 0.86);
}

.duality-card-soul {
  background:
    radial-gradient(circle at top right, rgba(255, 216, 162, 0.28), transparent 24%),
    linear-gradient(145deg, #d9824d, #bb6536);
}

.duality-card-mind {
  background:
    radial-gradient(circle at 15% 20%, rgba(224, 244, 211, 0.24), transparent 24%),
    linear-gradient(145deg, #6f9164, #446347);
}

.showcase-section {
  position: relative;
  padding: 2rem 0;
}

.showcase-section .section-shell {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 198, 146, 0.34), transparent 18%),
    radial-gradient(circle at 85% 76%, rgba(171, 204, 160, 0.32), transparent 20%),
    linear-gradient(180deg, rgba(253, 248, 242, 0.32), rgba(253, 248, 242, 0.12)),
    linear-gradient(135deg, rgba(225, 140, 88, 0.52), rgba(248, 194, 132, 0.28) 34%, rgba(115, 154, 105, 0.3) 68%, rgba(86, 124, 81, 0.44));
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 56px rgba(72, 41, 22, 0.14);
}

.showcase-section .section-shell::before {
  background:
    radial-gradient(circle at 11% 11%, rgba(255, 227, 194, 0.36) 0 1rem, transparent 1.08rem),
    radial-gradient(circle at 15% 18%, rgba(255, 190, 126, 0.28) 0 4.2rem, transparent 4.3rem),
    radial-gradient(circle at 74% 22%, rgba(253, 248, 242, 0.22) 0 1.5rem, transparent 1.58rem),
    radial-gradient(circle at 88% 72%, rgba(151, 193, 140, 0.34) 0 4.6rem, transparent 4.7rem),
    radial-gradient(circle at 83% 66%, rgba(253, 248, 242, 0.38) 0 0.95rem, transparent 1.03rem);
}

.showcase-section-couch .section-shell {
  background:
    radial-gradient(circle at 20% 72%, rgba(255, 208, 149, 0.3), transparent 18%),
    radial-gradient(circle at 84% 18%, rgba(185, 219, 170, 0.3), transparent 20%),
    linear-gradient(180deg, rgba(253, 248, 242, 0.3), rgba(253, 248, 242, 0.1)),
    linear-gradient(125deg, rgba(92, 126, 84, 0.42), rgba(135, 173, 124, 0.28) 34%, rgba(227, 151, 97, 0.32) 68%, rgba(196, 104, 57, 0.5));
}

.showcase-section-couch .section-shell::before {
  background:
    radial-gradient(circle at 13% 78%, rgba(255, 194, 132, 0.28) 0 4.2rem, transparent 4.3rem),
    radial-gradient(circle at 18% 72%, rgba(253, 248, 242, 0.4) 0 0.95rem, transparent 1.03rem),
    radial-gradient(circle at 84% 20%, rgba(171, 209, 158, 0.34) 0 4.8rem, transparent 4.9rem),
    radial-gradient(circle at 79% 14%, rgba(253, 248, 242, 0.38) 0 1.05rem, transparent 1.12rem),
    radial-gradient(circle at 52% 12%, rgba(253, 248, 242, 0.16) 0 1.6rem, transparent 1.7rem);
}

.glass-carousel {
  margin-top: 2.4rem;
  padding: 0 4.2rem;
}

.carousel {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
}

.carousel-viewport::before,
.carousel-viewport::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1.2rem;
  z-index: 2;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      90deg,
      #171a20 0 1rem,
      #f4e7c6 1rem 1.7rem,
      #171a20 1.7rem 3.2rem
    );
  box-shadow: inset 0 1px 0 rgba(244, 231, 198, 0.1);
}

.carousel-viewport::before {
  top: 0;
}

.carousel-viewport::after {
  bottom: 0;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  transition: transform 0.45s ease;
  position: relative;
}

.carousel-track::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.4rem;
  background:
    linear-gradient(180deg, rgba(15, 18, 24, 0.98), rgba(28, 32, 40, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(244, 231, 198, 0.08),
    0 18px 32px rgba(31, 18, 10, 0.14);
  z-index: 0;
}

.card {
  position: relative;
  flex: 0 0 calc((100% - 3 * 1rem) / 4);
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-radius: 1.35rem;
  overflow: hidden;
  background: #20242e;
  border: 2px solid rgba(17, 18, 24, 0.32);
  box-shadow: 0 18px 34px rgba(50, 27, 14, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease;
  z-index: 1;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 0.48rem;
  background: linear-gradient(90deg, var(--orange), var(--green), var(--orange));
}

.card:hover {
  transform: translateY(-10px) rotate(0.8deg);
  box-shadow: 0 22px 40px rgba(77, 46, 22, 0.16);
}

.card:nth-child(even):hover {
  transform: translateY(-8px) rotate(-0.8deg);
}

.vhs-shell {
  position: relative;
  padding: 0.9rem 0.9rem 0;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 2px,
      transparent 2px,
      transparent 14px
    ),
    linear-gradient(180deg, #2a2f3a, #232730);
}

.vhs-shell::before,
.vhs-shell::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.45rem;
  height: 58%;
  transform: translateY(-50%);
  border-radius: 999px;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(244, 231, 198, 0.9) 0 0.65rem,
      transparent 0.65rem 1.35rem
    );
  opacity: 0.65;
}

.vhs-shell::before {
  left: 0.22rem;
}

.vhs-shell::after {
  right: 0.22rem;
}

.vhs-topline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  padding: 0 0.12rem 0.55rem;
}

.vhs-format {
  color: #ff8454;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.vhs-label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: start;
  padding: 1rem;
  border: 2px solid rgba(255, 245, 220, 0.78);
  background:
    linear-gradient(135deg, rgba(244, 231, 198, 0.96), rgba(251, 244, 223, 0.92));
  box-shadow: inset 0 0 0 1px rgba(57, 43, 25, 0.1);
}

.vhs-label-copy {
  min-width: 0;
}

.vhs-mini {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--orange-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vhs-label h3 {
  color: #1f1b16;
  font-size: 1.28rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vhs-toggle-wrap {
  display: flex;
  align-items: start;
}

.vhs-window-wrap {
  position: relative;
  padding: 0.95rem 0 0;
}

.card-video {
  position: relative;
  padding-bottom: 58%;
  height: 0;
  overflow: hidden;
  background: #11141b;
  border: 2px solid rgba(247, 235, 199, 0.72);
  box-shadow:
    inset 0 0 0 0.45rem rgba(246, 227, 178, 0.22),
    0 10px 22px rgba(10, 11, 16, 0.24);
}

.card-video img,
.card-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.card-video img {
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1) contrast(0.96) brightness(0.84);
}

.card-video-fallback {
  background:
    radial-gradient(circle at 20% 25%, rgba(255, 206, 154, 0.4), transparent 20%),
    linear-gradient(135deg, rgba(211, 104, 53, 0.95), rgba(83, 158, 63, 0.92));
}

.card-video::before,
.card-video::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.card-video::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.2) 36%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(135deg, rgba(213, 122, 70, 0.22), rgba(95, 132, 89, 0.24));
  z-index: 1;
}

.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: none;
  background: none;
  cursor: pointer;
  transition: transform 180ms ease;
  z-index: 2;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.play-btn svg {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0;
  flex: 1;
  background: linear-gradient(180deg, #252933, #1d2028);
}

.card h3 {
  flex: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.25;
  color: var(--ink);
}

.toggle-details {
  flex-shrink: 0;
  border: none;
  background: rgba(247, 235, 199, 0.95);
  color: #1b1d24;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(20, 14, 10, 0.18);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.toggle-details:hover {
  background: #fff0bf;
  color: var(--orange-deep);
}

.details-hidden .toggle-details {
  transform: rotate(-90deg);
}

.card-details {
  max-height: 7rem;
  overflow: hidden;
  opacity: 1;
  padding: 0.85rem 1rem 1rem;
  border-top: none;
  background: linear-gradient(180deg, rgba(37, 41, 51, 0.96), rgba(29, 32, 40, 0.96));
  transition: max-height 220ms ease, opacity 220ms ease, padding 220ms ease;
}

.details-hidden .card-details {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-top-color: transparent;
}

.card-spotify {
  margin-top: 0;
  border-radius: 0.9rem;
}

.vhs-stripes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 0.9rem;
  height: 1.6rem;
  border-top: 2px solid rgba(247, 235, 199, 0.18);
}

.vhs-stripe-orange {
  background: #ff7d2f;
}

.vhs-stripe-green {
  background: #58c52d;
}

.vhs-stripe-cream {
  background: #f4e7c6;
}

.vhs-stripe-orange-deep {
  background: #ff5e32;
}

.card-video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(244, 231, 198, 0.84);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.carousel-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(253, 248, 242, 0.82);
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(63, 37, 18, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  z-index: 2;
}

.carousel-btn:hover:not(:disabled) {
  transform: translateY(-50%) scale(1.06);
  background: var(--cream);
  box-shadow: 0 14px 28px rgba(63, 37, 18, 0.18);
}

.carousel-btn:disabled {
  opacity: 0.45;
  cursor: default;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.dot {
  width: 0.72rem;
  height: 0.72rem;
  border: none;
  border-radius: 50%;
  background: rgba(95, 132, 89, 0.24);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.dot.active {
  background: linear-gradient(90deg, var(--orange), var(--green));
  transform: scale(1.25);
}

.blend-band {
  padding: 1rem 0 1.6rem;
  overflow: hidden;
  position: relative;
}

.blend-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 17% 50%, rgba(255, 195, 136, 0.22) 0 2rem, transparent 2.1rem),
    radial-gradient(circle at 81% 44%, rgba(151, 193, 140, 0.24) 0 2.4rem, transparent 2.5rem),
    radial-gradient(circle at 75% 58%, rgba(253, 248, 242, 0.42) 0 0.72rem, transparent 0.8rem);
}

.blend-band-copy {
  color: rgba(44, 32, 24, 0.78);
}

.closing-note {
  padding: 1rem 0 2rem;
}

.closing-shell {
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 214, 171, 0.36), transparent 18%),
    radial-gradient(circle at 84% 80%, rgba(183, 216, 171, 0.34), transparent 18%),
    linear-gradient(180deg, rgba(253, 248, 242, 0.72), rgba(253, 248, 242, 0.56));
  box-shadow: 0 18px 48px rgba(70, 39, 22, 0.1);
}

.closing-shell::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 190, 126, 0.24) 0 4rem, transparent 4.1rem),
    radial-gradient(circle at 17% 13%, rgba(253, 248, 242, 0.4) 0 0.92rem, transparent 1rem),
    radial-gradient(circle at 88% 76%, rgba(151, 193, 140, 0.26) 0 4.4rem, transparent 4.5rem),
    radial-gradient(circle at 82% 70%, rgba(253, 248, 242, 0.42) 0 0.9rem, transparent 0.98rem);
}

footer {
  padding: 2rem 1.5rem 2.6rem;
  text-align: center;
  color: rgba(44, 32, 24, 0.68);
  font-size: 0.88rem;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  padding: 1.2rem;
  background: rgba(39, 23, 15, 0.48);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  position: relative;
  width: min(36rem, 100%);
  max-height: min(90vh, 48rem);
  overflow-y: auto;
  padding: 2rem;
  border-radius: 1.8rem;
  background: linear-gradient(180deg, rgba(255, 251, 247, 0.98), rgba(248, 241, 234, 0.98));
  box-shadow: 0 24px 60px rgba(40, 23, 15, 0.28);
}

.modal h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  line-height: 1.2;
}

.modal .ep-meta {
  margin-top: 0.7rem;
  margin-bottom: 1rem;
  color: var(--orange-deep);
  font-size: 0.85rem;
  font-weight: 700;
}

.modal p {
  line-height: 1.75;
  color: var(--ink-soft);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.2rem;
  height: 2.2rem;
  border: none;
  border-radius: 50%;
  background: rgba(95, 132, 89, 0.1);
  color: var(--ink);
  font-size: 1.35rem;
  cursor: pointer;
}

.read-more {
  border: none;
  background: none;
  color: var(--green-deep);
  font-weight: 700;
  cursor: pointer;
  margin-left: 0.25rem;
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.page-nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.4rem 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.page-nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.hero-nav-logo {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--ink);
}

.contact-page {
  min-height: calc(100vh - 11rem);
  display: grid;
  place-items: center;
  padding: 2rem 1.2rem 3rem;
}

.contact-container {
  width: min(38rem, 100%);
  padding: 2rem;
  border-radius: 1.8rem;
  background: linear-gradient(180deg, rgba(255, 251, 247, 0.92), rgba(250, 242, 236, 0.9));
  box-shadow: 0 18px 46px rgba(70, 39, 22, 0.1);
}

.contact-container h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1;
}

.contact-intro {
  margin-top: 0.9rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.contact-container form {
  display: grid;
  gap: 1rem;
  margin-top: 1.7rem;
}

.contact-container label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 700;
  color: var(--ink);
}

.contact-container input,
.contact-container textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(95, 132, 89, 0.22);
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  color: var(--ink);
}

.contact-container textarea {
  min-height: 9rem;
  resize: vertical;
}

.contact-container input:focus,
.contact-container textarea:focus {
  outline: none;
  border-color: rgba(213, 122, 70, 0.52);
  box-shadow: 0 0 0 4px rgba(213, 122, 70, 0.12);
}

.contact-container button {
  justify-self: start;
  border: none;
  padding: 0.95rem 1.4rem;
  border-radius: 1rem;
  font: inherit;
  font-weight: 700;
  color: var(--cream);
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-container button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(185, 95, 49, 0.2);
}

@keyframes floatBlob {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    border-radius: 44% 56% 59% 41% / 43% 40% 60% 57%;
  }
  50% {
    transform: translate3d(0, 20px, 0) scale(1.06);
    border-radius: 58% 42% 40% 60% / 55% 53% 47% 45%;
  }
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.38;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.5;
  }
}

@keyframes orbitBob {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(8deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .hero-body {
    grid-template-columns: 1fr;
    padding-top: 2.4rem;
  }

  .hero-text {
    max-width: none;
  }

  .hero-stage {
    min-height: 34rem;
  }

  .hero-stage-photo {
    inset: 0 5rem 5rem 0;
  }

  .glass-carousel {
    padding: 0 3.4rem;
  }

  .card {
    flex-basis: calc((100% - 2 * 1rem) / 3);
  }
}

@media (max-width: 820px) {
  .hero-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-title {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .story-split,
  .duality-panels {
    grid-template-columns: 1fr;
  }

  .section-shell {
    padding: 2rem 1.2rem;
  }

  .card {
    flex-basis: calc((100% - 1rem) / 2);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 1rem;
  }

  .hero-nav-links {
    gap: 0.45rem;
  }

  .hero-nav-links a {
    padding: 0.6rem 0.8rem;
    font-size: 0.82rem;
  }

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

  .hero-stage {
    min-height: 29rem;
  }

  .hero-stage-photo {
    inset: 0 0 7rem 0;
  }

  .hero-stage-story {
    position: absolute;
    left: 1rem;
    right: 1rem;
    width: auto;
  }

  .hero-ribbon {
    padding: 0.85rem 0;
  }

  .glass-carousel {
    padding: 0 2.5rem;
  }

  .card {
    flex-basis: 100%;
  }

  .carousel-btn {
    width: 2.7rem;
    height: 2.7rem;
    font-size: 1.7rem;
  }
}

/* VHS World */

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 133, 46, 0.18), transparent 24%),
    radial-gradient(circle at 86% 16%, rgba(88, 197, 45, 0.16), transparent 20%),
    linear-gradient(180deg, #1f232d 0%, #20242d 34%, #1a1d25 100%);
  color: #f4e7c6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px,
      transparent 4px
    );
  mix-blend-mode: screen;
  z-index: 20;
}

.site-shell {
  background:
    radial-gradient(circle at 8% 30%, rgba(255, 125, 47, 0.08), transparent 18%),
    radial-gradient(circle at 90% 52%, rgba(88, 197, 45, 0.08), transparent 18%);
}

.site-shell::before,
.site-shell::after {
  opacity: 0.18;
  filter: blur(130px);
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(39, 44, 54, 0.84), rgba(26, 29, 37, 0.92)),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.06) 2px,
      transparent 2px,
      transparent 18px
    ),
    linear-gradient(135deg, rgba(219, 96, 39, 0.72), rgba(34, 38, 48, 0.3) 32%, rgba(70, 168, 44, 0.5) 72%, rgba(255, 110, 46, 0.64));
  border-bottom: 0.5rem solid #ff7d2f;
  box-shadow: inset 0 -1px 0 rgba(244, 231, 198, 0.1);
}

.hero::before,
.hero::after,
.hero-aurora,
.hero-grid {
  opacity: 0.16;
}

.hero-nav {
  padding: 0.75rem 1rem;
  border: 2px solid rgba(244, 231, 198, 0.12);
  background: rgba(27, 31, 39, 0.72);
  box-shadow: inset 0 0 0 1px rgba(244, 231, 198, 0.05);
}

.hero-brand-text,
.hero-nav-links a,
.hero-kicker,
.section-kicker,
.closing-kicker,
.vhs-format,
.vhs-mini {
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-nav-links a {
  background: #262b35;
  border: 2px solid rgba(244, 231, 198, 0.18);
  color: #f4e7c6;
  border-radius: 0.6rem;
  box-shadow: inset 0 -3px 0 rgba(255, 125, 47, 0.35);
}

.hero-nav-links a:hover {
  background: #313744;
  border-color: rgba(244, 231, 198, 0.32);
}

.hero-kicker {
  background: #ff7d2f;
  color: #201b17;
  border: 2px solid rgba(22, 20, 17, 0.24);
  border-radius: 0.45rem;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

.hero-title,
.section-intro h2,
.section-header h2,
.closing-shell h2,
.duality-card h3,
.vhs-label h3 {
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
}

.hero-title {
  color: #f4e7c6;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.32),
    0 8px 24px rgba(0, 0, 0, 0.34);
}

.title-soul {
  color: #ff9b52;
}

.title-mind {
  color: #83d948;
}

.hero-copy,
.section-subtitle,
.section-intro p:last-child,
.closing-shell p {
  color: rgba(244, 231, 198, 0.84);
}

.hero-cta {
  border-radius: 0.6rem;
  border: 2px solid rgba(30, 24, 18, 0.24);
  text-transform: uppercase;
}

.hero-cta-primary {
  background: #f4e7c6;
  color: #1d1914;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
}

.hero-cta-secondary {
  background: #58c52d;
  color: #12160f;
  border-color: rgba(25, 31, 20, 0.3);
}

.hero-pills span {
  border-radius: 0.35rem;
  background: rgba(31, 36, 45, 0.82);
  border: 1px solid rgba(244, 231, 198, 0.18);
  color: rgba(244, 231, 198, 0.86);
}

.hero-stage-card,
.duality-shell,
.showcase-section .section-shell,
.showcase-section-couch .section-shell,
.closing-shell,
.modal {
  border-radius: 1rem;
  border: 2px solid rgba(244, 231, 198, 0.14);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(244, 231, 198, 0.05);
}

.hero-stage-photo,
.hero-stage-story {
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px,
      transparent 12px
    ),
    linear-gradient(180deg, rgba(43, 48, 59, 0.92), rgba(29, 32, 40, 0.94));
}

.hero-stage-badge {
  background: #f4e7c6;
  color: #1f1c17;
  border: 1px solid rgba(30, 25, 20, 0.16);
  border-radius: 0.45rem;
}

.hero-logo {
  border: 2px solid rgba(244, 231, 198, 0.4);
}

.story-split > div {
  background: linear-gradient(180deg, rgba(244, 231, 198, 0.94), rgba(237, 223, 189, 0.92));
  border: 1px solid rgba(30, 25, 20, 0.08);
  border-radius: 0.7rem;
}

.story-label {
  color: #db6027;
}

.hero-ribbon,
.blend-band {
  background:
    linear-gradient(90deg, #ff7d2f 0 22%, #58c52d 22% 48%, #f4e7c6 48% 67%, #ff5e32 67% 100%);
  border-top: 2px solid rgba(15, 14, 13, 0.2);
  border-bottom: 2px solid rgba(15, 14, 13, 0.2);
}

.hero-ribbon-track span,
.blend-band-copy span {
  color: #1f1a15;
  font-weight: 900;
}

.immersive-main {
  padding-top: 1.3rem;
}

.immersive-main::before,
.immersive-main::after {
  opacity: 0.15;
}

.section-shell {
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px,
      transparent 14px
    ),
    linear-gradient(180deg, rgba(43, 48, 59, 0.98), rgba(28, 31, 38, 0.98));
}

.duality-shell::before,
.showcase-section .section-shell::before,
.showcase-section-couch .section-shell::before,
.closing-shell::before {
  background:
    linear-gradient(90deg, rgba(255, 125, 47, 0.2), transparent 32%, transparent 68%, rgba(88, 197, 45, 0.22)),
    radial-gradient(circle at 16% 16%, rgba(244, 231, 198, 0.08) 0 3rem, transparent 3.1rem),
    radial-gradient(circle at 84% 76%, rgba(244, 231, 198, 0.08) 0 3rem, transparent 3.1rem);
}

.duality-card {
  border-radius: 0.85rem;
  border: 2px solid rgba(244, 231, 198, 0.14);
}

.duality-card-soul {
  background:
    linear-gradient(180deg, rgba(255, 125, 47, 0.92), rgba(194, 86, 37, 0.95));
}

.duality-card-mind {
  background:
    linear-gradient(180deg, rgba(88, 197, 45, 0.9), rgba(62, 138, 36, 0.94));
}

.glass-carousel {
  padding-top: 0.3rem;
}

.carousel-viewport {
  padding-bottom: 1rem;
}

.carousel-btn {
  background: #f4e7c6;
  color: #1c1814;
  border: 2px solid rgba(25, 21, 17, 0.18);
  border-radius: 0.55rem;
}

.carousel-btn:hover:not(:disabled) {
  background: #fff2c8;
}

.dot {
  border-radius: 0;
  width: 1rem;
  height: 0.4rem;
  background: rgba(244, 231, 198, 0.24);
}

.dot.active {
  background: #ff7d2f;
  transform: scale(1.15);
}

.card {
  border-radius: 0.8rem;
}

.card-summary-text,
.card-desc,
footer {
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
}

.closing-shell {
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px,
      transparent 14px
    ),
    linear-gradient(180deg, rgba(43, 48, 59, 0.98), rgba(28, 31, 38, 0.98));
}

footer {
  color: rgba(244, 231, 198, 0.64);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.modal {
  background:
    linear-gradient(180deg, rgba(244, 231, 198, 0.97), rgba(236, 221, 184, 0.96));
  color: #1f1a15;
}

.modal h3,
.modal .ep-meta,
.modal p,
.hero-nav-logo,
.page-nav,
.contact-container h1,
.contact-intro,
.contact-container label {
  color: inherit;
}

.page-nav,
.contact-container {
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 14px
    ),
    linear-gradient(180deg, rgba(43, 48, 59, 0.98), rgba(28, 31, 38, 0.98));
  color: #f4e7c6;
  border: 2px solid rgba(244, 231, 198, 0.12);
  border-radius: 1rem;
}

.contact-container input,
.contact-container textarea {
  background: rgba(244, 231, 198, 0.94);
  color: #1d1914;
  border: 1px solid rgba(31, 27, 22, 0.16);
}

.contact-container button {
  background: linear-gradient(90deg, #ff7d2f, #58c52d);
  color: #15130f;
}

@media (max-width: 820px) {
  .hero-nav {
    padding: 0.85rem;
  }

  .hero-ribbon,
  .blend-band {
    background:
      linear-gradient(180deg, #ff7d2f 0 24%, #58c52d 24% 54%, #f4e7c6 54% 76%, #ff5e32 76% 100%);
  }
}

@media (max-width: 640px) {
  .hero-title {
    line-height: 1;
  }

  .section-shell,
  .hero-stage-card,
  .closing-shell,
  .contact-container {
    border-radius: 0.75rem;
  }
}

/* Modern VHS Reset */

body {
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 125, 47, 0.14), transparent 22%),
    radial-gradient(circle at 84% 16%, rgba(88, 197, 45, 0.12), transparent 20%),
    linear-gradient(180deg, #f1e6d2 0%, #eee1ca 100%);
  color: #201a15;
}

body::before {
  opacity: 0.08;
}

.site-shell {
  background: none;
}

.hero {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 125, 47, 0.22), transparent 20%),
    radial-gradient(circle at 84% 24%, rgba(88, 197, 45, 0.2), transparent 20%),
    linear-gradient(135deg, #ff7d2f 0%, #f09a3f 30%, #58c52d 72%, #79d04d 100%);
  border-bottom: none;
  box-shadow: none;
}

.hero::before,
.hero::after,
.hero-aurora,
.hero-grid {
  opacity: 0.08;
}

.hero-nav {
  padding: 0.75rem 1rem;
  background: rgba(32, 26, 21, 0.18);
  border: 1px solid rgba(244, 231, 198, 0.24);
  border-radius: 1rem;
  box-shadow: none;
}

.hero-brand-text,
.hero-nav-links a,
.hero-kicker,
.section-kicker,
.closing-kicker,
.vhs-format {
  letter-spacing: 0.12em;
}

.hero-nav-links a {
  background: rgba(32, 26, 21, 0.18);
  border: 1px solid rgba(244, 231, 198, 0.24);
  border-radius: 999px;
  box-shadow: none;
}

.hero-kicker {
  background: rgba(244, 231, 198, 0.9);
  color: #1f1a15;
  border: 1px solid rgba(32, 26, 21, 0.1);
  box-shadow: none;
}

.hero-title {
  max-width: 12ch;
  text-transform: none;
  letter-spacing: -0.04em;
  text-shadow: 0 8px 24px rgba(33, 23, 16, 0.16);
}

.hero-copy {
  max-width: 24rem;
  font-size: 1rem;
  color: rgba(244, 231, 198, 0.94);
}

.hero-cta {
  border-radius: 999px;
  border-width: 1px;
}

.hero-cta-primary {
  background: #f4e7c6;
  color: #1d1914;
}

.hero-cta-secondary {
  background: rgba(32, 26, 21, 0.18);
  color: #f4e7c6;
  border-color: rgba(244, 231, 198, 0.28);
}

.hero-pills {
  display: none;
}

.hero-stage-card,
.duality-shell,
.showcase-section .section-shell,
.showcase-section-couch .section-shell,
.closing-shell,
.modal,
.contact-container,
.page-nav {
  border: 1px solid rgba(32, 26, 21, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(65, 41, 22, 0.1);
}

.hero-stage-photo,
.hero-stage-story,
.section-shell,
.closing-shell {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.68), rgba(255, 249, 241, 0.52));
  backdrop-filter: blur(10px);
}

.hero-stage-badge {
  background: rgba(244, 231, 198, 0.94);
  color: #1f1c17;
  border: 1px solid rgba(30, 25, 20, 0.08);
}

.hero-logo {
  border-width: 1px;
}

.story-split > div {
  background: rgba(244, 231, 198, 0.78);
  border: none;
}

.hero-ribbon,
.blend-band {
  background: linear-gradient(90deg, #ff7d2f 0%, #ff9f4a 35%, #58c52d 70%, #7cd64d 100%);
  border: none;
}

.hero-ribbon-track span,
.blend-band-copy span {
  color: #1f1a15;
}

.immersive-main {
  padding-top: 1.5rem;
}

.immersive-main::before,
.immersive-main::after {
  opacity: 0.08;
}

.section-shell {
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 125, 47, 0.08), transparent 16%),
    radial-gradient(circle at 88% 82%, rgba(88, 197, 45, 0.08), transparent 16%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.9), rgba(253, 245, 234, 0.88));
}

.section-intro h2,
.section-header h2,
.closing-shell h2 {
  color: #211b16;
  text-transform: none;
}

.section-subtitle,
.section-intro p:last-child,
.closing-shell p {
  color: rgba(32, 26, 21, 0.72);
}

.duality-panels {
  gap: 1rem;
}

.duality-card {
  min-height: auto;
  color: #1f1a15;
  border-radius: 1.2rem;
  border: none;
  box-shadow: none;
}

.duality-card-soul {
  background: linear-gradient(135deg, rgba(255, 125, 47, 0.22), rgba(255, 191, 126, 0.34));
}

.duality-card-mind {
  background: linear-gradient(135deg, rgba(88, 197, 45, 0.2), rgba(170, 223, 126, 0.34));
}

.duality-card p {
  color: rgba(32, 26, 21, 0.72);
}

.card {
  background: #242933;
  border: none;
  border-radius: 1.3rem;
  box-shadow: 0 18px 34px rgba(54, 34, 18, 0.14);
}

.card::before {
  height: 0.36rem;
}

.vhs-shell {
  background: linear-gradient(180deg, #2c313c, #232832);
  padding: 0.85rem 0.85rem 0;
}

.vhs-topline {
  padding-bottom: 0.6rem;
}

.vhs-format {
  color: rgba(244, 231, 198, 0.72);
  font-size: 0.62rem;
}

.card-meta-pill {
  border: none;
  background: #f4e7c6;
  border-radius: 999px;
}

.vhs-label {
  padding: 0.95rem;
  border: none;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(244, 231, 198, 0.96), rgba(238, 224, 189, 0.94));
  box-shadow: none;
}

.vhs-label h3 {
  font-size: 1.08rem;
  text-transform: none;
  line-height: 1.08;
}

.vhs-window-wrap {
  padding-top: 0.8rem;
}

.card-video {
  padding-bottom: 60%;
  border: none;
  border-radius: 0.95rem;
  box-shadow: none;
}

.card-video::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.14) 36%, rgba(0, 0, 0, 0.44) 100%),
    linear-gradient(135deg, rgba(255, 125, 47, 0.18), rgba(88, 197, 45, 0.18));
}

.vhs-stripes {
  height: 1rem;
  margin-top: 0.8rem;
  border-top: none;
  border-radius: 0 0 0.7rem 0.7rem;
  overflow: hidden;
}

.card-body {
  background: linear-gradient(180deg, #2a2f39, #232832);
}

.card-summary {
  padding: 0.9rem 1rem 0.8rem;
}

.card-summary-text,
.card-desc {
  color: rgba(244, 231, 198, 0.82);
}

.toggle-details,
.carousel-btn {
  border: none;
  border-radius: 999px;
  box-shadow: none;
}

.carousel-btn {
  background: rgba(244, 231, 198, 0.92);
}

.dot {
  border-radius: 999px;
  width: 0.7rem;
  height: 0.7rem;
  background: rgba(88, 197, 45, 0.24);
}

.dot.active {
  background: #ff7d2f;
  transform: scale(1.2);
}

.closing-shell {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 125, 47, 0.08), transparent 14%),
    radial-gradient(circle at 88% 76%, rgba(88, 197, 45, 0.08), transparent 14%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.92), rgba(253, 245, 234, 0.9));
}

footer {
  color: rgba(32, 26, 21, 0.5);
  text-transform: none;
  letter-spacing: normal;
}

.modal {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(250, 242, 229, 0.98));
}

.contact-container,
.page-nav {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(250, 242, 229, 0.98));
  color: #201a15;
}

.contact-container input,
.contact-container textarea {
  background: #fffdfa;
}

.contact-container button {
  background: linear-gradient(90deg, #ff7d2f, #58c52d);
  color: #15130f;
}

@media (max-width: 820px) {
  .hero-ribbon,
  .blend-band {
    background: linear-gradient(180deg, #ff7d2f 0%, #f09a3f 40%, #58c52d 100%);
  }
}

@media (max-width: 640px) {
  .hero-nav,
  .hero-stage-card,
  .section-shell,
  .closing-shell,
  .contact-container {
    border-radius: 1rem;
  }

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

  .vhs-label h3 {
    font-size: 1rem;
  }
}

/* Hero VHS Object */

.hero-stage {
  min-height: 38rem;
  display: grid;
  place-items: center;
  perspective: 1600px;
}

.hero-stage-orb,
.hero-stage-card {
  display: none;
}

.hero-vhs-wrap {
  position: relative;
  width: min(100%, 42rem);
  display: grid;
  place-items: center;
}

.hero-vhs-wrap::before {
  content: "";
  position: absolute;
  width: 72%;
  height: 2.5rem;
  bottom: 1.2rem;
  border-radius: 50%;
  background: rgba(39, 24, 12, 0.18);
  filter: blur(18px);
  transform: translateY(1rem);
}

.hero-vhs {
  width: 100%;
  transform-style: preserve-3d;
  animation: heroTapeFloat 8s ease-in-out infinite, heroTapeRotate 16s ease-in-out infinite;
}

.hero-vhs-face {
  position: relative;
  padding: 1rem;
  border-radius: 1.6rem;
  background:
    linear-gradient(180deg, #2c313c, #1f242d);
  box-shadow:
    0 24px 44px rgba(55, 33, 16, 0.22),
    inset 0 0 0 1px rgba(244, 231, 198, 0.06);
  overflow: hidden;
}

.hero-vhs-face::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px,
      transparent 10px
    );
  opacity: 0.35;
  pointer-events: none;
}

.hero-vhs-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.hero-vhs-chip {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(244, 231, 198, 0.1);
  border: 1px solid rgba(244, 231, 198, 0.14);
  color: rgba(244, 231, 198, 0.76);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-vhs-label {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(8rem, 0.8fr);
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 1.15rem;
  background: linear-gradient(180deg, rgba(244, 231, 198, 0.98), rgba(237, 223, 189, 0.95));
}

.hero-vhs-mini {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: #d1652d;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-vhs-logo {
  width: min(100%, 11rem);
  border-radius: 0.8rem;
}

.hero-vhs-logo-full {
  width: 100%;
  max-width: none;
  border-radius: 0.9rem;
  object-fit: cover;
  box-shadow: 0 12px 22px rgba(52, 34, 18, 0.12);
}

.hero-vhs-title {
  margin-top: 0.75rem;
  color: #1f1a15;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-vhs-window {
  position: relative;
  min-height: 12rem;
  border-radius: 1rem;
  background:
    radial-gradient(circle at center, rgba(255, 125, 47, 0.12), transparent 45%),
    linear-gradient(180deg, #252a33, #171b22);
  overflow: hidden;
}

.hero-vhs-window::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 4px
    );
  opacity: 0.4;
}

.hero-vhs-reel {
  position: absolute;
  top: 50%;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #5d6471 0 16%, transparent 16% 24%, #3e454f 24% 52%, #262b34 52% 100%);
  box-shadow: inset 0 0 0 0.4rem rgba(244, 231, 198, 0.07);
  transform: translateY(-50%);
}

.hero-vhs-reel::before {
  content: "";
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  border: 0.3rem solid rgba(244, 231, 198, 0.14);
}

.hero-vhs-reel-left {
  left: 1rem;
}

.hero-vhs-reel-right {
  right: 1rem;
}

.hero-vhs-stripes {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 0;
  height: 1rem;
  margin-top: 0.9rem;
  border-radius: 0 0 0.9rem 0.9rem;
  overflow: hidden;
}

.hero-vhs-stripe-orange {
  background: linear-gradient(90deg, #ff7d2f, #ff9c4a);
}

.hero-vhs-stripe-green {
  background: linear-gradient(90deg, #58c52d, #83d948);
}

.hero-vhs-stripe-cream {
  background: #f4e7c6;
}

@keyframes heroTapeRotate {
  0%, 100% {
    transform: rotateX(8deg) rotateY(-16deg) rotateZ(-2deg);
  }
  50% {
    transform: rotateX(4deg) rotateY(12deg) rotateZ(1deg);
  }
}

@keyframes heroTapeFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-vhs {
    animation: none;
    transform: rotateX(6deg) rotateY(-10deg);
  }
}

@media (max-width: 820px) {
  .hero-stage {
    min-height: 28rem;
  }

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

  .hero-vhs-window {
    min-height: 8rem;
  }
}

@media (max-width: 640px) {
  .hero-stage {
    min-height: 24rem;
  }

  .hero-vhs-face {
    padding: 0.8rem;
    border-radius: 1.2rem;
  }

  .hero-vhs-label {
    padding: 1rem;
  }

  .hero-vhs-title {
    font-size: 1rem;
  }

  .hero-vhs-reel {
    width: 3.8rem;
    height: 3.8rem;
  }
}

.hero-vhs-top,
.hero-vhs-mini,
.hero-vhs-title {
  display: none;
}

.hero-vhs-label {
  grid-template-columns: minmax(0, 1.35fr) minmax(9rem, 0.65fr);
  align-items: stretch;
}

.hero-vhs-label-copy {
  display: flex;
  align-items: center;
}

.hero-vhs-window {
  min-height: 14rem;
}

@media (max-width: 820px) {
  .hero-vhs-label {
    grid-template-columns: 1fr;
  }
}

.hero-vhs-window {
  background:
    radial-gradient(circle at center, rgba(210, 132, 74, 0.12), transparent 45%),
    linear-gradient(180deg, #252a33, #171b22);
}

.hero-vhs-host {
  position: absolute;
  right: -0.15rem;
  bottom: -0.1rem;
  width: min(100%, 12.5rem);
  height: calc(100% + 0.1rem);
  object-fit: contain;
  object-position: bottom right;
  z-index: 1;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.26));
}

.hero-vhs-reel,
.hero-vhs-reel::before {
  display: none;
}

.hero-vhs-stripe-orange {
  background: linear-gradient(90deg, var(--orange), var(--orange-soft));
}

.hero-vhs-stripe-green {
  background: linear-gradient(90deg, var(--green), var(--green-soft));
}

body {
  background:
    radial-gradient(circle at 15% 12%, rgba(210, 132, 74, 0.14), transparent 22%),
    radial-gradient(circle at 84% 16%, rgba(131, 156, 127, 0.12), transparent 20%),
    linear-gradient(180deg, #f1e6d2 0%, #eee1ca 100%);
}

.hero {
  background:
    radial-gradient(circle at 18% 18%, rgba(210, 132, 74, 0.22), transparent 20%),
    radial-gradient(circle at 84% 24%, rgba(131, 156, 127, 0.2), transparent 20%),
    linear-gradient(135deg, var(--orange) 0%, var(--orange-soft) 30%, var(--green) 72%, var(--green-soft) 100%);
}

.title-soul,
.title-mind {
  color: inherit;
}

.hero-title {
  color: #f4e7c6;
}

.hero-ribbon,
.blend-band {
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-soft) 35%, var(--green) 70%, var(--green-soft) 100%);
}

.section-shell {
  background:
    radial-gradient(circle at 10% 12%, rgba(210, 132, 74, 0.08), transparent 16%),
    radial-gradient(circle at 88% 82%, rgba(131, 156, 127, 0.08), transparent 16%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.9), rgba(253, 245, 234, 0.88));
}

.duality-card-soul {
  background: linear-gradient(135deg, rgba(210, 132, 74, 0.22), rgba(226, 162, 111, 0.34));
}

.duality-card-mind {
  background: linear-gradient(135deg, rgba(131, 156, 127, 0.2), rgba(164, 183, 160, 0.34));
}

.card::before,
.dot.active {
  background: var(--orange);
}

.dot {
  background: rgba(131, 156, 127, 0.24);
}

.vhs-stripe-orange {
  background: linear-gradient(90deg, var(--orange), var(--orange-soft));
}

.vhs-stripe-green {
  background: linear-gradient(90deg, var(--green), var(--green-soft));
}

.contact-container button,
.hero-cta-secondary {
  background: linear-gradient(90deg, var(--orange), var(--green));
}

@media (max-width: 820px) {
  .hero-ribbon,
  .blend-band {
    background: linear-gradient(180deg, var(--orange) 0%, var(--orange-soft) 40%, var(--green) 100%);
  }

  .hero-stage {
    min-height: 31rem;
  }

  .hero-vhs-wrap {
    width: min(100%, 36rem);
  }
}

/* Integrated Film Feed */

.showcase-section {
  padding: 2.4rem 0 2rem;
  position: relative;
}

.showcase-section::before,
.showcase-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.showcase-section::before {
  width: 11rem;
  height: 11rem;
  left: -4rem;
  top: 2rem;
  background:
    radial-gradient(circle at 35% 35%, rgba(210, 132, 74, 0.38) 0 58%, rgba(210, 132, 74, 0.18) 58% 100%);
}

.showcase-section::after {
  width: 7rem;
  height: 7rem;
  right: 2rem;
  bottom: 2.5rem;
  background:
    radial-gradient(circle at 35% 35%, rgba(131, 156, 127, 0.34) 0 58%, rgba(131, 156, 127, 0.16) 58% 100%);
}

.showcase-section-couch::before {
  width: 12rem;
  height: 12rem;
  left: auto;
  right: -4rem;
  top: 1.5rem;
  background:
    radial-gradient(circle at 35% 35%, rgba(131, 156, 127, 0.34) 0 58%, rgba(131, 156, 127, 0.14) 58% 100%);
}

.showcase-section-couch::after {
  width: 8rem;
  height: 8rem;
  left: 1rem;
  right: auto;
  bottom: 2rem;
  background:
    radial-gradient(circle at 35% 35%, rgba(210, 132, 74, 0.34) 0 58%, rgba(210, 132, 74, 0.14) 58% 100%);
}

.showcase-section .section-shell,
.showcase-section-couch .section-shell {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  padding-top: 0;
  padding-bottom: 0;
}

.showcase-section .section-shell::before,
.showcase-section-couch .section-shell::before {
  display: none;
}

.showcase-section .section-header,
.showcase-section-couch .section-header {
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.glass-carousel {
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.carousel-viewport {
  padding: 2rem 0 1.9rem;
}

.carousel-track::before {
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(20, 23, 30, 0.96), rgba(30, 35, 43, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(244, 231, 198, 0.08),
    0 10px 24px rgba(48, 28, 14, 0.08);
}

.carousel-viewport::before,
.carousel-viewport::after {
  background:
    repeating-linear-gradient(
      90deg,
      #191c23 0 1rem,
      rgba(244, 231, 198, 0.95) 1rem 1.62rem,
      #191c23 1.62rem 3rem
    );
}

.blend-band {
  margin: 0.4rem 0 0.2rem;
}

/* Blended Feed Polish */

.immersive-main {
  position: relative;
  overflow: hidden;
}

.immersive-main::before,
.immersive-main::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.immersive-main::before {
  width: 18rem;
  height: 18rem;
  top: 30rem;
  left: -7rem;
  background:
    radial-gradient(circle at 34% 34%, rgba(210, 132, 74, 0.26) 0 58%, rgba(210, 132, 74, 0.08) 58% 100%);
}

.immersive-main::after {
  width: 16rem;
  height: 16rem;
  right: -6rem;
  bottom: 18rem;
  background:
    radial-gradient(circle at 34% 34%, rgba(131, 156, 127, 0.24) 0 58%, rgba(131, 156, 127, 0.08) 58% 100%);
}

.showcase-section,
.showcase-section-couch {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1.2rem, 3vw, 2.4rem);
  padding-right: clamp(1.2rem, 3vw, 2.4rem);
}

.showcase-section::before,
.showcase-section::after,
.showcase-section-couch::before,
.showcase-section-couch::after {
  filter: blur(1px);
}

.showcase-section .section-header,
.showcase-section-couch .section-header {
  max-width: 36rem;
  margin: 0 0 1.15rem;
  padding: 0 0.1rem;
}

.showcase-section .section-subtitle,
.showcase-section-couch .section-subtitle {
  max-width: 24rem;
}

.glass-carousel {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: clamp(1rem, 2.5vw, 2.2rem);
  padding-right: clamp(1rem, 2.5vw, 2.2rem);
}

.carousel-viewport {
  background: transparent;
}

.carousel-track {
  position: relative;
  z-index: 1;
}

.carousel-track::before {
  left: -0.8rem;
  right: -0.8rem;
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(22, 24, 29, 0.95), rgba(34, 38, 46, 0.95));
  box-shadow:
    inset 0 1px 0 rgba(244, 231, 198, 0.08),
    0 8px 18px rgba(37, 23, 14, 0.06);
}

.carousel-viewport::before,
.carousel-viewport::after {
  left: 0;
  right: 0;
  border-radius: 999px;
}

.carousel-dots {
  position: relative;
  z-index: 1;
}

.blend-band {
  max-width: 1200px;
  margin: 0.65rem auto 0.3rem;
  padding-left: clamp(1.2rem, 3vw, 2.4rem);
  padding-right: clamp(1.2rem, 3vw, 2.4rem);
}

.hero-ribbon,
.blend-band,
.duality {
  display: none;
}

.immersive-main {
  padding-top: 2.4rem;
}

.showcase-section:first-of-type {
  padding-top: 0.5rem;
}

@media (max-width: 820px) {
  .immersive-main::before {
    width: 11rem;
    height: 11rem;
    top: 34rem;
    left: -4.5rem;
  }

  .immersive-main::after {
    width: 10rem;
    height: 10rem;
    right: -4rem;
    bottom: 12rem;
  }

  .showcase-section,
  .showcase-section-couch,
  .blend-band {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .glass-carousel {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .carousel-track::before {
    left: -0.35rem;
    right: -0.35rem;
    border-radius: 1.35rem;
  }

  .carousel-viewport::before,
  .carousel-viewport::after {
    left: 0;
    right: 0;
  }
}

/* Film Feed Continuity */

.card {
  background: transparent;
  box-shadow: none;
  border: none;
  overflow: visible;
}

.card:hover,
.card:nth-child(even):hover {
  transform: translateY(-8px);
  box-shadow: none;
}

.card::before,
.card-body,
.card-details,
.toggle-details,
.vhs-toggle-wrap {
  display: none;
}

.vhs-shell {
  border-radius: 1.55rem;
  box-shadow:
    0 18px 30px rgba(28, 18, 11, 0.12),
    inset 0 1px 0 rgba(244, 231, 198, 0.06);
}

.vhs-label {
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: auto;
  padding: 0.2rem 0 0.25rem;
  background: transparent;
}

.vhs-label h3 {
  display: block;
  width: calc(100% + 1.05rem);
  margin: 0 0 0 -1.05rem;
  padding: 0.82rem 1rem 0.84rem 1rem;
  color: #231c16;
  font-size: 1.14rem;
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  -webkit-line-clamp: 3;
  background:
    linear-gradient(180deg, rgba(244, 231, 198, 0.98), rgba(239, 224, 189, 0.96));
  border-radius: 0 1.05rem 1.05rem 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 233, 0.55),
    0 2px 0 rgba(38, 30, 22, 0.08);
}

.vhs-label-copy {
  position: relative;
  padding-right: 0;
}

.card-meta-inline {
  display: inline-flex;
  align-items: center;
  min-height: 1.45rem;
  margin: 0 0 0.7rem;
  padding: 0.2rem 0.85rem 0.18rem 1rem;
  color: rgba(35, 28, 22, 0.82);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 0 999px 999px 0;
  background:
    linear-gradient(90deg, rgba(210, 132, 74, 0.88), rgba(131, 156, 127, 0.72));
  box-shadow: inset 0 1px 0 rgba(244, 231, 198, 0.28);
  position: relative;
  left: -1.05rem;
  width: fit-content;
}

.card-meta-inline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.28rem;
  background: rgba(244, 231, 198, 0.7);
}

.vhs-label-copy::after {
  display: none;
}

.vhs-window-wrap {
  padding-top: 0.75rem;
}

.showcase-section,
.showcase-section-couch {
  padding-top: 0;
  padding-bottom: 0;
}

.showcase-section-couch {
  margin-top: 0;
}

.showcase-section .section-header,
.showcase-section-couch .section-header {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  max-width: 42rem;
  margin: 0 auto 1.35rem;
  padding: 0.95rem 0 0.45rem;
}

.showcase-section .section-header::before,
.showcase-section-couch .section-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100%, 34rem);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(210, 132, 74, 0), rgba(210, 132, 74, 0.7), rgba(131, 156, 127, 0.7), rgba(131, 156, 127, 0));
  opacity: 0.75;
}

.showcase-section .section-header::after,
.showcase-section-couch .section-header::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(24rem, 72vw);
  height: 4.25rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(210, 132, 74, 0.22), rgba(131, 156, 127, 0.16));
  filter: blur(24px);
  z-index: -1;
}

.showcase-section-couch .section-header::after {
  background: linear-gradient(90deg, rgba(131, 156, 127, 0.22), rgba(210, 132, 74, 0.16));
}

.showcase-section .section-kicker,
.showcase-section-couch .section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  margin: 0;
  padding: 0.25rem 0.95rem 0.22rem;
  border-radius: 999px;
  background: rgba(244, 231, 198, 0.78);
  color: rgba(35, 28, 22, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 249, 233, 0.55);
}

.showcase-section .section-header h2,
.showcase-section-couch .section-header h2 {
  display: inline-block;
  margin: 0;
  padding: 0.25rem 0.5rem;
}

.showcase-section .section-subtitle,
.showcase-section-couch .section-subtitle {
  margin-top: 0;
}

/* Section Atmosphere */

body {
  font-family: "Avenir Next", "Avenir", "Gill Sans", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at 8% 10%, rgba(210, 132, 74, 0.18) 0 18%, transparent 18.2%),
    radial-gradient(circle at 92% 16%, rgba(131, 156, 127, 0.18) 0 18%, transparent 18.2%),
    linear-gradient(180deg, rgba(233, 187, 144, 0.78) 0%, rgba(240, 225, 205, 0.7) 32%, rgba(214, 223, 204, 0.76) 68%, rgba(151, 173, 146, 0.72) 100%);
}

.hero-title,
.section-header h2,
.closing-shell h2,
.vhs-label h3,
.hero-brand-text,
.modal h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.site-shell::before {
  background: rgba(210, 132, 74, 0.42);
}

.site-shell::after {
  background: rgba(131, 156, 127, 0.34);
}

.hero {
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 225, 196, 0.18), transparent 20%),
    radial-gradient(circle at 78% 20%, rgba(190, 228, 176, 0.24), transparent 22%),
    radial-gradient(circle at 50% 72%, rgba(245, 216, 176, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(210, 132, 74, 0.96) 0%, rgba(223, 156, 104, 0.92) 34%, rgba(154, 178, 146, 0.9) 68%, rgba(131, 156, 127, 0.94) 100%);
}

.showcase-section,
.showcase-section-couch {
  position: relative;
  isolation: isolate;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.showcase-section > .section-header,
.showcase-section-couch > .section-header {
  padding-left: clamp(1.2rem, 3vw, 2.4rem);
  padding-right: clamp(1.2rem, 3vw, 2.4rem);
}

.showcase-section {
  background:
    radial-gradient(circle at 84% 18%, rgba(226, 164, 112, 0.32) 0 11rem, transparent 11.2rem),
    radial-gradient(circle at 16% 76%, rgba(210, 132, 74, 0.2) 0 9rem, transparent 9.2rem),
    linear-gradient(180deg, rgba(223, 156, 104, 0.52) 0%, rgba(216, 146, 90, 0.78) 18%, rgba(210, 132, 74, 0.92) 58%, rgba(199, 118, 62, 0.98) 100%);
}

.showcase-section::after {
  width: 16rem;
  height: 16rem;
  right: -2rem;
  bottom: 1rem;
  background:
    radial-gradient(circle at 35% 35%, rgba(232, 173, 124, 0.2) 0 54%, rgba(210, 132, 74, 0.04) 54% 100%);
  z-index: 0;
}

.showcase-section-couch {
  background:
    radial-gradient(circle at 18% 18%, rgba(153, 179, 148, 0.18) 0 8rem, transparent 8.2rem),
    radial-gradient(circle at 82% 76%, rgba(131, 156, 127, 0.3) 0 9rem, transparent 9.2rem),
    linear-gradient(180deg, rgba(167, 187, 161, 0.42) 0%, rgba(147, 171, 143, 0.6) 18%, rgba(131, 156, 127, 0.82) 58%, rgba(110, 136, 106, 0.98) 100%);
}

.showcase-section-couch::after {
  width: 17rem;
  height: 17rem;
  left: -2rem;
  bottom: 0;
  background:
    radial-gradient(circle at 35% 35%, rgba(155, 180, 149, 0.24) 0 56%, rgba(131, 156, 127, 0.06) 56% 100%);
  z-index: 0;
}

.showcase-section .section-header,
.showcase-section-couch .section-header,
.showcase-section .glass-carousel,
.showcase-section-couch .glass-carousel {
  position: relative;
  z-index: 1;
}

.showcase-section .section-header {
  padding-top: 1.6rem;
  padding-bottom: 0.8rem;
}

.showcase-section-couch .section-header {
  padding-top: 2rem;
  padding-bottom: 0.8rem;
}

.showcase-section .glass-carousel {
  padding-bottom: 2.2rem;
}

.showcase-section-couch .glass-carousel {
  padding-bottom: 2.4rem;
}

.showcase-section-couch .section-header::before {
  background: linear-gradient(90deg, rgba(131, 156, 127, 0), rgba(131, 156, 127, 0.78), rgba(210, 132, 74, 0.38), rgba(210, 132, 74, 0));
}

.showcase-section .carousel-track::before {
  background:
    linear-gradient(180deg, rgba(29, 24, 21, 0.96), rgba(43, 35, 29, 0.96));
}

.showcase-section-couch .carousel-track::before {
  background:
    linear-gradient(180deg, rgba(21, 30, 25, 0.96), rgba(30, 42, 35, 0.96));
}

.showcase-section .section-header::after {
  background: linear-gradient(90deg, rgba(210, 132, 74, 0.32), rgba(226, 164, 112, 0.12));
}

.showcase-section-couch .section-header::after {
  background: linear-gradient(90deg, rgba(131, 156, 127, 0.18), rgba(131, 156, 127, 0.32));
}

.showcase-section .section-kicker {
  background: rgba(244, 197, 154, 0.32);
}

.showcase-section-couch .section-kicker {
  background: rgba(166, 189, 161, 0.34);
}

.vhs-label h3 {
  text-transform: none;
  letter-spacing: -0.02em;
  font-size: 1.1rem;
  line-height: 1.1;
}

@media (max-width: 820px) {
  .showcase-section > .section-header,
  .showcase-section-couch > .section-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Full-Bleed Section Merge */

.immersive-main {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  position: relative;
  z-index: 1;
}

.immersive-main::before {
  display: none;
}

.showcase-section,
.showcase-section-couch {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.showcase-section-couch {
  margin-top: 0;
}

.hero {
  box-shadow: inset 0 -7rem 7rem -4.5rem rgba(214, 145, 90, 0.92);
}

.showcase-section {
  background:
    radial-gradient(circle at 84% 18%, rgba(226, 164, 112, 0.28) 0 11rem, transparent 11.2rem),
    radial-gradient(circle at 16% 76%, rgba(210, 132, 74, 0.18) 0 9rem, transparent 9.2rem),
    linear-gradient(180deg, rgba(217, 151, 97, 0.92) 0%, rgba(214, 145, 90, 0.94) 18%, rgba(210, 132, 74, 0.92) 58%, rgba(199, 118, 62, 0.98) 100%);
}

.showcase-section .section-header {
  padding-top: 2rem;
}

/* Simple Site Reset */

body {
  background:
    linear-gradient(180deg, #d9a06f 0%, #d9a06f 14%, #f0c781 14.1%, #efc16c 47%, #b8ddd5 47.1%, #a7d6cf 82%, #f7ead3 82.1%, #f7ead3 100%);
  color: #2f221a;
  font-family: "Avenir Next", "Avenir", "Gill Sans", sans-serif;
}

.site-shell::before,
.site-shell::after,
.immersive-main::after,
.immersive-main::before {
  display: none;
}

.hero {
  min-height: auto;
  padding: 1.8rem 1.6rem 2.8rem;
  color: #2f221a;
  box-shadow: none;
  background:
    radial-gradient(circle at 72% 56%, rgba(244, 221, 171, 0.28) 0 14rem, transparent 14.2rem),
    linear-gradient(135deg, rgba(221, 157, 110, 0.98) 0%, rgba(213, 143, 94, 0.96) 40%, rgba(226, 180, 124, 0.9) 76%, rgba(214, 195, 145, 0.82) 100%);
}

.hero::before,
.hero::after,
.hero-aurora,
.hero-grid {
  display: block;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 1;
}

.hero::before {
  width: 18rem;
  height: 18rem;
  top: 2.5rem;
  right: -4rem;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(216, 118, 47, 0.72) 0 56%, rgba(216, 118, 47, 0.2) 56% 100%);
}

.hero::after {
  width: 15rem;
  height: 12rem;
  right: -3rem;
  bottom: 1.4rem;
  border-radius: 54% 46% 38% 62% / 44% 54% 46% 56%;
  background: radial-gradient(circle at 34% 34%, rgba(87, 112, 74, 0.92) 0 58%, rgba(87, 112, 74, 0.3) 58% 100%);
}

.hero-grid {
  inset: 0;
  background:
    radial-gradient(circle at 4% 88%, rgba(97, 122, 74, 0.22) 0 4.8rem, transparent 4.9rem),
    radial-gradient(circle at 97% 18%, rgba(216, 118, 47, 0.16) 0 6rem, transparent 6.1rem);
  opacity: 1;
  mask-image: none;
}

.hero-nav {
  display: none;
}

.hero-brand-text {
  font-family: "Avenir Next", "Avenir", "Gill Sans", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: rgba(47, 34, 26, 0.78);
}

.hero-nav-links a {
  background: rgba(247, 234, 211, 0.55);
  border: 1px solid rgba(47, 34, 26, 0.08);
  color: rgba(47, 34, 26, 0.82);
  backdrop-filter: none;
}

.hero-body {
  max-width: 1180px;
  min-height: auto;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: clamp(1.2rem, 2.8vw, 2.6rem);
  padding: 0.8rem 0 0;
  align-items: center;
  position: relative;
  justify-items: center;
}

.hero-text {
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.8rem;
  text-align: center;
}

.hero-logo-mark {
  display: block;
  width: min(100%, 19.75rem);
  margin: 0 auto 0.8rem;
  filter: brightness(0.72) saturate(1.08) contrast(1.04);
}

.hero-kicker,
.hero-copy {
  display: none;
}

.hero-title {
  color: #2c2018;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(1.95rem, 3.15vw, 3.15rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title-line {
  display: block;
  width: max-content;
  white-space: nowrap;
}

.hero-cta-row {
  margin-top: 1.3rem;
  justify-content: center;
}

.hero-cta {
  border-radius: 0.8rem;
  border: none;
  box-shadow: 0 8px 18px rgba(71, 45, 25, 0.12);
}

.hero-cta-primary {
  background: #839c7f;
  color: #f7ead3;
}

.hero-cta-secondary {
  background: #d2844a;
  color: #f7ead3;
}

.hero-stage {
  min-height: auto;
  transform: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-photo-card {
  position: relative;
  width: min(100%, 22.1rem);
  height: clamp(25rem, 43vw, 30rem);
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  border-radius: 1.7rem;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 18px 38px rgba(73, 43, 22, 0.16);
  border: none;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-photo {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: 1.7rem;
  background: rgba(247, 234, 211, 0.52);
  transform: none;
  transition: opacity 320ms ease;
}

.hero-slide.is-active .hero-photo {
  transform: scale(var(--hero-photo-scale, 1));
}

.hero-photo-frame-default {
  --hero-photo-scale: 1;
  object-position: 50% 50%;
}

.hero-photo-frame-close {
  --hero-photo-scale: 1.12;
  object-position: 52% 36%;
}

.hero-photo-frame-poster {
  --hero-photo-scale: 1;
  object-position: 50% 50%;
}

.hero-photo-frame-landscape {
  --hero-photo-scale: 1;
  object-fit: cover;
  object-position: 50% 50%;
  padding: 0;
  background: transparent;
}

.hero-photo-frame-portrait {
  --hero-photo-scale: 1;
  object-position: 50% 34%;
}

.hero-photo-frame-food {
  --hero-photo-scale: 1;
  object-fit: cover;
  object-position: 50% 50%;
  padding: 0;
  background: transparent;
}

.hero-photo-frame-prep {
  --hero-photo-scale: 1.1;
  object-position: 52% 72%;
}

.hero-slideshow-dots {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 2;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: calc(100% - 2rem);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(247, 234, 211, 0.78);
  box-shadow: 0 10px 18px rgba(66, 41, 22, 0.08);
  transform: translateX(-50%);
}

.hero-slideshow-counter {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  background: rgba(247, 234, 211, 0.86);
  color: rgba(111, 74, 44, 0.92);
  box-shadow: 0 10px 18px rgba(66, 41, 22, 0.08);
  font-family: "Avenir Next", "Avenir", "Gill Sans", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transform: translateX(-50%);
}

.hero-slideshow-counter-sep,
.hero-slideshow-total {
  color: rgba(111, 74, 44, 0.65);
}

.hero-slideshow-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(247, 234, 211, 0.9);
  color: #6f4a2c;
  box-shadow: 0 10px 18px rgba(66, 41, 22, 0.14);
  transform: translateY(-50%);
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.hero-slideshow-arrow span {
  font-size: 1.6rem;
  line-height: 1;
}

.hero-slideshow-arrow-prev {
  left: 0.8rem;
}

.hero-slideshow-arrow-next {
  right: 0.8rem;
}

.hero-slideshow-arrow:hover,
.hero-slideshow-arrow:focus-visible {
  background: #f7ead3;
  color: #d2844a;
  transform: translateY(-50%) scale(1.04);
}

.hero-slideshow-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(131, 156, 127, 0.35);
  transition: transform 180ms ease, background-color 180ms ease;
}

.hero-slideshow-dot.is-active {
  background: #d2844a;
  transform: scale(1.08);
}

.hero-slideshow-dot:hover,
.hero-slideshow-dot:focus-visible {
  background: #839c7f;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-photo,
  .hero-slideshow-dot,
  .hero-slideshow-arrow,
  .hero-slideshow-counter {
    transition: none;
  }
}

.showcase-section,
.showcase-section-couch {
  width: auto;
  margin: 0;
  padding: 2rem 1.6rem 2.7rem;
}

.showcase-section {
  background:
    radial-gradient(circle at 10% 2%, rgba(210, 132, 74, 0.24) 0 3.5rem, transparent 3.7rem),
    radial-gradient(circle at 92% 16%, rgba(210, 132, 74, 0.16) 0 5rem, transparent 5.2rem),
    linear-gradient(180deg, #f2c96c 0%, #efbc55 100%);
}

.showcase-section-couch {
  background:
    radial-gradient(circle at 8% 86%, rgba(210, 132, 74, 0.22) 0 4.5rem, transparent 4.7rem),
    radial-gradient(circle at 88% 12%, rgba(131, 156, 127, 0.22) 0 6rem, transparent 6.2rem),
    linear-gradient(180deg, #b8ddd5 0%, #9fd1c8 100%);
}

.showcase-section::before,
.showcase-section::after,
.showcase-section-couch::before,
.showcase-section-couch::after {
  display: none;
}

.showcase-section > .section-header,
.showcase-section-couch > .section-header {
  max-width: 1180px;
  margin: 0 auto 1.4rem;
  padding: 0;
  text-align: center;
}

.showcase-section .section-header::before,
.showcase-section .section-header::after,
.showcase-section-couch .section-header::before,
.showcase-section-couch .section-header::after {
  display: none;
}

.section-kicker {
  display: none;
}

.section-header h2 {
  margin: 0;
  padding: 0;
  color: #2b2018;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.05;
}

.section-subtitle {
  margin: 0.45rem auto 0;
  color: rgba(47, 34, 26, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
  font-style: italic;
}

.glass-carousel {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  width: auto;
}

.carousel-viewport {
  padding: 0;
}

.carousel-viewport::before,
.carousel-viewport::after,
.carousel-track::before {
  display: none;
}

.carousel-track {
  gap: 1rem;
}

.card {
  flex: 0 0 calc((100% - 4 * 1rem) / 5);
  display: flex;
  flex-direction: column;
  background: rgba(255, 250, 244, 0.88);
  border-radius: 1rem;
  border: 1px solid rgba(47, 34, 26, 0.08);
  box-shadow: 0 14px 26px rgba(66, 41, 22, 0.08);
  overflow: hidden;
}

.card:hover,
.card:nth-child(even):hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 28px rgba(66, 41, 22, 0.12);
}

.card-video-wrap {
  padding: 0;
}

.card-video {
  padding-bottom: 66%;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.card-video::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.28));
}

.card-copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 0.8rem 0.85rem 0.95rem;
}

.card-date {
  margin-top: auto;
  padding-top: 0.55rem;
  color: #9c6e42;
  font-size: 0.78rem;
}

.vhs-shell,
.vhs-topline,
.vhs-label,
.vhs-label-copy,
.card-meta-inline,
.vhs-window-wrap,
.vhs-stripes {
  display: contents;
}

.vhs-label h3,
.card-copy h3 {
  margin: 0;
  color: #2b2018;
  font-family: "Avenir Next", "Avenir", "Gill Sans", sans-serif;
  font-size: 0.98rem;
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-weight: 700;
  text-transform: none;
}

.carousel-btn {
  width: 2.8rem;
  height: 2.8rem;
  background: rgba(247, 234, 211, 0.95);
  color: #6f4a2c;
  box-shadow: 0 8px 16px rgba(66, 41, 22, 0.08);
}

.dot {
  width: 0.52rem;
  height: 0.52rem;
  background: rgba(47, 34, 26, 0.16);
}

.dot.active {
  background: #d2844a;
}

.closing-note {
  display: none;
}

footer {
  padding: 1.4rem 1rem 2rem;
  color: rgba(47, 34, 26, 0.72);
  background: #f7ead3;
}

@media (max-width: 1100px) {
  .hero-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-stage {
    order: 0;
    justify-content: center;
  }

  .hero-photo-card {
    margin: 0 auto;
    width: min(100%, 24rem);
    height: clamp(24rem, 74vw, 31rem);
  }

  .hero-text {
    max-width: 32rem;
    margin: 0 auto;
    padding-top: 0;
    text-align: center;
  }

  .hero-logo-mark {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-row {
    justify-content: center;
  }

  .card {
    flex: 0 0 calc((100% - 2 * 1rem) / 3);
  }
}

@media (max-width: 820px) {
  .hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .showcase-section,
  .showcase-section-couch {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .card {
    flex: 0 0 calc((100% - 1rem) / 2);
  }
}
