/* ===========================================================
   Glenwhisper — v3  ·  editorial / luxe
   navy #092033 · stone #d7cdc0 · light #edece7
   display: Cormorant Garamond   ·   ui/body: Figtree
   =========================================================== */

:root {
  --navy:   #092033;
  --navy-2: #0d2a42;
  --navy-3: #061726;
  --stone:  #d7cdc0;
  --light:  #edece7;
  --cream:  #f3f1ec;
  --ink:    #11202c;
  --muted:  #5b6770;

  --maxw: 1200px;
  --pad: clamp(1.1rem, 3.2vw, 2.4rem);

  --font: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--light);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* ---- shared label ---- */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(2.2rem, 5vw, 3.6rem);
}
.eyebrow-light { color: var(--stone); }
.eyebrow-idx { opacity: 0.5; font-weight: 500; margin-left: 0.4rem; }

/* ===========================================================
   Hero
   =========================================================== */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: clamp(1rem, 2vw, 1.6rem) var(--pad) clamp(0.9rem, 1.8vw, 1.4rem);
  gap: clamp(0.9rem, 1.8vw, 1.4rem);
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.2rem, 4vw, 3.5rem);
}
.bar-logo img { height: 19px; width: auto; }

.bar-title {
  font-family: var(--font);
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--muted);
  max-width: 30ch;
}

.controls { display: flex; align-items: center; gap: 0.6rem; justify-self: end; }

.pill {
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.72rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 32, 44, 0.18);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.pill span { opacity: 0.55; margin-left: 0.15rem; }
.pill:hover { border-color: var(--ink); }
.pill-dark { background: var(--navy); color: #fff; border-color: var(--navy); }
.pill-dark span { opacity: 0.7; color: var(--stone); }
.pill-dark:hover { background: var(--navy-2); }

.ctl-round {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(17, 32, 44, 0.18);
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color .3s var(--ease);
}
.ctl-round:hover { border-color: var(--ink); }
.ctl-bar { display: block; width: 13px; height: 1.6px; background: var(--ink); border-radius: 2px; position: relative; }
.ctl-round.paused .ctl-bar::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 1.6px; height: 13px; background: var(--ink); border-radius: 2px;
  transform: translate(-50%, -50%);
}

.stage {
  position: relative;
  flex: 1;
  min-height: 60vh;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy-3);
}
.stage-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-foot {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.plus { color: rgba(17, 32, 44, 0.45); justify-self: start; }
.plus-mid { justify-self: center; }
.hero-foot .plus:last-child { justify-self: end; }
.foot-label { justify-self: center; font-weight: 500; }

/* ===========================================================
   Menu overlay
   =========================================================== */
.menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--navy);
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
  display: flex;
}
.menu.open { transform: translateY(0); }
.menu-inner {
  margin: auto;
  width: 100%;
  max-width: var(--maxw);
  padding: 0 var(--pad);
  text-align: center;
  position: relative;
}
.menu-close {
  position: fixed;
  top: clamp(1rem, 2vw, 1.6rem); right: var(--pad);
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  background: transparent;
  border: 1px solid rgba(215, 205, 192, 0.4);
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
}
.menu-nav { display: flex; flex-direction: column; gap: 0.3rem; }
.menu-nav a {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 5rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.12;
  color: #fff;
  transition: color .25s var(--ease);
}
.menu-nav a:hover { color: var(--stone); }
.menu-email {
  display: inline-block;
  margin-top: 2.4rem;
  color: var(--stone);
  font-size: 1rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(215, 205, 192, 0.35);
  padding-bottom: 0.15rem;
}
body.menu-open { overflow: hidden; }

/* ===========================================================
   Statement
   =========================================================== */
.statement { background: var(--light); padding: clamp(5rem, 12vw, 11rem) 0; }
.statement-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 9vw, 7rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  max-width: 14ch;
  color: var(--ink);
}
.statement-sub {
  font-family: var(--font);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.5;
  color: var(--muted);
  margin-top: clamp(1.8rem, 4vw, 3rem);
  max-width: 42ch;
}

/* ===========================================================
   Approach — editorial list
   =========================================================== */
.approach { background: var(--light); padding: clamp(5rem, 11vw, 9.5rem) 0; }
.approach-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: baseline;
  padding: clamp(1.6rem, 3.5vw, 2.6rem) 0;
  border-top: 1px solid rgba(17, 32, 44, 0.14);
}
.approach-row:last-child { border-bottom: 1px solid rgba(17, 32, 44, 0.14); }
.row-num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--muted);
}
.approach-row h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: transform .4s var(--ease);
}
.approach-row:hover h3 { transform: translateX(0.6rem); }
.approach-row p {
  font-family: var(--font);
  color: var(--muted);
  font-size: 1rem;
  justify-self: end;
  text-align: right;
  max-width: 22ch;
}

/* ===========================================================
   Focus — interactive index (navy)
   =========================================================== */
.focus { background: var(--navy); color: var(--stone); padding: clamp(5rem, 11vw, 9.5rem) 0; }
.index-list { list-style: none; }
.index-item {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.8rem, 4vw, 3rem) 0;
  border-top: 1px solid rgba(215, 205, 192, 0.2);
  transition: padding-left .45s var(--ease);
}
.index-list .index-item:last-child { border-bottom: 1px solid rgba(215, 205, 192, 0.2); }
.idx {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--stone);
  opacity: 0.65;
}
.idx-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 6.5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: #fff;
  transition: color .3s var(--ease);
}
.idx-desc {
  font-family: var(--font);
  font-size: 0.95rem;
  color: rgba(215, 205, 192, 0.6);
  justify-self: end;
  text-align: right;
  max-width: 20ch;
  transition: color .3s var(--ease);
}
.index-item:hover { padding-left: clamp(0.5rem, 2vw, 1.4rem); }
.index-item:hover .idx-name { color: var(--stone); }
.index-item:hover .idx-desc { color: var(--stone); }

/* ===========================================================
   Outro — CTA + brand stamp
   =========================================================== */
.outro {
  background: var(--cream);
  text-align: center;
  padding: clamp(5.5rem, 12vw, 10rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.cta-email { display: inline-flex; flex-direction: column; gap: 0.7rem; align-items: center; }
.cta-kicker {
  font-family: var(--font);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--muted);
}
.cta-addr {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 7vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.cta-email:hover .cta-addr { border-color: rgba(17, 32, 44, 0.4); }

.outro-logo {
  width: clamp(180px, 28vw, 300px);
  height: auto;
  margin: clamp(4rem, 9vw, 7rem) auto clamp(2rem, 4vw, 3rem);
}
.outro-disclaimer {
  font-family: var(--font);
  font-size: 0.76rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto;
}

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 920px) {
  .bar-title { display: none; }
  .topbar { grid-template-columns: auto auto; justify-content: space-between; }
}
@media (max-width: 680px) {
  .approach-row,
  .index-item {
    grid-template-columns: 2.5rem 1fr;
    row-gap: 0.4rem;
  }
  .approach-row p,
  .idx-desc {
    grid-column: 2;
    justify-self: start;
    text-align: left;
    margin-top: 0.3rem;
  }
}
@media (max-width: 560px) {
  .pill-dark { display: none; }
  .foot-label { font-size: 0.62rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; }
}
