:root {
  color-scheme: light;
  --ink: #151517;
  --charcoal: #1d1f26;
  --mist: #f7f4ee;
  --linen: #f0e7de;
  --crimson: #d13b35;
  --crimson-dark: #b22c26;
  --cool: #4c9ea3;
  --shadow: 0 30px 60px rgba(15, 16, 24, 0.16);
  --glass: rgba(255, 255, 255, 0.75);
  --border: rgba(22, 23, 31, 0.12);
}

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

body {
  min-height: 100vh;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top right, #fbfaf7 0%, #f6f2eb 38%, #efe8e1 72%)
      fixed,
    linear-gradient(130deg, #f9f6f0 0%, #f2e9df 45%, #f7f4ee 100%);
  line-height: 1.6;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 110px;
}

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

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

.inline-link {
  font-weight: 600;
  position: relative;
  display: inline-block;
  color: inherit;
  padding-bottom: 2px;
}

.inline-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.2s ease;
}

.inline-link:hover::after,
.inline-link:focus-visible::after {
  width: 100%;
}

h1,
h2,
h3 {
  font-family: "Unbounded", "Segoe UI", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.6rem, 3vw + 1.5rem, 4.4rem);
}

h2 {
  font-size: clamp(1.8rem, 2vw + 1.2rem, 2.8rem);
}

p {
  color: rgba(21, 21, 23, 0.78);
}

.ambient-orb {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 59, 53, 0.25), transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: -1;
  animation: float 14s ease-in-out infinite;
}

.orb-one {
  top: 120px;
  left: -80px;
}

.orb-two {
  bottom: 120px;
  right: -60px;
  background: radial-gradient(circle, rgba(76, 158, 163, 0.28), transparent 70%);
  animation-delay: -4s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6vw;
  background: rgba(250, 246, 239, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  position: relative;
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 16px;
}

.logo::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 20px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.75) 45%,
    rgba(250, 246, 239, 0) 70%
  );
  filter: blur(6px);
  z-index: -1;
}

.logo img {
  height: 44px;
  border-radius: 10px;
  background: #fff;
}

.site-nav {
  display: flex;
  gap: 22px;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  padding-bottom: 6px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--crimson);
  transition: width 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(21, 21, 23, 0.18);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 999px;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(120deg, var(--crimson), var(--crimson-dark));
  color: #fff;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(209, 59, 53, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(209, 59, 53, 0.35);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(209, 59, 53, 0.4);
  color: var(--crimson);
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(21, 21, 23, 0.18);
  color: var(--ink);
  box-shadow: none;
}

.btn:disabled,
.btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.6;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: start;
  margin-top: 0;
}

.hero h1 {
  font-size: clamp(1.85rem, 1.8vw + 1rem, 2.8rem);
  line-height: 1.15;
}

.hero-title {
  font-family: "Unbounded", "Segoe UI", sans-serif;
  font-weight: 700;
}

.hero-title-line {
  display: block;
}

.hero-title-highlight {
  display: inline-block;
  color: var(--crimson);
  font-style: italic;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(21, 21, 23, 0.58);
}

.lead {
  font-size: 1.1rem;
}

.hero .lead {
  font-size: 0.95rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero .cta-row {
  gap: 10px;
}

.hero .btn {
  padding: 9px 20px;
  font-size: 0.9rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.hero-stats {
  margin-top: 18px;
}

.stat-number {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-media {
  position: relative;
}

.hero-frame {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(21, 21, 23, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.hero-frame img {
  height: clamp(220px, 28vw, 300px);
  width: 100%;
  object-fit: contain;
}

.floating-card {
  position: absolute;
  bottom: -26px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--glass);
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  animation: float 8s ease-in-out infinite;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-card img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
}

.floating-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 16, 24, 0.2);
}

.card-title {
  font-weight: 600;
}

.card-subtitle {
  font-size: 0.85rem;
}

section {
  margin-top: 120px;
}

.streaming {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  padding: 28px 32px;
  text-align: center;
  background: var(--glass);
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.streaming-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 14px 24px rgba(15, 16, 24, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.streaming-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.streaming-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(15, 16, 24, 0.16);
}

.streaming-link.spotify {
  background: #1db954;
}

.streaming-link.apple {
  background: linear-gradient(135deg, #fa2d55, #ff7aa2);
}

.streaming-link.youtube {
  background: #ff0000;
}

.streaming-link.soundcloud {
  background: #ff5500;
}

.chip {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(21, 21, 23, 0.08);
  font-size: 0.85rem;
  font-weight: 500;
}

.featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 44px;
  align-items: center;
}

.featured-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.featured-info .cta-row {
  margin-top: 8px;
}

.featured-cover {
  display: flex;
  justify-content: center;
}

.featured-cover img {
  width: min(100%, 420px);
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(21, 21, 23, 0.12);
}

.about-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 56px;
  align-items: center;
  padding: 16px 0;
}

.about-preview-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
  text-align: right;
  align-items: flex-end;
}

.about-preview-text .cta-row {
  justify-content: flex-end;
}

.portrait {
  display: flex;
  justify-content: center;
}

.portrait img {
  width: min(100%, 320px);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 8px;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  justify-items: center;
}

.album-card {
  position: relative;
  background: var(--glass);
  border-radius: 22px;
  padding: 0;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  max-width: 340px;
}

#lets-play {
  scroll-margin-top: 140px;
}

.album-card:focus {
  outline: 2px solid rgba(209, 59, 53, 0.6);
  outline-offset: 3px;
}

.album-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
}

.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.album-cover.is-placeholder {
  display: grid;
  place-items: center;
  background: rgba(21, 21, 23, 0.06);
}

.album-cover.is-placeholder span {
  color: rgba(21, 21, 23, 0.55);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-align: center;
  padding: 0 16px;
}

.album-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(12, 14, 20, 0) 0%, rgba(12, 14, 20, 0.72) 100%);
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.album-overlay h3 {
  color: #fff;
  font-size: 1.1rem;
}

.album-overlay p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1000px) {
  .album-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .album-grid {
    grid-template-columns: 1fr;
  }
}

.album-card:hover .album-overlay,
.album-card:focus .album-overlay,
.album-card:focus-within .album-overlay {
  opacity: 1;
  transform: translateY(0);
}

.album-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.album-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.74rem;
  color: #fff;
  text-transform: none;
  border: 1px solid transparent;
}

.album-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.album-link.spotify {
  background: #1db954;
}

.album-link.apple {
  background: linear-gradient(135deg, #fa2d55, #ff7aa2);
}

.album-link.youtube {
  background: #ff0000;
}

.album-link.soundcloud {
  background: #ff5500;
}

.album-link.applebooks {
  background: #fa7a29;
}

.album-link.amazon {
  background: #ff9900;
  color: #1a1a1a;
}

.album-link.best-order {
  background: var(--crimson);
}

.album-link.best-learn {
  background: var(--charcoal);
}

.album-audio {
  width: 100%;
  margin-top: 4px;
}

@media (hover: none) {
  .album-overlay {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(180deg, rgba(12, 14, 20, 0.15) 0%, rgba(12, 14, 20, 0.7) 100%);
  }
}

.section-cta {
  margin-top: 32px;
}

.store {
  margin-top: 140px;
}

.store-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 36px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(209, 59, 53, 0.1), rgba(76, 158, 163, 0.12));
  border: 1px solid rgba(209, 59, 53, 0.2);
  box-shadow: var(--shadow);
}

.memoir {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.memoir-panel {
  background: var(--charcoal);
  color: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.memoir-songs {
  margin-top: 24px;
}

.memoir-songs .section-head {
  margin-bottom: 24px;
}

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

@media (max-width: 1100px) {
  .memoir-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .memoir-grid {
    grid-template-columns: 1fr;
  }
}

.memoir-track {
  background: var(--glass);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.track-number {
  color: var(--crimson);
  font-weight: 600;
  margin-right: 6px;
}

.best-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
  margin-top: 24px;
}

.best-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.best-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(209, 59, 53, 0.35);
  font-weight: 600;
  font-size: 1rem;
  color: var(--crimson);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.8);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.best-price:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(209, 59, 53, 0.2);
}

.best-cover img {
  width: min(100%, 480px);
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(21, 21, 23, 0.12);
}

.best-excerpts {
  margin-top: 90px;
}

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

.excerpt-card {
  background: var(--glass);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.excerpt-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.excerpt-item h4 {
  font-size: 1rem;
}

.excerpt-placeholder {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(21, 21, 23, 0.08);
  font-size: 0.85rem;
  color: rgba(21, 21, 23, 0.7);
}

@media (max-width: 900px) {
  .best-hero {
    grid-template-columns: 1fr;
  }

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

.memoir-panel p {
  color: rgba(255, 255, 255, 0.75);
}

.memoir-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
}

.memoir-subtitle {
  font-size: 0.9rem;
}

.site-footer {
  margin-top: 70px;
  padding: 40px 6vw 60px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  background: rgba(250, 246, 239, 0.9);
}

.site-footer img {
  height: 42px;
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(21, 21, 23, 0.6);
}

.footer-contact a {
  font-weight: 600;
}

.contact-email {
  margin-top: 0;
  font-weight: 600;
}

.page-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.page-hero-visual img {
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.contact-page main {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 80px;
}

.contact-page .contact-hero {
  width: 100%;
}

.contact-hero {
  margin-top: 12px;
  gap: 52px;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-copy .lead {
  max-width: 520px;
}

.contact-actions {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--glass);
  box-shadow: var(--shadow);
}

.contact-hero .page-hero-visual {
  display: flex;
  justify-content: center;
}

.contact-hero .page-hero-visual img {
  width: min(100%, 360px);
}

.catalogue-hero {
  grid-template-columns: 1fr;
  margin-top: 24px;
  margin-bottom: 24px;
}

.catalogue-hero .lead {
  max-width: 820px;
}

.catalogue-hero-text h1 {
  margin-bottom: 16px;
}

.catalogue-list {
  margin-top: 56px;
}

.about-article {
  margin-top: 24px;
}

.about-article h1 {
  margin-bottom: 20px;
}

.about-body {
  display: block;
}

.about-body p {
  margin-bottom: 18px;
}

.about-body a {
  color: var(--crimson);
  text-decoration: underline;
}

.about-slideshow {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: none;
  aspect-ratio: 4 / 5;
  min-height: 520px;
  margin: 0;
  background: none;
}

.about-float {
  float: right;
  width: min(48%, 420px);
  max-width: 420px;
  margin: 0 0 18px 28px;
}

.about-slideshow::before,
.about-slideshow::after {
  content: "";
  position: absolute;
  border-radius: 24px;
  background: rgba(21, 21, 23, 0.06);
  z-index: -2;
}

.about-slideshow::before {
  inset: 16px -16px -16px 16px;
}

.about-slideshow::after {
  inset: 8px -8px -8px 8px;
  background: rgba(21, 21, 23, 0.1);
  z-index: -1;
}

.about-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-slideshow img.is-active {
  opacity: 1;
  transform: translateY(0);
}

.about-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.timeline {
  margin-top: 100px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.about-gallery {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.gallery-card img {
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (min-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .brand {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    gap: 12px;
    width: min(240px, 90vw);
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a::after {
    display: none;
  }

  .site-header > .btn {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .floating-card {
    position: relative;
    margin-top: 20px;
  }

  .about-float {
    float: none;
    width: 100%;
    max-width: 420px;
    margin: 24px auto;
  }
}

@media (max-width: 700px) {
  section {
    margin-top: 90px;
  }

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

  .featured,
  .about-preview {
    gap: 36px;
  }

  .store {
    margin-top: 110px;
  }

  .store-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .store-card .cta-row {
    width: 100%;
  }
}

@media (max-width: 600px) {
  main {
    padding: 64px 18px 100px;
  }

  .site-header {
    padding: 16px 18px;
  }

  .logo img {
    height: 38px;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-row .btn {
    width: 100%;
  }

  .floating-card {
    display: none;
  }

  .site-footer {
    padding: 32px 18px 48px;
  }

  .about-preview {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-preview-text {
    text-align: center;
    align-items: center;
    max-width: 100%;
  }

  .about-preview-text .cta-row {
    align-items: center;
  }

  .portrait {
    display: none;
  }

  .about-body {
    display: flex;
    flex-direction: column;
  }

  .about-body p {
    font-size: 0.95rem;
  }

  .about-slideshow {
    max-width: 320px;
    min-height: 320px;
    aspect-ratio: 3 / 4;
  }

  .about-float {
    order: 2;
    width: min(100%, 320px);
    margin: 24px auto 0;
  }

  .about-article .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .reveal,
  .ambient-orb,
  .floating-card,
  .about-slideshow img {
    animation: none !important;
    transition: none !important;
  }
}
