@font-face {
  font-family: "Alesana Atelier";
  src: url("assets/fonts/alesana-atelier.regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #201812;
  --deep: #4c3a2c;
  --paper: #fff9ed;
  --sand: #f2cd96;
  --sun: #f9e9b8;
  --olive: #d6c06f;
  --coral: #ffc1ae;
  --rose: #d96b8a;
  --lagoon: #5d4f24;
  --night: #201710;
  --focus: #fff2a8;
  --line: rgba(255, 249, 237, 0.34);
  --spotify: #1ed760;
  --apple-music: #b6173a;
  --amazon-music: #0d697d;
  --shadow: 0 22px 56px rgba(61, 43, 30, 0.26);
  --display-font: "Alesana Atelier", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  position: relative;
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 249, 237, 0.05), rgba(76, 57, 32, 0.22) 54%, rgba(75, 43, 34, 0.52)),
    url("assets/images/orbs-in-oasis-background.png") center top / cover fixed,
    #d8b47e;
  color: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(112deg, rgba(255, 249, 237, 0.035) 0 1px, transparent 1px 18px),
    linear-gradient(90deg, rgba(22, 17, 13, 0.74), rgba(76, 57, 32, 0.24) 56%, rgba(22, 17, 13, 0.18)),
    linear-gradient(180deg, rgba(255, 249, 237, 0.06), rgba(37, 28, 24, 0.48));
  content: "";
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 249, 237, 0.018) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(32, 24, 18, 0.018) 0 1px, transparent 1px 4px);
  content: "";
  mix-blend-mode: soft-light;
  opacity: 0.55;
  pointer-events: none;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

textarea {
  resize: vertical;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--focus);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 16px 32px;
  background:
    linear-gradient(90deg, rgba(6, 5, 4, 0.9), rgba(48, 31, 20, 0.78) 48%, rgba(126, 86, 50, 0.68)),
    rgba(48, 36, 26, 0.58);
  border-bottom: 1px solid rgba(255, 249, 237, 0.24);
  box-shadow: 0 14px 34px rgba(24, 16, 12, 0.18);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--paper);
  font-family: var(--display-font);
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
  text-shadow: 0 8px 20px rgba(28, 18, 12, 0.38);
}

.brand-thumbnail {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 249, 237, 0.42);
  border-radius: 8px;
  object-fit: cover;
  box-shadow:
    0 1px 0 rgba(255, 249, 237, 0.16) inset,
    0 8px 18px rgba(20, 14, 10, 0.28);
}

.nav-links,
.streaming-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 8px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.nav-links a:hover,
.nav-links a.is-active,
.footer-links a:hover {
  background: rgba(255, 249, 237, 0.1);
  border-color: rgba(255, 249, 237, 0.2);
  color: var(--sun);
}

.hero,
.listen-section,
.videos-section,
.contact-section {
  scroll-margin-top: 0;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 88vh;
  padding: 112px 32px 72px;
}

.hero-copy {
  width: min(760px, 100%);
  margin-left: max(0px, calc((100vw - 1180px) / 2));
  padding-left: 24px;
  border-left: 2px solid rgba(214, 192, 111, 0.72);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.82;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 10ch;
  padding-top: 0.08em;
  color: #fffbed;
  background: linear-gradient(180deg, #fffdf5, var(--sun) 62%, #ffd1c3);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--display-font);
  font-size: 5.9rem;
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 20px 56px rgba(28, 18, 12, 0.74);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  h1 {
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

h2 {
  color: #fffbed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  text-shadow: 0 12px 32px rgba(28, 18, 12, 0.44);
}

h3 {
  font-size: 1.05rem;
}

.tagline {
  max-width: 720px;
  margin: 22px 0 0;
  color: #ffe2bd;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.45;
  text-shadow: 0 10px 30px rgba(28, 18, 12, 0.56);
}

.about-text {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 249, 237, 0.94);
  font-size: 1.04rem;
  line-height: 1.75;
  text-shadow: 0 8px 24px rgba(28, 18, 12, 0.6);
}

.streaming-links {
  margin-top: 34px;
  max-width: 740px;
}

.hero-streaming-links a {
  justify-content: flex-start;
  width: 204px;
}

.listen-streaming-links {
  align-items: stretch;
  flex-direction: column;
  max-width: 320px;
  margin-top: 28px;
}

.streaming-links a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 16px 10px 12px;
  border: 1px solid var(--service-border, rgba(255, 249, 237, 0.44));
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 249, 237, 0.22), rgba(255, 249, 237, 0)),
    var(--service-bg, rgba(74, 51, 34, 0.5));
  color: var(--service-ink, var(--paper));
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(28, 18, 12, 0.18);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease,
    transform 160ms ease;
}

.listen-streaming-links a {
  justify-content: flex-start;
  width: 100%;
}

.service-link-spotify {
  --service-bg: var(--spotify);
  --service-border: rgba(198, 255, 219, 0.9);
  --service-ink: #07130a;
  --service-logo-bg: rgba(7, 19, 10, 0.16);
  --service-logo-border: rgba(7, 19, 10, 0.24);
}

.service-link-apple {
  --service-bg: var(--apple-music);
  --service-border: rgba(255, 196, 208, 0.88);
  --service-ink: #fff9ed;
  --service-logo-bg: rgba(255, 249, 237, 0.18);
  --service-logo-border: rgba(255, 249, 237, 0.3);
}

.service-link-amazon {
  --service-bg: var(--amazon-music);
  --service-border: rgba(153, 234, 250, 0.88);
  --service-ink: #fff9ed;
  --service-logo-bg: rgba(255, 249, 237, 0.94);
  --service-logo-border: rgba(255, 249, 237, 0.42);
}

.service-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: var(--service-logo-width, 30px);
  height: 30px;
  padding: 4px;
  overflow: hidden;
  border: 1px solid var(--service-logo-border, rgba(255, 249, 237, 0.3));
  border-radius: 7px;
  background: var(--service-logo-bg, rgba(255, 249, 237, 0.18));
}

.service-logo img {
  width: auto;
  height: auto;
  max-width: var(--service-logo-max-width, 22px);
  max-height: 22px;
  object-fit: contain;
}

.service-label {
  min-width: 0;
  white-space: nowrap;
}

.streaming-links a:hover,
.footer-links a:hover {
  background:
    linear-gradient(135deg, rgba(255, 249, 237, 0.34), rgba(255, 249, 237, 0.08)),
    var(--service-bg, rgba(138, 74, 54, 0.62));
  border-color: rgba(249, 233, 184, 0.9);
  color: var(--service-ink, var(--paper));
  box-shadow: 0 18px 40px rgba(28, 18, 12, 0.3);
  filter: saturate(108%);
  transform: translateY(-2px);
}

.listen-section,
.videos-section,
.contact-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(93, 79, 36, 0.3), rgba(217, 107, 138, 0.12) 44%, rgba(43, 30, 22, 0.2)),
    linear-gradient(180deg, rgba(65, 50, 38, 0.74), rgba(28, 22, 18, 0.82));
  border-top: 1px solid rgba(255, 249, 237, 0.26);
  backdrop-filter: blur(8px) saturate(112%);
}

.listen-section::before,
.videos-section::before,
.contact-section::before {
  position: absolute;
  top: 0;
  right: 32px;
  left: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 192, 111, 0.82), rgba(255, 193, 174, 0.7), transparent);
  content: "";
  pointer-events: none;
}

.listen-section {
  padding: 92px 32px;
}

.videos-section {
  padding: 92px 32px;
}

.contact-section {
  padding: 92px 32px 104px;
  background:
    linear-gradient(135deg, rgba(255, 193, 174, 0.18), rgba(93, 79, 36, 0.22) 46%, rgba(17, 13, 10, 0.34)),
    linear-gradient(180deg, rgba(50, 38, 28, 0.78), rgba(21, 16, 13, 0.86));
}

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

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: 56px;
  align-items: center;
}

.section-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--paper);
  font-size: 1.02rem;
  line-height: 1.75;
}

.album-title-mark {
  display: inline-block;
  color: #fffbed;
  background: linear-gradient(180deg, #fffdf5, var(--sun) 62%, #ffd1c3);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--display-font);
  font-weight: 700;
  text-shadow: 0 12px 32px rgba(28, 18, 12, 0.44);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .album-title-mark {
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

.audio-player {
  border: 1px solid rgba(255, 249, 237, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(214, 192, 111, 0.2), rgba(255, 193, 174, 0.12) 42%, transparent 43%),
    linear-gradient(135deg, rgba(93, 79, 36, 0.62), rgba(143, 84, 58, 0.42)),
    rgba(59, 43, 31, 0.6);
  box-shadow:
    0 1px 0 rgba(255, 249, 237, 0.16) inset,
    var(--shadow);
  backdrop-filter: blur(10px) saturate(118%);
  padding: 24px;
}

.track-meta {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 60px;
  margin-bottom: 22px;
}

.track-thumbnail {
  width: 82px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 249, 237, 0.34);
  border-radius: 8px;
  object-fit: cover;
  box-shadow:
    0 1px 0 rgba(255, 249, 237, 0.16) inset,
    0 12px 28px rgba(21, 14, 10, 0.28);
}

.track-info {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.track-label {
  color: var(--sand);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.track-meta strong {
  color: #fffbed;
  font-size: 1.45rem;
  overflow-wrap: break-word;
}

.volume-menu {
  position: relative;
  align-self: start;
  justify-self: end;
}

.volume-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 249, 237, 0.3);
  border-radius: 8px;
  background: rgba(5, 4, 3, 0.62);
  color: var(--sun);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.volume-trigger:hover,
.volume-trigger[aria-expanded="true"] {
  border-color: rgba(249, 233, 184, 0.78);
  background: rgba(5, 4, 3, 0.82);
  transform: translateY(-1px);
}

.volume-icon {
  width: 22px;
  height: 22px;
}

.volume-popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  width: 64px;
  padding: 14px 10px;
  border: 1px solid rgba(255, 249, 237, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 249, 237, 0.1), rgba(255, 249, 237, 0.04)),
    rgba(17, 13, 10, 0.94);
  box-shadow: 0 18px 36px rgba(5, 4, 3, 0.38);
  backdrop-filter: blur(10px);
}

.volume-popover[hidden] {
  display: none;
}

.player-controls {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.icon-button:hover {
  background: #fff5d1;
  transform: scale(1.04);
}

.play-icon {
  display: block;
  width: 18px;
  height: 22px;
}

.play-icon.is-play {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid currentColor;
}

.play-icon.is-pause {
  position: relative;
}

.play-icon.is-pause::before,
.play-icon.is-pause::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.play-icon.is-pause::before {
  left: 1px;
}

.play-icon.is-pause::after {
  right: 1px;
}

.timeline-wrap {
  display: grid;
  gap: 8px;
  min-width: 0;
}

input[type="range"] {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 44px;
  background: transparent;
  accent-color: #050403;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 7px;
  border: 1px solid rgba(255, 249, 237, 0.22);
  border-radius: 999px;
  background: #050403;
  box-shadow: 0 1px 0 rgba(255, 249, 237, 0.08) inset;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin-top: -6.5px;
  border: 2px solid #050403;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 3px 10px rgba(5, 4, 3, 0.34);
}

input[type="range"]::-moz-range-track {
  height: 7px;
  border: 1px solid rgba(255, 249, 237, 0.22);
  border-radius: 999px;
  background: #050403;
  box-shadow: 0 1px 0 rgba(255, 249, 237, 0.08) inset;
}

input[type="range"]::-moz-range-progress {
  height: 7px;
  border-radius: 999px;
  background: #050403;
}

input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 2px solid #050403;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 3px 10px rgba(5, 4, 3, 0.34);
}

.seek {
  min-height: 44px;
}

.time-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 247, 232, 0.84);
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
}

.volume-control {
  display: flex;
  justify-content: center;
  min-width: 44px;
}

.volume-control-vertical input[type="range"] {
  width: 44px;
  height: 136px;
  min-height: 136px;
  padding: 0;
  writing-mode: vertical-lr;
  direction: rtl;
}

.volume-control-vertical input[type="range"]::-webkit-slider-runnable-track {
  width: 7px;
  height: 100%;
}

.volume-control-vertical input[type="range"]::-webkit-slider-thumb {
  margin-top: 0;
  margin-left: -6.5px;
}

.volume-control-vertical input[type="range"]::-moz-range-track,
.volume-control-vertical input[type="range"]::-moz-range-progress {
  width: 7px;
  height: 100%;
}

.player-status {
  min-height: 20px;
  margin: 14px 0 0;
  color: rgba(255, 249, 237, 0.82);
  font-size: 0.82rem;
  line-height: 1.45;
}

.playlist {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 249, 237, 0.28);
}

.playlist-track {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 249, 237, 0.26);
  border-radius: 8px;
  background: rgba(255, 249, 237, 0.14);
  color: var(--paper);
  cursor: pointer;
  text-align: left;
}

.playlist-track::before {
  position: absolute;
  inset: -4px;
  z-index: 0;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--olive), #40c486, var(--amazon-music), #ff8fb1, var(--sun), var(--coral), var(--olive));
  background-size: 360% 100%;
  content: "";
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  padding: 3px;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.playlist-track::after {
  position: absolute;
  inset: -5px;
  z-index: 0;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(214, 192, 111, 0.42), rgba(64, 196, 134, 0.34), rgba(13, 105, 125, 0.36), rgba(255, 143, 177, 0.34), rgba(249, 233, 184, 0.34), rgba(214, 192, 111, 0.42));
  background-size: 360% 100%;
  content: "";
  filter: blur(9px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.playlist-track > * {
  position: relative;
  z-index: 1;
}

.track-number {
  color: var(--coral);
  font-weight: 900;
}

.track-name {
  min-width: 0;
}

.track-state {
  padding: 3px 8px;
  border: 1px solid rgba(214, 192, 111, 0.62);
  border-radius: 999px;
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.track-state:empty {
  display: none;
}

.playlist-track.is-active,
.playlist-track:hover {
  border-color: rgba(214, 192, 111, 0.82);
  background: rgba(93, 79, 36, 0.5);
}

.playlist-track.is-playing::before {
  animation: activeTrackBorder 10.6s linear infinite;
  opacity: 1;
}

.playlist-track.is-playing::after {
  animation: activeTrackGlow 10.6s linear infinite;
  opacity: 0.34;
}

@keyframes activeTrackBorder {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 360% 50%;
  }
}

@keyframes activeTrackGlow {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 360% 50%;
  }
}

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

.videos-heading {
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
}

.videos-heading .eyebrow {
  margin-bottom: 14px;
}

.section-heading h2 {
  position: relative;
  padding-bottom: 10px;
}

.section-heading h2::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--olive), var(--coral), transparent);
  content: "";
}

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

.video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 249, 237, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 249, 237, 0.18), rgba(255, 249, 237, 0.08)),
    rgba(30, 22, 17, 0.4);
  box-shadow:
    0 1px 0 rgba(255, 249, 237, 0.12) inset,
    0 18px 42px rgba(31, 22, 16, 0.32);
  backdrop-filter: blur(8px) saturate(112%);
}

.video-frame {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(41, 116, 110, 0.46), rgba(143, 84, 58, 0.38)),
    rgba(76, 58, 44, 0.62);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card h3 {
  min-height: 56px;
  padding: 18px;
  color: var(--paper);
  border-top: 1px solid rgba(255, 249, 237, 0.16);
  background: linear-gradient(90deg, rgba(93, 79, 36, 0.3), rgba(217, 107, 138, 0.16));
}

.contact-heading {
  align-items: center;
}

.contact-heading .eyebrow {
  margin-bottom: 14px;
}

.contact-form {
  display: grid;
  gap: 18px;
  max-width: 820px;
  padding: 24px;
  border: 1px solid rgba(255, 249, 237, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(214, 192, 111, 0.18), rgba(255, 193, 174, 0.1) 44%, transparent 45%),
    rgba(39, 29, 22, 0.62);
  box-shadow:
    0 1px 0 rgba(255, 249, 237, 0.14) inset,
    var(--shadow);
  backdrop-filter: blur(10px) saturate(112%);
}

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

.form-field {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--paper);
  font-weight: 800;
}

.form-field span {
  color: var(--sand);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.form-field-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 249, 237, 0.28);
  border-radius: 8px;
  background: rgba(255, 249, 237, 0.12);
  color: var(--paper);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.form-field input {
  padding-right: 14px;
}

.form-field input:-webkit-autofill,
.form-field textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 249, 237, 0.12) inset;
  -webkit-text-fill-color: var(--paper);
  caret-color: var(--paper);
}

.form-field input::-webkit-contacts-auto-fill-button,
.form-field input::-webkit-credentials-auto-fill-button {
  position: absolute;
  right: 0;
  display: none !important;
  visibility: hidden;
  pointer-events: none;
}

.form-field textarea {
  min-height: 156px;
  line-height: 1.55;
}

.form-field textarea.single-line-field {
  height: 48px;
  min-height: 48px;
  overflow: hidden;
  resize: none;
  line-height: 1.4;
}

.form-field input:focus-visible,
.form-field textarea:focus-visible {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(255, 242, 168, 0.18);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--sun), var(--olive));
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  transition:
    filter 160ms ease,
    transform 160ms ease;
}

.contact-submit:hover {
  filter: saturate(112%) brightness(104%);
  transform: translateY(-2px);
}

.contact-submit:disabled {
  cursor: wait;
  filter: none;
  opacity: 0.72;
  transform: none;
}

.contact-status {
  min-height: 20px;
  margin: 0;
  color: rgba(255, 249, 237, 0.84);
  font-size: 0.86rem;
  line-height: 1.45;
}

.contact-status.is-success {
  color: var(--olive);
}

.contact-status.is-error {
  color: var(--coral);
}

.site-footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  padding: 28px 32px;
  background:
    linear-gradient(90deg, rgba(93, 79, 36, 0.28), rgba(38, 28, 21, 0.62)),
    rgba(30, 22, 17, 0.9);
  border-top: 1px solid rgba(255, 249, 237, 0.22);
  color: rgba(255, 249, 237, 0.9);
  backdrop-filter: blur(8px);
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.footer-links a {
  width: auto;
  min-height: 44px;
  padding: 10px 4px;
  border: 0;
  background: transparent;
  color: rgba(255, 249, 237, 0.88);
  font-size: 0.94rem;
  font-weight: 800;
  box-shadow: none;
}

.footer-links a:hover {
  background: transparent;
  border-color: transparent;
  color: var(--sun);
  box-shadow: none;
  filter: none;
  transform: none;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .playlist-track.is-playing::before {
    animation: none;
  }

  .playlist-track.is-playing::after {
    animation: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 14px 18px;
  }

  .hero {
    min-height: 86vh;
    padding: 104px 20px 60px;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .tagline {
    font-size: 1.18rem;
  }

  .listen-section,
  .videos-section,
  .contact-section {
    padding: 72px 20px;
  }

  .two-column,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .listen-section .section-copy {
    order: 2;
  }

  .listen-section .audio-player {
    order: 1;
  }

  .player-controls {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .site-footer {
    padding: 28px 20px;
  }

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

@media (max-width: 560px) {
  html {
    scroll-padding-top: 28px;
  }

  body {
    background-attachment: scroll;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    min-height: 92px;
  }

  .hero {
    min-height: 84vh;
    padding-top: 128px;
  }

  .hero,
  .listen-section,
  .videos-section,
  .contact-section {
    scroll-margin-top: 28px;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2rem;
  }

  .about-text {
    font-size: 0.98rem;
  }

  .streaming-links a {
    width: 100%;
  }

  .audio-player {
    padding: 18px;
  }

  .player-controls {
    grid-template-columns: 1fr;
  }

  .icon-button {
    justify-self: start;
  }

  .playlist-track {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .track-state {
    grid-column: 2;
    justify-self: start;
  }

  .section-heading,
  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form {
    padding: 18px;
  }
}
