:root {
  --bg: #07151c;
  --bg-soft: #0d2430;
  --ink: #f9edd5;
  --muted: #cab991;
  --gold: #d8a24a;
  --gold-light: #f1cf7a;
  --line: rgba(216, 162, 74, 0.42);
  --shadow: rgba(0, 0, 0, 0.55);
  --hero-image: url("assets/hero-fantasy.png");
  --title-font: "Cinzel Decorative", "Cinzel", "Trajan Pro", "Palatino Linotype", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(230, 157, 64, 0.22), transparent 28rem),
    radial-gradient(circle at 83% 4%, rgba(50, 124, 139, 0.24), transparent 32rem),
    radial-gradient(circle at 50% 42%, rgba(216, 162, 74, 0.08), transparent 44rem),
    linear-gradient(180deg, #0b2633 0%, #07151c 34%, #041018 100%),
    var(--bg);
  font-family: Georgia, "Times New Roman", serif;
}

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

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

button,
input {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(216, 162, 74, 0.08), transparent 16%, transparent 84%, rgba(216, 162, 74, 0.08)),
    linear-gradient(180deg, rgba(6, 19, 27, 0.16), rgba(4, 13, 20, 0.46)),
    radial-gradient(circle at 22% 28%, rgba(241, 169, 73, 0.14), transparent 26rem),
    radial-gradient(circle at 78% 58%, rgba(25, 104, 120, 0.16), transparent 32rem),
    repeating-linear-gradient(90deg, rgba(255, 238, 190, 0.018) 0 1px, transparent 1px 5px);
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.55);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(13rem, 19rem) 1fr auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.2rem);
  min-height: 5.8rem;
  padding: 0.85rem clamp(1.25rem, 3.4vw, 3.6rem);
  border-bottom: 1px solid rgba(216, 162, 74, 0.34);
  background:
    linear-gradient(180deg, rgba(3, 11, 18, 0.76), rgba(5, 16, 25, 0.42)),
    linear-gradient(90deg, rgba(216, 162, 74, 0.08), transparent 18%, transparent 82%, rgba(216, 162, 74, 0.08));
  box-shadow: inset 0 -1px 0 rgba(241, 207, 122, 0.12), 0 12px 32px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  top: 0.45rem;
  width: 3.2rem;
  height: 3.2rem;
  pointer-events: none;
  opacity: 0.9;
}

.site-header::before {
  left: 0.45rem;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  box-shadow: inset 0.45rem 0.45rem 0 -0.38rem var(--gold);
}

.site-header::after {
  right: 0.45rem;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  box-shadow: inset -0.45rem 0.45rem 0 -0.38rem var(--gold);
}

.brand {
  position: relative;
  display: inline-grid;
  justify-items: center;
  gap: 0.05rem;
  width: max-content;
  color: var(--gold-light);
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(216, 162, 74, 0.38), 0 4px 10px rgba(0, 0, 0, 0.62);
}

.brand::after {
  content: "";
  width: 76%;
  height: 0.55rem;
  margin-top: 0.25rem;
  border-top: 1px solid rgba(241, 207, 122, 0.78);
  border-bottom: 1px solid rgba(216, 162, 74, 0.3);
  background:
    linear-gradient(90deg, transparent, var(--gold-light), transparent) center top / 100% 1px no-repeat,
    radial-gradient(circle, var(--gold-light) 0 2px, transparent 3px) center 0.18rem / 0.8rem 0.8rem no-repeat;
}

.brand span {
  font-family: var(--title-font);
  font-size: 0.82rem;
  letter-spacing: 0.16rem;
}

.brand strong {
  font-family: var(--title-font);
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  font-weight: 400;
  letter-spacing: 0.015em;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.85rem, 1.9vw, 2rem);
  color: var(--ink);
  font-family: "Cinzel", "Palatino Linotype", Georgia, serif;
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
}

.main-nav a,
.site-footer nav a {
  color: rgba(249, 237, 213, 0.84);
}

.main-nav a {
  position: relative;
  padding: 0.35rem 0;
}

.main-nav a.active {
  color: var(--gold-light);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08rem;
  height: 1px;
  background: var(--gold-light);
}

.main-nav a.has-menu::after {
  content: "v";
  display: inline-block;
  margin-left: 0.35rem;
  color: var(--gold);
  font-size: 0.66rem;
  transform: translateY(-0.08rem);
}

.main-nav a:hover,
.site-footer nav a:hover,
.section-title a:hover {
  color: var(--gold-light);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0.85rem;
}

.icon-button {
  position: relative;
  display: inline-grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  color: var(--gold-light);
}

.search-icon::before {
  content: "";
  width: 0.82rem;
  height: 0.82rem;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 0.58rem;
  height: 2px;
  background: currentColor;
  transform: translate(0.48rem, 0.48rem) rotate(45deg);
  transform-origin: center;
}

.seal-icon {
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--title-font);
  font-size: 0.82rem;
  box-shadow: inset 0 0 0 2px rgba(216, 162, 74, 0.18);
}

.login-button,
.button,
.newsletter-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.78rem 1.35rem;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: rgba(5, 14, 21, 0.68);
  box-shadow: inset 0 0 0 1px rgba(241, 207, 122, 0.16), 0 16px 34px var(--shadow);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.03rem;
}

.login-button {
  min-width: 7.5rem;
  color: var(--gold-light);
  background: rgba(7, 18, 28, 0.62);
  clip-path: polygon(0.65rem 0, calc(100% - 0.65rem) 0, 100% 0.65rem, 100% calc(100% - 0.65rem), calc(100% - 0.65rem) 100%, 0.65rem 100%, 0 calc(100% - 0.65rem), 0 0.65rem);
}

.button.primary,
.newsletter-form button {
  color: #1e1609;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
}

.button.ghost {
  background: rgba(7, 19, 30, 0.8);
}

.button.small {
  min-height: 2.35rem;
  padding-inline: 1.2rem;
  font-size: 0.76rem;
}

.hero {
  position: relative;
  min-height: 45rem;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 8rem clamp(1rem, 5vw, 5rem) 5rem;
}

.hero-art,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-art {
  background-image: var(--hero-image);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(1.05) contrast(1.05);
  transform: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 13, 20, 0.42), rgba(5, 13, 20, 0.28) 42%, rgba(5, 13, 20, 0.82)),
    linear-gradient(0deg, var(--bg) 0%, transparent 34%),
    radial-gradient(circle at 74% 45%, rgba(216, 162, 74, 0.24), transparent 24rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(48rem, 100%);
  margin-left: auto;
  text-align: center;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.75);
  overflow: visible;
}

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

.section-kicker {
  margin: 0 0 0.25rem;
  color: var(--gold-light);
  font-family: var(--title-font);
  text-transform: uppercase;
  letter-spacing: 0.28rem;
  font-size: clamp(1rem, 2vw, 1.7rem);
}

.title-logo {
  display: block;
  width: min(48rem, 96vw);
  height: auto;
  margin: 0 auto 0.3rem;
  overflow: visible;
}

.logo-kicker,
.logo-ornament {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.logo-kicker text {
  fill: var(--gold-light);
  stroke: none;
  font-family: var(--title-font);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 9px;
  text-transform: uppercase;
}

.logo-title {
  stroke-width: 1.2;
  paint-order: stroke fill;
  font-family: var(--title-font);
  font-size: 114px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.logo-title-stroke {
  stroke-width: 6;
  opacity: 0.95;
}

.logo-ornament {
  stroke-width: 2.2;
}

.tagline {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-family: "Cinzel", "Palatino Linotype", Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.45rem);
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.intro {
  margin: 0 0 1.75rem;
  color: rgba(249, 237, 213, 0.84);
  font-size: clamp(1rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(4, 13, 20, 0.86);
}

.quick-links a {
  display: grid;
  min-height: 8.2rem;
  place-items: center;
  align-content: center;
  gap: 0.55rem;
  padding: 0.9rem 0.75rem 1rem;
  border-right: 1px solid rgba(216, 162, 74, 0.22);
  color: var(--gold-light);
  text-align: center;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.quick-links img {
  width: clamp(4.4rem, 7vw, 6rem);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px rgba(216, 162, 74, 0.34));
  transition: transform 180ms ease, filter 180ms ease;
}

.quick-links a:hover img {
  filter: drop-shadow(0 0 14px rgba(241, 207, 122, 0.52));
  transform: translateY(-2px) scale(1.04);
}

.feature-grid,
.content-grid,
.newsletter-band,
.site-footer {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(25rem, 1fr);
  width: min(1520px, calc(100% - 2rem));
  gap: 1.25rem;
  padding: 1.25rem 0;
}

.story-card,
.panel,
.newsletter-band {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(14, 38, 49, 0.9), rgba(5, 18, 27, 0.94)),
    radial-gradient(circle at 18% 0%, rgba(216, 162, 74, 0.09), transparent 18rem);
  box-shadow: 0 22px 55px var(--shadow);
}

.story-card,
.panel {
  overflow: hidden;
}

.story-card > *,
.panel > * {
  position: relative;
  z-index: 2;
}

.story-card::before,
.panel::before {
  content: none;
}

.story-card::after,
.panel::after {
  content: "";
  position: absolute;
  inset: 0.42rem;
  z-index: 1;
  pointer-events: none;
  background:
    url("assets/user-corner-tl.svg") left top / 4.4rem 4.4rem no-repeat,
    url("assets/user-corner-tr.svg") right top / 4.4rem 4.4rem no-repeat,
    url("assets/user-corner-bl.svg") left bottom / 4.4rem 4.4rem no-repeat,
    url("assets/user-corner-br.svg") right bottom / 4.4rem 4.4rem no-repeat;
  filter: drop-shadow(0 0 6px rgba(216, 162, 74, 0.25));
}

.feature-copy {
  min-height: 28rem;
  display: grid;
  align-content: center;
  padding: clamp(2rem, 4vw, 3.25rem);
  background:
    linear-gradient(90deg, rgba(5, 13, 20, 0.94) 0%, rgba(5, 13, 20, 0.84) 34%, rgba(5, 13, 20, 0.28) 64%, rgba(5, 13, 20, 0.46) 100%),
    linear-gradient(0deg, rgba(5, 13, 20, 0.58), transparent 42%),
    url("assets/plano-fundo-sinopse.png") center / cover;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.82);
}

.feature-copy h2 {
  width: min(34rem, 100%);
  margin: 0.3rem 0 1rem;
  color: var(--gold-light);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 500;
}

.feature-copy p:not(.section-kicker) {
  width: min(25rem, 100%);
  color: rgba(249, 237, 213, 0.88);
  line-height: 1.6;
}

.map-card {
  min-height: 28rem;
  padding: 1.35rem;
}

.map-frame {
  position: relative;
  min-height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(216, 162, 74, 0.48);
  background: #2f1f0d;
}

.map-frame img {
  width: 100%;
  height: 100%;
  min-height: 26rem;
  object-fit: contain;
  background: #2f1f0d;
}

.map-hotspot {
  position: absolute;
  z-index: 2;
  width: 1.15rem;
  height: 1.15rem;
  border: 1px solid #3b2108;
  border-radius: 50%;
  background: radial-gradient(circle, #fff2a8 0 18%, var(--gold-light) 19% 42%, #8d551d 43% 100%);
  box-shadow: 0 0 0 0.28rem rgba(216, 162, 74, 0.2), 0 0 18px rgba(241, 207, 122, 0.72);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.map-hotspot:hover,
.map-hotspot:focus-visible,
.map-hotspot.active {
  outline: none;
  box-shadow: 0 0 0 0.38rem rgba(216, 162, 74, 0.28), 0 0 26px rgba(241, 207, 122, 0.95);
  transform: translate(-50%, -50%) scale(1.15);
}

.map-hotspot.brightown { left: 31%; top: 65%; }
.map-hotspot.sea { left: 54%; top: 51%; }
.map-hotspot.swamp { left: 25%; top: 50%; }
.map-hotspot.mountains { left: 63%; top: 31%; }
.map-hotspot.ice-corridors { left: 76%; top: 41%; }
.map-hotspot.vrystowl { left: 39%; top: 39%; }
.map-hotspot.breydswoard { left: 66%; top: 65%; }

.map-popup {
  position: absolute;
  left: 50%;
  top: 1rem;
  z-index: 4;
  width: min(20rem, calc(100% - 2rem));
  padding: 1rem 2.4rem 1rem 1rem;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: rgba(5, 13, 20, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.54), inset 0 0 0 1px rgba(241, 207, 122, 0.12);
  transform: translateX(-50%);
}

.map-popup strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--title-font);
  font-size: 1.05rem;
  font-weight: 400;
  text-transform: uppercase;
}

.map-popup p {
  margin: 0.45rem 0 0;
  color: rgba(249, 237, 213, 0.82);
  line-height: 1.45;
}

.map-popup-close {
  position: absolute;
  top: 0.45rem;
  right: 0.55rem;
  border: 0;
  color: var(--gold-light);
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  text-transform: uppercase;
}

.map-frame .button {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  z-index: 2;
  transform: translateX(-50%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.48);
}

.content-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.9fr;
  width: min(1520px, calc(100% - 2rem));
  gap: 1.25rem;
  padding-bottom: 1.25rem;
}

.panel {
  min-width: 0;
  padding: clamp(2rem, 3vw, 2.35rem);
}

.side-stack {
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-title h2 {
  margin: 0;
  color: var(--gold-light);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 500;
  text-transform: uppercase;
}

.section-title a {
  color: var(--gold);
  font-size: 0.82rem;
}

.episode-list {
  display: grid;
  gap: 1rem;
}

.episode {
  display: grid;
  grid-template-columns: 6.4rem 1fr auto;
  gap: 0.9rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(216, 162, 74, 0.22);
}

.episode img {
  width: 6.4rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}

.episode small {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
}

.episode strong,
.soundtrack strong {
  display: block;
  color: var(--gold-light);
}

.episode em {
  display: block;
  margin-top: 0.35rem;
  color: rgba(249, 237, 213, 0.72);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.4;
}

.episode b {
  color: var(--gold-light);
  font-size: 1.5rem;
  font-weight: 400;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.gallery-grid a {
  display: block;
  border: 1px solid rgba(216, 162, 74, 0.32);
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 180ms ease, filter 180ms ease;
}

.gallery-grid a:hover img {
  filter: brightness(1.08);
  transform: scale(1.03);
}

.soundtrack {
  text-align: center;
}

.album-art {
  position: relative;
  width: min(10.5rem, 70%);
  margin: 0 auto 0.75rem;
}

.album-art img {
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(5, 13, 20, 0.85), 0 20px 45px var(--shadow);
}

.album-art button {
  position: absolute;
  left: 50%;
  bottom: 0.65rem;
  transform: translateX(-50%);
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(5, 13, 20, 0.86);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.soundtrack p {
  margin: 0.15rem 0 0.75rem;
  color: var(--muted);
}

.progress {
  height: 0.25rem;
  margin: 0.75rem 0;
  background: rgba(249, 237, 213, 0.18);
}

.progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--gold);
}

.time-row {
  display: flex;
  justify-content: space-between;
  margin-top: -0.45rem;
  color: rgba(249, 237, 213, 0.66);
  font-size: 0.78rem;
}

.player-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.player-controls button {
  min-width: 2.75rem;
  height: 2.75rem;
  padding-inline: 0.75rem;
  border: 1px solid var(--line);
  color: var(--gold-light);
  background: rgba(5, 13, 20, 0.65);
  text-transform: uppercase;
  font-size: 0.78rem;
}

.player-options {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
  margin-top: 0.75rem;
  text-align: left;
}

.player-options label {
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.player-options select {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(216, 162, 74, 0.34);
  padding: 0.62rem 0.7rem;
  color: var(--ink);
  background: rgba(5, 13, 20, 0.78);
}

.volume-control {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: center;
}

.volume-control button {
  min-height: 2.35rem;
  border: 1px solid rgba(216, 162, 74, 0.34);
  padding-inline: 0.8rem;
  color: var(--gold-light);
  background: rgba(5, 13, 20, 0.65);
  text-transform: uppercase;
  font-size: 0.76rem;
}

.volume-control input {
  width: 100%;
  accent-color: var(--gold);
}

.author-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 12%;
  border: 1px solid rgba(216, 162, 74, 0.38);
  margin-bottom: 1rem;
}

.author-card p {
  margin: 0 0 0.8rem;
  color: rgba(249, 237, 213, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
}

.author-card p:last-child {
  margin-bottom: 0;
}

.newsletter-band {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1.15fr 1fr;
  width: min(1520px, calc(100% - 2rem));
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: center;
  min-height: 12rem;
  margin: 0 auto 1rem;
  padding: clamp(1.45rem, 3vw, 2.25rem) clamp(1.4rem, 4vw, 3.2rem);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 13, 20, 0.96), rgba(5, 18, 28, 0.8), rgba(4, 13, 20, 0.96)),
    radial-gradient(circle at 47% 45%, rgba(241, 207, 122, 0.1), transparent 14rem),
    var(--hero-image) center 62% / cover;
  background-blend-mode: normal, screen, soft-light;
}

.newsletter-band::before,
.newsletter-band::after {
  content: "";
  position: absolute;
  inset: 0.55rem;
  pointer-events: none;
}

.newsletter-band::before {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.newsletter-band::after {
  border-left: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  opacity: 0.55;
}

blockquote {
  position: relative;
  margin: 0;
  padding: 0 2rem 0 8.4rem;
  color: var(--ink);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-style: italic;
  line-height: 1.45;
}

blockquote::before {
  content: "B";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6.6rem;
  height: 6.6rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 162, 74, 0.32);
  border-radius: 50%;
  color: rgba(216, 162, 74, 0.2);
  font-family: var(--title-font);
  font-size: 5rem;
  font-style: normal;
  line-height: 1;
  transform: translateY(-50%);
  box-shadow: inset 0 0 0 1px rgba(241, 207, 122, 0.08);
}

blockquote::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0.15rem;
  bottom: 0.15rem;
  width: 1px;
  background: linear-gradient(transparent, var(--line), transparent);
}

.newsletter-form {
  position: relative;
  padding-right: clamp(1rem, 2vw, 2rem);
}

.newsletter-form::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 1px;
  background: linear-gradient(transparent, var(--line), transparent);
}

.newsletter-form label {
  display: block;
  color: var(--gold-light);
  font-family: var(--title-font);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.newsletter-form p {
  margin: 0.45rem 0 1rem;
  color: rgba(249, 237, 213, 0.74);
}

.newsletter-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid var(--gold);
  background: rgba(5, 13, 20, 0.66);
}

.newsletter-form input {
  min-width: 0;
  border: 0;
  padding: 0.78rem 0.9rem;
  color: var(--ink);
  background: transparent;
}

.newsletter-form button {
  border: 0;
  border-left: 1px solid var(--gold);
  min-width: 7rem;
  box-shadow: none;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.7rem, 1.5vw, 1rem);
}

.social-links::before {
  content: "Siga Brightown";
  flex-basis: 100%;
  margin-bottom: 0.45rem;
  color: var(--gold-light);
  font-family: var(--title-font);
  font-size: clamp(1.25rem, 2.3vw, 1.8rem);
  letter-spacing: 0.08rem;
  text-align: center;
  text-transform: uppercase;
}

.social-links a {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  background: rgba(5, 13, 20, 0.36);
  box-shadow: inset 0 0 0 2px rgba(216, 162, 74, 0.12);
}

.social-links img {
  width: 1.45rem;
  height: 1.45rem;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(241, 207, 122, 0.22));
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0 2rem;
  color: rgba(249, 237, 213, 0.72);
}

.small-brand strong {
  font-size: 1.15rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
  color: var(--gold);
  font-size: 0.85rem;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    grid-template-columns: 1fr auto;
    align-items: start;
    row-gap: 0.85rem;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .hero {
    min-height: 40rem;
    padding-top: 10rem;
  }

  .hero-content {
    margin-inline: auto;
  }

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

  .feature-grid,
  .content-grid,
  .newsletter-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .newsletter-band {
    text-align: center;
  }

  blockquote {
    padding: 7rem 0 0;
  }

  blockquote::before {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }

  blockquote::after,
  .newsletter-form::after {
    display: none;
  }

  .newsletter-form {
    padding-right: 0;
  }

  .site-footer {
    text-align: center;
  }

  .site-footer .brand {
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .site-header {
     grid-template-columns: 1fr;
    justify-items: center;
    padding: 0.9rem 1rem 1rem;
    min-height: auto;
    gap: 0.75rem;
  }

  .brand strong {
    font-size: 1.45rem;
  }

  .login-button {
    min-height: 2.35rem;
    padding-inline: 0.85rem;
  }

  .hero {
    min-height: 38rem;
    padding: 9.5rem 1rem 3rem;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, var(--bg) 0%, rgba(5, 13, 20, 0.42) 58%, rgba(5, 13, 20, 0.74)),
      radial-gradient(circle at 50% 48%, rgba(216, 162, 74, 0.2), transparent 16rem);
  }

  .hero-actions {
    display: grid;
  }

  .quick-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-links a {
    min-height: 5.4rem;
    font-size: 0.75rem;
  }

  .feature-grid,
  .content-grid,
  .newsletter-band,
  .site-footer {
    width: min(100% - 1rem, 1180px);
  }

  .episode {
    grid-template-columns: 5rem 1fr;
  }

  .episode b {
    display: none;
  }

  .episode img {
    width: 5rem;
  }

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

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

  .newsletter-form button {
    border-left: 0;
    border-top: 1px solid var(--gold);
  }
}
