/* ============================================================
   STRATEGIC BRAND INVESTMENTS — Design System
   styles.css
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --cream:       #E5DFD9;      /* Snowfall — primary background */
  --stone:       #CCC3BE;      /* Temple Grey — secondary background */
  --parchment:   #DBCFB3;      /* Frozen Dew — borders & accents */
  --charcoal:    #635D56;      /* Dark Night — primary text (accent) */
  --warm-grey:   #948578;      /* Roasted Cashew — secondary text */
  --olive:       #948578;      /* Roasted Cashew — tertiary */
  --forest:      #635D56;      /* Dark Night — dark sections */
  --sand:        #DBCFB3;      /* Frozen Dew — accent */

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --section-pad: 130px;
  --max-width:   1240px;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
}

body.loaded { opacity: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Skip-to-content link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--charcoal);
  color: var(--cream);
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 0;
}

/* --- Screen-reader only utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Keyboard Focus Indicators --- */
*:focus-visible {
  outline: 2px solid var(--charcoal);
  outline-offset: 3px;
}

.footer *:focus-visible,
.cookie-banner *:focus-visible {
  outline-color: var(--cream);
}

.form-input:focus-visible,
.form-textarea:focus-visible,
.form-select:focus-visible {
  outline: none;
  border-bottom-color: var(--charcoal);
}

/* --- Noise Texture Overlay --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}

/* ============================================================
   LOGO TICKER / MARQUEE
   ============================================================ */

.logo-ticker {
  background: var(--cream);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: 80px; /* clear fixed nav */
  isolation: isolate; /* contain blend modes */
}

.logo-ticker::before,
.logo-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.logo-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--cream) 20%, transparent);
}
.logo-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--cream) 20%, transparent);
}

.logo-ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 35s linear infinite;
  will-change: transform;
}

.ticker-set {
  display: flex;
  align-items: center;
  gap: 72px;
  padding: 0 36px;
  flex-shrink: 0;
}

.ticker-logo {
  height: 28px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%) contrast(999%); /* contrast forces near-white → pure white */
  mix-blend-mode: multiply; /* pure white × cream = invisible; dark stays dark */
  opacity: 0.85;
  flex-shrink: 0;
  transition: opacity 0.3s var(--ease);
  display: block;
}

.ticker-logo:hover { opacity: 0.9; }

/* Logos with dark/black backgrounds — invert + max contrast for clean multiply */
.ticker-logo--invert {
  filter: invert(1) grayscale(100%) contrast(999%);
}

.ticker-logo--text {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  white-space: nowrap;
  line-height: 38px;
  mix-blend-mode: multiply;
}

.ticker-logo--sm   { height: 20px; }
.ticker-logo--md   { height: 38px; }
.ticker-logo--oval { height: 65px; }
.ticker-logo--lg   { height: 52px; }
.ticker-logo--xl   { height: 30px; max-width: 220px; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-ticker-track { animation: none; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal { opacity: 1 !important; transform: none !important; }
  [data-hero-stagger] { opacity: 1 !important; transform: none !important; }
  body { opacity: 1 !important; }
}

/* ============================================================
   LOGO IMAGE
   ============================================================ */

.logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.2s var(--ease);
}

.logo-img:hover { opacity: 0.8; }

/* ============================================================
   FOUNDER PHOTO
   ============================================================ */

.founders-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin: 40px 0;
}

.founders-photo {
  position: relative;
  overflow: hidden;
}

.founders-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.4s var(--ease);
}

.founders-photo:hover img { filter: grayscale(0%); }

.founders-caption {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3a3530;
  margin-top: 14px;
}

/* ============================================================
   BIOS
   ============================================================ */

.bios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 48px;
}

.bio-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.bio-title {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 24px;
}

.bio-card p {
  color: var(--warm-grey);
  margin-bottom: 16px;
}

/* ============================================================
   PORTFOLIO LOGO CARDS
   ============================================================ */

.port-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--stone);
}

.port-logo-card {
  background: var(--cream);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: background 0.3s var(--ease);
}

.port-logo-card:hover { background: var(--stone); }

.port-logo-img {
  width: 100%;
  height: 72px;
  object-fit: contain;
  object-position: left center;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: opacity 0.25s var(--ease), filter 0.25s var(--ease);
}

.port-logo-card:hover .port-logo-img {
  opacity: 1;
  filter: grayscale(0%);
}

.port-logo-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
}

.port-logo-category {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
}

/* Hero with background image */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s var(--ease-out);
}

.hero-bg.loaded { opacity: 0.06; }

/* Products image in about/portfolio */
.products-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 64px 0;
}

@media (max-width: 1100px) {
  .founders-block { grid-template-columns: 1fr; gap: 40px; }
  .founders-photo img { height: 380px; }
  .bios-grid { grid-template-columns: 1fr; gap: 48px; }
  .port-logo-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .port-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .founders-photo img { height: 300px; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 28px 0;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(245, 241, 235, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 0;
  border-bottom-color: var(--stone);
}

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

.logo {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #3a3530;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 44px;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3a3530;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--charcoal);
  transition: width 0.28s var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 201;
}

.nav-toggle span {
  display: block;
  width: 22px; height: 1px;
  background: var(--charcoal);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

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

.eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--sand);
  flex-shrink: 0;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #3a3530;
  margin-bottom: 48px;
  display: block;
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 104px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.015em;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
  line-height: 1.2;
}

.overline {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

p {
  font-size: 16px;
  line-height: 1.85;
  font-weight: 300;
}

.body-lg {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;
}

.muted { color: var(--warm-grey); }

.pull-quote {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 46px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
  color: var(--charcoal);
}

/* ============================================================
   LINKS & CTAS
   ============================================================ */

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--parchment);
  padding-bottom: 4px;
  transition: border-color 0.22s var(--ease);
}

.link-arrow .arr {
  display: inline-block;
  transition: transform 0.2s var(--ease);
  font-style: normal;
}

.link-arrow:hover { border-bottom-color: var(--charcoal); }
.link-arrow:hover .arr { transform: translateX(5px); }

.link-arrow.light {
  color: var(--cream);
  border-bottom-color: rgba(245,241,235,0.25);
}

.link-arrow.light:hover { border-bottom-color: var(--cream); }

.btn {
  display: inline-block;
  padding: 15px 44px;
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--charcoal);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  cursor: pointer;
}

.btn:hover { background: var(--forest); border-color: var(--forest); }

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--parchment);
}

.btn-ghost:hover {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 52px;
}

section { padding: var(--section-pad) 0; }

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */

.hero {
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 96px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(229, 223, 217, 0.55);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 52px;
  width: 100%;
}

.hero-inner .eyebrow {
  font-size: 16px;
  letter-spacing: 0.32em;
}

.hero-inner .eyebrow::before {
  display: none;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7.5vw, 112px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  max-width: 920px;
  margin-bottom: 52px;
}

.hero-headline em {
  font-style: italic;
  color: var(--charcoal);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal);
  max-width: 380px;
  line-height: 1.75;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-year {
  font-family: var(--font-serif);
  font-size: 11px;
  font-style: italic;
  color: var(--parchment);
  letter-spacing: 0.05em;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  z-index: 2;
  bottom: 48px;
  right: 52px;
  writing-mode: vertical-rl;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--parchment);
  display: flex;
  align-items: center;
  gap: 10px;
}

.scroll-hint::before {
  content: '';
  display: block;
  width: 1px;
  height: 32px;
  background: var(--parchment);
}

/* ============================================================
   THESIS PILLARS
   ============================================================ */

.thesis {
  background: var(--stone);
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

.thesis .container { position: relative; }

.thesis-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 40px;
}

.thesis-header h2 { max-width: 480px; }

.thesis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--parchment);
}

.thesis-card {
  background: var(--stone);
  padding: 60px 48px 56px;
  transition: background 0.32s var(--ease);
}

.thesis-card:hover { background: var(--cream); }

.thesis-numeral {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  display: block;
  margin-bottom: 36px;
  transition: color 0.32s var(--ease);
}

.thesis-card:hover .thesis-numeral { color: var(--charcoal); }

.thesis-card h3 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 18px;
}

.thesis-card p {
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--warm-grey);
}

/* ============================================================
   CREDIBILITY
   ============================================================ */

.credibility {
  background: var(--cream);
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.credibility-heading {
  margin-bottom: 56px;
}

.credibility-h2 {
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: 1.05;
  margin-top: 12px;
  max-width: 900px;
}

.credibility-h2 em {
  font-style: italic;
  color: var(--warm-grey);
}

.credibility-founders-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: start;
}

.credibility-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}

.credibility-inner {
  max-width: 100%;
  margin: 0;
  text-align: left;
  padding-top: 16px;
}

.credibility-inner h2 { margin-bottom: 40px; }

.credibility-inner .body-lg {
  color: var(--warm-grey);
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .credibility-founders-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .credibility-photo img {
    aspect-ratio: 4 / 3;
    height: auto;
  }
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--parchment);
  margin: 52px auto;
}

.pull-quote-block {
  position: relative;
  padding: 48px 0 40px;
  text-align: center;
}

.pull-quote-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1px;
  background: var(--parchment);
  transition: width 1.1s var(--ease-out);
}

.pull-quote-block.visible::before { width: 80%; }

.pull-quote-block .pull-quote { margin-bottom: 20px; }

.pull-quote-attr {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--parchment);
}

/* ============================================================
   PORTFOLIO PREVIEW
   ============================================================ */

.portfolio-preview {
  background: var(--cream);
  border-top: 1px solid var(--stone);
  content-visibility: auto;
  contain-intrinsic-size: auto 700px;
  padding-bottom: 60px;
}

.portfolio-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 32px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--stone);
}

.port-card {
  background: var(--cream);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.32s var(--ease);
}

.port-card:hover { background: #EDE8E3; }

.port-card-headshots {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 32px;
}

.port-card-headshot {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.port-card-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(100%);
}

.port-card-category {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 20px;
  display: block;
}

.port-card-name {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 16px;
  transition: color 0.25s var(--ease);
}

.port-card:hover .port-card-name { color: var(--olive); }

.port-card-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--warm-grey);
  max-width: 220px;
}

.port-card-year {
  display: block;
  font-family: var(--font-serif);
  font-size: 12px;
  font-style: italic;
  color: var(--parchment);
  margin-top: 36px;
}

.port-card-arrow {
  position: absolute;
  bottom: 44px;
  right: 44px;
  font-size: 18px;
  color: var(--parchment);
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.port-card:hover .port-card-arrow {
  color: var(--charcoal);
  transform: translate(4px, -2px);
}

/* ============================================================
   PHILOSOPHY TEASER (DARK)
   ============================================================ */

.philosophy-teaser {
  background: var(--forest);
  padding: 148px 0;
}

.philosophy-teaser-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 52px;
  text-align: center;
}

.philosophy-teaser .section-label { color: rgba(245,241,235,0.35); }

.philosophy-teaser h2 {
  color: var(--cream);
  font-style: italic;
  margin-bottom: 32px;
}

.philosophy-teaser p {
  color: rgba(245,241,235,0.6);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 52px;
}

/* ============================================================
   CONTACT CTA
   ============================================================ */

.cta-band {
  background: var(--cream);
  border-top: 1px solid var(--stone);
  padding: 120px 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 300px;
}

.cta-band-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.cta-band h2 { max-width: 580px; }

.cta-band-right { flex-shrink: 0; text-align: right; }

.cta-band-note {
  font-size: 13px;
  color: var(--warm-grey);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 28px;
}

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

.footer {
  background: var(--charcoal);
  padding: 72px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(245,241,235,0.09);
  margin-bottom: 36px;
}

.footer-brand {}

.footer-logo {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--cream);
  display: block;
  margin-bottom: 10px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  color: rgba(245,241,235,0.35);
}

.footer-nav {
  display: flex;
  gap: 36px;
}

.footer-nav a {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,241,235,0.45);
  transition: color 0.2s var(--ease);
}

.footer-nav a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 11px;
  color: rgba(245,241,235,0.25);
  letter-spacing: 0.05em;
}

.footer-contact-link {
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  color: rgba(245,241,235,0.4);
  transition: color 0.2s var(--ease);
}

.footer-contact-link:hover { color: var(--cream); }

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

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.45s; }
.reveal-delay-5 { transition-delay: 0.55s; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  padding-top: 128px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--stone);
}

.page-hero .eyebrow {
  font-size: 13px;
  letter-spacing: 0.28em;
}

.page-hero h1 {
  font-size: clamp(44px, 5.5vw, 88px);
  max-width: 820px;
  margin-bottom: 24px;
}

.page-hero .subhead {
  font-size: 17px;
  color: var(--warm-grey);
  max-width: 500px;
  line-height: 1.78;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.about-story-text p { margin-bottom: 20px; color: var(--warm-grey); }
.about-story-text p:last-child { margin-bottom: 0; }

.about-aside {
  padding-top: 8px;
}

.about-aside-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--parchment);
  display: block;
  margin-bottom: 16px;
}

.about-aside-quote {
  font-family: var(--font-serif);
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
  color: var(--charcoal);
  padding-left: 24px;
  border-left: 1px solid var(--parchment);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--stone);
  margin: 40px 0;
}

.stat-cell {
  background: var(--cream);
  padding: 32px 40px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  color: var(--charcoal);
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

.what-we-bring { border-top: 1px solid var(--stone); }

.ww-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  padding: 44px 0;
  border-bottom: 1px solid var(--stone);
  align-items: start;
}

.ww-item h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.3;
}

.ww-item p {
  font-size: 15px;
  color: var(--warm-grey);
  line-height: 1.8;
}

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */

.portfolio-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--stone);
}

.port-card-full {
  background: var(--cream);
  padding: 56px 48px;
  position: relative;
  transition: background 0.3s var(--ease);
}

.port-card-full:hover { background: #EDE8E3; }

.prior-investment {
  background: var(--forest);
  padding: 88px 0;
  margin-top: 2px;
}

.prior-inner {
  max-width: 760px;
}

.prior-inner .section-label { color: rgba(245,241,235,0.35); }

.prior-inner h2 {
  color: var(--cream);
  margin-bottom: 28px;
}

.prior-inner p {
  color: rgba(245,241,235,0.6);
  font-size: 16px;
  line-height: 1.85;
}

.port-note {
  padding-top: 56px;
  border-top: 1px solid var(--stone);
  margin-top: 56px;
}

.port-note p {
  font-size: 13px;
  color: var(--warm-grey);
  font-style: italic;
  max-width: 600px;
}

/* ============================================================
   INVESTMENT CRITERIA PAGE
   ============================================================ */

.criteria-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.criteria-intro h2 { margin-bottom: 24px; }
.criteria-intro p { color: var(--warm-grey); font-size: 16px; margin-bottom: 16px; }

.criteria-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--stone);
  margin: 80px 0 0;
}

.criteria-block {
  background: var(--cream);
  padding: 60px 52px;
}

.criteria-block h4 {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 28px;
}

.criteria-block h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.criteria-block p {
  font-size: 15px;
  color: var(--warm-grey);
  line-height: 1.8;
  margin-bottom: 12px;
}

.criteria-list {
  margin-top: 8px;
}

.criteria-list li {
  font-size: 15px;
  color: var(--warm-grey);
  line-height: 1.5;
  padding: 12px 0;
  border-bottom: 1px solid var(--stone);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.criteria-list li::before {
  content: '—';
  color: var(--parchment);
  flex-shrink: 0;
  line-height: 1.5;
}

.criteria-list li:last-child { border-bottom: none; }

.not-for-us {
  background: var(--stone);
  padding: 80px 0;
}

.not-for-us-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.not-for-us h3 { font-size: 30px; max-width: 220px; line-height: 1.15; }

.not-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--parchment);
}

.not-list li {
  font-size: 15px;
  color: var(--warm-grey);
  padding: 20px 0;
  border-bottom: 1px solid var(--parchment);
  padding-right: 32px;
  line-height: 1.55;
}

.criteria-cta {
  padding: 100px 0;
  text-align: center;
}

.criteria-cta h2 { margin-bottom: 20px; }
.criteria-cta p { color: var(--warm-grey); font-size: 16px; max-width: 460px; margin: 0 auto 40px; }

/* ============================================================
   FOUNDER PHILOSOPHY PAGE
   ============================================================ */

.philosophy-intro {
  max-width: 680px;
  margin-bottom: 80px;
}

.philosophy-intro p {
  font-size: 18px;
  color: var(--warm-grey);
  line-height: 1.85;
}

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

.principle {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 56px;
  padding: 80px 0;
  border-bottom: 1px solid var(--stone);
  align-items: start;
}

.principle-num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--parchment);
  line-height: 1;
  margin-top: 4px;
}

.principle-content h3 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 24px;
}

.principle-content p {
  font-size: 16px;
  color: var(--warm-grey);
  line-height: 1.88;
  max-width: 620px;
}

.principle-content p + p { margin-top: 16px; }

.philosophy-closing {
  background: var(--forest);
  padding: 120px 0;
  text-align: center;
}

.philosophy-closing-inner { max-width: 780px; margin: 0 auto; padding: 0 52px; }

.philosophy-closing .pull-quote {
  color: var(--cream);
  font-size: clamp(24px, 3vw, 44px);
  margin-bottom: 48px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: start;
}

.contact-left h2 { font-size: 48px; margin-bottom: 28px; color: #3a3530; }

.contact-left p {
  font-size: 16px;
  color: var(--warm-grey);
  line-height: 1.85;
  margin-bottom: 16px;
}

.contact-details {
  margin-top: 52px;
  border-top: 1px solid var(--stone);
  padding-top: 40px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--stone);
}

.contact-detail-item:last-child { border-bottom: none; }

.cd-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  width: 96px;
  flex-shrink: 0;
  padding-top: 2px;
}

.cd-value {
  font-size: 15px;
  color: var(--warm-grey);
}

.contact-form { padding-top: 4px; }

.form-group { margin-bottom: 28px; }

.form-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 10px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--parchment);
  padding: 10px 0 12px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal);
  transition: border-color 0.22s var(--ease);
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-bottom-color: var(--charcoal); }

.form-input::placeholder,
.form-textarea::placeholder { color: var(--warm-grey); }

.form-textarea { resize: none; height: 110px; line-height: 1.65; }

.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23D9CFBE' fill='none' stroke-width='1'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 4px center; padding-right: 20px; }

.form-note {
  font-size: 12px;
  color: var(--warm-grey);
  line-height: 1.6;
  margin-bottom: 28px;
  font-style: italic;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  :root { --section-pad: 96px; }

  .container,
  .nav-inner,
  .hero-inner,
  .footer-inner { padding: 0 36px; }

  .thesis-grid,
  .portfolio-grid { grid-template-columns: 1fr; }

  .portfolio-full-grid { grid-template-columns: 1fr 1fr; }

  .about-story,
  .contact-layout,
  .criteria-intro { grid-template-columns: 1fr; gap: 56px; }

  .ww-item { grid-template-columns: 180px 1fr; gap: 40px; }

  .not-for-us-inner { grid-template-columns: 1fr; gap: 40px; }

  .not-list { grid-template-columns: 1fr; }

  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .cta-band-right { text-align: left; }

  .stats-row { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px; }

  .container,
  .nav-inner,
  .hero-inner,
  .footer-inner,
  .philosophy-teaser-inner,
  .philosophy-closing-inner { padding: 0 24px; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 199;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 13px; }

  .nav-toggle { display: flex; }

  .hero-headline { font-size: clamp(40px, 9vw, 72px); }
  .hero-bottom { flex-direction: column; align-items: flex-start; }

  .scroll-hint { display: none; }

  .philosophy-teaser { padding: 88px 0; }

  .thesis-card { padding: 48px 32px; }

  .port-card,
  .port-card-full { padding: 44px 32px; }

  .portfolio-full-grid { grid-template-columns: 1fr; }

  .stats-row { grid-template-columns: 1fr; }

  .stat-cell { padding: 40px 32px; }

  .ww-item { grid-template-columns: 1fr; gap: 12px; padding: 36px 0; }

  .principle { grid-template-columns: 1fr; gap: 18px; padding: 56px 0; }

  .criteria-blocks { grid-template-columns: 1fr; }
  .criteria-block { padding: 48px 32px; }

  .contact-details { margin-top: 40px; }

  .footer-top { flex-direction: column; gap: 36px; }
  .footer-nav { flex-wrap: wrap; gap: 20px 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .thesis-header { flex-direction: column; align-items: flex-start; gap: 20px; }

  .portfolio-preview-header { flex-direction: column; align-items: flex-start; }
}

/* ===================== BOOK PAGE ===================== */
.book-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 96px;
  align-items: start;
}

.book-cover-wrap {
  position: sticky;
  top: 120px;
}

.book-cover-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.22));
}

.book-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 8px;
}

.book-author {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3a3530;
  margin-bottom: 48px;
}

.book-copy p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--warm-grey);
  margin-bottom: 24px;
}

.book-copy p em {
  font-style: italic;
  color: var(--charcoal);
}

.book-cta {
  margin-top: 48px;
}

@media (max-width: 900px) {
  .book-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .book-cover-wrap {
    position: static;
    max-width: 320px;
  }
}

/* ============================================================
   BRAND PORTFOLIO CARDS
   ============================================================ */
.brand-grid-section {
  background: var(--cream);
  padding: 80px 0 100px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.brand-card {
  background: var(--cream);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--stone);
}

.brand-card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--stone);
}

.brand-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.brand-card:hover .brand-card-img-wrap img {
  transform: scale(1.04);
}

.brand-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.brand-card-body {
  padding: 28px 28px 32px;
}

.brand-card-name {
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 10px;
  line-height: 1.2;
}

.brand-card-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.72;
  color: var(--warm-grey);
  margin: 0 0 22px;
}
.brand-card-exit-note {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 12px;
  color: var(--warm-grey);
  margin: 0;
}
.brand-card-link {
  margin-top: 18px;
  font-size: 12px;
}

.brand-card-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--charcoal);
  padding: 6px 14px;
  border-radius: 100px;
}

@media (max-width: 960px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .brand-grid {
    grid-template-columns: 1fr;
  }
  .brand-grid-section {
    padding: 56px 0 80px;
  }
}

/* ============================================================
   LEGAL / PROSE PAGES
   ============================================================ */

.legal-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 24px var(--section-pad);
}

.legal-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  margin: 56px 0 16px;
  line-height: 1.25;
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body h3 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin: 40px 0 12px;
}

.legal-body p {
  font-size: 14px;
  font-weight: 300;
  color: var(--warm-grey);
  line-height: 1.85;
  margin-bottom: 16px;
}

.legal-body ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.legal-body ul li {
  font-size: 14px;
  font-weight: 300;
  color: var(--warm-grey);
  line-height: 1.85;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}

.legal-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 1px;
  background: var(--parchment);
}

.legal-body a {
  color: var(--charcoal);
  border-bottom: 1px solid var(--parchment);
  transition: border-color 0.2s var(--ease);
}

.legal-body a:hover {
  border-color: var(--charcoal);
}

.legal-body .legal-updated {
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  color: var(--parchment);
  margin-bottom: 48px;
}

/* ============================================================
   FOOTER — Legal Links Row
   ============================================================ */

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(245,241,235,0.06);
  flex-wrap: wrap;
}

.footer-legal a {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(245,241,235,0.25);
  transition: color 0.2s var(--ease);
}

.footer-legal a:hover {
  color: rgba(245,241,235,0.6);
}

.footer-legal-sep {
  color: rgba(245,241,235,0.12);
  font-size: 10px;
  user-select: none;
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--charcoal);
  border-top: 1px solid rgba(245,241,235,0.08);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.45s var(--ease-out), opacity 0.45s var(--ease-out);
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(245,241,235,0.65);
  line-height: 1.6;
  margin: 0;
}

.cookie-banner a {
  color: var(--cream);
  border-bottom: 1px solid rgba(245,241,235,0.3);
  transition: border-color 0.2s var(--ease);
}

.cookie-banner a:hover {
  border-color: var(--cream);
}

.cookie-btn {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--cream);
  border: none;
  padding: 10px 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s var(--ease);
}

.cookie-btn:hover {
  opacity: 0.85;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 20px 24px;
    text-align: center;
  }

  .footer-legal {
    gap: 12px 20px;
    justify-content: center;
  }
}
