:root {
  --bg: #050505;
  --fg: #f2f0ec;
  --muted: rgba(242, 240, 236, .62);
  --line: rgba(255,255,255,.32);
  --header-h: 74px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.7vw;
  background: linear-gradient(to bottom, rgba(0,0,0,.88), rgba(0,0,0,.5), transparent);
  transition: background .35s ease, backdrop-filter .35s ease;
}
.site-header.content-mode {
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(14px);
}
.brand {
  color: var(--fg);
  text-decoration: none;
  letter-spacing: .48em;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  white-space: nowrap;
}
.header-right { display: flex; align-items: center; gap: 2rem; }
.main-nav { display: flex; gap: 2.7rem; }
.nav-link, .lang {
  border: 0;
  background: none;
  color: rgba(255,255,255,.83);
  cursor: pointer;
  font-size: .66rem;
  letter-spacing: .2em;
  transition: color .2s ease, opacity .2s ease;
}
.nav-link:hover, .nav-link.active, .lang:hover, .lang.active { color: #fff; }
.nav-link.active::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  margin-top: 7px;
  background: currentColor;
}
.divider { width: 1px; height: 44px; background: rgba(255,255,255,.65); }
.languages { display: flex; gap: 1.1rem; }
.lang { padding: 8px 0; }
.menu-toggle { display: none; }

.view { min-height: 100svh; }
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: #111110;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero.png");
  background-size: cover;
  background-position: center;
  filter: blur(34px) brightness(.5) saturate(1.05);
  transform: scale(1.15);
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.27) 0%, rgba(0,0,0,.04) 45%, rgba(0,0,0,.12) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 41%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 4.8vw;
  padding-top: 4vh;
}
.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(3rem, 4.3vw, 5rem);
  letter-spacing: .31em;
  line-height: 1.03;
  text-shadow: 0 2px 25px rgba(0,0,0,.25);
}
.role {
  margin: 1.25rem 0 4.1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  letter-spacing: .48em;
}
.quote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-style: italic;
  letter-spacing: .21em;
  line-height: 1.45;
}
.scroll-cue {
  margin-top: 5.5rem;
  width: max-content;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  border: 0;
  color: white;
  background: transparent;
  cursor: pointer;
  font-size: .62rem;
  letter-spacing: .24em;
}
.scroll-line { height: 56px; width: 1px; background: rgba(255,255,255,.9); }
.chevron { font-size: 1.5rem; font-weight: 200; line-height: .55; }

.content-view {
  display: none;
  position: relative;
  background: #050505;
  padding-top: var(--header-h);
}
.content-view.active { display: block; animation: fade .45s ease both; }
.hero.hidden { display: none; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

.collage-wrap { position: relative; width: 100%; max-width: 760px; margin: 0 auto; }
.collage-image { display: block; width: 100%; height: auto; min-height: calc(100svh - var(--header-h)); object-fit: cover; }
.collage-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.12) 46%, rgba(0,0,0,.04) 78%),
    linear-gradient(to bottom, rgba(0,0,0,.04), rgba(0,0,0,.24));
}
.section-panel {
  position: relative;
  z-index: 2;
  width: min(560px, 88%);
  margin: 0 auto 4.5rem;
  padding: 2.1rem 2.3rem 2.3rem;
  background: rgba(8,8,8,.4);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  box-shadow: 0 18px 70px rgba(0,0,0,.32);
}
.section-panel h2, .section-panel .eyebrow, .section-panel .section-body, .section-panel .lead {
  text-shadow: 0 1px 5px rgba(0,0,0,.6);
}
.close-panel {
  position: absolute;
  right: 1rem;
  top: .65rem;
  border: 0;
  color: rgba(255,255,255,.78);
  background: transparent;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  cursor: pointer;
}
.eyebrow { margin: 0 0 1rem; font-size: .6rem; letter-spacing: .35em; color: var(--muted); }
.section-panel h2 {
  margin: 0 0 1.6rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  letter-spacing: .08em;
}
.section-body { font-family: "Cormorant Garamond", serif; font-size: 1.2rem; line-height: 1.65; }
.section-body p { margin: 0 0 1rem; }
.lead { font-size: 1.55rem; font-style: italic; }
.muted { color: var(--muted); font-size: 1rem; }
.empty-card, .audio-placeholder {
  margin: 1.3rem 0;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(255,255,255,.18);
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.empty-card small, .audio-placeholder small { color: var(--muted); }
.price-grid { display: grid; gap: .8rem; margin: 1.2rem 0; }
.price-grid > div { border-top: 1px solid rgba(255,255,255,.2); padding: .8rem 0; display: flex; justify-content: space-between; gap: 1rem; }
.price-grid span { color: var(--muted); font-size: 1rem; text-align: right; }
.audio-placeholder { flex-direction: row; align-items: center; gap: 1rem; }
.audio-placeholder > span { font-family: sans-serif; font-size: 1.2rem; }
.audio-placeholder > div { display: flex; flex-direction: column; }
.contact-link { color: white; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.45); }
code { font-size: .85em; }

@media (max-width: 1050px) {
  .site-header { padding: 0 3vw; }
  .main-nav { gap: 1.45rem; }
  .header-right { gap: 1.3rem; }
  .brand { letter-spacing: .34em; }
}

@media (max-aspect-ratio: 3/5) {
  .hero-image { object-fit: cover; object-position: 62% center; }
}

@media (max-width: 820px) {
  :root { --header-h: 66px; }
  .site-header { padding: 0 20px; }
  .brand { font-size: .9rem; letter-spacing: .25em; }
  .menu-toggle {
    display: flex; align-items: center; gap: .6rem;
    height: 42px; padding: 0 2px; border: 0; background: transparent; cursor: pointer; color: #fff;
  }
  .menu-toggle-label { font-size: .64rem; letter-spacing: .22em; color: rgba(255,255,255,.88); }
  .menu-toggle-icon { display: flex; flex-direction: column; justify-content: center; gap: 7px; width: 25px; }
  .menu-toggle-icon span { display: block; width: 25px; height: 1px; background: white; transition: transform .25s ease; }
  .header-right {
    position: fixed; inset: var(--header-h) 0 auto 0;
    display: none; flex-direction: column; align-items: stretch; gap: 1.5rem;
    padding: 1.7rem 20px 2rem; background: rgba(0,0,0,.94); backdrop-filter: blur(12px);
  }
  .header-right.open { display: flex; }
  .main-nav { flex-direction: column; gap: 1.2rem; }
  .nav-link { text-align: left; font-size: .78rem; padding: .5rem 0; }
  .divider { width: 100%; height: 1px; }
  .hero-content { width: 90%; padding-left: 7vw; justify-content: flex-end; padding-bottom: 7vh; }
  .hero h1 { font-size: clamp(2.4rem, 12vw, 4rem); letter-spacing: .2em; }
  .role { margin: 1rem 0 2.4rem; font-size: 1.2rem; }
  .quote { display: none; }
  .scroll-cue { margin-top: 1.5rem; }
  .scroll-line { height: 32px; }
  .section-panel {
    width: 92%;
    margin: 0 auto 3rem;
    padding: 1.6rem 1.4rem 1.8rem;
  }
  .section-panel h2 { font-size: 2.7rem; margin-bottom: 1rem; }
  .section-body { font-size: 1.08rem; }
  .collage-image { min-height: calc(100svh - var(--header-h)); width: 100%; object-fit: cover; object-position: center top; }
}

