:root {
  --ink: #06162d;
  --muted: #46576d;
  --paper: #eef5fb;
  --white: #ffffff;
  --line: rgba(6, 22, 45, 0.16);
  --red: #4db6ee;
  --red-dark: #1679b8;
  --charcoal: #061b38;
  --gold: #d8b56d;
  --navy-deep: #020b19;
  --sky-soft: #ccecff;
  --shadow: 0 30px 86px rgba(2, 11, 25, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper) 38%, #ffffff 100%);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

img,
audio {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 36px rgba(22, 23, 26, 0.08);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  color: var(--ink);
}

.brand-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.28rem, 2vw, 1.74rem);
  font-weight: 800;
  line-height: 1;
}

.brand-subtitle {
  color: var(--red-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--charcoal);
  font-weight: 800;
  font-size: 0.92rem;
}

.site-nav a {
  opacity: 0.78;
}

.site-nav a:hover {
  color: var(--red);
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(46px, 7vw, 96px) clamp(20px, 6vw, 88px) 64px;
  background:
    radial-gradient(circle at 72% 18%, rgba(77, 182, 238, 0.2), transparent 34%),
    linear-gradient(120deg, #ffffff 0%, #cfeaff 42%, #052046 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow {
  font-size: clamp(1rem, 1.7vw, 1.42rem);
  letter-spacing: 0.08em;
}

.hero h1,
.section-heading h2,
.studio h2,
.contact h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 7.3vw, 7rem);
}

.hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--charcoal);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 900;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--charcoal), #103d73);
  box-shadow: 0 14px 32px rgba(7, 29, 58, 0.24);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--navy-deep), #0d335f);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(6, 22, 45, 0.28);
}

.hero-media {
  position: relative;
  min-height: 640px;
  border-radius: 8px;
}

.hero-media > img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  border: 1px solid rgba(216, 181, 109, 0.45);
  box-shadow: var(--shadow);
}

.sound-card {
  position: absolute;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  width: min(390px, calc(100% - 32px));
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(6, 22, 45, 0.12);
  box-shadow: 0 22px 54px rgba(2, 11, 25, 0.24);
  backdrop-filter: blur(16px);
}

.sound-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-weight: 900;
}

audio {
  display: block;
  width: 100%;
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, var(--navy-deep), var(--charcoal));
  color: var(--white);
}

.strip span {
  padding: 22px clamp(18px, 3vw, 32px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 800;
  text-align: center;
}

.strip span:last-child {
  border-right: 0;
}

.human-voice {
  display: grid;
  grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(64px, 8vw, 112px) clamp(20px, 6vw, 88px);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(77, 182, 238, 0.18), transparent 34%),
    linear-gradient(135deg, var(--navy-deep), #061b38 56%, #0c315f);
}

.human-photo {
  overflow: hidden;
  justify-self: center;
  width: min(100%, 420px);
  border: 1px solid rgba(216, 181, 109, 0.42);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.human-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: 42% 52%;
  filter: none;
}

.human-copy h2 {
  max-width: 10ch;
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3.3rem, 7vw, 7.2rem);
  line-height: 0.95;
}

.human-copy p:last-child {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.section,
.studio,
.contact {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 6vw, 88px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: end;
  margin-bottom: 36px;
}

.section-heading.compact {
  display: block;
  max-width: 980px;
}

.section-heading h2,
.studio h2,
.contact h2 {
  font-size: clamp(2.8rem, 6.2vw, 6rem);
}

.audios .section-heading {
  display: block;
}

.audios .section-heading h2 {
  max-width: none;
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  line-height: 1;
  white-space: nowrap;
}

.audios .section-kicker,
.prestations .section-kicker,
.videos .section-kicker {
  font-size: clamp(1rem, 1.55vw, 1.32rem);
  letter-spacing: 0.09em;
}

.prestations .section-heading h2 {
  max-width: 12ch;
}

.videos .section-heading h2 {
  max-width: none;
  white-space: nowrap;
}

.section-heading p:last-child,
.studio-copy p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.audios {
  color: var(--white);
  background:
    radial-gradient(circle at 84% 12%, rgba(77, 182, 238, 0.18), transparent 34%),
    linear-gradient(135deg, var(--navy-deep), var(--charcoal));
}

.audios .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.audio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.audio-card,
.service-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(2, 11, 25, 0.12);
}

.audio-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 170px;
  color: var(--ink);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.audio-card:hover {
  border-color: rgba(77, 182, 238, 0.72);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(216, 181, 109, 0.12), transparent 38%),
    var(--charcoal);
  box-shadow: 0 22px 48px rgba(2, 11, 25, 0.28);
  transform: translateY(-2px);
}

.audio-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.audio-card:hover span {
  color: var(--red);
}

.audio-card.is-featured {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(216, 181, 109, 0.12), transparent 38%),
    var(--charcoal);
  border-color: rgba(216, 181, 109, 0.42);
}

.audio-card span,
.service-grid span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audio-card h3,
.service-grid h3 {
  margin: 8px 0 6px;
  font-size: 1.08rem;
  line-height: 1.16;
}

.audio-card p,
.service-grid p {
  margin: 0;
  color: var(--muted);
}

.audio-card.is-featured p {
  color: rgba(255, 255, 255, 0.7);
}

.audio-card audio {
  height: 32px;
  margin-top: 14px;
  accent-color: var(--red);
}

.audio-card:hover audio::-webkit-media-controls-panel {
  background-color: var(--sky-soft);
}

.voicetrack {
  padding-top: 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #edf8ff 100%);
}

.voicetrack-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) minmax(260px, 0.8fr);
  gap: 24px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid rgba(77, 182, 238, 0.32);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 12%, rgba(77, 182, 238, 0.34), transparent 32%),
    linear-gradient(135deg, #041328 0%, #07254b 56%, #0a386b 100%);
  box-shadow: 0 28px 70px rgba(2, 11, 25, 0.22);
}

.voicetrack .section-heading {
  margin: 0;
}

.voicetrack .section-kicker {
  color: var(--gold);
}

.voicetrack .section-heading h2 {
  max-width: 12ch;
  color: var(--white);
}

.voicetrack-copy {
  color: rgba(255, 255, 255, 0.78);
}

.voicetrack-copy p {
  max-width: 56ch;
  margin: 0 0 16px;
}

.voicetrack-copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.voicetrack-copy li {
  position: relative;
  padding-left: 18px;
}

.voicetrack-copy li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sky);
  content: "";
}

.voicetrack-demo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.voicetrack-demo span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.voicetrack-demo p {
  margin: 12px 0 18px;
  color: rgba(255, 255, 255, 0.74);
}

.voicetrack-demo h3 {
  margin: 10px 0 0;
  color: var(--white);
  font-size: 1.22rem;
}

.voicetrack-demo audio {
  width: 100%;
  height: 34px;
  margin: 0 0 18px;
  accent-color: var(--sky);
}

.voicetrack-demo .button {
  width: 100%;
  justify-content: center;
}

.prestations {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 8%, rgba(77, 182, 238, 0.2), transparent 34%),
    linear-gradient(145deg, #031226 0%, #09264d 56%, #0a386b 100%);
}

.prestations .section-heading {
  margin-bottom: 44px;
}

.prestations .section-kicker {
  color: var(--gold);
}

.prestations .section-heading h2 {
  max-width: 13ch;
}

.videos {
  background:
    linear-gradient(180deg, #ffffff 0%, #e7f4ff 100%);
}

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

.video-card {
  padding: 10px 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(2, 11, 25, 0.13);
}

.video-card:hover {
  border-color: rgba(86, 184, 239, 0.42);
  box-shadow: 0 18px 42px rgba(7, 29, 58, 0.12);
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: var(--navy-deep);
}

.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame video {
  object-fit: cover;
}

.video-frame.is-link {
  display: block;
  color: var(--white);
}

.video-frame.is-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.95) brightness(0.72);
  transition: transform 220ms ease, filter 220ms ease;
}

.video-frame.is-link:hover img {
  transform: scale(1.04);
  filter: contrast(1.12) saturate(1.02) brightness(0.82);
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(6, 22, 45, 0.72);
  box-shadow: 0 14px 34px rgba(2, 11, 25, 0.32);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.video-card span {
  display: block;
  margin-top: 12px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-card h3 {
  margin: 5px 0 0;
  font-size: 1rem;
  line-height: 1.18;
}

.video-link {
  display: inline-flex;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.video-link:hover {
  color: var(--red-dark);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.service-grid article {
  position: relative;
  min-height: 230px;
  padding: 22px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 44px rgba(2, 11, 25, 0.26);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--red), var(--gold));
}

.service-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 181, 109, 0.58);
  background:
    linear-gradient(145deg, rgba(77, 182, 238, 0.18), rgba(255, 255, 255, 0.07));
}

.service-grid article:nth-child(1),
.service-grid article:nth-child(2) {
  grid-column: span 3;
}

.service-grid article:nth-child(n + 3) {
  grid-column: span 2;
}

.service-grid span {
  color: var(--gold);
}

.service-grid h3 {
  margin-top: 34px;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.service-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.studio {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 12%, rgba(86, 184, 239, 0.16), transparent 32%),
    linear-gradient(135deg, var(--navy-deep), var(--charcoal));
}

.studio-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.studio-images img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: 0 24px 56px rgba(2, 11, 25, 0.32);
  border-radius: 8px;
}

.studio-images img:last-child {
  height: 420px;
}

.studio-copy p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 24px;
}

blockquote {
  margin: 34px 0 0;
  padding-left: 24px;
  border-left: 4px solid var(--gold);
  color: rgba(255, 255, 255, 0.88);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.2;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 420px);
  gap: 36px;
  align-items: center;
  background: var(--white);
}

.contact p {
  max-width: 690px;
  margin-top: 20px;
}

.seo-note {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.contact h2 {
  font-size: clamp(2.1rem, 4.4vw, 4.6rem);
}

.contact-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(216, 181, 109, 0.42);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, var(--sky-soft));
  box-shadow: var(--shadow);
}

.domain-link {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

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

  .service-grid article,
  .service-grid article:nth-child(1),
  .service-grid article:nth-child(2),
  .service-grid article:nth-child(n + 3) {
    grid-column: auto;
  }

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

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

  .voicetrack-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

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

  .hero,
  .human-voice,
  .section-heading,
  .studio,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 14vw, 5rem);
  }

  .audios .section-heading h2,
  .videos .section-heading h2 {
    white-space: normal;
  }

  .hero-media {
    min-height: 0;
  }

  .hero-media > img {
    height: min(116vw, 560px);
  }

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

  .strip span:nth-child(2n) {
    border-right: 0;
  }

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

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

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

  .voicetrack-card {
    padding: 22px;
  }

  .service-grid article {
    min-height: 0;
  }

  .studio-images {
    grid-template-columns: 1fr;
  }

  .studio-images img,
  .studio-images img:last-child {
    height: min(90vw, 420px);
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .hero-actions,
  .contact-panel {
    align-items: stretch;
  }

  .button {
    width: 100%;
    text-align: center;
  }

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

  .strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .strip span:last-child {
    border-bottom: 0;
  }
}
