/* ==========================================================
   REDEN AI · STYLES
   Editorial cream + ink, Fraunces display, Inter body
========================================================== */

:root {
  --cream:        #f3ede2;
  --cream-2:      #ece4d4;
  --cream-3:      #e2d8c3;
  --ink:          #161410;
  --ink-2:        #2a261f;
  --ink-mute:     #6c655a;
  --ink-faint:    #a59c8c;
  --line:         #2a261f1a;
  --line-strong:  #2a261f33;
  --accent-soft:  #c9a96b;
  --accent:       #a98a3a;     /* warm khaki gold */
  --accent-deep:  #8a6e2a;
  --gold:         #a98a3a;

  --serif:  "Cormorant Garamond", "EB Garamond", "Times New Roman", serif;
  --sans:   "Inter", system-ui, -apple-system, sans-serif;
  --mono:   "JetBrains Mono", ui-monospace, monospace;

  --max:    1440px;
  --gut:    clamp(20px, 4vw, 56px);
}

/* Homepage-only brand palette (Demo.html keeps the original tokens because
   it uses <body class="demo-body">). This scopes the new colour + font
   choices to index.html / non-demo pages only. */
body:not(.demo-body) {
  --cream:       #F4EFE6;
  --cream-2:     #EDE6D8;
  --ink:         #1C1A17;
  --ink-mute:    #5C5750;
  --accent:      #9A7B3F;     /* gold */
  --accent-soft: #C4A46B;     /* gold-light */
  --accent-deep: #6E5727;     /* gold-deep */
  --line:        #D8CFBE99;
  --line-strong: #D8CFBE;
  --sans:        "DM Sans", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--ink); color: var(--cream); }

/* ==========================================================
   NAV
========================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px var(--gut);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  background: color-mix(in srgb, var(--cream) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease, background 0.4s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }

.nav-mark {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  justify-self: start;
}
.mark-glyph { color: var(--accent); font-size: 0.8em; transform: translateY(-1px); }
.mark-word  { color: var(--ink); font-style: italic; font-weight: 300; }
.mark-thin  { font-weight: 300; opacity: 0.5; font-style: normal; margin-left: 2px; }

.nav-links {
  display: flex; gap: 28px; align-items: center;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: var(--ink-2);
  justify-self: center;
}
.nav-links a {
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4,0,0.1,1);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  justify-self: end;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: var(--ink);
  color: var(--cream);
  transition: all 0.3s ease;
}
.nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.nav-cta-arrow { transition: transform 0.3s; }
.nav-cta:hover .nav-cta-arrow { transform: translateX(3px); }

@media (max-width: 800px) {
  .nav { grid-template-columns: auto auto; }
  .nav-links { display: none; }
}

/* ==========================================================
   HERO
========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px var(--gut) 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  overflow: hidden;
}
.hero-grain {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 80% 20%, rgba(176, 74, 31, 0.06), transparent 60%),
    radial-gradient(60% 50% at 10% 80%, rgba(169, 138, 58, 0.05), transparent 60%);
  pointer-events: none;
}

.hero-meta {
  position: absolute;
  top: 110px; right: var(--gut);
  display: grid; gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  text-transform: uppercase;
  z-index: 2;
}
.meta-row { display: flex; gap: 10px; }
.meta-k { color: var(--ink-faint); min-width: 60px; }
.meta-v { color: var(--ink-2); }

.hero-stamp {
  position: absolute;
  top: 50%; right: clamp(20px, 6vw, 100px);
  transform: translateY(-50%);
  width: 180px; height: 180px;
  display: grid; place-items: center;
  z-index: 1;
  opacity: 0.85;
}
.stamp-ring {
  width: 100%; height: 100%;
  animation: spin 40s linear infinite;
  color: var(--ink-2);
}
.stamp-text {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  fill: currentColor;
  text-transform: uppercase;
}
.stamp-glyph {
  position: absolute;
  font-family: var(--serif);
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .hero-stamp { display: none; }
  .hero-meta { position: static; margin-top: 20px; }
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 7.8vw, 120px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 60px 0 0;
  max-width: 18ch;
  position: relative;
  z-index: 2;
}
.hero-title em {
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
}
.hero-title .line { white-space: nowrap; }
@media (max-width: 700px) {
  .hero-title .line { white-space: normal; }
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: line-rise 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.1s; }
.hero-title .line:nth-child(2) { animation-delay: 0.25s; }
.hero-title .line:nth-child(3) { animation-delay: 0.4s; }
@keyframes line-rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  max-width: 52ch;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 8px 0 0;
  opacity: 0;
  animation: line-rise 1s ease 0.7s forwards;
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 16px;
  opacity: 0;
  animation: line-rise 1s ease 0.9s forwards;
}

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.005em;
  border: 1px solid var(--ink);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -10px rgba(176, 74, 31, 0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-arrow { font-family: var(--mono); transition: transform 0.3s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

.hero-scroll {
  position: absolute;
  bottom: 36px; left: var(--gut);
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
}
.scroll-line {
  display: inline-block;
  width: 60px; height: 1px;
  background: var(--ink-mute);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute; top: 0; left: -100%;
  width: 30%; height: 100%;
  background: var(--accent);
  animation: scroll-cue 2.4s ease-in-out infinite;
}
@keyframes scroll-cue {
  0% { left: -30%; } 100% { left: 100%; }
}

/* ==========================================================
   MARQUEE
========================================================== */
.marquee-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-2);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex; gap: 56px;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--ink-2);
  width: max-content;
}
.marquee-track span { display: inline-block; }
.marquee-track span:first-letter { color: var(--accent); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ==========================================================
   GENERIC SECTION
========================================================== */
.section {
  padding: clamp(80px, 12vh, 140px) var(--gut);
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}
.section-head {
  display: grid;
  gap: 18px;
  max-width: 70ch;
  margin-bottom: 80px;
}
.sec-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.sec-num { color: var(--accent); }
.sec-name {
  position: relative;
  padding-left: 18px;
}
.sec-name::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 10px; height: 1px;
  background: var(--ink-mute);
}
.sec-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: pretty;
}
.sec-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.sec-lede {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 60ch;
}

/* ==========================================================
   WORK / PRODUCTS
========================================================== */
.work-list { display: grid; gap: 100px; }

.work-card {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
}
.work-card.reverse .work-body { order: 3; }
.work-card.reverse .work-visual { order: 2; }

@media (max-width: 1000px) {
  .work-card, .work-card.reverse {
    grid-template-columns: 60px 1fr;
  }
  .work-card .work-visual,
  .work-card.reverse .work-visual {
    grid-column: 1 / -1;
    order: 99;
  }
  .work-card .work-body,
  .work-card.reverse .work-body {
    grid-column: 2;
    order: 1;
  }
}

.work-index {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  align-items: start;
}
.work-index .ix {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--accent);
  font-weight: 300;
  line-height: 1;
}
.work-index .ix-bar {
  width: 1px;
  background: var(--line-strong);
  height: 100%;
  min-height: 200px;
}

.work-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 18px;
}
.work-tags span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-mute);
  background: var(--cream-2);
}

.work-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.work-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 22px;
  max-width: 42ch;
}

.work-points {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
  font-size: 14px;
  color: var(--ink-2);
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.work-points li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 6px;
  line-height: 1.45;
}
.work-points li span {
  color: var(--accent);
  font-family: var(--mono);
}

.work-visual {
  display: grid; place-items: center;
  min-height: 460px;
  position: relative;
  perspective: 1200px;
}

/* --- phone mock (Commerce Agents) --- */
.phone-mock {
  width: 320px;
  background: #0c0a07;
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    0 30px 60px -20px rgba(22, 20, 16, 0.35),
    0 0 0 1px rgba(0,0,0,0.06);
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  transform: rotate(-2deg);
  transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1);
}
.work-card:hover .phone-mock { transform: rotate(0deg) translateY(-6px); }

.phone-mock > div { background: #ece5d4; }
.phone-mock > .phone-status { background: transparent; }

.phone-status {
  display: flex; justify-content: space-between;
  padding: 6px 16px 8px;
  font-family: var(--mono);
  font-size: 10px;
  color: #c9c2b3;
}
.phone-icons em { font-style: normal; opacity: 0.7; margin-left: 6px; }

.phone-header {
  display: flex; gap: 10px; align-items: center;
  padding: 14px 16px 12px;
  border-radius: 24px 24px 0 0;
  border-bottom: 1px solid var(--line);
}
.phone-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
}
.phone-name { font-weight: 500; font-size: 13px; }
.phone-state { font-size: 10px; color: var(--ink-mute); font-family: var(--mono); }

.phone-thread {
  padding: 16px;
  display: grid; gap: 8px;
  border-radius: 0 0 24px 24px;
}
.bubble {
  max-width: 80%;
  padding: 9px 13px;
  border-radius: 16px;
  font-size: 12.5px;
  line-height: 1.4;
}
.bubble.in {
  background: #fff;
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
  justify-self: start;
}
.bubble.out {
  background: var(--accent);
  color: var(--cream);
  border-bottom-right-radius: 4px;
  justify-self: end;
}
.bubble.tiny {
  font-size: 14px;
  letter-spacing: 0.2em;
  padding: 6px 12px;
  color: var(--ink-mute);
}
.bubble.card {
  padding: 6px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 10px;
  align-items: center;
}
.card-img {
  width: 50px; height: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, #c9a96b, #6e5a3a);
}
.card-meta { display: grid; line-height: 1.3; }
.card-meta strong { font-size: 11px; }
.card-meta span { font-size: 10px; opacity: 0.85; }

/* --- style mock --- */
.style-mock {
  width: 100%;
  max-width: 480px;
  background: var(--cream-2);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  transform: rotate(1.5deg);
  transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1);
}
.work-card:hover .style-mock { transform: rotate(0deg) translateY(-6px); }

.style-frame {
  background: var(--cream-3);
  padding: 24px;
  position: relative;
  display: grid; place-items: center;
  border-right: 1px solid var(--line-strong);
  min-height: 360px;
}
.style-figure {
  position: relative;
  color: var(--ink-2);
  width: 100%; height: 100%;
  display: grid; place-items: center;
}
.style-figure svg { width: 60%; height: 90%; }
.style-pin {
  position: absolute;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.style-pin::before {
  content: ""; position: absolute;
  width: 30px; height: 1px; background: var(--ink);
}
.pin-a { top: 28%; right: -10px; }
.pin-a::before { left: -30px; top: 50%; }
.pin-b { top: 58%; left: -16px; }
.pin-b::before { right: -30px; top: 50%; }
.pin-c { bottom: 12%; right: 8px; }
.pin-c::before { left: -28px; top: 50%; }

.style-side {
  padding: 22px 20px;
  display: grid;
  align-content: start;
  gap: 14px;
  background: var(--cream);
}
.style-row {
  display: flex; justify-content: space-between;
  font-size: 12px;
  font-family: var(--mono);
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}
.style-label { color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.1em; font-size: 10px; }
.style-val { color: var(--ink); font-weight: 500; }
.style-val.emph { color: var(--accent); }

.style-bars { display: grid; gap: 8px; margin-top: 4px; }
.bar {
  display: grid;
  grid-template-columns: 24px 1fr 36px;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  position: relative;
}
.bar span { color: var(--ink-mute); }
.bar em { color: var(--ink); font-style: normal; text-align: right; }
.bar::before {
  content: "";
  grid-column: 2;
  height: 6px;
  border-radius: 3px;
  background: var(--cream-3);
  width: 100%;
  position: relative;
}
.bar::after {
  content: "";
  grid-column: 2;
  margin-left: -100%;
  height: 6px;
  border-radius: 3px;
  background: var(--accent);
  width: var(--w);
  transition: width 1s ease;
}

/* --- ops mock --- */
.ops-mock {
  width: 360px;
  background: #faf5e9;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 24px 50px -20px rgba(22, 20, 16, 0.22);
  overflow: hidden;
  transform: rotate(-1.5deg);
  transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1);
}
.work-card:hover .ops-mock { transform: rotate(0deg) translateY(-6px); }

.ops-header {
  background: var(--ink);
  color: var(--cream);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}
.ops-dot {
  width: 8px; height: 8px;
  background: #4ec47a; border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(78, 196, 122, 0.2);
}
.ops-time { margin-left: auto; opacity: 0.6; }

.ops-thread {
  padding: 16px;
  display: grid; gap: 10px;
}
.ops-msg {
  font-size: 12.5px;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 14px;
  max-width: 88%;
}
.ops-msg.out {
  background: #d8f0c8;
  border-bottom-right-radius: 4px;
  justify-self: end;
  font-family: var(--sans);
}
.ops-msg.in {
  background: #fff;
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
  justify-self: start;
  display: grid; gap: 6px;
}
.ops-msg.in.tight { display: block; }
.ops-msg.in strong {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  font-weight: 500;
}
.ops-stat {
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  border-top: 1px dashed var(--line);
  padding-top: 5px;
}
.ops-stat:first-of-type { border-top: none; padding-top: 0; }
.ops-stat span { color: var(--ink-mute); }
.ops-stat em { font-style: normal; color: var(--ink); font-weight: 500; }

/* ==========================================================
   SERVICES
========================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--cream);
  padding: 36px 32px 40px;
  display: grid;
  gap: 18px;
  align-content: start;
  transition: background 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 0;
  background: var(--ink);
  transition: height 0.5s cubic-bezier(0.2,0.8,0.2,1);
  z-index: 0;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { color: var(--cream); }
.service-card:hover .svc-title em,
.service-card:hover .svc-num,
.service-card:hover .svc-tag { color: var(--cream); }
.service-card:hover .svc-list li::before { background: var(--cream); }
.service-card:hover .svc-desc { color: var(--cream-2); }
.service-card > * { position: relative; z-index: 1; }

.svc-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
}
.svc-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  font-weight: 300;
}
.svc-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

.svc-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

.svc-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  transition: color 0.4s;
}

.svc-list {
  list-style: none; padding: 0; margin: 18px 0 0;
  display: grid; gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 13px;
  line-height: 1.5;
}
.svc-list li {
  position: relative;
  padding-left: 16px;
}
.svc-list li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 6px; height: 1px;
  background: var(--ink-mute);
  transition: background 0.4s;
}

/* ==========================================================
   PROCESS
========================================================== */
.process-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 1000px) { .process-list { grid-template-columns: 1fr; } }

.proc {
  padding: 36px 32px 36px 0;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 18px;
  border-top: 1px solid var(--line-strong);
  position: relative;
}
.proc:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 1px;
  background: var(--line);
}
@media (max-width: 1000px) {
  .proc:not(:last-child)::after { display: none; }
  .proc { padding: 28px 0; }
}

.proc-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.proc-line {
  width: 100%;
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.proc:hover .proc-line::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--accent);
  animation: proc-fill 0.8s ease forwards;
}
@keyframes proc-fill {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.proc-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1;
}
.proc-body p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 16px;
}
.proc-time {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-block;
  padding: 4px 8px;
  background: var(--cream-2);
  border-radius: 4px;
}

.process-cta {
  margin-top: 60px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 18px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.process-cta p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  font-weight: 300;
  margin: 0;
}

/* ==========================================================
   ABOUT
========================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px 60px;
}
@media (max-width: 1000px) { .about-grid { grid-template-columns: 1fr; gap: 50px; } }

.about-head { grid-column: 1; }
.about-body {
  grid-column: 1;
  display: grid; gap: 22px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.4;
  color: var(--ink-2);
  max-width: 32ch;
}
.about-body em { font-style: italic; color: var(--accent); }

.about-card {
  grid-column: 2;
  grid-row: 1 / span 2;
  background: var(--ink);
  color: var(--cream);
  padding: 36px 32px;
  border-radius: 4px;
  display: grid;
  align-content: start;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.about-card::after {
  content: "";
  position: absolute;
  inset: auto -40% -40% auto;
  width: 280px; height: 280px;
  background: radial-gradient(closest-side, rgba(176, 74, 31, 0.4), transparent);
  pointer-events: none;
}
.card-stamp {
  font-family: var(--serif);
  color: var(--accent);
  font-size: 32px;
  margin-bottom: 12px;
}
.about-card h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 400;
  margin: 0;
}
.founder-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 64px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}
.founder-bio {
  font-size: 14px;
  line-height: 1.5;
  color: var(--cream-2);
  opacity: 0.8;
  max-width: 28ch;
  margin: 8px 0 22px;
}
.card-meta-row {
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  border-top: 1px solid rgba(243, 237, 226, 0.08);
  padding: 10px 0;
}
.card-meta-row span { color: var(--ink-faint); }
.card-meta-row em { font-style: normal; color: var(--cream); }

@media (max-width: 1000px) {
  .about-card { grid-column: 1; grid-row: auto; }
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
  margin-top: 0;
}
@media (max-width: 800px) { .about-stats { grid-template-columns: repeat(2, 1fr); } }

.stat {
  background: var(--cream);
  padding: 32px 24px;
  display: grid;
  gap: 12px;
  align-content: space-between;
  min-height: 180px;
  transition: background 0.3s;
}
.stat:hover { background: var(--cream-2); }
.stat-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-num em { font-style: italic; color: var(--accent); font-weight: 300; }
.stat-label {
  font-size: 12px;
  line-height: 1.4;
  color: var(--ink-mute);
  max-width: 24ch;
}

/* ==========================================================
   PULL QUOTE
========================================================== */
.pull {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(80px, 14vh, 160px) var(--gut);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pull::before {
  content: "";
  position: absolute;
  inset: -50% -10% auto auto;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, rgba(176, 74, 31, 0.25), transparent);
  pointer-events: none;
}
.pull-q {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 76px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 auto;
  max-width: 22ch;
  position: relative;
}
.pull-q em { font-style: italic; color: var(--accent); }
.pull-mark {
  font-family: var(--serif);
  color: var(--accent);
  opacity: 0.5;
}
.pull-attr {
  margin-top: 30px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ==========================================================
   CONTACT
========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--cream);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 8px;
  min-height: 160px;
  transition: all 0.4s;
}
.contact-card:hover {
  background: var(--ink);
  color: var(--cream);
}
.cc-label {
  grid-column: 1; grid-row: 1;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  align-self: start;
}
.contact-card:hover .cc-label { color: var(--ink-faint); }
.cc-value {
  grid-column: 1; grid-row: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.01em;
}
.cc-arrow {
  grid-column: 2; grid-row: 1 / -1;
  align-self: end;
  font-family: var(--mono);
  font-size: 24px;
  color: var(--accent);
  transition: transform 0.4s;
}
.contact-card:hover .cc-arrow {
  transform: translate(8px, -8px);
  color: var(--cream);
}

.contact-locale {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
@media (max-width: 800px) { .contact-locale { grid-template-columns: 1fr; gap: 30px; } }

.loc h5 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.loc p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
  max-width: 36ch;
}

/* ==========================================================
   FOOTER
========================================================== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px var(--gut) 40px;
}
.foot-mark {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 14px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(243, 237, 226, 0.1);
  margin-bottom: 50px;
}
.foot-mark .mark-glyph { font-size: 42px; color: var(--accent); }
.foot-mark .mark-word { color: var(--cream); }

.foot-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
@media (max-width: 800px) { .foot-cols { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; } }

.foot-col h6 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 16px;
  font-weight: 400;
}
.foot-col a {
  display: block;
  font-size: 14px;
  color: var(--cream);
  padding: 4px 0;
  opacity: 0.85;
  transition: opacity 0.3s, color 0.3s;
}
.foot-col a:hover { opacity: 1; color: var(--accent); }

.foot-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(243, 237, 226, 0.08);
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  text-transform: uppercase;
  flex-wrap: wrap; gap: 12px;
}

/* ==========================================================
   REVEAL ANIMATIONS
========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}


/* ==========================================================
   ABOUT V2 — Mission & Pillars
========================================================== */
.about-v2 .section-head { margin-bottom: 60px; }

.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
  margin-bottom: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .about-mission { grid-template-columns: 1fr; gap: 24px; } }
.mission-lede {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.4;
  color: var(--ink-2);
  margin: 0;
  text-wrap: pretty;
}
.mission-lede em { font-style: italic; color: var(--accent); }

.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
  margin-bottom: 60px;
}
@media (max-width: 900px) { .about-pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .about-pillars { grid-template-columns: 1fr; } }
.pillar {
  background: var(--cream);
  padding: 28px 24px 32px;
  display: grid;
  align-content: start;
  gap: 14px;
  transition: background 0.3s;
}
.pillar:hover { background: var(--cream-2); }
.pillar-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.pillar h4 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.05;
}
.pillar p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

.founder-line {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}
.fl-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.fl-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.fl-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-left: auto;
}

/* override old about-stats grid-column constraint when used in v2 */
.about-v2 .about-stats { margin-top: 0; }


/* ==========================================================
   BOOKING CALENDAR
========================================================== */
.booking {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 1000px) { .booking { grid-template-columns: 1fr; } }

.booking-side {
  background: var(--cream);
  padding: 36px 32px;
  display: grid; align-content: start; gap: 18px;
}
.bk-host {
  display: flex; gap: 14px; align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.bk-stamp {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
}
.bk-name { font-weight: 500; font-size: 15px; }
.bk-role { font-family: var(--mono); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.06em; }
.bk-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 6px 0 0;
  color: var(--accent);
}
.bk-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 36ch;
}
.bk-meta { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 0; }
.bk-meta li {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}
.bk-meta li span { color: var(--ink-mute); text-transform: uppercase; }
.bk-meta li em { font-style: normal; color: var(--ink); }

.bk-alt {
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; gap: 8px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
}
.bk-alt a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

.booking-cal {
  background: var(--cream);
  padding: 32px;
  display: grid;
  align-content: start;
  gap: 20px;
}

.cal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 6px;
}
.cal-month {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0;
}
.cal-nav {
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong);
  background: var(--cream);
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  color: var(--ink);
  transition: all 0.2s;
  font-family: var(--serif);
}
.cal-nav:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
  padding: 6px 0;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-cell {
  aspect-ratio: 1;
  display: grid; place-items: center;
  font-family: var(--sans);
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  transition: all 0.2s;
}
.cal-cell.empty { cursor: default; }
.cal-cell.disabled { color: var(--ink-faint); cursor: not-allowed; opacity: 0.4; }
.cal-cell.available { background: var(--cream-2); }
.cal-cell.available:hover { background: var(--ink); color: var(--cream); }
.cal-cell.today { border-color: var(--ink); font-weight: 500; }
.cal-cell.selected {
  background: var(--accent);
  color: var(--cream);
  font-weight: 500;
  border-color: var(--accent);
}

.cal-slots {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: grid; gap: 12px;
}
.slot-head {
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.slot-head #slot-date { color: var(--ink); font-weight: 500; }
.slot-tz { color: var(--ink-mute); }
.slot-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 600px) { .slot-list { grid-template-columns: repeat(3, 1fr); } }
.slot {
  font-family: var(--mono);
  font-size: 12px;
  padding: 10px 8px;
  border: 1px solid var(--line-strong);
  background: var(--cream);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.slot:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.slot.selected { background: var(--accent); color: var(--cream); border-color: var(--accent); }
.slot-empty {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--ink-mute);
  font-style: italic;
  padding: 8px 0;
}

.cal-confirm {
  margin-top: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: grid; gap: 10px;
}
.cal-confirm input,
.cal-confirm textarea {
  font-family: var(--sans);
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--cream);
  color: var(--ink);
  resize: vertical;
}
.cal-confirm input:focus,
.cal-confirm textarea:focus {
  outline: 0;
  border-color: var(--ink);
}
.bk-confirm {
  margin-top: 6px;
  justify-content: space-between;
  width: 100%;
}
.bk-confirm em {
  font-style: italic;
  font-family: var(--serif);
  font-size: 16px;
  margin-left: 6px;
  font-weight: 400;
}
.bk-confirmed {
  text-align: center;
  padding: 30px 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  font-weight: 400;
}
.bk-confirmed strong { display: block; font-size: 14px; font-style: normal; font-family: var(--mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 10px; font-weight: 500; }


/* ==========================================================
   WORK SIMPLE — three product cards
========================================================== */
.work-simple .section-head { margin-bottom: 60px; }
.ws-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}
@media (max-width: 900px) { .ws-grid { grid-template-columns: 1fr; } }

.ws-card {
  background: var(--cream);
  padding: 36px 32px 32px;
  display: grid;
  align-content: start;
  gap: 16px;
  transition: background 0.3s;
  position: relative;
}
.ws-card:hover { background: var(--cream-2); }
.ws-card:hover .ws-link { color: var(--accent); }

.ws-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.ws-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
}

.ws-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  text-wrap: pretty;
}

.ws-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.ws-tags span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 2px;
}

.ws-link {
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.3s;
}


/* ==========================================================
   ABOUT C — Animated Pillars
========================================================== */
.about-v2 .about-pillars {
  position: relative;
}

/* per-pillar reveal — stagger by index */
.about-v2 .pillar {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
    background 0.4s ease;
  position: relative;
  overflow: hidden;
}
.about-v2 .pillar.in {
  opacity: 1;
  transform: translateY(0);
}
.about-v2 .pillar:nth-child(1) { transition-delay: 0.05s; }
.about-v2 .pillar:nth-child(2) { transition-delay: 0.15s; }
.about-v2 .pillar:nth-child(3) { transition-delay: 0.25s; }
.about-v2 .pillar:nth-child(4) { transition-delay: 0.35s; }

/* hover bloom — color sweep from bottom */
.about-v2 .pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.about-v2 .pillar:hover::before { opacity: 0.08; }

/* number — slide in + animate the digits */
.about-v2 .pillar-num {
  display: inline-block;
  position: relative;
  transition: transform 0.4s ease, color 0.3s ease;
}
.about-v2 .pillar:hover .pillar-num {
  transform: translateX(8px);
  color: var(--ink);
}
.about-v2 .pillar-num::after {
  content: "";
  position: absolute;
  left: -12px; top: 50%;
  width: 6px; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.about-v2 .pillar:hover .pillar-num::after {
  transform: scaleX(1);
  transform-origin: left;
  width: 8px;
}

/* heading — italic underline reveal */
.about-v2 .pillar h4 {
  position: relative;
  display: inline-block;
}
.about-v2 .pillar h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.about-v2 .pillar:hover h4::after { transform: scaleX(1); }

/* body copy — gentle fade up on hover */
.about-v2 .pillar p {
  transition: color 0.3s ease;
}
.about-v2 .pillar:hover p { color: var(--ink); }

/* founder line — slide in */
.about-v2 .founder-line {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: 0.5s;
}
.about-v2 .founder-line.in {
  opacity: 1;
  transform: translateY(0);
}

/* founder name — gentle continuous breathing */
.about-v2 .fl-name {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-deep) 50%, var(--accent) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .about-v2 .pillar,
  .about-v2 .founder-line { opacity: 1; transform: none; transition: none; }
  .about-v2 .fl-name { animation: none; }
}


/* founder bio extension */
.about-v2 .founder-line {
  display: block;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.about-v2 .fl-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.about-v2 .fl-bio {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 60ch;
  margin: 0;
  text-wrap: pretty;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.7s,
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.7s;
}
.about-v2 .founder-line.in .fl-bio {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .about-v2 .fl-bio { opacity: 1; transform: none; transition: none; }
}


/* ==========================================================
   CONTACT SIDE — direct contact card (replaces booking-side)
========================================================== */
.contact-side {
  display: grid !important;
  align-content: start;
  gap: 16px;
}
.contact-line {
  display: grid;
  gap: 6px;
  padding: 18px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--cream);
  text-decoration: none;
  color: var(--ink);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.contact-line:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.contact-line:hover .cl-note,
.contact-line:hover .cl-label { color: rgba(255,255,255,0.65); }
.contact-line:hover .cl-arrow { transform: translateX(4px); }

.cl-head {
  display: flex; justify-content: space-between; align-items: center;
}
.cl-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  transition: color 0.3s ease;
}
.cl-arrow {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--accent);
  transition: transform 0.3s ease;
}
.cl-value {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: inherit;
}
.contact-line:hover .cl-value { color: var(--cream); }
.cl-note {
  font-size: 12px;
  line-height: 1.4;
  color: var(--ink-mute);
  margin-top: 4px;
  transition: color 0.3s ease;
}

.contact-locales {
  margin-top: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cloc h6 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 6px;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.cloc p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
}


/* ==========================================================
   CONTACT — Cal.com-style dark widget
========================================================== */
#contact { background: var(--cream); }
.contact-stack {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1100px) {
  .contact-stack { grid-template-columns: 1fr; gap: 50px; }
}

.contact-head { display: grid; gap: 22px; }
.contact-head .sec-title { margin: 4px 0 6px; }
.contact-head .sec-lede { margin: 0 0 10px; max-width: 50ch; }

.contact-rows {
  display: grid;
  gap: 0;
  margin: 14px 0 0;
  padding: 0;
}
.contact-rows .cr {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: baseline;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.contact-rows .cr:last-child { border-bottom: 1px solid var(--line); }
.contact-rows dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.contact-rows dd {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  margin: 0;
}
.contact-rows dd a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.contact-rows dd a:hover { border-bottom-color: var(--accent); }

/* === Dark Cal-style widget === */
.cal-widget {
  background: #0e0d0a;
  color: #e8e0d0;
  border-radius: 10px;
  padding: 22px;
  display: grid;
  grid-template-columns: 200px 1fr 130px;
  gap: 20px;
  position: relative;
  font-family: var(--sans);
  box-shadow: 0 30px 80px -30px rgba(22, 20, 16, 0.4);
  min-height: 360px;
}
@media (max-width: 800px) {
  .cal-widget { grid-template-columns: 1fr; }
}

.cw-host {
  display: grid;
  align-content: start;
  gap: 14px;
  padding-right: 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 800px) { .cw-host { border-right: 0; padding-right: 0; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.06); } }

.cw-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b89160 0%, #6b5430 100%);
  display: grid; place-items: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
}
.cw-name {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-family: var(--mono);
  letter-spacing: 0.04em;
}
.cw-title {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px;
  color: #fff;
  letter-spacing: -0.01em;
}
.cw-meta {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 10px;
}
.cw-meta li {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 10px;
}
.cw-i {
  display: inline-grid;
  place-items: center;
  width: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.cw-meta em { font-style: normal; color: rgba(255,255,255,0.4); margin-left: 4px; font-size: 10px; }

.cw-cal { display: grid; align-content: start; gap: 10px; }
.cw-cal-head {
  display: flex; justify-content: space-between; align-items: center;
}
.cw-cal-head h5 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.cw-nav { display: flex; gap: 4px; }
.cw-nav button {
  width: 24px; height: 24px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  display: grid; place-items: center;
  transition: background 0.2s;
}
.cw-nav button:hover { background: rgba(255,255,255,0.08); color: #fff; }

.cw-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  font-family: var(--mono);
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  padding: 2px 0;
}
.cw-weekdays span { text-align: center; }

.cw-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cw-cell {
  aspect-ratio: 1;
  display: grid; place-items: center;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-family: var(--sans);
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.18s ease;
  position: relative;
}
.cw-cell.empty { cursor: default; }
.cw-cell.disabled {
  color: rgba(255,255,255,0.18);
  cursor: not-allowed;
}
.cw-cell.available { background: rgba(255,255,255,0.06); }
.cw-cell.available:hover { background: rgba(255,255,255,0.16); color: #fff; }
.cw-cell.selected {
  background: var(--accent) !important;
  color: #0e0d0a;
  font-weight: 600;
}
/* small available dot */
.cw-cell.available::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #4ec47a;
}
.cw-cell.selected::after { display: none; }

.cw-slots {
  display: grid;
  align-content: start;
  gap: 8px;
  border-left: 1px solid rgba(255,255,255,0.06);
  padding-left: 16px;
}
@media (max-width: 800px) { .cw-slots { border-left: 0; padding-left: 0; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); } }

.cw-slot-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 4px;
}
.cw-slot-head #cw-day-label {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.cw-fmt {
  display: flex;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 2px;
}
.cw-fmt button {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.5);
  padding: 3px 8px;
  font-size: 11px;
  font-family: var(--mono);
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.2s;
}
.cw-fmt button.active { background: rgba(255,255,255,0.12); color: #fff; }

.cw-slot-list {
  display: grid;
  gap: 6px;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 4px;
}
.cw-slot-list::-webkit-scrollbar { width: 4px; }
.cw-slot-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

.cw-slot {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  padding: 9px 12px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  transition: all 0.18s ease;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  position: relative;
}
.cw-slot::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #4ec47a;
}
.cw-slot:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.18); }
.cw-slot.confirmed {
  background: var(--accent);
  color: #0e0d0a;
  border-color: var(--accent);
}
.cw-slot.confirmed::before { background: #0e0d0a; }
.cw-slot-empty {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  padding: 18px 0;
  text-align: center;
}

.cw-foot {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.06em;
  pointer-events: none;
}


/* ==========================================================
   CONTACT — labeled-rows left rail (overrides)
========================================================== */
.contact-rail {
  background: transparent !important;
  padding: 6px 0 0 !important;
  border: 0 !important;
  display: grid !important;
  align-content: start;
  gap: 0;
}
.contact-rail .contact-rows {
  display: grid;
  margin: 0;
  padding: 0;
}
.contact-rail .cr {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  margin: 0;
}
.contact-rail .cr:last-child { border-bottom: 1px solid var(--line); }
.contact-rail dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.contact-rail dd {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
}
.contact-rail dd a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.contact-rail dd a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* the wrapper "booking" already grids 1fr 1.15fr — keep that. Override its border so the
   left rail looks airy (no shared box border between rail and calendar). */
.booking {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  gap: 60px !important;
  align-items: start;
}
@media (max-width: 1000px) { .booking { gap: 36px !important; } }

/* keep the calendar card itself looking like a card */
.booking-cal {
  border: 1px solid var(--line-strong);
  border-radius: 4px;
}

/* Google Calendar embed */
.booking-cal-embed {
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #fff;
  overflow: hidden;
  min-height: 640px;
}
.bce-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--cream-2);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.bce-label { color: var(--ink); font-weight: 500; }
.bce-by { color: var(--ink-mute); }
.bce-frame {
  width: 100%;
  min-height: 600px;
  border: 0;
  display: block;
  background: #fff;
}
.bce-fallback {
  display: block;
  padding: 12px 18px;
  border-top: 1px solid var(--line);
  background: var(--cream-2);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
}
.bce-fallback em {
  font-style: normal;
  color: var(--accent);
  font-weight: 500;
  margin-left: 4px;
}
.bce-fallback:hover em { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 700px) {
  .booking-cal-embed { min-height: 560px; }
  .bce-frame { min-height: 520px; }
}


/* contact rail header */
.contact-rail-head {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-rail-head .sec-tag { margin-bottom: 4px; }
.contact-rail-head .sec-title { margin: 0; }
.contact-rail-head .sec-lede { margin: 0; max-width: 44ch; }
