/* Let's Go Meet
   Palette deliberately avoids the 2026 "AI cream" band (#faf8f5-#f7f3ec) and the
   indigo/violet band. Ground is a cool-warm off-white; the single accent is an
   oxblood reserved for actions and nothing else. */

:root {
  --ground: #f0efed;
  --ground-2: #e7e4df;
  --ink: #1c1a17;
  --ink-2: #4a463f;
  --ink-3: #7b756b;
  --rule: #d4cfc6;
  --accent: #651714;
  --accent-hot: #7d1d19;
  --espresso: #2c241c;
  --sand: #d5c5ac;

  --display: "Libre Baskerville", Georgia, serif;
  --body: "Source Sans 3", system-ui, sans-serif;

  --r: 2px;
  --pad: clamp(20px, 5vw, 56px);
  --maxw: 1180px;
  --prose: 66ch;
}

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

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation: none !important;
    transition: none !important;
  }
}

body {
  font-family: var(--body);
  background: var(--ground);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Paper grain. 4% opacity, breaks the flat-vector look. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.prose {
  max-width: var(--prose);
}

a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--accent);
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
}

/* Extreme scale contrast is deliberate: it is the cheapest human signal there is. */
h1 {
  font-size: clamp(2.6rem, 7.2vw, 5.1rem);
}
h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  margin-bottom: 0.6em;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35em;
}
p + p {
  margin-top: 1.1em;
}
.lede {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.5;
  color: var(--ink-2);
}
.small {
  font-size: 0.92rem;
  color: var(--ink-3);
}

/* ---------- header ---------- */
.site-head {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--rule);
  background: var(--ground);
}
.site-head .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}
.brand {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}
.brand span {
  color: var(--accent);
}
.nav {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 0.97rem;
}
.nav a {
  text-decoration: none;
  color: var(--ink-2);
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
}
@media (max-width: 700px) {
  .nav {
    gap: 16px;
    font-size: 0.9rem;
  }
  .nav .hide-sm {
    display: none;
  }
}

/* ---------- buttons: the accent appears here and essentially nowhere else ---------- */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--body);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 15px 30px;
  border: 1px solid var(--accent);
  border-radius: var(--r);
  text-decoration: none;
  transition: background 0.15s ease;
}
.btn:hover {
  background: var(--accent-hot);
  color: #fff;
}
.btn-quiet {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-quiet:hover {
  background: var(--ink);
  color: var(--ground);
}
.btn[aria-disabled="true"] {
  background: var(--ground-2);
  border-color: var(--rule);
  color: var(--ink-3);
  pointer-events: none;
}

/* ---------- hero: asymmetric on purpose ---------- */
.hero {
  padding: clamp(48px, 9vw, 104px) 0 clamp(40px, 7vw, 76px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

/* ---------- event cards ---------- */
.card {
  border: 1px solid var(--rule);
  background: #fbfaf9;
  border-radius: var(--r);
  padding: 26px;
}
.card-date {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 6px;
}
.card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.card dl {
  margin: 14px 0 20px;
  font-size: 0.97rem;
}
.card dl div {
  display: flex;
  gap: 12px;
  padding: 7px 0;
  border-top: 1px solid var(--rule);
}
.card dt {
  color: var(--ink-3);
  flex: 0 0 84px;
}
.card dd {
  color: var(--ink);
  font-weight: 600;
}

.event-list {
  display: grid;
  gap: 22px;
}

/* ---------- run of show: the mechanism made visible ---------- */
.run {
  border-top: 1px solid var(--rule);
  margin-top: 8px;
}
.run-step {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: clamp(14px, 3vw, 34px);
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 620px) {
  .run-step {
    grid-template-columns: 68px 1fr;
  }
}
.run-time {
  font-family: var(--display);
  font-size: 1rem;
  color: var(--accent);
  padding-top: 2px;
}
.run-step h3 {
  margin-bottom: 4px;
}
.run-step p {
  color: var(--ink-2);
  font-size: 1rem;
}

/* ---------- sections ---------- */
section {
  padding: clamp(46px, 7vw, 88px) 0;
}
.band {
  background: var(--espresso);
  color: var(--ground);
}
.band h2,
.band h3 {
  color: #fff;
}
.band p {
  color: #cfc7bd;
}
.band a {
  color: #fff;
}

.rule-top {
  border-top: 1px solid var(--rule);
}

.cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(22px, 4vw, 44px);
}

/* ---------- faq ---------- */
.faq details {
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
}
.faq summary {
  font-family: var(--display);
  font-size: 1.08rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  color: var(--accent);
  font-family: var(--body);
}
.faq details[open] summary::after {
  content: "\2212";
}
.faq details p {
  margin-top: 12px;
  color: var(--ink-2);
  max-width: var(--prose);
}

/* ---------- sticky buy bar (event pages, mobile) ---------- */
.buybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 18px;
  background: var(--espresso);
  border-top: 1px solid #000;
}
.buybar .bb-txt {
  color: #e6e0d8;
  font-size: 0.92rem;
  line-height: 1.3;
}
.buybar .bb-txt b {
  color: #fff;
  display: block;
  font-size: 1rem;
}
.buybar .btn {
  padding: 12px 20px;
  white-space: nowrap;
}
@media (max-width: 820px) {
  .buybar.on {
    display: flex;
  }
  body.has-buybar {
    padding-bottom: 78px;
  }
}

/* ---------- footer ---------- */
.site-foot {
  background: var(--espresso);
  color: #b7afa5;
  padding: clamp(40px, 6vw, 64px) 0 34px;
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}
.site-foot a {
  color: #e6e0d8;
}
.site-foot .foot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 30px;
  margin-bottom: 34px;
}
.site-foot h3 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.site-foot ul {
  list-style: none;
}
.site-foot li {
  padding: 4px 0;
}
.foot-mark {
  width: 62px;
  height: 62px;
  border-radius: 12px;
  margin-bottom: 14px;
  display: block;
}
.foot-legal {
  border-top: 1px solid #443a2f;
  padding-top: 22px;
  font-size: 0.87rem;
  color: #8d857b;
}

/* ---------- misc ---------- */
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 99;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
}
.crumbs {
  font-size: 0.9rem;
  color: var(--ink-3);
  padding: 18px 0 0;
}
.crumbs a {
  color: var(--ink-3);
}
.tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  border: 1px solid var(--rule);
  padding: 4px 10px;
  border-radius: var(--r);
}
.legal h2 {
  font-size: 1.35rem;
  margin-top: 2em;
}
.legal ul {
  margin: 1em 0 1em 1.2em;
}
.legal li {
  padding: 4px 0;
  color: var(--ink-2);
}

/* ============================================================
   v2 - energy, imagery and motion
   ============================================================ */

:root {
  --spark: #d94f2b;
  --deep: #17140f;
}

/* ---------- scroll reveal ---------- */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.rv.in {
  opacity: 1;
  transform: none;
}
.rv-2 {
  transition-delay: 0.09s;
}
.rv-3 {
  transition-delay: 0.18s;
}
.rv-4 {
  transition-delay: 0.27s;
}
@media (prefers-reduced-motion: reduce) {
  .rv {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- hero: living gradient behind the type ---------- */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -30%;
  right: -18%;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(217, 79, 43, 0.14),
    rgba(101, 23, 20, 0.09) 45%,
    transparent 70%
  );
  animation: drift 26s ease-in-out infinite alternate;
}
@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-6%, 5%, 0) scale(1.12);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero::after {
    animation: none;
  }
}

/* ---------- device frames ---------- */
.devices {
  position: relative;
  min-height: 380px;
}
.tv {
  border: 10px solid var(--deep);
  border-radius: 8px;
  box-shadow: 0 26px 60px rgba(23, 20, 15, 0.28);
  overflow: hidden;
  background: var(--deep);
  animation: float1 9s ease-in-out infinite alternate;
}
.tv img {
  display: block;
  width: 100%;
  height: auto;
}
.phone {
  position: absolute;
  right: -6px;
  bottom: -34px;
  width: 27%;
  min-width: 118px;
  border: 7px solid var(--deep);
  border-radius: 20px;
  overflow: hidden;
  background: var(--deep);
  box-shadow: 0 22px 44px rgba(23, 20, 15, 0.34);
  animation: float2 7.5s ease-in-out infinite alternate;
}
.phone img {
  display: block;
  width: 100%;
  height: auto;
}
@keyframes float1 {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-12px);
  }
}
@keyframes float2 {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-20px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .tv,
  .phone {
    animation: none;
  }
}

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 15px 0;
  background: #ebe9e5;
}
.marquee-track {
  display: flex;
  gap: 42px;
  width: max-content;
  animation: slide 44s linear infinite;
  font-family: var(--display);
  font-size: 1rem;
  color: var(--ink-2);
  white-space: nowrap;
}
.marquee-track span {
  display: flex;
  align-items: center;
  gap: 42px;
}
.marquee-track span::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--spark);
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ---------- stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  overflow: hidden;
}
.stat {
  background: var(--ground);
  padding: 26px 22px;
}
.band .stats {
  background: #3a3128;
  border-color: #3a3128;
}
.band .stat {
  background: var(--espresso);
}
.stat b {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
}
.band .stat b {
  color: #ff9f7a;
}
.stat span {
  font-size: 0.95rem;
  color: var(--ink-3);
}
.band .stat span {
  color: #b7afa5;
}

/* ---------- why grid ---------- */
.why {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.why > div {
  background: var(--ground);
  padding: 30px 26px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.why > div:hover {
  background: #fbfaf9;
}
.why .n {
  font-family: var(--display);
  font-size: 0.85rem;
  color: var(--spark);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}

/* ---------- versus block ---------- */
.versus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 4vw, 44px);
}
@media (max-width: 720px) {
  .versus {
    grid-template-columns: 1fr;
  }
}
.versus ul {
  list-style: none;
  margin-top: 16px;
}
.versus li {
  padding: 11px 0 11px 30px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  color: var(--ink-2);
}
.versus li::before {
  position: absolute;
  left: 0;
  top: 11px;
  font-weight: 700;
}
.versus .no li::before {
  content: "\00d7";
  color: var(--ink-3);
}
.versus .yes li::before {
  content: "\2713";
  color: var(--accent);
}
.band .versus li {
  border-color: #443a2f;
  color: #cfc7bd;
}
.band .versus .yes li::before {
  color: #ff9f7a;
}

/* ---------- photo bands (filled by /assets/img/*.jpg when present) ---------- */
.photo-band {
  position: relative;
  background: var(--deep);
  color: var(--ground);
  overflow: hidden;
}
.photo-band img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.85);
}
.photo-band .wrap {
  position: relative;
  z-index: 2;
}
.photo-band h2,
.photo-band h3 {
  color: #fff;
}
.photo-band p {
  color: #ded7cd;
}

/* ---------- misc v2 ---------- */
.card,
.why > div {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(23, 20, 15, 0.09);
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.pill {
  font-size: 0.86rem;
  padding: 6px 13px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink-2);
  background: #fbfaf9;
}
.band .pill {
  border-color: #443a2f;
  background: #241d17;
  color: #cfc7bd;
}
.lgg-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.lgg-strip img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid #3a3128;
  display: block;
}

/* ---------- forms ---------- */
.nform .f {
  margin-bottom: 18px;
}
.nform label {
  display: block;
  font-size: 0.95rem;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.nform input,
.nform select,
.nform textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: var(--r);
  background: #fbfaf9;
  color: var(--ink);
}
.nform input:focus,
.nform select:focus,
.nform textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.nform button {
  cursor: pointer;
}
.nform .hp {
  position: absolute;
  left: -9999px;
}

/* ---------- consent ---------- */
.consent {
  position: fixed;
  z-index: 40;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 640px;
  margin: 0 auto;
  background: var(--espresso);
  color: #ded7cd;
  border: 1px solid #443a2f;
  border-radius: 6px;
  padding: 18px 20px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
  font-size: 0.94rem;
}
.consent a {
  color: #fff;
}
.consent div {
  display: flex;
  gap: 10px;
}
.consent .btn {
  padding: 10px 18px;
  font-size: 0.94rem;
}
.consent .btn-quiet {
  color: #ded7cd;
  border-color: #6b5f52;
}
.consent .btn-quiet:hover {
  background: #ded7cd;
  color: var(--espresso);
}

/* ---------- sourced evidence grid ---------- */
.evid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.evid > div {
  background: var(--ground);
  padding: 30px 26px;
}
.evid b {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1;
  display: block;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.evid .evid-claim {
  margin-top: 14px;
  color: var(--ink);
  font-size: 1.02rem;
}
.evid .evid-src {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--ink-3);
}
.band .evid {
  background: #443a2f;
  border-color: #443a2f;
}
.band .evid > div {
  background: var(--deep);
}
.band .evid b {
  color: var(--sand);
}
.band .evid .evid-claim {
  color: #ded7cd;
}
.band .evid .evid-src {
  border-top-color: #443a2f;
  color: #a9a196;
}

/* ---------- tick list outside a versus block ---------- */
ul.plain {
  list-style: none;
  margin-top: 16px;
}
ul.plain li {
  padding: 11px 0 11px 30px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  color: var(--ink-2);
}
ul.plain li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 11px;
  font-weight: 700;
  color: var(--accent);
}

/* ---------- fixes ---------- */
/* The count-up span inside a .stat figure was inheriting the small caption size
   from `.stat span`, so "~20" rendered as a large tilde and a tiny number. */
.stat b span {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
}

/* Hairline grids drawn with a 1px gap over a rule-coloured background leave a
   solid grey block wherever the last row is short. Draw the rules on the cells
   instead, so an incomplete row just ends. */
.why,
.evid {
  background: transparent;
  border: 0;
}
.why > div,
.evid > div {
  box-shadow: 0 0 0 1px var(--rule);
}
.band .evid > div {
  box-shadow: 0 0 0 1px #443a2f;
}

/* Narrow screens: the nav becomes one horizontally scrollable row rather than
   wrapping the header into three lines. Items keep their full labels. */
@media (max-width: 759px) {
  .site-head .row {
    flex-wrap: wrap;
    gap: 10px 20px;
  }
  .nav {
    flex: 1 0 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
  }
  .nav::-webkit-scrollbar {
    display: none;
  }
  .nav a {
    white-space: nowrap;
  }
}

/* Fade on the right edge of the scrolling nav, so it reads as scrollable. */
@media (max-width: 759px) {
  .site-head .row {
    position: relative;
  }
  .site-head .row::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 34px;
    height: 28px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(240, 239, 237, 0), var(--ground));
  }
}
