:root {
  --ink: #fffaf2;
  --surface: #ffffff;
  --panel: #fff3df;
  --panel-soft: #f8e2c8;
  --navy: #103040;
  --saffron: #c86e35;
  --terracotta: #d08050;
  --amber: #c69050;
  --cream: #f3dfc4;
  --ivory: #fff8ec;
  --brown: #704020;
  --text: #103040;
  --muted: #6f5f52;
  --line: rgba(208, 128, 80, 0.24);
  color: var(--text);
  background: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  scroll-behavior: smooth;
}

/* Page loader */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffffff, rgba(255, 248, 236, 0.96));
  transition: opacity 500ms ease, visibility 500ms ease;
}

#page-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  width: 440px;
  height: auto;
  animation: loader-pulse 1200ms ease-in-out infinite;
  filter: drop-shadow(0 12px 30px rgba(208, 128, 80, 0.18));
}

.loader-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.loader-dots span {
  width: 10px;
  height: 10px;
  background: var(--terracotta);
  border-radius: 50%;
  display: inline-block;
  animation: loader-dots 900ms infinite ease-in-out;
}

.loader-dots span:nth-child(2) { animation-delay: 150ms; }
.loader-dots span:nth-child(3) { animation-delay: 300ms; }

@keyframes loader-pulse {
  0% { transform: scale(0.94); opacity: 0.9; }
  50% { transform: scale(1.06); opacity: 1; }
  100% { transform: scale(0.94); opacity: 0.9; }
}

@keyframes loader-dots {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(-8px); opacity: 1; }
}

/* While loading: hide main content for cleaner reveal */
body.loading .site-header,
body.loading main,
body.loading footer {
  visibility: hidden;
  opacity: 0;
  transform: translateY(6px);
}

/* Header logo smooth scale on reveal */
.brand img {
  transition: transform 560ms cubic-bezier(.2,.9,.2,1), filter 560ms ease;
}

.brand img.enlarge {
  transform: scale(1.16);
}


* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 12%, rgba(208, 128, 80, 0.16), transparent 28%),
    radial-gradient(circle at 10% 34%, rgba(198, 144, 80, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fff8ec 46%, #ffffff 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(16, 48, 64, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 48, 64, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 68px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 236, 0.8) 82%, transparent);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 82px;
  height: 60px;
}

.brand img {
  width: 210px;
  height: 210px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(208, 128, 80, 0.3));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(16, 48, 64, 0.82);
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.site-nav .nav-cta {
  min-width: 112px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--terracotta);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 10px 26px rgba(208, 128, 80, 0.28);
}

.site-nav .nav-cta::after {
  content: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.section-band {
  position: relative;
  width: min(100% - 40px, 1460px);
  margin: 0 auto;
  padding: 92px 0;
  scroll-margin-top: 92px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  align-items: start;
  gap: clamp(18px, 4vw, 56px);
  min-height: 100svh;
  padding-top: 138px;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.greate{
   color: var(--terracotta);
  font-size:40px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0;
}

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

h1,
h2 {
  font-family: monospace;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 740px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 8vw, 7.6rem);
  line-height: 0.88;
}

h1::first-line {
  color: var(--navy);
}

h1 {
  color: var(--terracotta);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.6vw, 4.4rem);
  line-height: 0.9;
}

h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.hero-copy>p:not(.eyebrow) {
  max-width: 520px;
}

.hero-visual {
  /* position: relative; */
  justify-self: end;
  width: min(42vw, 560px);
  min-width: 320px;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 7% 4% 5%;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 214, 150, 0.38), transparent 35%),
    radial-gradient(circle at 78% 72%, rgba(208, 128, 80, 0.22), transparent 38%),
    radial-gradient(circle at 18% 74%, rgba(16, 48, 64, 0.08), transparent 34%);
  filter: blur(22px);
}

.hero-visual img {
  display: block;
  width: 800px;
  aspect-ratio: 1.15;
  object-fit: cover;
  object-position: center;
  position: absolute;
  right: -153px;
  top: -100px;
  /* filter:
    drop-shadow(0 26px 52px rgba(16, 48, 64, 0.12))
    saturate(1.04)
    contrast(1.02);
  mix-blend-mode: multiply;
  mask-image: radial-gradient(ellipse at center, #000 62%, rgba(0, 0, 0, 0.86) 74%, transparent 100%); */
}

.heading_top {
  font-size: 65px;
  line-height: 80px;
  letter-spacing: 2px;
}

.hero-actions,
.social-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 20px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(208, 128, 80, 0.72);
}

.button.primary {
  background: var(--terracotta);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(208, 128, 80, 0.24);
}

.button.secondary {
  background: rgb(251 240 224);
  color: var(--navy);
}

.social-row {
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.social-row img {
  width: 18px;
}

.social-row a {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(208, 128, 80, 0.24);
  border-radius: 8px;
  color: var(--navy);
  font-size: 0.68rem;
}

.hero-mark {
  position: relative;
  justify-self: end;
}

.hero-orbit {
  position: absolute;
  inset: 4%;
  z-index: -1;
  border: 1px solid rgba(208, 128, 80, 0.22);
  border-radius: 50%;
  animation: float-orbit 12s linear infinite;
}

.hero-orbit::before,
.hero-orbit::after,
.hero-orbit span {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 10px 24px rgba(208, 128, 80, 0.18);
}

.hero-orbit::before {
  width: 18px;
  height: 18px;
  top: 11%;
  right: 18%;
}

.hero-orbit::after {
  width: 12px;
  height: 12px;
  left: 13%;
  bottom: 23%;
  background: var(--amber);
}

.hero-orbit span:nth-child(1) {
  width: 10px;
  height: 10px;
  right: 4%;
  bottom: 36%;
  background: var(--navy);
}

.hero-orbit span:nth-child(2) {
  width: 16px;
  height: 16px;
  left: 12%;
  top: 17%;
  background: var(--cream);
}

.hero-orbit span:nth-child(3) {
  width: 9px;
  height: 9px;
  right: 28%;
  bottom: 3%;
}

.hero-mark img {
  position: relative;
  width: min(32vw, 410px);
  min-width: 280px;
  aspect-ratio: 1;
  object-fit: contain;
  box-shadow:
    0 26px 80px rgba(16, 48, 64, 0.13),
    0 0 62px rgba(208, 128, 80, 0.18);
}

@keyframes float-orbit {
  from {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.04);
  }

  to {
    transform: rotate(360deg) scale(1);
  }
}

.about,
.production {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  align-items: center;
  gap: clamp(34px, 6vw, 72px);
}

.production {
  width: min(100% - 40px, 1080px);
  grid-template-columns: 0.85fr 1fr;
  padding: 56px clamp(22px, 5vw, 58px);
  border: 1px solid rgba(208, 128, 80, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 248, 236, 0.94), rgba(243, 223, 196, 0.72)),
    #ffffff;
}

.media-panel,
.mic-photo {
  min-height: 420px;
}

.media-panel {
  overflow: hidden;
  border: 1px solid rgba(208, 128, 80, 0.2);
  border-radius: 8px;
  background: #fff8ec;
}

.mic-photo {
  background:
    radial-gradient(circle at 50% 18%, rgba(208, 128, 80, 0.28), transparent 28%),
    linear-gradient(90deg, transparent 48%, rgba(16, 48, 64, 0.14) 49%, transparent 50%),
    radial-gradient(ellipse at 50% 36%, #d08050 0 9%, transparent 10%),
    linear-gradient(#fff8ec, #f3dfc4);
}

.feature-grid,
.team-grid,
.episode-grid,
.quote-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.feature-grid span img {
  width: 32px;
}

.feature-grid article {
  min-height: 126px;
  border-left: 1px solid var(--line);
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 248, 236, 0.9), rgba(255, 255, 255, 0.35));
  text-align: center;
}

.feature-grid span {
  color: var(--terracotta);
  font-weight: 900;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.team-grid,
.episode-grid {
  grid-template-columns: repeat(4, 1fr);
}

.person-card,
.episode-card,
.quote-card {
  border: 1px solid rgba(208, 128, 80, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 60px rgba(16, 48, 64, 0.1);
}

.person-card {
  overflow: hidden;
  padding: 0 0 20px;
}

.person-card .social-row {
  margin-top: 10px;
  padding: 0 18px;
}

.avatar {
  min-height: 210px;
  margin-bottom: 18px;
  background:
    radial-gradient(circle at 50% 32%, rgba(243, 223, 196, 0.72), transparent 10%),
    linear-gradient(140deg, #f3dfc4, #d08050 46%, #103040 100%);
}

.avatar-two {
  background:
    radial-gradient(circle at 52% 30%, rgba(243, 223, 196, 0.66), transparent 10%),
    linear-gradient(145deg, #fff8ec, #c69050 48%, #12384a 100%);
}

.avatar-third {
  background:
    radial-gradient(circle at 48% 34%, rgba(243, 223, 196, 0.68), transparent 11%),
    linear-gradient(140deg, #f3dfc4, #704020 48%, #103040 100%);
}

.avatar-four {
  background:
    radial-gradient(circle at 55% 31%, rgba(243, 223, 196, 0.66), transparent 10%),
    linear-gradient(145deg, #fff8ec, #d08050 48%, #103040 100%);
}

.person-card h3,
.person-card p,
.episode-card h3,
.episode-card p {
  padding: 0 18px;
}

.person-card h3,
.episode-card h3 {
  color: var(--terracotta);
  text-transform: uppercase;
}

.person-card p,
.episode-card p {
  margin-bottom: 0;
  font-size: 0.86rem;
  line-height: 1.55;
}

.episode-thumb {
  display: flex;
  align-items: end;
  min-height: 144px;
  margin-bottom: 18px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.08), rgba(16, 48, 64, 0.82)),
    linear-gradient(135deg, rgba(208, 128, 80, 0.72), rgba(16, 48, 64, 0.9));
  color: var(--cream);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.45rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.quote-grid {
  grid-template-columns: repeat(3, 1fr);
}

.quote-card {
  min-height: 210px;
  margin: 0;
  padding: 28px;
}

.quote-card blockquote {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.75;
}

.quote-card figcaption {
  color: var(--terracotta);
  font-weight: 900;
  text-transform: uppercase;
}

.production-mark {
  display: grid;
  place-items: center;
  min-height: 260px;
  color: var(--navy);
  text-transform: uppercase;
}

.production-mark span {
  font-family: Georgia, serif;
  font-size: clamp(5rem, 14vw, 10rem);
  line-height: 1;
  text-shadow: 0 0 34px rgba(208, 128, 80, 0.24);
}

.production-mark small {
  color: var(--terracotta);
  font-weight: 800;
  letter-spacing: 0;
}

.subscribe {
  min-height: 360px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(208, 128, 80, 0.16);
}

.subscribe-copy {
  max-width: 700px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 68px);
  color: rgba(16, 48, 64, 0.66);
  font-size: 0.78rem;
  background: #fff8ec;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

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

.production-logo {
  width: 300px;
}

@media (max-width: 1440px) {
  .hero-visual img {
    position: relative;
    right: 0;
    top: 0;
    width: 100%;
  }
}

@media (max-width: 940px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 50px rgba(16, 48, 64, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 8px;
  }

  .hero,
  .about,
  .production {
    grid-template-columns: 1fr;
  }

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

  .hero-mark {
    justify-self: start;
  }

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

  .hero-visual {
    justify-self: center;
    width: min(92vw, 560px);
    min-width: 0;
  }

  .feature-grid,
  .team-grid,
  .episode-grid,
  .quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .heading_top {
    font-size: 35px;
    line-height: 50px;
  }
}

@media (max-width: 640px) {

.brand img {
    width: 115px;
    height: 147px;
    object-fit: contain;
    
}

  .section-band {
    width: min(100% - 28px, 1160px);
    padding: 70px 0;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 5rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 1rem);
  }

  .feature-grid,
  .team-grid,
  .episode-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .section-heading.split,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .media-panel,
  .mic-photo {
    min-height: 300px;
  }

  .production {
    padding: 34px 20px;
  }

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