/* ============================================================
   SolarMarina.com
   Clean water. Quiet boats. Beautiful people. Ridiculous permits.
   ============================================================ */

:root {
  --navy: #071b36;
  --navy-2: #0b2a50;
  --blue: #056fbd;
  --blue-2: #00a7d8;
  --aqua: #00d5e8;
  --teal: #00a99d;
  --gold: #ffc84a;
  --gold-2: #f59e0b;
  --coral: #ff5c5c;
  --cream: #fff7e6;
  --paper: #fffdf7;
  --ink: #132033;
  --muted: #64748b;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(3, 18, 38, 0.25);
  --shadow-soft: 0 16px 45px rgba(3, 18, 38, 0.16);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}

/* Reset / Base */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Avenir Next", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(0, 213, 232, 0.16), transparent 34rem),
    radial-gradient(circle at top right, rgba(255, 200, 74, 0.18), transparent 30rem),
    linear-gradient(180deg, #f3fbff 0%, #fffdf6 44%, #eefaff 100%);
  line-height: 1.58;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

p {
  margin: 0 0 1.1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3rem, 8vw, 7.8rem);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 5rem);
}

h3 {
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
}

h4 {
  font-size: 1.1rem;
}

strong {
  color: var(--navy);
}

::selection {
  background: var(--gold);
  color: var(--navy);
}

/* Utility */

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: clamp(56px, 8vw, 112px) 0;
}

.section-tight {
  padding: clamp(36px, 6vw, 76px) 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
}

.kicker::before {
  content: "✦";
  color: var(--gold-2);
  font-size: 1rem;
}

.lead {
  font-size: clamp(1.14rem, 1.8vw, 1.45rem);
  color: #30435d;
  max-width: 790px;
}

.center {
  text-align: center;
}

.center .lead {
  margin-left: auto;
  margin-right: auto;
}

.gold {
  color: var(--gold);
}

.aqua {
  color: var(--aqua);
}

.coral {
  color: var(--coral);
}

.no-break {
  white-space: nowrap;
}

/* Buttons */

.actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.01em;
  border: 2px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #fff176);
  color: var(--navy);
  box-shadow: 0 14px 34px rgba(245, 158, 11, 0.32);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(10px);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(7, 27, 54, 0.12);
}

/* Header / Navigation */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 27, 54, 0.88);
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.navbar {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 1000;
  letter-spacing: -0.04em;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy);
  background:
    radial-gradient(circle at 35% 30%, #fff 0 18%, transparent 19%),
    linear-gradient(135deg, var(--gold), var(--aqua));
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.brand small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
  margin-top: -2px;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  position: relative;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-label span::before {
  top: -7px;
}

.nav-toggle-label span::after {
  top: 7px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 11px 13px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

/* Hero */

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
}

.hero.hero-short {
  min-height: 560px;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 17, 34, 0.86) 0%, rgba(4, 17, 34, 0.58) 38%, rgba(4, 17, 34, 0.18) 72%, rgba(4, 17, 34, 0.38) 100%),
    linear-gradient(180deg, rgba(7, 27, 54, 0.18) 0%, rgba(7, 27, 54, 0.06) 50%, rgba(7, 27, 54, 0.86) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(100vh - 76px);
  display: grid;
  align-content: center;
  padding: 72px 0 90px;
}

.hero-short .hero-content {
  min-height: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 15px;
  border-radius: 999px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
}

.hero h1 {
  max-width: 940px;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.42);
}

.hero-subtitle {
  margin-top: 22px;
  max-width: 760px;
  font-size: clamp(1.18rem, 2vw, 1.7rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-slogan {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-slogan span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  padding: 10px 13px;
  border-radius: 999px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

/* Manga Caption / Speech */

.speech {
  position: relative;
  background: var(--paper);
  color: var(--navy);
  border: 3px solid var(--navy);
  border-radius: 24px;
  padding: 22px 24px;
  box-shadow: 8px 8px 0 rgba(7, 27, 54, 0.16);
  font-weight: 900;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
}

.speech::after {
  content: "";
  position: absolute;
  left: 32px;
  bottom: -18px;
  width: 28px;
  height: 28px;
  background: var(--paper);
  border-right: 3px solid var(--navy);
  border-bottom: 3px solid var(--navy);
  transform: rotate(45deg);
}

.manga-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 12px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  background: var(--gold);
  box-shadow: 5px 5px 0 rgba(7, 27, 54, 0.18);
}

/* Cards / Grids */

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(7, 27, 54, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.card-body {
  padding: 24px;
}

.card h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

.card p {
  color: #43546d;
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card.tall img {
  aspect-ratio: 4 / 5;
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), var(--aqua));
  font-size: 1.55rem;
  margin-bottom: 16px;
}

/* Feature Blocks */

.feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
}

.feature.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.feature.reverse .feature-media {
  order: -1;
}

.feature-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 8px solid rgba(255, 255, 255, 0.72);
  transform: rotate(-1deg);
}

.feature.reverse .feature-media {
  transform: rotate(1deg);
}

.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-copy h2 {
  color: var(--navy);
  margin-bottom: 18px;
}

.feature-copy .lead {
  margin-bottom: 24px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}

.checklist li {
  position: relative;
  padding-left: 34px;
  font-weight: 800;
  color: #273a52;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  font-size: 0.9rem;
}

/* Band / Slogan Strip */

.slogan-band {
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 213, 232, 0.28), transparent 28rem),
    linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  padding: 28px 0;
}

.slogan-band .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.slogan-band span {
  font-weight: 1000;
  font-size: clamp(1.05rem, 2vw, 1.6rem);
  letter-spacing: -0.02em;
}

.slogan-band .dot {
  color: var(--gold);
}

/* Episode / Manga Poster Layout */

.poster-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.poster {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow);
  background: var(--navy);
}

.poster img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 27, 54, 0.05) 0%, rgba(7, 27, 54, 0.82) 100%);
}

.poster-text {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}

.poster-text h2 {
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.poster-text p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.episode-list {
  display: grid;
  gap: 16px;
}

.episode {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(7, 27, 54, 0.1);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

.episode img {
  width: 90px;
  height: 90px;
  border-radius: 15px;
  object-fit: cover;
}

.episode strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.episode span {
  color: var(--muted);
  font-size: 0.94rem;
}

/* Character Cards */

.character-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: var(--navy);
  color: var(--white);
}

.character-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.character-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(7, 27, 54, 0.88) 100%);
}

.character-card .character-copy {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.character-card h3 {
  color: var(--white);
}

.character-card p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}

/* Tech / Infographic Blocks */

.tech-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 253, 247, 0.86)),
    radial-gradient(circle at top right, rgba(0, 213, 232, 0.2), transparent 22rem);
  border: 1px solid rgba(7, 27, 54, 0.1);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-soft);
}

.tech-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(7, 27, 54, 0.1);
}

.tech-row:last-child {
  border-bottom: 0;
}

.tech-num {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  font-size: 1.4rem;
  font-weight: 1000;
  box-shadow: 5px 5px 0 rgba(7, 27, 54, 0.14);
}

.tech-row h3 {
  margin-bottom: 6px;
}

/* FAQ */

.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(7, 27, 54, 0.12);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(7, 27, 54, 0.08);
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  padding: 19px 22px;
  font-weight: 1000;
  color: var(--navy);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-size: 1.3rem;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  padding: 0 22px 20px;
  color: #40536b;
}

/* Forms */

.form-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(7, 27, 54, 0.12);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 4vw, 38px);
  box-shadow: var(--shadow-soft);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 900;
  color: var(--navy);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(7, 27, 54, 0.18);
  border-radius: 15px;
  padding: 13px 14px;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(0, 213, 232, 0.28);
  border-color: var(--blue-2);
}

/* Gallery */

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.gallery a,
.gallery figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--white);
  text-decoration: none;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 250ms ease;
}

.gallery a:hover img {
  transform: scale(1.04);
}

.gallery .wide {
  grid-column: span 6;
}

.gallery .small {
  grid-column: span 3;
}

.gallery .large {
  grid-column: span 8;
}

.gallery .medium {
  grid-column: span 4;
}

/* Tables / Sitemap */

.link-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.link-list a {
  display: block;
  text-decoration: none;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(7, 27, 54, 0.1);
  font-weight: 900;
  color: var(--navy);
  box-shadow: 0 8px 22px rgba(7, 27, 54, 0.07);
}

.link-list a:hover {
  background: var(--gold);
}

/* Footer */

.site-footer {
  background:
    radial-gradient(circle at top left, rgba(0, 213, 232, 0.18), transparent 28rem),
    linear-gradient(135deg, #06162d, #082646);
  color: var(--white);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 34px;
}

.footer-brand {
  font-size: 2rem;
  font-weight: 1000;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}

.footer-slogan {
  color: rgba(255, 255, 255, 0.72);
  max-width: 480px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 750;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

/* Page-specific helper classes */

.water-bg {
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 213, 232, 0.28), transparent 28rem),
    linear-gradient(180deg, #e9fbff 0%, #ffffff 100%);
}

.navy-section {
  background:
    radial-gradient(circle at top right, rgba(0, 213, 232, 0.18), transparent 26rem),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}

.navy-section h2,
.navy-section h3 {
  color: var(--white);
}

.navy-section p,
.navy-section .lead {
  color: rgba(255, 255, 255, 0.78);
}

.paper-section {
  background:
    linear-gradient(180deg, rgba(255, 247, 230, 0.92), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 80% 20%, rgba(255, 200, 74, 0.24), transparent 28rem);
}

.comedy-warning {
  border-left: 8px solid var(--coral);
  background: #fff4f4;
  border-radius: 18px;
  padding: 20px 22px;
  color: #5a1f1f;
  font-weight: 800;
}

/* Responsive */

@media (max-width: 980px) {
  .nav-toggle-label {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 84px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(7, 27, 54, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-toggle:checked ~ .nav-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle:checked + .nav-toggle-label span {
    transform: rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-label span::before {
    transform: rotate(90deg);
    top: 0;
  }

  .nav-toggle:checked + .nav-toggle-label span::after {
    opacity: 0;
  }

  .nav-menu a {
    padding: 13px 14px;
    border-radius: 14px;
  }

  .feature,
  .feature.reverse,
  .poster-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature.reverse .feature-media {
    order: 0;
  }

  .link-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery .wide,
  .gallery .small,
  .gallery .large,
  .gallery .medium {
    grid-column: span 6;
  }
}

@media (max-width: 680px) {
  .wrap,
  .hero-content {
    width: min(100% - 28px, var(--max));
  }

  .navbar {
    width: calc(100% - 24px);
    min-height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand {
    font-size: 1.15rem;
  }

  .brand small {
    font-size: 0.58rem;
  }

  .hero,
  .hero.hero-short {
    min-height: 620px;
  }

  .hero-content,
  .hero-short .hero-content {
    min-height: 620px;
    padding: 48px 0 64px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(4, 17, 34, 0.78) 0%, rgba(4, 17, 34, 0.44) 42%, rgba(4, 17, 34, 0.9) 100%);
  }

  .hero-slogan {
    gap: 8px;
  }

  .hero-slogan span {
    font-size: 0.9rem;
    padding: 8px 10px;
  }

  .actions,
  .hero-actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

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

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

  .gallery .wide,
  .gallery .small,
  .gallery .large,
  .gallery .medium {
    grid-column: span 1;
  }

  .link-list {
    grid-template-columns: 1fr;
  }

  .episode {
    grid-template-columns: 74px 1fr;
  }

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

  .poster,
  .poster img {
    min-height: 430px;
  }

  .poster-text {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .feature-media {
    border-width: 5px;
    border-radius: 22px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
