/* ════════════════════════════════════════════════
   BRAVART STUDIO — style.css
   Author: BravArt Studio / Claude Build
   Version: 1.0
════════════════════════════════════════════════ */

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:    #0e0c0a;
  --ink2:   #1b1511;
  --ink3:   #241c14;
  --cream:  #f8f3eb;
  --cream2: #ede5d4;
  --cream3: #d8ccb8;
  --sienna: #a0461a;
  --s2:     #c4642a;
  --s3:     #e07840;
  --gold:   #b8920f;
  --muted:  rgba(248,243,235,0.42);
  --muted2: #7a6a58;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;
  --transition:   0.25s cubic-bezier(0.22,1,0.36,1);
}

html {
  scroll-behavior: smooth;
  font-size: 112.5%; /* ~18px base - lifts the whole rem-based type scale for premium legibility */
}
@media (max-width: 1200px) { html { font-size: 110%; } }   /* ~17.6px */
@media (max-width: 900px)  { html { font-size: 106.25%; } } /* ~17px  */
@media (max-width: 560px)  { html { font-size: 100%; } }    /* ~16px - avoids oversizing on small phones */

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { color: inherit; text-decoration: none; }
blockquote { font-style: normal; }

/* ── UTILITY ── */
.se {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--s2);
  margin-bottom: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.sienna-se { color: var(--sienna); }

.btn-main {
  display: inline-block;
  background: var(--s2);
  color: white;
  padding: 0.85rem 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--transition), transform var(--transition);
}
.btn-main:hover { background: var(--sienna); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  color: rgba(248,243,235,0.55);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: none;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.85rem 2rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color var(--transition), color var(--transition);
}
.btn-ghost:hover { border-color: var(--s2); color: var(--s2); }

/* ── CURSOR TRAIL ── */
#cursor-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.8rem;
  background: rgba(14,12,10,0.98);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  width: 100%;
  z-index: 200;
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  border-bottom-color: rgba(196,100,42,0.25);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.logo span { color: var(--s2); font-style: italic; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248,243,235,0.5);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--s2); }

.nav-book {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--s2);
  color: white;
  padding: 0.55rem 1.3rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  transition: background var(--transition);
}
.nav-book:hover { background: var(--sienna); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cream);
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 280px;
  height: 100vh;
  background: var(--ink2);
  z-index: 300;
  padding: 5rem 2rem 2rem;
  border-left: 1px solid rgba(255,255,255,0.07);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.nav-drawer a {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,243,235,0.6);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.nav-drawer a:hover { color: var(--s2); }
.nav-drawer .drawer-cta {
  margin-top: 1.5rem;
  background: var(--s2);
  color: white;
  text-align: center;
  padding: 0.85rem;
  border-bottom: none;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 55% 45%;
  height: calc(100vh - 57px);
  min-height: 580px;
  position: relative;
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-l {
  padding: 0 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--s2);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--cream);
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
}
.hero-title .w1 { display: block; opacity: 0; animation: slideRight 0.9s 0.5s cubic-bezier(0.22,1,0.36,1) forwards; }
.hero-title .w2 { display: block; opacity: 0; animation: slideRight 0.9s 0.7s cubic-bezier(0.22,1,0.36,1) forwards; font-style: italic; color: var(--s2); }
.hero-title .w3 { display: block; opacity: 0; animation: slideRight 0.9s 0.9s cubic-bezier(0.22,1,0.36,1) forwards; font-weight: 700; }

.hero-sub {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.9;
  max-width: 420px;
  margin-bottom: 2.8rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.3s forwards;
}
.hero-r {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  background: var(--ink2);
}
.hero-mosaic {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  padding: 2px;
}
.hm-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform var(--transition);
}
.hm-cell:hover { transform: scale(1.025); }
.hm-cell img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: opacity 0.35s;
}
.hm-cell:hover img { opacity: 0.85; }
.hm-cell-1 { background: #161109; }
.hm-cell-2 { background: #0f0d0b; }
.hm-cell-3 { background: #12100d; }
.hm-cell-4 { background: var(--sienna); }
.hm-ico {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  font-size: 2.4rem;
  opacity: 0.12;
  transition: opacity 0.3s;
}
.hm-cell:hover .hm-ico { opacity: 0.22; }
.hm-tag {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248,243,235,0.75);
  line-height: 1.5;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.hm-cell-4 .hm-tag { color: rgba(255,255,255,0.9); }
.hm-badge {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,243,235,0.6);
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0,0,0,0.9);
}
.hm-cell-4 .hm-badge { color: rgba(255,255,255,0.8); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 2px solid rgba(255,255,255,0.06);
}
.hstat {
  padding: 1.1rem 1.3rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.hstat:last-child { border-right: none; }
.hstat-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--s2);
  line-height: 1;
}
.hstat-lbl {
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  color: rgba(248,243,235,0.3);
  margin-top: 0.25rem;
  font-weight: 300;
}

/* ── TICKER ── */
.ticker {
  background: var(--s2);
  padding: 0.65rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: tick 32s linear infinite;
}
.tick-i {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  padding: 0 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
}
.tick-dot {
  width: 3px; height: 3px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  display: inline-block;
}

/* ── PHILOSOPHY ── */
.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.phil-l {
  padding: 5.5rem 3.5rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.phil-r {
  padding: 5.5rem 3rem;
  background: var(--ink2);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.phil-h {
  font-family: var(--font-display);
  font-size: 2.9rem;
  font-weight: 400;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 1.8rem;
}
.phil-h em { font-style: italic; color: var(--s2); }
.phil-b {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.95;
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.phil-sig {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--s2);
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  flex: 1;
  background: rgba(255,255,255,0.05);
  margin-top: 1rem;
}
.pillar {
  background: var(--ink2);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background var(--transition);
}
.pillar:hover { background: #21190f; }
.p-tag {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--s2);
  margin-bottom: 0.8rem;
}
.p-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.p-desc {
  font-size: 0.76rem;
  color: rgba(248,243,235,0.35);
  line-height: 1.65;
  font-weight: 300;
}
.p-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(255,255,255,0.04);
  font-weight: 700;
  text-align: right;
  margin-top: 0.8rem;
  line-height: 1;
}

/* ── SERVICES ── */
.services {
  background: var(--cream2);
  padding: 6rem 3.5rem;
}
.sh {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.sh-heading {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.05;
}
.sh-heading em { font-style: italic; color: var(--sienna); }
.sl {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sienna);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
  align-self: flex-end;
}
.sl:hover { border-bottom-color: var(--sienna); }
.sienna-sl { color: var(--s2); }
.sienna-sl:hover { border-bottom-color: var(--s2); }

.svc-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--cream3);
}
.svc-row {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.7rem 2.2rem;
  background: var(--cream2);
  border-bottom: 1px solid var(--cream3);
  cursor: pointer;
  transition: background var(--transition), padding-left var(--transition), color var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.svc-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--ink);
  transition: width 0.35s cubic-bezier(0.22,1,0.36,1);
}
.svc-row:hover::before { width: 4px; }
.svc-row:hover {
  background: var(--ink);
  padding-left: 2.8rem;
}
.svc-row:hover .svc-name { color: var(--cream); }
.svc-row:hover .svc-desc { color: rgba(248,243,235,0.45); }
.svc-row:hover .stag { background: rgba(255,255,255,0.08); color: rgba(248,243,235,0.55); }
.svc-row:hover .svc-num { color: rgba(255,255,255,0.1); }
.svc-row:hover .svc-arr { color: var(--s2); }
.svc-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--cream3);
  transition: color var(--transition);
}
.svc-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
  font-weight: 400;
  transition: color var(--transition);
}
.svc-feat .svc-name { color: var(--sienna); }
.svc-desc {
  font-size: 0.77rem;
  color: #7a6a58;
  line-height: 1.6;
  font-weight: 300;
  transition: color var(--transition);
}
.stags { margin-top: 0.5rem; display: flex; gap: 0.35rem; flex-wrap: wrap; }
.stag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.07);
  color: #7a6a58;
  padding: 0.18rem 0.55rem;
  transition: background var(--transition), color var(--transition);
}
.svc-arr {
  font-size: 1.1rem;
  color: var(--cream3);
  transition: color var(--transition);
}

/* ── SEN ── */
.sen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.sen-l {
  padding: 5.5rem 3.5rem;
  background: var(--ink2);
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sen-r {
  padding: 5.5rem 3rem;
  background: var(--sienna);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sen-h {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.3rem;
}
.sen-h em { font-style: italic; color: var(--s2); }
.sen-b {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.chips { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 2rem; }
.chip {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(196,100,42,0.3);
  color: var(--s2);
  padding: 0.3rem 0.85rem;
  transition: all var(--transition);
  cursor: default;
}
.chip:hover { background: var(--s2); color: white; border-color: var(--s2); }
.sen-r-eyebrow {
  font-size: 0.69rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.3rem;
}
.sen-rh {
  font-family: var(--font-display);
  font-size: 2rem;
  color: white;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.sen-rh em { font-style: italic; }
.sen-rb {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2rem;
}
.pillars2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.p2 { border-top: 1px solid rgba(255,255,255,0.28); padding-top: 0.9rem; }
.p2-lbl {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.3rem;
}
.p2-title { font-size: 0.9rem; color: white; font-weight: 500; }

/* ── GALLERY ── */
.gallery { background: var(--ink); padding: 6rem 3.5rem; }
.gh {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.gh-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.05;
}
.gh-title em { font-style: italic; color: var(--s2); }
.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 220px 170px;
  gap: 3px;
}
.gp {
  background: var(--ink2);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.gp:hover { transform: scale(1.025); }
.gp img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity 0.3s;
}
.gp:hover img { opacity: 1; }
.gp-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  background: linear-gradient(to top, rgba(14,12,10,0.7) 0%, transparent 60%);
}
.gp-lbl {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248,243,235,0.7);
  line-height: 1.4;
}
.ga { grid-column: span 5; background: #1a1208; }
.gb { grid-column: span 4; background: #110f0c; }
.gc { grid-column: span 3; background: var(--sienna); }
.gd { grid-column: span 4; background: #0f0d0a; }
.ge { grid-column: span 5; background: #161210; }
.gf { grid-column: span 3; background: #1e160f; }
.g-cta { margin-top: 2rem; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.g-note {
  font-size: 0.72rem;
  color: rgba(248,243,235,0.22);
  font-weight: 300;
}
.g-note code {
  font-family: monospace;
  color: var(--s2);
  font-size: 0.7rem;
}

/* ── EXAM LAB ── */
.exam { background: var(--cream2); padding: 6rem 3.5rem; }
.exam-in {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}
.exam-h {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 1.3rem;
}
.exam-h em { font-style: italic; color: var(--sienna); }
.exam-b {
  font-size: 0.9rem;
  color: #7a6a58;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 2rem;
}
.ao-list { border: 1px solid var(--cream3); }
.ao-item {
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid var(--cream3);
  transition: background var(--transition);
}
.ao-item:hover { background: white; }
.ao-item:last-child { border-bottom: none; }
.ao-n {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--sienna);
  opacity: 0.5;
  flex-shrink: 0;
  line-height: 1;
}
.ao-t {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 0.25rem;
}
.ao-d {
  font-size: 0.79rem;
  color: #7a6a58;
  line-height: 1.6;
  font-weight: 300;
}
.exam-r {
  background: var(--ink);
  padding: 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.exam-rt {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--cream);
  font-weight: 400;
  line-height: 1.18;
}
.exam-rt em { font-style: italic; color: var(--s2); }
.exam-rb {
  font-size: 0.82rem;
  color: rgba(248,243,235,0.42);
  line-height: 1.8;
  font-weight: 300;
}
.especs { display: flex; flex-direction: column; gap: 0.7rem; }
.espec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.04);
  border-left: 2px solid var(--s2);
}
.ek {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--s2);
}
.ev { font-size: 0.8rem; color: var(--cream); }

/* ── TESTIMONIALS ── */
.testi { background: var(--ink2); padding: 6rem 3.5rem; }
.t-heading {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 3rem;
}
.t-heading em { font-style: italic; color: var(--s2); }
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
}
.tc {
  background: var(--ink2);
  padding: 2.3rem 1.9rem;
  transition: background var(--transition);
}
.tc:hover { background: #1e1812; }
.tc.alt { background: var(--sienna); }
.tc.alt:hover { background: #a84e20; }
.tq {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.ts-stars {
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
}
.ta { font-size: 0.7rem; color: rgba(248,243,235,0.38); }
.ta strong {
  display: block;
  color: var(--s2);
  margin-bottom: 0.12rem;
  font-style: normal;
}
.tc.alt .ta { color: rgba(255,255,255,0.65); }
.tc.alt .ta strong { color: rgba(255,255,255,0.95); }

/* ── CONTACT ── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cl {
  padding: 5.5rem 3.5rem;
  background: var(--ink);
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cr { padding: 5.5rem 3rem; background: var(--ink2); }
.ch {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 1.3rem;
}
.ch em { font-style: italic; color: var(--s2); }
.cb {
  font-size: 0.9rem;
  color: rgba(248,243,235,0.4);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 2.2rem;
}
.cinfo { display: flex; flex-direction: column; }
.ci {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.ci-l {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--s2);
}
.ci-v {
  font-size: 0.87rem;
  color: var(--cream);
  font-weight: 300;
}
.ci-v a { color: var(--cream); transition: color var(--transition); }
.ci-v a:hover { color: var(--s2); }
.cform { display: flex; flex-direction: column; gap: 1.1rem; }
.fr { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 0.35rem; }
.fl {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248,243,235,0.38);
}
.fi, .fs, .ft {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--cream);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.fi:focus, .fs:focus, .ft:focus { border-color: var(--s2); }
.fi::placeholder, .ft::placeholder { color: rgba(248,243,235,0.18); }
.ft { min-height: 100px; resize: vertical; }
.fs option { background: var(--ink2); }
.fsub {
  background: var(--s2);
  color: white;
  border: none;
  padding: 0.95rem 2.2rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  align-self: flex-start;
  transition: background var(--transition), transform var(--transition);
}
.fsub:hover { background: var(--sienna); transform: translateY(-2px); }

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.2rem 2.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.fl2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream);
}
.fl2 span { color: var(--s2); font-style: italic; }
.fc {
  font-size: 0.65rem;
  color: rgba(248,243,235,0.2);
  letter-spacing: 0.06em;
}
.flinks { display: flex; gap: 1.6rem; }
.flinks a {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248,243,235,0.22);
  transition: color var(--transition);
}
.flinks a:hover { color: var(--s2); }

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal      { opacity: 0; transform: translateY(28px); transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1); }
.reveal-l    { opacity: 0; transform: translateX(-28px); transition: opacity 0.75s 0.1s cubic-bezier(0.22,1,0.36,1), transform 0.75s 0.1s cubic-bezier(0.22,1,0.36,1); }
.reveal-r    { opacity: 0; transform: translateX(28px); transition: opacity 0.75s 0.1s cubic-bezier(0.22,1,0.36,1), transform 0.75s 0.1s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible, .reveal-l.visible, .reveal-r.visible { opacity: 1; transform: translate(0); }

/* ── KEYFRAMES ── */
@keyframes fadeUp    { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
@keyframes slideRight{ from { opacity:0; transform:translateX(-28px); } to { opacity:1; transform:translateX(0); } }
@keyframes tick      { to { transform: translateX(-50%); } }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links, .nav-book { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: block; }

  .hero { grid-template-columns: 1fr; height: auto; min-height: 100vh; }
  .hero-l { padding: 4rem 2rem 2rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .hero-r { min-height: 320px; }
  .hero-title { font-size: clamp(2.8rem, 8vw, 4rem); }

  .philosophy, .sen, .contact { grid-template-columns: 1fr; }
  .phil-l { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 4rem 2rem; }
  .phil-r { padding: 4rem 2rem; }
  .sen-l { padding: 4rem 2rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .sen-r { padding: 4rem 2rem; }
  .cl { padding: 4rem 2rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .cr { padding: 4rem 2rem; }

  .exam-in { grid-template-columns: 1fr; gap: 3rem; }
  .tgrid { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: repeat(6, 1fr); grid-template-rows: 180px 180px 140px; }
  .ga { grid-column: span 6; }
  .gb { grid-column: span 4; }
  .gc { grid-column: span 2; }
  .gd { grid-column: span 3; }
  .ge { grid-column: span 3; }
  .gf { display: none; }

  .services, .gallery, .exam, .testi { padding: 4rem 2rem; }
  .fr { grid-template-columns: 1fr; }
  .footer { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .pkg-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .hero-title { font-size: 2.6rem; }
  .phil-h, .sh-heading, .gh-title, .exam-h, .t-heading, .ch, .sen-h { font-size: 2rem; }
  .pillars { grid-template-columns: 1fr; }
  .pillars2 { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 160px); }
  .ga, .gb, .gc, .gd, .ge { grid-column: span 1; }
  .hero-mosaic { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
}

/* ── PRICING ── */
.pricing {
  background: var(--ink);
  padding: 6rem 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.pricing-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.pricing-heading {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.05;
}
.pricing-heading em { font-style: italic; color: var(--s2); }
.pricing-note {
  font-size: 0.75rem;
  color: rgba(248,243,235,0.3);
  font-weight: 300;
  max-width: 280px;
  text-align: right;
  line-height: 1.6;
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
}
.pkg-card {
  background: var(--ink2);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background var(--transition);
}
.pkg-card:hover { background: #211810; }
.pkg-card.highlight {
  background: var(--ink3);
  border-top: 2px solid var(--s2);
}
.pkg-card.highlight:hover { background: #2a2016; }
.pkg-popular {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--s2);
  color: white;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 1rem;
  white-space: nowrap;
}
.pkg-level {
  font-size: 0.69rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--s2);
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.pkg-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 0.8rem;
  line-height: 1.15;
}
.pkg-price {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--s2);
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  line-height: 1;
}
.pkg-price-period {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(248,243,235,0.35);
  display: block;
  margin-top: 0.3rem;
  letter-spacing: 0;
}
.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  margin-bottom: 1.8rem;
}
.pkg-features li {
  font-size: 0.78rem;
  color: rgba(248,243,235,0.5);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.45;
  font-weight: 300;
}
.pkg-features li::before {
  content: '→';
  color: var(--s2);
  flex-shrink: 0;
  font-size: 0.72rem;
  margin-top: 0.05rem;
}
.pkg-btn {
  display: block;
  text-align: center;
  padding: 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(248,243,235,0.6);
  background: transparent;
  text-decoration: none;
  margin-top: auto;
}
.pkg-btn:hover { background: var(--s2); color: white; border-color: var(--s2); }
.pkg-btn.primary {
  background: var(--s2);
  color: white;
  border-color: var(--s2);
}
.pkg-btn.primary:hover { background: var(--sienna); border-color: var(--sienna); }
.pricing-disclaimer {
  margin-top: 2rem;
  font-size: 0.7rem;
  color: rgba(248,243,235,0.2);
  font-weight: 300;
  text-align: center;
}

@media (max-width: 900px) {
  .pkg-grid { grid-template-columns: 1fr 1fr; }
  .pricing { padding: 4rem 2rem; }
}
@media (max-width: 560px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .pricing-heading { font-size: 2rem; }
  .pricing-note { text-align: left; max-width: 100%; }
}

/* ── RESULTS WALL ── */
.results {
  background: var(--cream);
  padding: 6rem 3.5rem;
}
.results-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.results-heading {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.05;
}
.results-heading em { font-style: italic; color: var(--sienna); }
.results-subhead {
  font-size: 0.9rem;
  color: var(--muted2);
  line-height: 1.8;
  max-width: 320px;
  font-style: italic;
  font-family: var(--font-display);
  text-align: right;
}
.results-subhead span {
  display: block;
  font-size: 0.72rem;
  color: var(--sienna);
  font-style: normal;
  margin-top: 0.4rem;
  letter-spacing: 0.06em;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--cream3);
  margin-bottom: 2px;
}
.result-card {
  background: white;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background var(--transition);
}
.result-card:hover { background: #fdf9f4; }
.result-card-featured {
  background: var(--ink);
}
.result-card-featured:hover { background: var(--ink2); }
.result-card-featured .result-type { color: var(--s2); }
.result-card-featured .result-sessions { color: rgba(248,243,235,0.35); }
.result-card-featured .result-story { color: rgba(248,243,235,0.6); }
.result-card-featured .result-outcome-label { color: var(--s2); }
.result-card-featured .result-outcome-val { color: var(--cream); }
.result-card-featured .result-tags span {
  background: rgba(255,255,255,0.08);
  color: rgba(248,243,235,0.6);
}
.result-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.result-type {
  font-size: 0.69rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sienna);
  font-weight: 500;
}
.result-sessions {
  font-size: 0.69rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream3);
}
.result-grade {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.grade-before {
  font-size: 0.65rem;
  color: rgba(160,70,26,0.5);
  letter-spacing: 0.06em;
}
.grade-arrow {
  color: var(--sienna);
  font-size: 0.75rem;
}
.grade-after {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--sienna);
  letter-spacing: 0.04em;
}
.result-story {
  font-size: 0.82rem;
  color: #5a4a3a;
  line-height: 1.8;
  font-weight: 300;
  flex: 1;
}
.result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.result-tags span {
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.05);
  color: #7a6a58;
  padding: 0.2rem 0.55rem;
}
.result-bottom {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 1rem;
}
.result-card-featured .result-bottom { border-top-color: rgba(255,255,255,0.08); }
.result-outcome-label {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 0.2rem;
}
.result-outcome-val {
  font-size: 0.8rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
}
.results-footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--ink);
}
.results-footer-stat {
  background: var(--ink2);
  padding: 1.8rem;
  transition: background var(--transition);
}
.results-footer-stat:hover { background: var(--ink3); }
.rfs-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--s2);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.rfs-label {
  font-size: 0.72rem;
  color: rgba(248,243,235,0.35);
  line-height: 1.6;
  font-weight: 300;
}

/* ── TESTI INVITE ── */
.testi-invite {
  font-size: 0.82rem;
  color: rgba(248,243,235,0.35);
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.testi-invite a {
  color: var(--s2);
  border-bottom: 1px solid rgba(196,100,42,0.3);
  transition: border-color var(--transition);
}
.testi-invite a:hover { border-bottom-color: var(--s2); }

@media (max-width: 900px) {
  .results-grid { grid-template-columns: 1fr 1fr; }
  .results-footer { grid-template-columns: 1fr 1fr; }
  .results { padding: 4rem 2rem; }
  .results-subhead { text-align: left; }
}
@media (max-width: 560px) {
  .results-grid { grid-template-columns: 1fr; }
  .results-footer { grid-template-columns: 1fr 1fr; }
  .results-heading { font-size: 2rem; }
}

/* ── 100% RECORD BANNER ── */
.record-banner {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.record-inner {
  display: grid;
  grid-template-columns: auto 1px 1fr 1px auto;
  align-items: center;
  gap: 0;
  min-height: 180px;
}
.record-stat {
  padding: 3rem 4rem;
  text-align: center;
}
.record-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--s2);
  line-height: 1;
  letter-spacing: -0.03em;
}
.record-num span {
  font-size: 3rem;
  color: var(--sienna);
}
.record-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248,243,235,0.4);
  margin-top: 0.6rem;
  line-height: 1.5;
  max-width: 160px;
}
.record-divider {
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.07);
  align-self: stretch;
}
.record-statement {
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.record-statement p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: rgba(248,243,235,0.6);
  font-weight: 400;
  line-height: 1.4;
}
.record-statement p em {
  font-style: italic;
  color: var(--s2);
}
.record-statement p:last-child {
  font-size: 1rem;
  color: rgba(248,243,235,0.35);
}
.record-creds {
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.record-cred {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.record-cred:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.record-cred-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--s2);
  font-weight: 400;
  min-width: 52px;
  line-height: 1;
}
.record-cred-label {
  font-size: 0.68rem;
  color: rgba(248,243,235,0.35);
  line-height: 1.5;
  font-weight: 300;
}

/* ── GUARANTEE CARD ── */
.result-card-guarantee {
  background: var(--sienna);
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: span 2;
}
.result-card-guarantee:hover { background: #a84e20; }
.result-guarantee-inner {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  width: 100%;
}
.result-guarantee-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: white;
  font-weight: 700;
  line-height: 1;
  opacity: 0.9;
}
.result-guarantee-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  line-height: 1.6;
}
.result-card-guarantee .pkg-btn.primary {
  background: white;
  color: var(--sienna);
  border-color: white;
  margin-top: 0.5rem;
}
.result-card-guarantee .pkg-btn.primary:hover {
  background: var(--cream);
  border-color: var(--cream);
}

@media (max-width: 900px) {
  .record-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .record-divider { width: 100%; height: 1px; }
  .record-stat { padding: 2.5rem 2rem; }
  .record-statement { padding: 2.5rem 2rem; }
  .record-creds { padding: 2.5rem 2rem; }
  .record-statement p { font-size: 1.1rem; }
  .result-card-guarantee { grid-column: span 1; }
}
@media (max-width: 560px) {
  .record-num { font-size: 4rem; }
  .record-statement p { font-size: 1rem; }
}

/* ── FONT SIZE UPGRADES ── */
/* Larger body text, labels and descriptions for better readability */
.phil-b       { font-size: 1rem; }
.hero-sub     { font-size: 1rem; }
.svc-desc     { font-size: 0.9rem; }
.svc-name     { font-size: 1.25rem; }
.sen-b        { font-size: 0.92rem; }
.exam-b       { font-size: 0.92rem; }
.exam-rb      { font-size: 0.9rem; }
.cb           { font-size: 0.92rem; }
.tq           { font-size: 1.08rem; }
.ao-d         { font-size: 0.92rem; }
.pkg-features li { font-size: 0.9rem; }
.result-story { font-size: 0.88rem; }
.rfs-label    { font-size: 0.78rem; }
.record-statement p { font-size: 1.4rem; }
.record-label { font-size: 0.75rem; }
.hstat-lbl    { font-size: 0.65rem; }
.nav-links a  { font-size: 0.74rem; }
.se           { font-size: 0.68rem; }
.p-desc       { font-size: 0.82rem; }
.sen-rb       { font-size: 0.9rem; }
.ci-v         { font-size: 1rem; }
.cinfo-val    { font-size: 1rem; }
.stag         { font-size: 0.65rem; }

/* ── LOGO ── */
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.logo-img {
  height: 38px;
  width: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  /* The logo has white circle bg — looks great against dark nav */
}
.logo-svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.logo-text span {
  color: var(--s2);
  font-style: italic;
}

/* ── FOOTER BRAND ── */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.footer-logo-img {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.85;
}
