/* =========================================================
   CHARLY ZURCHER — OFFICIAL LANDING PAGE
   Static HTML/CSS version
   Replace the hero image in: assets/landing-hero.jpg
   Replace the press kit in: assets/Presskit_Radios_Beautiful_Soul_Charly_Zurcher_FINAL.pdf
   ========================================================= */

/* ---------- Root variables ---------- */
:root {
  --black: #050505;
  --blue-black: #081018;
  --gold: #C6A15B;
  --ivory: #E8DDC8;
  --secondary-text: #AFA79A;
  --amber: #A64A1F;
  --petrol: #0E3A45;

  --title-font: "Cormorant Garamond", Georgia, serif;
  --body-font: "Lato", Arial, sans-serif;

  --header-height: 64px;
  --max-width: 1180px;
  --transition: 220ms ease;
}

/* ---------- Base ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(198, 161, 91, 0.10), transparent 28%),
    linear-gradient(180deg, var(--black), var(--blue-black) 48%, var(--black));
  color: var(--ivory);
  font-family: var(--body-font);
  font-weight: 300;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: var(--header-height);
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(198, 161, 91, 0.45);
}

.monogram,
.footer-monogram {
  font-family: var(--title-font);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.monogram {
  font-size: 1.35rem;
}

.main-nav {
  display: flex;
  gap: 34px;
  align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--ivory);
}

.main-nav a,
.language-switch a,
.footer-links a,
.text-link {
  transition: color var(--transition), opacity var(--transition);
}

.main-nav a:hover,
.language-switch a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--gold);
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--secondary-text);
}

.language-switch .active {
  color: var(--gold);
}

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/landing-hero.jpg");
  background-position: center top;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.86) 0%, rgba(5, 5, 5, 0.62) 33%, rgba(5, 5, 5, 0.18) 63%, rgba(5, 5, 5, 0.70) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.15), rgba(5, 5, 5, 0.78));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max-width), calc(100% - 112px));
  margin: 0 auto;
  padding-top: 40px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  font-weight: 400;
}

.hero-content h1 {
  margin: 0;
  max-width: 680px;
  font-family: var(--title-font);
  font-size: clamp(4.7rem, 8vw, 6.8rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0.015em;
}

.hero-subtitle {
  max-width: 470px;
  margin: 26px 0 34px;
  color: var(--secondary-text);
  font-size: 1.12rem;
  letter-spacing: 0.03em;
}

.hero-actions,
.contact-action {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 185px;
  min-height: 52px;
  padding: 14px 28px;
  border: 1px solid var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    background-color var(--transition),
    color var(--transition),
    transform var(--transition),
    border-color var(--transition);
}

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

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--ivory);
  border-color: var(--ivory);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
}

.btn-secondary:hover {
  background: rgba(198, 161, 91, 0.12);
}

/* ---------- Three main blocks ---------- */
.main-blocks {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  width: min(var(--max-width), calc(100% - 112px));
  margin: -78px auto 0;
  position: relative;
  z-index: 5;
  background: rgba(8, 16, 24, 0.88);
  border: 1px solid rgba(198, 161, 91, 0.42);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.info-card {
  min-height: 320px;
  padding: 38px 34px;
  border-right: 1px solid rgba(198, 161, 91, 0.28);
}

.info-card:last-child {
  border-right: 0;
}

.info-card h2,
.content-section h2 {
  margin: 0 0 18px;
  font-family: var(--title-font);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
}

.info-card h3 {
  margin: 18px 0 8px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ivory);
}

.info-card p {
  margin: 0;
  color: var(--secondary-text);
}

.video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(198, 161, 91, 0.58);
  background:
    linear-gradient(135deg, rgba(166, 74, 31, 0.26), rgba(14, 58, 69, 0.35)),
    radial-gradient(circle at center, rgba(232, 221, 200, 0.16), transparent 55%),
    #0b0b0b;
  overflow: hidden;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(198, 161, 91, 0.25);
}

.play-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 2rem;
  z-index: 2;
}

.text-link {
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.socials ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.socials li {
  border-bottom: 1px solid rgba(198, 161, 91, 0.20);
}

.socials li:last-child {
  border-bottom: 0;
}

.socials a {
  display: block;
  padding: 13px 0;
  color: var(--ivory);
  letter-spacing: 0.07em;
}

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

/* ---------- Content Sections ---------- */
.content-section {
  padding: 110px 56px;
  border-bottom: 1px solid rgba(198, 161, 91, 0.16);
}

.section-inner {
  width: min(780px, 100%);
  margin: 0 auto;
  text-align: center;
}

.content-section h2 {
  font-size: clamp(2.55rem, 5vw, 4rem);
}

.content-section p {
  margin: 0 auto 28px;
  max-width: 640px;
  color: var(--secondary-text);
  font-size: 1.04rem;
}

.latest-release {
  padding-top: 140px;
}

.press-kit {
  background:
    radial-gradient(circle at 20% 30%, rgba(198, 161, 91, 0.10), transparent 32%),
    rgba(5, 5, 5, 0.35);
}

.email-link {
  display: inline-block;
  margin: 4px 0 28px;
  color: var(--gold);
  font-size: 1.12rem;
  letter-spacing: 0.05em;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 54px 56px 46px;
  text-align: center;
  background: var(--black);
  color: var(--secondary-text);
}

.footer-monogram {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.site-footer p {
  margin: 4px 0;
}

.footer-small {
  font-size: 0.84rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 26px 0;
  color: var(--ivory);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.copyright {
  font-size: 0.78rem;
  opacity: 0.72;
}

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .site-header {
    padding: 0 24px;
  }

  .main-nav {
    display: none;
  }

  .language-switch {
    font-size: 0.68rem;
  }

  .hero-section {
    min-height: 660px;
    align-items: flex-end;
    padding-bottom: 56px;
  }

  .hero-bg {
    background-position: center top;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.30), rgba(5, 5, 5, 0.94) 72%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.58), rgba(5, 5, 5, 0.22));
  }

  .hero-content {
    width: calc(100% - 48px);
    padding-top: 0;
  }

  .hero-content h1 {
    font-size: clamp(3.25rem, 16vw, 4.65rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 26px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .main-blocks {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    margin-top: 0;
  }

  .info-card {
    min-height: auto;
    padding: 34px 26px;
    border-right: 0;
    border-bottom: 1px solid rgba(198, 161, 91, 0.28);
  }

  .info-card:last-child {
    border-bottom: 0;
  }

  .content-section {
    padding: 82px 24px;
  }

  .latest-release {
    padding-top: 82px;
  }

  .site-footer {
    padding: 46px 24px 40px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 60px;
  }

  .hero-section {
    min-height: 620px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.68rem;
  }

  .info-card h2 {
    font-size: 2rem;
  }

  .content-section h2 {
    font-size: 2.55rem;
  }
}
