/* ================================================================
   365 PERFORMANCE V3 :: EDITORIAL DESIGN SYSTEM
   ================================================================ */

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

:root {
  /* Color */
  --ink: #0a0a0a;
  --ink-2: #0d0d0d;
  --ink-3: #111111;
  --surface: #131313;
  --line: #1f1f1f;
  --line-soft: rgba(255,255,255,0.06);
  --paper: #f5f1e8;
  --paper-2: #ebe5d4;
  --bone: #e8e3d4;
  --text: #ededed;
  --text-2: #b5b5b5;
  --text-3: #6a6a6a;
  --text-4: #404040;
  --lime: #c8ff00;
  --lime-soft: rgba(200,255,0,0.08);
  --blue: #339bd1;
  --blue-soft: rgba(51,155,209,0.08);
  --warm: #ffaa6a;

  /* Type */
  --display: 'Bebas Neue', sans-serif;
  --serif: 'Fraunces', serif;
  --body: 'DM Sans', sans-serif;

  /* Layout */
  --col: 1240px;
  --col-narrow: 920px;
  --col-prose: 680px;
  --gap: 24px;
  --rhythm: clamp(64px, 8vw, 120px);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-feature-settings: "ss01","cv02","cv11";
}

/* Grain texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Vignette */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.4) 100%);
}

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: 0; }

/* ================================================================
   TYPOGRAPHY
   ================================================================ */

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  color: var(--text);
  letter-spacing: -0.005em;
  line-height: 0.92;
  text-transform: uppercase;
  font-weight: 400;
}

h1 { font-size: clamp(3.2rem, 7.8vw, 8rem); letter-spacing: -0.02em; line-height: 0.88; }
h2 { font-size: clamp(2.4rem, 6vw, 5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); letter-spacing: 0; }

.serif { font-family: var(--serif); text-transform: none; font-weight: 400; letter-spacing: -0.02em; }
.serif-italic { font-family: var(--serif); font-style: italic; text-transform: none; font-weight: 400; letter-spacing: -0.02em; }

p { color: var(--text-2); line-height: 1.7; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.65; color: var(--text); font-weight: 400; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--lime);
}
.eyebrow.center { justify-content: center; }
.eyebrow.lime { color: var(--lime); }

.section-num {
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text-4);
  display: inline-block;
}

.lime { color: var(--lime); }
.blue { color: var(--blue); }
.text-muted { color: var(--text-2); }
.italic { font-family: var(--serif); font-style: italic; text-transform: none; }

/* ================================================================
   LAYOUT
   ================================================================ */

.wrap { max-width: var(--col); margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.wrap-narrow { max-width: var(--col-narrow); margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.wrap-prose { max-width: var(--col-prose); margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.section { padding: var(--rhythm) 0; position: relative; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; position: relative; }

.divider { height: 1px; background: var(--line); max-width: var(--col); margin: 0 auto; }

@media (max-width: 768px) {
  .wrap, .wrap-narrow, .wrap-prose { padding: 0 20px; }
}

/* ================================================================
   NAV
   ================================================================ */

nav.top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: padding 0.3s ease;
}
nav.top.scrolled { padding: 10px 0; }

.nav-inner {
  max-width: var(--col);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
}
.logo-mark {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--lime);
  margin-right: 10px;
  vertical-align: 2px;
  border-radius: 1px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--lime);
  transition: width 0.3s ease;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--lime);
  color: var(--ink) !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
}
.nav-cta:hover { background: var(--text); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 24px 32px;
  z-index: 99;
}
.mobile-menu.active { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu a:last-child { border: 0; padding-top: 18px; color: var(--lime); font-weight: 600; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { padding: 0 20px; }
}

/* ================================================================
   HERO
   ================================================================ */

.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Big background number */
.hero-bignum {
  position: absolute;
  right: -3vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: clamp(20rem, 38vw, 50rem);
  color: rgba(255,255,255,0.018);
  line-height: 0.85;
  pointer-events: none;
  z-index: 1;
  letter-spacing: -0.04em;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
  margin-bottom: 36px;
}
.hero-meta::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--text-3);
}

.hero h1 .line {
  display: block;
  position: relative;
}
.hero h1 .line span {
  display: block;
}
.hero h1 .accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--lime);
  letter-spacing: -0.025em;
  line-height: 1.05;
  padding-bottom: 0.1em;
}

.hero-sub {
  margin-top: 36px;
  max-width: 540px;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.65;
  color: var(--text);
  font-weight: 400;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn::after {
  content: '→';
  transition: transform 0.25s ease;
}
.btn-primary { background: var(--lime); color: var(--ink); }
.btn-primary:hover { background: var(--text); transform: translateY(-1px); }
.btn-primary:hover::after { transform: translateX(4px); }
.btn-ghost { color: var(--text); border-color: var(--line); background: transparent; }
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn-ghost:hover::after { transform: translateX(4px); }
.btn-large { padding: 20px 36px; font-size: 0.92rem; }

.hero-trust {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.hero-trust-num {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: 0;
}
.hero-trust-label {
  font-size: 0.74rem;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-trust-stars {
  color: #ffb84d;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

/* Hero photo collage */
.hero-photos {
  position: relative;
  height: 520px;
}
.hero-photo {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.92);
}
.hero-photo-1 {
  width: 60%;
  top: 0; right: 0;
  height: 60%;
  z-index: 2;
}
.hero-photo-2 {
  width: 50%;
  bottom: 0; left: 0;
  height: 50%;
  z-index: 3;
  border: 4px solid var(--ink);
}
.hero-photo-3 {
  width: 35%;
  top: 25%; left: 8%;
  height: 30%;
  z-index: 1;
  opacity: 0.85;
}
.hero-photo-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 4;
}

/* Scroll indicator */
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 4;
}
.scroll-cue::after {
  content: '';
  width: 1px; height: 28px;
  background: linear-gradient(to bottom, var(--lime), transparent);
  animation: scrollCue 2s ease-in-out infinite;
}
@keyframes scrollCue {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

@media (max-width: 980px) {
  .hero { padding: 120px 0 80px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-photos { height: 420px; max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-bignum { display: none; }
  .scroll-cue { display: none; }
}
@media (max-width: 600px) {
  .hero-photos { height: 340px; }
}

/* ================================================================
   MARQUEE
   ================================================================ */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: var(--ink-2);
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  align-items: center;
}
.marquee-item {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--text);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.marquee-item::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================================================================
   PROBLEM SECTION (editorial moment)
   ================================================================ */

.problem {
  background: var(--ink-2);
  position: relative;
}
.problem-inner {
  max-width: var(--col-prose);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.problem-num {
  position: absolute;
  top: -40px;
  right: 32px;
  font-family: var(--display);
  font-size: clamp(8rem, 18vw, 16rem);
  color: rgba(200,255,0,0.04);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
}
.problem h2 {
  margin-top: 24px;
  margin-bottom: 40px;
}
.problem-prose p {
  font-size: clamp(1.08rem, 1.4vw, 1.18rem);
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 22px;
  font-weight: 400;
}
.problem-prose p .quiet { color: var(--text-3); }
.problem-close {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* ================================================================
   COACHING DIFFERENCE
   ================================================================ */

.diff-header {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 80px;
}
.diff-header h2 { line-height: 0.9; }
.diff-header-right { padding-bottom: 12px; }

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillar {
  padding: 40px 28px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.3s ease;
}
.pillar:last-child { border-right: 0; }
.pillar:hover { background: var(--ink-2); }
.pillar-num {
  font-family: var(--display);
  font-size: 0.85rem;
  color: var(--lime);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  display: block;
}
.pillar h3 {
  font-size: 1.6rem;
  line-height: 0.95;
  margin-bottom: 14px;
  color: var(--text);
}
.pillar p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-2);
}

.diff-close {
  margin-top: 72px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  line-height: 1.4;
  color: var(--text);
  letter-spacing: -0.015em;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .diff-header { grid-template-columns: 1fr; gap: 24px; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar { border-right: 0; }
  .pillar:nth-child(odd) { border-right: 1px solid var(--line); }
  .pillar:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 540px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: 0; }
}

/* ================================================================
   METHODOLOGY
   ================================================================ */

.method {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.method-photo {
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.method-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.08) brightness(0.85);
}
.method-photo-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.method-photo-overlay-num {
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--lime);
  line-height: 1;
}
.method-photo-overlay-text {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--text-2);
  letter-spacing: 0.02em;
}
.method-photo-overlay-text strong { color: var(--text); display: block; margin-bottom: 2px; }

.method-content h2 { margin: 24px 0 32px; }
.method-content p.lead { margin-bottom: 36px; }
.method-list { list-style: none; }
.method-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.method-item:last-child { border-bottom: 0; }
.method-item-num {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--text-3);
  letter-spacing: 0.05em;
  padding-top: 4px;
}
.method-item h4 {
  font-family: var(--body);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.3;
}
.method-item p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .method-grid { grid-template-columns: 1fr; gap: 48px; }
  .method-photo { max-width: 480px; margin: 0 auto; width: 100%; }
}

/* ================================================================
   PATHS / OPTIONS
   ================================================================ */

.paths-header {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  margin-bottom: 80px;
  align-items: end;
}
.paths-header-right p { font-size: 1.05rem; line-height: 1.65; color: var(--text); }

.path {
  display: grid;
  grid-template-columns: 0.5fr 1fr 1fr;
  gap: 64px;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding 0.3s ease;
}
.path:first-of-type { border-top: 1px solid var(--line); }
.path:hover { padding-left: 12px; }
.path-num {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--text-4);
  line-height: 0.85;
  transition: color 0.3s ease;
}
.path:hover .path-num { color: var(--lime); }
.path-meta h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 0.95;
  margin-bottom: 12px;
}
.path-meta-tag {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}
.path-content p { color: var(--text-2); margin-bottom: 16px; line-height: 1.65; font-size: 0.96rem; }
.path-content p.path-bestfor {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.path-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: all 0.25s ease;
}
.path-link:hover { border-bottom-color: var(--lime); gap: 14px; }

@media (max-width: 900px) {
  .path { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
  .path:hover { padding-left: 0; }
  .paths-header { grid-template-columns: 1fr; gap: 24px; }
}

/* ================================================================
   RESULTS GALLERY
   ================================================================ */

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 64px;
}
.results-header h2 { line-height: 0.9; max-width: 600px; }
.results-header p {
  max-width: 360px;
  font-size: 0.95rem;
  line-height: 1.65;
}

.results-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.result {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink-3);
  cursor: pointer;
}
.result img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: contrast(1.05) brightness(0.92);
}
.result:hover img { transform: scale(1.04); }
.result-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92), rgba(10,10,10,0) 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.result-overlay-text {
  position: relative;
  z-index: 2;
}
.result-name {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.result-stat {
  font-size: 0.78rem;
  color: var(--lime);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.result-role {
  font-size: 0.72rem;
  color: var(--text-3);
  margin-top: 4px;
}

.result-1 { grid-column: span 5; aspect-ratio: 4/5; }
.result-2 { grid-column: span 4; aspect-ratio: 4/5; }
.result-3 { grid-column: span 3; aspect-ratio: 4/5; }
.result-4 { grid-column: span 4; aspect-ratio: 16/10; }
.result-5 { grid-column: span 4; aspect-ratio: 16/10; }
.result-6 { grid-column: span 4; aspect-ratio: 16/10; }

.results-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.quote-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s ease;
}
.quote-card:hover { border-color: var(--lime-soft); transform: translateY(-2px); }
.quote-mark {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--lime);
  line-height: 0.6;
  position: absolute;
  top: 18px;
  left: 22px;
  opacity: 0.5;
}
.quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
  letter-spacing: -0.015em;
  margin-top: 28px;
  margin-bottom: 24px;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.quote-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--blue-soft);
  border: 1px solid rgba(51,155,209,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 0.84rem;
  color: var(--blue);
  letter-spacing: 0.05em;
}
.quote-name { font-size: 0.86rem; color: var(--text); font-weight: 600; }
.quote-role { font-size: 0.74rem; color: var(--text-3); }

@media (max-width: 1000px) {
  .results-gallery { grid-template-columns: repeat(6, 1fr); }
  .result-1, .result-2 { grid-column: span 3; aspect-ratio: 1; }
  .result-3 { grid-column: span 6; aspect-ratio: 16/8; }
  .result-4, .result-5, .result-6 { grid-column: span 2; aspect-ratio: 1; }
  .results-quotes { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .results-gallery { grid-template-columns: 1fr 1fr; }
  .result-1, .result-2, .result-4, .result-5, .result-6 { grid-column: span 1; aspect-ratio: 1; }
  .result-3 { grid-column: span 2; aspect-ratio: 16/9; }
}

/* ================================================================
   IMAGE BREAKER
   ================================================================ */

.breaker {
  height: clamp(360px, 50vw, 540px);
  position: relative;
  overflow: hidden;
}
.breaker img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45) contrast(1.1);
}
.breaker-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 32px;
}
.breaker-text h2 {
  margin-bottom: 16px;
  color: var(--text);
}
.breaker-text p {
  max-width: 540px;
  color: var(--text);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

/* ================================================================
   HYBRID
   ================================================================ */

.hybrid {
  background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
}
.hybrid-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 72px;
  align-items: end;
}
.hybrid-intro h2 { line-height: 0.9; }
.hybrid-intro h2 .italic { font-size: 0.85em; color: var(--lime); }
.hybrid-intro-right p { font-size: 1.05rem; line-height: 1.65; color: var(--text); }

.hybrid-quote {
  margin: 0 auto 64px;
  max-width: 720px;
  padding: 40px 32px;
  background: var(--ink-2);
  border-left: 2px solid var(--lime);
  position: relative;
}
.hybrid-quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.35;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hybrid-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--ink-2);
}
.hybrid-panel {
  padding: 48px 36px;
  position: relative;
}
.hybrid-panel + .hybrid-panel { border-left: 1px solid var(--line); }
.hybrid-panel.featured { background: var(--ink-3); }
.hybrid-panel.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), transparent);
}
.hybrid-pop {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.hybrid-panel-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.hybrid-panel-icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: rgba(200,255,0,0.06);
  border: 1px solid rgba(200,255,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.hybrid-panel h3 {
  font-size: 1.5rem;
  line-height: 1;
  margin: 0;
}
.hybrid-panel-sub {
  font-size: 0.78rem;
  color: var(--text-3);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.hybrid-list { list-style: none; }
.hybrid-list li {
  padding: 12px 0;
  font-size: 0.92rem;
  color: var(--text);
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
.hybrid-list li:last-child { border: 0; }
.hybrid-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--lime);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.hybrid-cta {
  text-align: center;
  margin-top: 56px;
}

@media (max-width: 900px) {
  .hybrid-intro { grid-template-columns: 1fr; gap: 24px; }
  .hybrid-panels { grid-template-columns: 1fr; }
  .hybrid-panel + .hybrid-panel { border-left: 0; border-top: 1px solid var(--line); }
}

/* ================================================================
   ABOUT / SCOTT
   ================================================================ */

.about {
  background: var(--paper);
  color: var(--ink);
  position: relative;
  isolation: isolate;
}
.about::before { display: none !important; }
/* Block the body vignette over the cream section */
.about::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--paper);
  z-index: 0;
}
.about > * { position: relative; z-index: 1; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}
.about-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  filter: contrast(1.05) brightness(1.02) saturate(0.9);
}
.about-photo-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(10,10,10,0.95), transparent);
  display: flex;
  gap: 32px;
}
.about-photo-meta div { color: var(--text); }
.about-meta-num {
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--lime);
  line-height: 1;
}
.about-meta-label {
  font-size: 0.7rem;
  color: var(--text-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-content .eyebrow {
  color: var(--ink);
}
.about-content .eyebrow::before { background: var(--ink); }
.about-content h2 {
  color: var(--ink);
  margin: 24px 0 36px;
  line-height: 0.92;
}
.about-content h2 .italic { color: var(--ink); }
.about-content p {
  color: rgba(10,10,10,0.7);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.about-content p:last-child {
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: -0.015em;
  margin-top: 28px;
}
.about-signoff {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(10,10,10,0.15);
  font-size: 0.84rem;
  color: rgba(10,10,10,0.6);
  letter-spacing: 0.05em;
}
.about-signoff strong { color: var(--ink); display: block; font-weight: 600; margin-bottom: 2px; font-size: 0.92rem; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { max-width: 460px; margin: 0 auto; width: 100%; }
}

/* ================================================================
   SCHEDULE
   ================================================================ */

.schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}
.sched-tabs {
  display: inline-flex;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 4px;
  gap: 2px;
}
.sched-tab {
  padding: 10px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-3);
  border-radius: 100px;
  transition: all 0.25s;
}
.sched-tab.active { background: var(--lime); color: var(--ink); }

.sched-table {
  width: 100%;
  border-collapse: collapse;
}
.sched-table thead th {
  text-align: left;
  padding: 14px 24px;
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  border-bottom: 1px solid var(--line);
}
.sched-table tbody td {
  padding: 18px 24px;
  font-size: 0.92rem;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}
.sched-table tbody tr:hover { background: var(--ink-2); }
.sched-table tbody td:first-child {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--lime);
  letter-spacing: 0.02em;
}
.sched-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sched-badge.group { background: rgba(51,155,209,0.1); color: var(--blue); }
.sched-badge.open { background: rgba(255,255,255,0.04); color: var(--text-3); }
.sched-note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--text-3);
}

@media (max-width: 600px) {
  .sched-table thead { display: none; }
  .sched-table tbody td { display: block; padding: 6px 0; border: 0; }
  .sched-table tbody tr { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); }
  .sched-table tbody td:first-child { font-size: 1.4rem; padding-bottom: 8px; }
}

/* ================================================================
   LOCATION
   ================================================================ */

.location {
  border-top: 1px solid var(--line);
}
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.loc-content h2 .serif-italic { color: var(--lime); }
.loc-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}
.loc-block-label {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}
.loc-block address, .loc-block strong {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--text);
  font-weight: 400;
}
.loc-block strong { font-weight: 600; }
.loc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--lime);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: gap 0.25s ease;
}
.loc-link:hover { gap: 14px; }
.loc-phone {
  display: block;
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.loc-phone:hover { color: var(--lime); }
.loc-email {
  display: block;
  font-size: 0.86rem;
  color: var(--text-2);
  text-decoration: none;
  word-break: break-word;
}
.loc-email:hover { color: var(--lime); }
.loc-hours, .loc-drive {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}
.loc-hours td, .loc-drive td {
  padding: 6px 0;
  border-bottom: 1px solid var(--line-soft);
}
.loc-hours td:first-child, .loc-drive td:first-child {
  color: var(--text-3);
  width: 60%;
}
.loc-hours td:last-child, .loc-drive td:last-child {
  color: var(--text);
  text-align: right;
  font-weight: 500;
}
.loc-map {
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: sticky;
  top: 100px;
}
.loc-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) contrast(0.85) saturate(0.7);
}

@media (max-width: 900px) {
  .loc-grid { grid-template-columns: 1fr; gap: 48px; }
  .loc-blocks { grid-template-columns: 1fr 1fr; gap: 24px; }
  .loc-map { aspect-ratio: 1; position: static; }
}
@media (max-width: 540px) {
  .loc-blocks { grid-template-columns: 1fr; }
}

/* ================================================================
   STAY (why people stay)
   ================================================================ */

.stay {
  text-align: center;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stay-num {
  font-family: var(--display);
  font-size: clamp(8rem, 22vw, 18rem);
  line-height: 0.85;
  color: var(--lime);
  letter-spacing: -0.04em;
  margin-bottom: -32px;
  position: relative;
  z-index: 1;
}
.stay h2 {
  position: relative;
  z-index: 2;
  margin-bottom: 36px;
  line-height: 0.9;
}
.stay h2 .italic {
  font-size: 0.85em;
  color: var(--text);
}
.stay-prose {
  max-width: 560px;
  margin: 0 auto;
}
.stay-prose p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
}
.stay-prose p:last-child {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--lime);
  margin-top: 24px;
  letter-spacing: -0.015em;
}

/* ================================================================
   FAQ
   ================================================================ */

.faq-header {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--text);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--lime); }
.faq-tog {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-3);
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.open .faq-tog {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-a-inner {
  padding-bottom: 28px;
  max-width: 720px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-2);
}
.faq-a-inner a { color: var(--blue); text-decoration: none; }
.faq-a-inner a:hover { color: var(--lime); }

@media (max-width: 900px) {
  .faq-header { grid-template-columns: 1fr; gap: 24px; }
}

/* ================================================================
   FINAL CTA
   ================================================================ */

.final {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
}
.final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('imgi_67_DSC07524.jpg') center/cover;
  filter: brightness(0.25) contrast(1.1) saturate(0.8);
  z-index: 0;
}
.final::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--ink) 100%);
  z-index: 1;
}
.final-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(96px, 12vw, 160px) 0;
}
.final h2 {
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.9;
  margin-bottom: 36px;
}
.final h2 .italic {
  color: var(--lime);
  font-size: 0.9em;
}
.final p {
  max-width: 540px;
  margin: 0 auto 48px;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.65;
  color: var(--text);
}
.final-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-meta {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.final-meta span { display: flex; align-items: center; gap: 8px; }
.final-meta span::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--lime);
  border-radius: 50%;
}

/* ================================================================
   GOOGLE REVIEWS
   ================================================================ */

.reviews-header {
  text-align: center;
  margin-bottom: 56px;
}
.reviews-header h2 { line-height: 0.9; margin-top: 16px; }

/* ================================================================
   SEO BLOCK
   ================================================================ */

.seo-block {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
}
.seo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}
.seo-h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 24px;
  line-height: 1;
}
.seo-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 16px;
}
.seo-text a {
  color: var(--lime);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,255,0,0.25);
  transition: border 0.2s;
}
.seo-text a:hover { border-bottom-color: var(--lime); }
.seo-card {
  padding: 28px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.seo-card-label {
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
  font-weight: 600;
}
.seo-list {
  list-style: none;
}
.seo-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.86rem;
}
.seo-list li:last-child { border-bottom: 0; }
.seo-list li span { color: var(--text-3); }
.seo-list li strong { color: var(--text); font-weight: 500; }

.suburbs {
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.suburbs-label {
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 18px;
  font-weight: 600;
}
.suburb-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.suburb-pills li a {
  display: inline-block;
  padding: 8px 16px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--text-2);
  text-decoration: none;
  transition: all 0.25s;
}
.suburb-pills li a:hover {
  border-color: var(--lime);
  color: var(--lime);
}

@media (max-width: 800px) {
  .seo-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ================================================================
   FOOTER
   ================================================================ */

footer {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  position: relative;
  z-index: 2;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand h4 {
  font-family: var(--display);
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.footer-brand h4 span { color: var(--lime); }
.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.65;
  max-width: 320px;
  color: var(--text-2);
}
.footer-col h5 {
  font-family: var(--body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-3);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 6px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
  color: var(--text-3);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-3); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--text); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ================================================================
   STICKY CTA
   ================================================================ */

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  background: var(--lime);
  color: var(--ink);
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 10px 40px -10px rgba(200,255,0,0.4), 0 0 0 1px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sticky-cta::after { content: '→'; transition: transform 0.25s; }
.sticky-cta:hover::after { transform: translateX(3px); }
.sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta:hover { background: var(--text); }

@media (max-width: 600px) {
  .sticky-cta { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 0.78rem; }
}

/* ================================================================
   REVEAL ANIMATIONS
   ================================================================ */

/* Reveal classes kept for backward compat but no longer hide content */
.reveal { }
.reveal-delay-1, .reveal-delay-2, .reveal-delay-3 { }

/* SCROLL MARGIN for anchored sections */
section[id] { scroll-margin-top: 80px; }

/* SELECTION */
::selection { background: var(--lime); color: var(--ink); }
/* ================================================================
   WHO FOR section (used on subpages)
   ================================================================ */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 980px; margin: 0 auto; }
.who-card { padding: 40px 36px; border-radius: 8px; border: 1px solid var(--line); background: var(--ink-2); }
.who-card-label { font-family: var(--body); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; margin-bottom: 24px; }
.who-card-label.lime { color: var(--lime); }
.who-card-label.red { color: #ff6666; }
.who-list { list-style: none; }
.who-list li { padding: 12px 0 12px 28px; font-size: 0.95rem; line-height: 1.5; color: var(--text); border-bottom: 1px solid var(--line-soft); position: relative; }
.who-list li:last-child { border: 0; }
.who-list li::before { content: '✓'; position: absolute; left: 0; top: 12px; color: var(--lime); font-weight: 700; }
.who-list-no li::before { content: '×'; color: #ff6666; }
@media (max-width: 800px) { .who-grid { grid-template-columns: 1fr; } }

/* Form pages */
.form-section { padding: 80px 0; }
.form-card { background: var(--ink-2); border: 1px solid var(--line); border-radius: 8px; padding: 48px 40px; max-width: 560px; margin: 0 auto; }
.form-card .form-tag { display: inline-block; font-family: var(--body); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lime); margin-bottom: 16px; font-weight: 600; }
.form-card h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 12px; line-height: 1; }
.form-card > p { color: var(--text-2); margin-bottom: 28px; font-size: 0.95rem; line-height: 1.6; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); font-weight: 600; margin-bottom: 8px; }
.form-row input, .form-row select, .form-row textarea { width: 100%; padding: 14px 16px; background: var(--ink-3); border: 1px solid var(--line); border-radius: 6px; color: var(--text); font-family: var(--body); font-size: 0.95rem; transition: border 0.2s; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: 0; border-color: var(--lime); }
.form-row textarea { min-height: 100px; resize: vertical; }
.form-submit { width: 100%; background: var(--lime); color: var(--ink); padding: 16px; border-radius: 100px; font-family: var(--body); font-weight: 700; font-size: 0.92rem; letter-spacing: 0.02em; cursor: pointer; transition: all 0.25s ease; border: 0; }
.form-submit:hover { background: var(--text); transform: translateY(-1px); }
.form-note { text-align: center; margin-top: 12px; font-size: 0.78rem; color: var(--text-3); }
.form-success { display: none; text-align: center; padding: 32px; }
.form-success.show { display: block; }
.form-success h3 { font-size: 1.8rem; margin-bottom: 8px; }
.form-success p { color: var(--text-2); }

/* Two-column form layout for go page */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1100px; margin: 0 auto; }
@media (max-width: 800px) { .form-grid { grid-template-columns: 1fr; } }

/* Steps section */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.step { padding: 32px 28px; border: 1px solid var(--line); border-radius: 8px; background: var(--ink-2); }
.step-num { font-family: var(--display); font-size: 2.4rem; color: var(--lime); line-height: 1; margin-bottom: 16px; }
.step h3 { font-size: 1.3rem; margin-bottom: 10px; line-height: 1.1; }
.step p { font-size: 0.92rem; color: var(--text-2); line-height: 1.55; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

/* Legal pages */
.legal { padding: 140px 0 100px; max-width: 760px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }
.legal h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 16px; line-height: 1; }
.legal h1 + p { color: var(--text-3); font-size: 0.86rem; margin-bottom: 48px; }
.legal h2 { font-size: 1.6rem; margin: 40px 0 16px; line-height: 1.1; }
.legal p, .legal li { font-size: 0.95rem; line-height: 1.7; color: var(--text-2); margin-bottom: 14px; }
.legal ul, .legal ol { padding-left: 24px; margin-bottom: 14px; }
.legal a { color: var(--lime); text-decoration: none; border-bottom: 1px solid rgba(200,255,0,0.25); }

/* ================================================================
   BLOG INDEX
   ================================================================ */
.blog-hero { padding: 140px 0 60px; }
.blog-hero h1 { font-size: clamp(3rem, 7vw, 6rem); }
.blog-hero .lead { max-width: 600px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink-2);
  text-decoration: none;
  color: var(--text);
  transition: border 0.25s, transform 0.25s;
  position: relative;
}
.blog-card:hover {
  border-color: var(--lime);
  transform: translateY(-2px);
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 600;
  margin-bottom: 24px;
}
.blog-card-cat {
  color: var(--lime);
}
.blog-card h3 {
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1.05;
  letter-spacing: 0.005em;
  margin-bottom: 16px;
  color: var(--text);
  flex: 0 0 auto;
}
.blog-card-excerpt {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-2);
  flex: 1;
  margin-bottom: 24px;
}
.blog-card-cta {
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 0.02em;
  margin-top: auto;
}

/* ================================================================
   BLOG POST (article)
   ================================================================ */
.article-wrap {
  padding: 140px 0 80px;
}
.article-header {
  max-width: 760px;
  margin: 0 auto 64px;
  padding: 0 32px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 600;
  margin-bottom: 32px;
}
.article-meta .cat { color: var(--lime); }
.article-meta .dot { color: var(--text-3); opacity: 0.5; }
.article-header h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.005em;
  margin-bottom: 24px;
}
.article-header h1 .accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--lime);
  letter-spacing: -0.025em;
}
.article-lede {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--text);
  font-weight: 400;
  font-style: italic;
}
.article-author {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
}
.article-author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink-3) center/cover;
  border: 1px solid var(--line);
}
.article-author-name {
  font-weight: 600;
  font-size: 0.92rem;
}
.article-author-role {
  font-size: 0.78rem;
  color: var(--text-3);
}
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}
.article-body p, .article-body li {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 24px;
}
.article-body h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.05;
  margin: 56px 0 20px;
  letter-spacing: 0.005em;
}
.article-body h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  margin: 40px 0 16px;
  letter-spacing: 0.01em;
}
.article-body blockquote {
  margin: 40px 0;
  padding: 0 0 0 28px;
  border-left: 3px solid var(--lime);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--text);
}
.article-body a {
  color: var(--lime);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,255,0,0.3);
  transition: border 0.2s;
}
.article-body a:hover { border-bottom-color: var(--lime); }
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
.article-body strong {
  font-weight: 600;
  color: var(--text);
}
.article-cta {
  max-width: 720px;
  margin: 64px auto 0;
  padding: 40px 32px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}
.article-cta h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  margin-bottom: 12px;
  line-height: 1.1;
}
.article-cta p {
  font-size: 0.95rem;
  color: var(--text-2);
  margin-bottom: 24px;
}
.related-posts {
  max-width: 1100px;
  margin: 100px auto 0;
  padding: 60px 32px 0;
  border-top: 1px solid var(--line);
}
.related-posts h2 {
  font-family: var(--display);
  font-size: 1.8rem;
  margin-bottom: 32px;
  text-align: center;
}

@media (max-width: 700px) {
  .blog-grid { grid-template-columns: 1fr; }
  .article-body p, .article-body li { font-size: 1rem; }
  .article-lede { font-size: 1.1rem; }
}
