/* ============================================================
   STRCTR v2 — "Lead with Proof"
   Same tokens as v1, redesigned layout
   ============================================================ */

/* ── FONTS (self-hosted) ───────────────────────────────────── */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/syne.woff2') format('woff2');
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('/fonts/lora.woff2') format('woff2');
}
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/lora-italic.woff2') format('woff2');
}

/* ── TOKENS ────────────────────────────────────────────────── */
:root {
  --coral: #D5543A;
  --coral-on-dark: #F2876B;
  --dark:  #3F5667;
  --mid:   #5B7686;
  --cream: #F5F2E9;
  --white: #FFFFFF;
  --rule:  rgba(63, 86, 103, 0.12);

  --rule-on-dark: rgba(245, 242, 233, 0.10);
  --text-on-dark-strong: rgba(245, 242, 233, 0.90);
  --text-on-dark-med:    rgba(245, 242, 233, 0.70);
  --text-on-dark-soft:   rgba(245, 242, 233, 0.30);

  --font-sans:  'Syne', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  --font-serif: 'Lora', Georgia, 'Times New Roman', serif;

  --gutter:       5rem;
  --gutter-sm:    1.5rem;
  --section-gap:  4rem;

  --t-fast:  0.2s;
  --t-base:  0.3s;
  --t-slow:  0.6s;
}


/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-sans);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main { padding-top: 1rem; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
ul, ol { list-style: none; }


/* ── UTILITIES ─────────────────────────────────────────────── */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.is-hidden { display: none !important; }

section[id] { scroll-margin-top: 5rem; }

.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity var(--t-slow) ease, transform var(--t-slow) ease;
}
.fade-up.is-in { opacity: 1; transform: translateY(0); }
.fade-up--delay-1 { transition-delay: 0.15s; }
.fade-up--delay-2 { transition-delay: 0.30s; }


/* ── CURSOR ────────────────────────────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--coral);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width var(--t-base), height var(--t-base), background var(--t-base);
}
.cursor--ring {
  width: 32px; height: 32px;
  background: transparent;
  border: 1px solid rgba(213, 84, 58, 0.4);
  z-index: 9998;
  transition: transform 0.18s ease-out, width var(--t-base), height var(--t-base), border-color var(--t-base);
}
body:has(a:hover, button:hover) .cursor                { background: var(--dark); }
body:has(a:hover, button:hover) .cursor.cursor--ring   { background: transparent; border-color: rgba(63, 86, 103, 0.6); width: 48px; height: 48px; }


/* ── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.8rem var(--gutter);
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav__logo { display: flex; align-items: center; gap: 1.2rem; text-decoration: none; color: var(--dark); }
.nav__logo-mark { height: 22px; width: auto; }
.nav__motto {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--mid);
  letter-spacing: 0.02em;
  border-left: 1px solid var(--rule);
  padding-left: 1.2rem;
}
.nav__list { display: flex; gap: 3rem; }
.nav__link {
  text-decoration: none; font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mid); font-weight: 500;
  transition: color var(--t-fast);
}
.nav__link:hover { color: var(--coral); }
.nav__link--active { color: var(--coral); }


/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  padding: var(--section-gap) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: end;
  border-bottom: 1px solid var(--rule);
}

.eyebrow { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 4rem; }
.eyebrow__line {
  display: block; width: 3rem; height: 1px; background: var(--coral);
  animation: eyebrow-draw 0.8s 0.5s ease forwards;
  transform-origin: left; transform: scaleX(0);
}
.eyebrow__text {
  font-size: 0.75rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--coral); font-weight: 500;
}
@keyframes eyebrow-draw { to { transform: scaleX(1); } }

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400; line-height: 1.1;
  color: var(--dark); margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.hero__headline-em {
  font-style: italic;
  color: var(--coral);
}
.hero__headline-sep {
  color: var(--mid);
  opacity: 0.3;
  margin: 0 0.15em;
  font-weight: 300;
}

.hero__statement {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.hero__lede {
  font-family: var(--font-sans);
  font-size: 1rem; line-height: 1.7;
  color: var(--mid); margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero__founder-line {
  display: flex; align-items: center; gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding: 0.8rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hero__founder-name {
  font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dark);
}
.hero__founder-sep { color: var(--coral); font-weight: 700; }
.hero__founder-cred {
  font-family: var(--font-serif); font-style: italic;
  font-size: 0.88rem; color: var(--mid);
}

.hero__actions { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }

.hero__visual { display: flex; justify-content: flex-end; }

.hero__photo-frame {
  width: 100%; max-width: 420px;
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(160deg, rgba(213, 84, 58, 0.07) 0%, transparent 50%),
    var(--cream);
  position: relative; overflow: hidden;
}
.hero__photo-frame::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--coral);
}
.hero__photo-overlay {
  position: absolute;
  bottom: 2rem; left: 2rem;
  padding: 1.2rem 1.5rem;
  background: var(--dark);
}
.hero__stat-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem; color: var(--cream);
  line-height: 1; letter-spacing: -0.03em;
}
.hero__stat-value sup {
  font-size: 0.85rem; color: var(--coral); vertical-align: super;
}
.hero__stat-label {
  display: block; margin-top: 0.3rem;
  font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-on-dark-med);
  font-weight: 500;
}


/* — Hero glyph — */
.hero__visual { display: flex; justify-content: flex-end; }

.glyph {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  position: relative;
}
.glyph__grid {
  position: absolute;
  inset: 0;
}
.glyph__line {
  position: absolute;
  background: var(--rule);
}
.glyph__line--h1 { top: 20%; left: 0; right: 10%; height: 1px; }
.glyph__line--h2 { top: 55%; left: 15%; right: 0; height: 1px; }
.glyph__line--h3 { top: 82%; left: 5%; right: 20%; height: 1px; }
.glyph__line--v1 { left: 35%; top: 8%; bottom: 12%; width: 1px; }
.glyph__line--v2 { left: 72%; top: 18%; bottom: 5%; width: 1px; }

.glyph__block--1 {
  position: absolute;
  top: 20%; left: 35%;
  width: 37%; height: 35%;
  background: var(--cream);
  border: 1px solid var(--rule);
}
.glyph__block--2 {
  position: absolute;
  top: 55%; left: 15%;
  width: 20%; height: 27%;
  background: var(--dark);
  opacity: 0.06;
}
.glyph__dot {
  position: absolute;
  top: 53%; left: 70%;
  width: 10px; height: 10px;
  background: var(--coral);
  border-radius: 50%;
}


/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  text-decoration: none; font-size: 0.75rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; border: none;
  transition: background var(--t-base), color var(--t-base), transform var(--t-fast);
}
.btn--primary {
  color: var(--white); background: var(--dark);
  padding: 0.85rem 1.8rem;
}
.btn--primary:hover { background: var(--coral); transform: translateY(-2px); }
.btn__arrow { transition: transform var(--t-base); }
.btn--primary:hover .btn__arrow { transform: translateX(4px); }

.btn--secondary {
  color: var(--mid); border-bottom: 1px solid var(--rule);
  padding-bottom: 2px; font-weight: 500;
  letter-spacing: 0.14em; font-size: 0.72rem;
}
.btn--secondary:hover { color: var(--dark); border-color: var(--dark); }


/* ── CREDENTIALS STRIP ─────────────────────────────────────── */
.credentials {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--dark);
  padding: 2.8rem var(--gutter);
  gap: 1rem;
}
.credentials__item { text-align: center; }
.credentials__value {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem; color: var(--cream);
  line-height: 1; letter-spacing: -0.03em;
}
.credentials__unit {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--coral);
  margin-left: 0.15rem;
  letter-spacing: 0;
  vertical-align: 0.3em;
}
.credentials__label {
  display: block; margin-top: 0.5rem;
  font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-dark-med); font-weight: 500;
}


/* ── SECTION LAYOUT ────────────────────────────────────────── */
.section {
  padding: var(--section-gap) var(--gutter);
  border-bottom: 1px solid var(--rule);
}
.section--cream { background: var(--cream); }

.section__header {
  display: flex; align-items: baseline;
  gap: 2rem; margin-bottom: 4rem;
}
.section__num {
  font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--coral);
  font-weight: 500; flex-shrink: 0;
}
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400; color: var(--dark);
  line-height: 1.15; letter-spacing: -0.02em;
}
.section__title-em { font-style: italic; color: var(--mid); }


/* ── SERVICE CARDS ─────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.card {
  padding: 2.5rem;
  background: var(--cream);
  position: relative;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(63, 86, 103, 0.08);
}
.card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--coral);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-base);
}
.card:hover::after { transform: scaleX(1); }

.card__num {
  display: block;
  font-size: 0.85rem; letter-spacing: 0.18em;
  color: var(--coral); font-weight: 700;
  margin-bottom: 1.2rem; text-transform: uppercase;
}
.card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem; font-weight: 400;
  color: var(--dark); margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}
.card__body {
  font-size: 1rem; line-height: 1.7;
  color: var(--mid); margin-bottom: 1.5rem;
}
.card__proof {
  display: block; padding-top: 1rem;
  border-top: 1px solid var(--rule);
  font-family: var(--font-serif); font-style: italic;
  font-size: 1rem; color: var(--coral);
  letter-spacing: 0.02em;
}


/* ── APPROACH PILLARS ──────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.pillar { }
.pillar__num {
  display: block;
  font-family: var(--font-serif); font-style: italic;
  font-size: 2.4rem; color: var(--coral);
  line-height: 1; margin-bottom: 1rem;
  opacity: 0.6;
}
.pillar__title {
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 500;
  color: var(--dark); margin-bottom: 0.8rem;
}
.pillar__body {
  font-size: 1rem; line-height: 1.7;
  color: var(--mid);
}


/* ── FOUNDER ───────────────────────────────────────────────── */
.founder {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 4rem;
  align-items: start;
}

.founder__portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(160deg, rgba(213, 84, 58, 0.07) 0%, transparent 50%),
    var(--cream);
  position: relative;
  overflow: hidden;
}
.founder__portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder__portrait::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--coral);
  z-index: 1;
}

.founder__name {
  font-family: var(--font-serif);
  font-size: 1.6rem; font-weight: 400;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}
.founder__role {
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--coral);
  font-weight: 500; margin-bottom: 2rem;
}

.founder__text {
  font-family: var(--font-sans);
  font-size: 1rem; line-height: 1.7;
  color: var(--mid); margin-bottom: 1.2rem;
}
.founder__text strong { color: var(--dark); font-weight: 500; }

.founder__tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.founder__tag {
  font-size: 0.65rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600;
  color: var(--dark); background: var(--cream);
  padding: 0.45rem 1rem;
  transition: background var(--t-fast), color var(--t-fast);
}
.founder__tag:hover { background: var(--coral); color: var(--white); }

.founder__tags-toggle {
  display: none;
  margin-top: 1rem;
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.45rem 1rem;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.founder__tags-toggle:hover {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}


/* ── CONTACT ───────────────────────────────────────────────── */
.contact {
  padding: var(--section-gap) var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
  background: var(--dark);
}
.contact__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 400; color: var(--cream);
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.contact__heading-em { font-style: italic; color: var(--text-on-dark-med); }
.contact__lede {
  font-family: var(--font-sans);
  font-size: 0.95rem; line-height: 1.85;
  color: var(--text-on-dark-med); margin-bottom: 1.5rem;
}

.contact__details { display: grid; }
.contact__detail {
  padding: 1.4rem 0;
  border-top: 1px solid var(--rule-on-dark);
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem;
}
.contact__detail:last-child { border-bottom: 1px solid var(--rule-on-dark); }
.contact__detail-label {
  font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-on-dark-soft);
  font-weight: 500;
}
.contact__detail-link {
  text-decoration: none; font-size: 0.95rem;
  color: var(--text-on-dark-med); letter-spacing: 0.04em;
  transition: color var(--t-fast);
}
.contact__detail-link:hover { color: var(--coral); }

.contact__details--right {
  align-self: center;
}


/* ── FORM (kept for future use) ────────────────────────────── */
.contact__form { display: grid; }
.form-field {
  display: block;
  border-bottom: 1px solid var(--rule-on-dark);
}
.form-field__input {
  width: 100%; background: transparent;
  border: none; outline: none;
  padding: 1.4rem 0;
  font-family: var(--font-sans);
  font-size: 0.85rem; color: var(--cream);
  letter-spacing: 0.04em;
  transition: border-color var(--t-base);
  display: block;
}
.form-field__input::placeholder { color: var(--text-on-dark-soft); }
.form-field:focus-within { border-color: var(--coral); }
.form-field__input--area {
  resize: none; min-height: 100px;
  padding: 1.4rem 0 1.8rem;
  font-family: var(--font-sans);
}

.form-submit {
  display: flex; justify-content: space-between;
  align-items: center; padding: 1.2rem 0;
  border-top: 1px solid var(--rule-on-dark);
  margin-top: 2rem; gap: 1rem;
}
.form-submit__note {
  font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-on-dark-soft);
}
.form-submit__btn {
  background: none;
  border: 1px solid var(--text-on-dark-soft);
  padding: 0.75rem 1.8rem;
  font-family: var(--font-sans);
  font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 700;
  color: var(--cream); cursor: pointer;
  transition: background var(--t-base), border-color var(--t-base), color var(--t-base);
}
.form-submit__btn:hover {
  background: var(--coral); border-color: var(--coral);
  color: var(--white);
}


/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 2rem var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border-top: 1px solid var(--rule-on-dark);
}
.footer__row {
  display: flex; justify-content: space-between;
  align-items: center;
  gap: 2rem; flex-wrap: wrap;
}
.footer__logo {
  display: inline-flex; align-items: center;
  text-decoration: none; color: var(--text-on-dark-soft);
}
.footer__logo-mark { height: 16px; width: auto; opacity: 0.55; }
.footer__nav ul { display: flex; gap: 2.5rem; }
.footer__nav a {
  font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-on-dark-soft);
  text-decoration: none; font-weight: 500;
  transition: color var(--t-fast);
}
.footer__nav a:hover { color: var(--text-on-dark-strong); }
.footer__copyright {
  font-size: 0.78rem; letter-spacing: 0.1em;
  color: var(--text-on-dark-soft); text-transform: uppercase;
}


/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1440px) {
  .founder__tag--more { display: none; }
  .founder__tags.is-expanded .founder__tag--more { display: revert; }
  .founder__tags-toggle { display: inline-flex; }
}

@media (max-width: 1024px) {
  :root { --gutter: 2.5rem; --section-gap: 3rem; }
  .hero { grid-template-columns: 1fr 320px; gap: 3rem; }
  .credentials { grid-template-columns: repeat(5, 1fr); padding: 2rem var(--gutter); }
  .credentials__value { font-size: 1.8rem; }
  .founder { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --gutter: var(--gutter-sm); --section-gap: 2.5rem; }
  body { cursor: auto; }
  .cursor { display: none; }

  .nav { padding: 1.2rem var(--gutter); }
  .nav__list { display: none; }
  .nav__motto { display: none; }

  section[id] { scroll-margin-top: 4rem; }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 5.5rem;
  }
  .eyebrow { margin-bottom: 3rem; }
  .hero__headline { white-space: nowrap; font-size: 7.5vw; }
  .hero__visual { display: none; }

  .credentials {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem var(--gutter);
    gap: 1.5rem;
  }
  .credentials__item:last-child { grid-column: 1 / -1; }

  .section__header { flex-direction: column; gap: 0.5rem; margin-bottom: 2.5rem; }

  .cards { grid-template-columns: 1fr; }
  .card { padding: 2rem; }

  .pillars { grid-template-columns: 1fr; gap: 2.5rem; }

  .founder { grid-template-columns: 1fr; gap: 2rem; }
  .founder__photo-col { max-width: 360px; }
  .founder__portrait { aspect-ratio: 4 / 5; }

  .founder__tags { margin-top: 1rem; padding-top: 1rem; }

  .contact { grid-template-columns: 1fr; gap: 4rem; }

  .footer {
    padding: 2rem var(--gutter);
  }
  .footer__row {
    flex-direction: column; gap: 1.5rem;
    text-align: center;
  }
  .footer__nav { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up { opacity: 1; transform: none; }
  .eyebrow__line { transform: scaleX(1); }
  body { cursor: auto; }
  .cursor { display: none; }
}