:root {
  --content-width: 1180px;
  --text-width: 720px;
  --narrow-width: 560px;
  --section-padding: 130px 6vw;
  --navy: #10213f;
  --navy-light: #18345e;
  --navy-dark: #0b172c;
  --cream: #f6f0e7;
  --cream-light: #fbf8f2;
  --gold: #b8904f;
  --gold-logo: #b88a3b;
  --gold-soft: #d7bd85;
  --ink: #1d2430;
  --slate: #6B7280;
  --muted: #667085;
  --white: #ffffff;
  --line: rgba(16, 33, 63, 0.14);
  --shadow: 0 28px 80px rgba(16, 33, 63, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* RESET */

* {
  box-sizing: border-box;
}

main,
section,
div,
article {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream-light);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

p {
  margin-top: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 999;
}

.skip-link:focus {
  left: 1rem;
}

/* TYPOGRAPHY */

.eyebrow,
.experience-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.02;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.1rem, 4.8vw, 5.2rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

/* GLOBAL IMAGE SYSTEM */

.image-frame {
  overflow: hidden;
  border-radius: 24px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.container {
    width: min(1180px, calc(100% - 12vw));
    margin-inline: auto;
}

/* BUTTONS */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 1.6rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(16,33,63,.12);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  border: 1px solid rgba(16, 33, 63, 0.16);
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--navy);
  font-weight: 800;
  border-bottom: 1px solid var(--gold);
}

/* HEADER */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 20px 32px;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 242, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 45px rgba(16, 33, 63, 0.1);
  padding: 12px 32px;
}

.nav-shell {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-text {
  display: grid;
  gap: 4px;
  color: var(--navy);
}

.brand-capaco {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}

.brand-group {
  font-family: var(--serif);
  font-size: clamp(1.0rem, 2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}

.brand-line {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--slate);
  font-weight: 800;
}

.brand-capaco{
  color: var(--navy);
}

.brand-group{
  color: var(--gold);
  margin-left: 0.18em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.main-nav a {
  position: relative;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(16, 33, 63, 0.12);
  transition: background 0.25s ease, transform 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--navy-dark);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
}

/* HERO */

.hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  padding: 130px 28px 88px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(125deg, rgba(251, 248, 242, 0.96), rgba(255, 255, 255, 0.88)),
    linear-gradient(135deg, var(--cream-light), var(--cream));
}

.hero-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-stage::before {
  display: none;
}

.hero-plane {
  position: absolute;
  border: 1px solid rgba(184, 144, 79, 0.25);
  background: rgba(255, 255, 255, 0.26);
}

.plane-one {
  width: 44vw;
  height: 34vw;
  right: -10vw;
  top: 16vh;
  transform: rotate(-11deg);
}

.plane-two {
  width: 30vw;
  height: 20vw;
  right: 16vw;
  bottom: 8vh;
  transform: rotate(9deg);
}

.plane-three {
  width: 28vw;
  height: 28vw;
  left: -12vw;
  bottom: 12vh;
  transform: rotate(23deg);
}

.hero-linework span {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 144, 79, 0.6), transparent);
}

.hero-linework span:nth-child(1) {
  width: 58vw;
  right: -8vw;
  top: 28%;
  transform: rotate(-18deg);
}

.hero-linework span:nth-child(2) {
  width: 36vw;
  left: -4vw;
  bottom: 26%;
  transform: rotate(24deg);
}

.hero-linework span:nth-child(3) {
  width: 28vw;
  right: 24vw;
  bottom: 16%;
  transform: rotate(-7deg);
}

.hero-linework span:nth-child(4) {
  width: 22vw;
  left: 22vw;
  top: 22%;
  transform: rotate(13deg);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 56px;
  align-items: center;
}

.hero-copy-text {
  max-width: 520px;
  margin: 26px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.65;
  color: #465369;

  opacity: 0;
  transform: translateY(12px);
  animation: heroReveal 0.9s ease 1.0s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;

  opacity: 0;
  transform: translateY(12px);
  animation: heroReveal 1.2s ease 1.70s forwards;
}

.hero-architecture {
  position: relative;
  min-height: 500px;
}

.arch-frame,
.arch-image,
.arch-lines span {
  position: absolute;
  display: block;
}

.arch-frame-large {
  width: 520px;
  height: 360px;
  right: -44px;
  top: 26px;
  border: 1px solid rgba(184, 144, 79, 0.34);
  background: rgba(255, 255, 255, 0.2);
}

.arch-frame-small {
  width: 310px;
  height: 210px;
  left: 18px;
  bottom: 40px;
  border: 1px solid rgba(16, 33, 63, 0.14);
  background: rgba(246, 240, 231, 0.55);
}

.arch-image-main {
  width: 455px;
  height: 315px;
  right: 34px;
  top: 112px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(16, 33, 63, 0.16);
  background-image:
    linear-gradient(rgba(16, 33, 63, 0.18), rgba(16, 33, 63, 0.05)),
    url("/images/hero-main.jpg");
  background-size: cover;
  background-position: center;
}

.arch-image-offset {
  width: 250px;
  height: 175px;
  left: 0;
  bottom: 76px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(16, 33, 63, 0.12);
  background-image:
    linear-gradient(rgba(16, 33, 63, 0.16), rgba(16, 33, 63, 0.06)),
    url("/images/hero-detail.jpg");
  background-size: cover;
  background-position: center;
}

.arch-lines span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 144, 79, 0.75), transparent);
}

.arch-lines span:nth-child(1) {
  width: 520px;
  right: -30px;
  top: 105px;
}

.arch-lines span:nth-child(2) {
  width: 360px;
  left: -20px;
  bottom: 215px;
}

.arch-lines span:nth-child(3) {
  width: 280px;
  right: 95px;
  bottom: 70px;
}

/* HOMEPAGE: CREDIBILITY STRIP */

.credibility-strip {
  background: var(--navy);
  color: var(--gold-soft);
  overflow: hidden;
  padding: 18px 0;
}

.strip-track {
  display: flex;
  width: max-content;
  gap: 38px;
  padding-left: 6vw;
  animation: stripMove 34s linear infinite;
}

.strip-track span {
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
}

@keyframes stripMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-35%);
  }
}

/* HOMEPAGE: EXPERIENCE */

.experience {
  background: var(--white);
  padding: var(--section-padding);
  display: grid;
  gap: clamp(56px, 8vw, 90px);
}

.experience-row {
  max-width: var(--content-width);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.experience-row.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.experience-row.reverse .experience-image {
  order: 2;
}

.experience-image {
  min-height: 330px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.image-left {
  background-image:
    linear-gradient(rgba(16, 33, 63, 0.25), rgba(16, 33, 63, 0.12)),
    url("/images/clarity.jpg");
}

.image-center {
  background-image:
    linear-gradient(rgba(16, 33, 63, 0.32), rgba(16, 33, 63, 0.12)),
    url("/images/confidence.jpg");
}

.image-right {
  background-image:
    linear-gradient(rgba(16, 33, 63, 0.24), rgba(16, 33, 63, 0.1)),
    url("/images/trust.jpg");
}

.experience-copy {
  padding: clamp(10px, 3vw, 32px);
}

.experience-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.06rem;
}

/* HOMEPAGE: WHO WE SERVE */

.audiences {
  padding: var(--section-padding);
  background: var(--white);
}

.audience-layout {
  display: grid;
  align-items: start;
}

.audience-intro h2 {
  max-width: 360px;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.audience-item {
  padding: 0 18px;
  border-left: 1px solid rgba(16,33,63,.14);
}

.audience-item h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  margin-bottom: 0.75rem;
}

.audience-item p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.audience-side-image {
  min-height: 420px;
  background-image:
    linear-gradient(rgba(16, 33, 63, 0.18), rgba(16, 33, 63, 0.04)),
    url("/images/business.jpg");
  background-size: cover;
  background-position: center;
}

/* HOMEPAGE: PROMISE */

.promise {
  padding: var(--section-padding);
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.promise::after {
  content: "";
  position: absolute;
  right: -18vw;
  top: -20vw;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(215, 189, 133, 0.18);
}

.promise-grid {
  position: relative;
  z-index: 2;
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(44px, 7vw, 90px);
  align-items: center;
}

.promise h2,
.promise .promise-right p {
  color: var(--white);
}

.promise-right {
  border-left: 1px solid rgba(215, 189, 133, 0.46);
  padding-left: 42px;
}

.promise-right p {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
  margin: 0 0 28px;
}

.promise .text-link {
  color: var(--gold-soft);
}

/* HOMEPAGE: SERVICES */

.services {
  padding: var(--section-padding);
  background: var(--white);
}

.section-intro {
    max-width: 760px;
    margin: 0 auto 72px;
    text-align: center;
}

.services-layout {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.service-tile {
  grid-column: span 3;
  min-height: 230px;
  padding: 10px 0 34px;
  position: relative;
  display: flex;
  align-items: flex-end;
  border-top: 1px solid rgba(16, 33, 63, 0.16);
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.service-tile:hover {
  transform: none;
  border-color: var(--gold);
}

.service-wide {
  grid-column: span 3;
}

.service-tile::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.service-tile:hover::before {
  width: 100%;
}

.service-content {
  max-width: 520px;
}

.service-content h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 14px;
}

.service-content p {
  max-width: 430px;
  color: var(--muted);
}

/* HOMEPAGE: PROCESS */

.process {
  padding: var(--section-padding);
  background: var(--white);
}

.process-flow {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 4vw, 54px);
}

.process-step {
  padding-top: 18px;
}

.process-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), rgba(184, 144, 79, 0));
  margin-bottom: 30px;
  transform-origin: left;
  transition: transform 0.35s ease;
}

.process-step:hover .process-line {
  transform: scaleX(1.08);
}

.process-step h3 {
  font-family: var(--serif);
  font-size: 2rem;
}

.process-step p {
  color: var(--muted);
}

/* HOMEPAGE: DIFFERENCE */

.difference {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
}

.difference-intro,
.difference-layout {
  max-width: var(--content-width);
  margin: 0 auto;
}

.difference-intro {
  margin-bottom: 56px;
}

.difference h2 {
  color: var(--white);
  max-width: 820px;
}

.difference-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  gap: clamp(40px, 6vw, 72px);
}

.difference-statement {
  font-size: 1.2rem;
  color: #dbe2ef;
}

.difference-stats {
  display: grid;
  gap: 18px;
}

.stat {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.14);
  display: grid;
  grid-template-columns: minmax(150px, 180px) minmax(0, 1fr);
  align-items: baseline;
  gap: 32px;
}

.stat:last-child {
    border-bottom: 1px solid rgba(255,255,255,.14);
}

.stat strong {
    font-family: var(--serif);
    font-size: clamp(3rem,4vw,4.4rem);
    line-height: .9;
    color: var(--gold-soft);
}

.stat span {
  color: #dbe2ef;
  font-size: 1rem;
  line-height: 1.6;
  overflow-wrap: normal;
}

/* HOMEPAGE: RESOURCES */

.resources {
  padding: var(--section-padding);
  background: var(--cream);
  display: grid;
  grid-template-columns: minmax(260px, 440px) minmax(0, 720px);
  gap: clamp(40px, 7vw, 92px);
  justify-content: center;
  align-items: start;
}

.resources-left p {
  color: var(--muted);
  font-size: 1.06rem;
}

.resources-right {
  display: grid;
  gap: 20px;
}

.resource-card {
  display: block;
  padding: 26px 0;
  border-top: 1px solid rgba(16, 33, 63, 0.14);
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.resource-card:hover {
  transform: none;
  border-color: var(--gold);
}

.resource-card small {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 800;
}

.resource-card h3 {
  font-family: var(--serif);
  font-size: 2rem;
  margin: 10px 0 8px;
}

.resource-card p {
  max-width: 520px;
  color: var(--muted);
  margin: 0;
}

/* HOMEPAGE: FOUNDER */

.founder {
  padding: var(--section-padding);
  background: var(--white);
  display: grid;
  grid-template-columns: minmax(280px, 440px) minmax(0, 690px);
  gap: clamp(44px, 7vw, 90px);
  justify-content: center;
  align-items: center;
}

.founder-photo {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-content p {
  color: var(--muted);
  font-size: 1.06rem;
}

/* FINAL CTA */

.conversation {
 padding: var(--section-padding);
  background: var(--cream-light);
}

.conversation-panel {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 76px);
  border-radius: 28px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.conversation-panel::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(215,189,133,0.25);
  border-radius: 22px;
}

.conversation-panel > * {
  position: relative;
  z-index: 2;
}

.conversation h2 {
  color: var(--white);
}

.conversation p {
  max-width: 700px;
  margin: 22px auto 0;
  color: #dbe2ef;
  font-size: 1.06rem;
}

.conversation-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.conversation .button-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: none;
}

/* FOOTER */

.site-footer {
  background: var(--navy-dark);
  color: #dbe2ef;
  padding: 70px 28px 28px;
}

.footer-grid {
  max-width: var(--content-width, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, minmax(120px, 1fr));
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}

.footer-logo {
  width: 280px;
  height: auto;
  filter: brightness(1.2);
}

.site-footer h3 {
  color: var(--white);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.site-footer a {
  display: block;
  color: #c7d0df;
  margin: 10px 0;
  font-size: 0.95rem;
}

.site-footer a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  max-width: var(--content-width);
  margin: 54px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.9rem;
  color: #aeb8c7;
}

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

.about-main{
    background:var(--cream-light);
}

/* ---------- Hero ---------- */

.about-hero-v2{
    min-height:78vh;
    display:grid;
    align-items:center;
    justify-items:center;
    padding:
        clamp(120px,14vw,180px)
        clamp(32px,5vw,60px)
        clamp(90px,10vw,120px);
    background:var(--cream-light);
    text-align:center;
}

.about-hero-copy{
    max-width:760px;
}

.about-hero-copy h1{
    margin:18px 0 28px;
}

.about-hero-copy p:last-child{
    max-width:620px;
    margin:auto;
}

/* ---------- Belief ---------- */

.about-belief-v2{
    background:#fff;
    padding:
        clamp(90px,10vw,120px)
        32px;
}

.about-belief-inner{
    max-width:820px;
    margin:auto;
    text-align:center;
}

.about-belief-inner h2{
    margin:18px 0 26px;
}

/* ---------- Founder ---------- */

.about-founder-v2{
    max-width:1180px;
    margin:auto;
    padding:
        clamp(90px,10vw,130px)
        32px;

    display:grid;
    grid-template-columns:420px 1fr;
    gap:90px;
    align-items:center;
}

.about-founder-image img{
    width:100%;
    display:block;
    border-radius:30px;
    box-shadow:var(--shadow-soft);
}

.about-founder-copy-v2 h2{
    margin:18px 0 26px;
}

.about-founder-copy-v2 p{
    max-width:560px;
}

/* ---------- Principles ---------- */

.about-principles{
    background:#fff;
    padding:
        clamp(90px,10vw,120px)
        32px;
}

.about-principles .section-intro{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.about-principles-list{
    max-width:960px;
    margin:auto;
}

.about-principle{
    display:grid;
    grid-template-columns:260px 1fr;
    gap:40px;

    padding:34px 0;

    border-top:1px solid rgba(16,33,63,.10);
}

.about-principle:last-child{
    border-bottom:1px solid rgba(16,33,63,.10);
}

.about-principle h3{
    margin:0;
}

/* ---------- Quote ---------- */

.about-quote-v2{
    padding:
        clamp(100px,12vw,140px)
        32px;

    background:var(--cream);

    text-align:center;
}

.about-quote-v2 blockquote{
    max-width:880px;
    margin:auto;

    font-family:var(--font-display);
    font-size:clamp(2.2rem,4vw,3.5rem);
    line-height:1.18;
}

.about-quote-v2 p{
    margin-top:30px;
    color:var(--gold);
    font-weight:600;
}

/* ---------- Responsive ---------- */

@media (max-width:900px){

.about-founder-v2{
    grid-template-columns:1fr;
    gap:50px;
}

.about-founder-image{
    max-width:420px;
    margin:auto;
}

.about-principle{
    grid-template-columns:1fr;
    gap:14px;
}

}
/* FINAL HOMEPAGE LAYOUT */

.hero {
  padding: 0;
}

.hero-inner {
  max-width: none;
  width: 100%;
  min-height: 780px;
  grid-template-columns: 48% 52%;
  gap: 0;
}

.hero-title {
  max-width: 720px;
  line-height: 1;
}

.hero-title span {
  display: block;
}

.hero-title span + span {
  margin-top: 0.18em;
}

.hero-copy {
  padding: 150px 8vw 110px;
  align-self: center;
}

.hero-copy .eyebrow,
.hero-architecture,
.hero-plane,
.hero-linework {
  display: none !important;
}

.hero-visual {
    min-height: 780px;
    overflow: hidden;

    background-image:
    linear-gradient(
        90deg,
        rgba(251,248,242,.97) 0%,
        rgba(251,248,242,.78) 22%,
        rgba(251,248,242,.18) 46%,
        rgba(251,248,242,0) 70%
    ),
    url("/images/hero-main.jpg");

    background-size: 103%;
    background-position: center right;

    animation: heroImage 12s ease-out forwards;
}

.hero-visual {
    overflow: hidden;
}

@keyframes heroImage {

    from {
        background-size: 102%;
    }

    to {
        background-size: 100%;
    }

}


/* ---------- BRAND STATEMENT ---------- */

.experience.experience-editorial {
    background: var(--white);
    padding: 0;
}

.experience-top {
    display: grid;
    grid-template-columns: 38% 62%;
    min-height: 620px;
}

.experience-statement {
    display: flex;
    align-items: center;
    padding: 7vw;
}

.experience-photo {
    min-height: 620px;
    background:
        linear-gradient(rgba(16,33,63,.08),rgba(16,33,63,.04)),
        url("/images/confidence.jpg");
    background-size: cover;
    background-position: center;
}

.experience-bottom {

    max-width: var(--content-width);

    margin: 0 auto;

    padding: 70px 6vw;

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 70px;

}

.experience-detail {

    border-top: 1px solid rgba(16,33,63,.12);

    padding-top: 26px;

}

.experience-detail h3 {

    font-family: var(--serif);

    font-size: 1.8rem;

    margin-bottom: 12px;

}

.experience-detail p {

    margin: 0;

    color: var(--muted);

    line-height: 1.7;

}

/* border-left: 1px solid rgba(16,33,63,.10); */

.audiences {
  padding: 88px 8vw;
}

.refined-audience {
  max-width: 1280px;
  margin: 0 auto;
  grid-template-columns: 0.7fr 1.6fr;
  gap: 48px;
}

.audience-item {
  padding: 0 22px;
}

.audience-side-image {
  grid-column: 1 / -1;
  min-height: 360px;
  margin-top: 34px;
  margin-right: 0;
}

.founder {
  max-width: none;
  grid-template-columns: 44% 56%;
  gap: 0;
  padding: 0;
}

.founder-photo {
  border-radius: 0;
  box-shadow: none;
}

.founder-content {
  padding: 90px 8vw;
}

.conversation {
  padding: 0;
  background: var(--navy);
}

.conversation-panel {
  max-width: 1240px;
  padding: 58px 8vw;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.conversation-panel::before,
.conversation-panel .eyebrow,
.conversation-panel p {
  display: none;
}

.conversation-actions {
  margin-top: 0;
}

/* ---------- HERO TITLE REVEAL ---------- */

.hero-title span {
    display: block;
    opacity: 0;
    transform: translateY(14px);
    animation: heroReveal 1.0s ease forwards;
}

.hero-title span:nth-child(1) {
    animation-delay: 0.00s;
}

.hero-title span:nth-child(2) {
    animation-delay: 0.00s;
}

.hero-title span:nth-child(3) {
    animation-delay: .00s;
}

@keyframes heroReveal {

    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* ======================================
   OPERATIONS PAGE
====================================== */

.operations-hero {
  min-height: 820px;
  display: grid;
  grid-template-columns: 46% 54%;
  background: var(--cream-light);
}

.operations-hero-copy {
  padding: 185px 8vw 140px;
  align-self: center;
}

.operations-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 4.8vw, 5.2rem);
  line-height: 0.95;
}

.operations-hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.operations-hero-copy .button {
  margin-top: 34px;
}

.operations-hero-image {
  height: 100%;
  min-height: 820px;
  background-image:
    linear-gradient(
      90deg,
      rgba(251,248,242,.92) 0%,
      rgba(251,248,242,.54) 24%,
      rgba(251,248,242,.10) 48%,
      rgba(251,248,242,0) 72%
    ),
    url("/images/operations-conversation.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;

  filter: saturate(.92) brightness(.98) contrast(.94);
}

.operations-statement {
  padding: 150px 8vw;
  background: var(--white);
}

.operations-statement-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.operations-statement-inner h2 {
  max-width: 720px;
  margin: 0 auto;
}

.operations-statement-inner p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.operations-support {
  padding: 130px 8vw;
  background: var(--cream);
}

.operations-list {
  max-width: 1060px;
  margin: 76px auto 0;
  display: grid;
  border-top: 1px solid rgba(16,33,63,.14);
}

.operations-item {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 6vw, 80px);
  padding: 44px 0;
  border-bottom: 1px solid rgba(16,33,63,.14);
}

.operations-item h3 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
}

.operations-item p {
  color: var(--muted);
  margin: 0;
  line-height: 1.75;
  font-size: 1.06rem;
}

.operations-fit {
  padding: 130px 8vw;
  background: var(--white);
}

.operations-fit-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.operations-main .conversation {
  padding: 0;
  background: var(--navy);
}

.operations-main .conversation-panel {
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 8vw;
  border-radius: 0;
  box-shadow: none;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  text-align: left;
}

.operations-main .conversation-panel::before,
.operations-main .conversation-panel .eyebrow {
  display: none;
}

.operations-main .conversation-panel h2 {
  color: var(--white);
  max-width: 760px;
}

.operations-main .conversation-actions {
  margin: 0;
}

/* ======================================
   ADVISORY PAGE
====================================== */

.advisory-hero {
  min-height: 820px;
  display: grid;
  grid-template-columns: 46% 54%;
  background: var(--cream-light);
  align-items: start;
}

.advisory-hero-copy {
  padding: 185px 8vw 140px;
  align-self: center;
}

.advisory-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 4.8vw, 5.2rem);
  line-height: 0.95;
}

.advisory-hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.advisory-hero-copy .button {
  margin-top: 34px;
}

.advisory-hero-image {
  height: 100%;
  min-height: 820px;
  
  background-image:
    linear-gradient(
      90deg,
      rgba(251,248,242,.92) 0%,
      rgba(251,248,242,.54) 24%,
      rgba(251,248,242,.10) 48%,
      rgba(251,248,242,0) 72%
    ),
    url("/images/advisory-discussion.jpg");

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;

  filter: saturate(.92) brightness(.98) contrast(.94);
}

.advisory-statement {
  padding: 150px 8vw;
  background: var(--white);
}

.advisory-statement-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.advisory-statement-inner h2 {
  max-width: 720px;
  margin: 0 auto;
}

.advisory-statement-inner p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.advisory-support {
  padding: 130px 8vw;
  background: var(--cream);
}

.advisory-list {
  max-width: 1060px;
  margin: 76px auto 0;
  display: grid;
  border-top: 1px solid rgba(16,33,63,.14);
}

.advisory-item {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 6vw, 80px);
  padding: 44px 0;
  border-bottom: 1px solid rgba(16,33,63,.14);
}

.advisory-item h3 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
}

.advisory-item p {
  color: var(--muted);
  margin: 0;
  line-height: 1.75;
  font-size: 1.06rem;
}

.advisory-fit {
  padding: 130px 8vw;
  background: var(--white);
}

.advisory-fit-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.advisory-main .conversation {
  padding: 0;
  background: var(--navy);
}

.advisory-main .conversation-panel {
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 8vw;
  border-radius: 0;
  box-shadow: none;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  text-align: left;
}

.advisory-main .conversation-panel::before,
.advisory-main .conversation-panel .eyebrow {
  display: none;
}

.advisory-main .conversation-panel h2 {
  color: var(--white);
  max-width: 760px;
}

.advisory-main .conversation-actions {
  margin: 0;
}

/* ======================================
   CPA PAGE
====================================== */

.cpa-hero {
  min-height: 820px;
  display: grid;
  grid-template-columns: 46% 54%;
  background: var(--cream-light);
}

.cpa-hero-copy {
  padding: 185px 8vw 140px;
  align-self: center;
}

.cpa-hero-image {
  height: 100%;
  min-height: 820px;

  background-image:
    linear-gradient(
      90deg,
      rgba(251,248,242,1) 0%,
      rgba(251,248,242,.98) 10%,
      rgba(251,248,242,.82) 20%,
      rgba(251,248,242,.50) 32%,
      rgba(251,248,242,.14) 44%,
      rgba(251,248,242,0) 56%
    ),
    url("/images/cpa-review.jpg");

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;

  filter: saturate(.92) brightness(.98) contrast(.94);
}

/* ---------- Editorial Statement ---------- */

.cpa-statement {
  padding: 160px 8vw;
  background: var(--white);
}

.cpa-statement-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cpa-statement-inner h2 {
  max-width: 700px;
  margin: 0 auto;
}

.cpa-statement-inner p:not(.eyebrow) {
  max-width: 700px;
  margin: 30px auto 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.08rem;
}

/* ---------- Services ---------- */

.cpa-support {
  padding: 140px 8vw;
  background: var(--white);
}

.cpa-list {
  max-width: 1100px;
  margin: 80px auto 0;
  border-top: 1px solid rgba(16,33,63,.12);
}

.cpa-item {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(40px,6vw,90px);

  padding: 46px 0;

  border-bottom: 1px solid rgba(16,33,63,.12);
}

.cpa-item h3 {
  font-family: var(--serif);
  font-size: clamp(2rem,3vw,2.65rem);
  color: var(--navy);
}

.cpa-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.07rem;
}

/* ---------- Who ---------- */

.cpa-fit {
  padding: 150px 8vw;
  background: var(--cream);
}

.cpa-fit-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

/* ---------- CTA ---------- */

.cpa-main .conversation {
  padding: 0;
  background: var(--navy);
}

.cpa-main .conversation-panel {
  max-width: 1240px;
  margin: 0 auto;

  padding: 110px 8vw;

  background: var(--navy);

  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;

  align-items: center;

  text-align: left;
}

.cpa-main .conversation-panel::before,
.cpa-main .conversation-panel .eyebrow {
  display: none;
}

.cpa-main .conversation-panel h2 {
  color: var(--white);
  max-width: 760px;
}

.cpa-main .conversation-actions {
  margin: 0;
}

/* ==========================================================
   IMPACT PAGE
========================================================== */

.impact-main{
    background:var(--cream-light);
}

/* ---------- Hero ---------- */

.impact-hero{
    min-height: 820px;
    display: grid;
    grid-template-columns: 46% 54%;

    background:var(--cream-light);
}

.impact-hero-copy{
    align-self:center;

    padding: 
        185px
        8vw
        140px;
}

.impact-hero-copy h1{
    max-width:760px;
}

.impact-hero-copy p:last-child{
    max-width:520px;
    margin-top:30px;
}

.impact-hero-image{
  height: 100%;
  min-height: 820px;

  background-image:
    linear-gradient(
      90deg,
      rgba(251,248,242,1) 0%,
      rgba(251,248,242,.96) 10%,
      rgba(251,248,242,.72) 20%,
      rgba(251,248,242,.36) 32%,
      rgba(251,248,242,.08) 44%,
      rgba(251,248,242,0) 54%
    ),
    url("/images/impact-hero.jpg");

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;

  filter: saturate(.92) brightness(.98) contrast(.94);
}

/* ---------- Purpose ---------- */

.impact-purpose{

    background:#fff;

    padding:
        clamp(100px,10vw,130px)
        32px;

}

.impact-purpose-inner{

    max-width:820px;
    margin:auto;

    text-align:center;

}

.impact-purpose-inner h2{

    margin:
        18px
        0
        26px;

}

/* ---------- Focus ---------- */

.impact-focus{

    background:var(--cream);

    padding:
        clamp(110px,11vw,140px)
        32px;

}

.impact-focus .section-intro{

    text-align:center;

    max-width:760px;

    margin:
        auto
        auto
        80px;

}

.impact-list{

    max-width:980px;

    margin:auto;

}

.impact-item{

    display:grid;

    grid-template-columns:
        260px
        1fr;

    gap:42px;

    padding:36px 0;

    border-top:
        1px solid rgba(16,33,63,.10);

}

.impact-item:last-child{

    border-bottom:
        1px solid rgba(16,33,63,.10);

}

/* ---------- Partnership ---------- */

.impact-project{

    max-width:1180px;

    margin:auto;

    padding:
        clamp(100px,10vw,140px)
        32px;

    display:grid;

    grid-template-columns:
        1fr
        1fr;

    gap:90px;

    align-items:center;

}

.impact-project-image img{

    width:100%;

    display:block;

    border-radius:28px;

    box-shadow:var(--shadow-soft);

}

.impact-project-copy h2{

    margin:
        18px
        0
        26px;

}

/* ---------- Results ---------- */

.impact-results{

    background:#fff;

    padding:
        clamp(100px,10vw,130px)
        32px;

}

.impact-results .section-intro{

    text-align:center;

    max-width:760px;

    margin:
        auto
        auto
        70px;

}

.impact-results-grid{

    max-width:980px;

    margin:auto;

    display:grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:28px;

}

.impact-result{

    padding:44px;

    border:
        1px solid rgba(16,33,63,.08);

    background:#fff;

}

.impact-result h3{

    margin:0;

    text-align:center;

}


/* ==========================================================
   CONTACT + THANK YOU
========================================================== */

.contact-main,
.thank-you-main {
  background: var(--cream-light);
}

.contact-hero-v2,
.thank-you-section {
  min-height: 68vh;
  padding: 170px 8vw 110px;
  display: grid;
  align-content: center;
  text-align: center;
}

.contact-hero-v2 h1,
.thank-you-section h1 {
  max-width: 820px;
  margin: 0 auto;
}

.contact-hero-v2 p:not(.eyebrow),
.thank-you-section p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.contact-form-section-v2 {
  padding: 120px 8vw 140px;
  background: var(--white);
}

.contact-form-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.contact-form-intro {
  position: sticky;
  top: 130px;
}

.contact-form-intro h2 {
  margin-bottom: 24px;
}

.contact-form-intro p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.contact-form {
  display: grid;
  gap: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16,33,63,.16);
  background: var(--cream-light);
  padding: 15px 16px;
  border-radius: 14px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184,144,79,.14);
  background: var(--white);
}

.form-security-note {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-form button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.thank-you-actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

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

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.78);
  padding: 72px 8vw 34px;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap: 64px;
  align-items: start;
}

.footer-logo {
  width: 150px;
  height: auto;
  display: block;
  margin-bottom: 26px;
  opacity: .95;
}

.site-footer p {
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
}

.site-footer h3 {
  margin: 0 0 20px;
  font-family: var(--font-sans);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #ffffff;
}

.site-footer a {
  display: block;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  margin-bottom: 13px;
  font-size: .95rem;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  max-width: 1180px;
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.footer-bottom p {
  font-size: .9rem;
  color: rgba(255,255,255,.62);
}

/* ==========================================================
   LEGAL PAGES: TERMS, PRIVACY, SECURITY
========================================================== */

.legal-main {
  background: var(--cream-light);
}

.legal-hero {
  min-height: 62vh;
  padding: 170px 8vw 96px;
  display: grid;
  align-content: center;
  text-align: center;
}

.legal-hero h1 {
  max-width: 820px;
  margin: 0 auto;
}

.legal-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 110px 32px 130px;
  background: var(--white);
}

.legal-content h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  color: var(--navy);
  margin: 56px 0 16px;
}

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

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.legal-content ul {
  margin: 18px 0 0;
  padding-left: 1.25rem;
}

.legal-content hr {
  border: 0;
  border-top: 1px solid rgba(16,33,63,.14);
  margin: 56px 0 28px;
}

/* ==========================================================
   SECURITY PAGE
========================================================== */

.security-main {
  background: var(--cream-light);
}

.security-hero-v2 {
  min-height: 62vh;
  padding: 170px 8vw 96px;
  display: grid;
  align-content: center;
  text-align: center;
}

.security-hero-v2 h1 {
  max-width: 820px;
  margin: 0 auto;
}

.security-hero-v2 p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.security-statement-v2 {
  padding: 130px 8vw;
  background: var(--white);
}

.security-statement-inner,
.security-note-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.security-statement-inner h2,
.security-note-inner h2 {
  max-width: 760px;
  margin: 0 auto;
}

.security-statement-inner p:not(.eyebrow),
.security-note-inner p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.security-practices-v2 {
  padding: 130px 8vw;
  background: var(--cream);
}

.security-list-v2 {
  max-width: 1060px;
  margin: 76px auto 0;
  border-top: 1px solid rgba(16,33,63,.14);
}

.security-item-v2 {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(36px, 6vw, 80px);
  padding: 44px 0;
  border-bottom: 1px solid rgba(16,33,63,.14);
}

.security-item-v2 h3 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
}

.security-item-v2 p {
  color: var(--muted);
  margin: 0;
  line-height: 1.75;
  font-size: 1.06rem;
}

.security-note-v2 {
  padding: 130px 8vw;
  background: var(--white);
}

/* ==========================================================
   PRIVACY PAGE
========================================================== */

.privacy-main {
  background: var(--cream-light);
}

/* ---------- Hero ---------- */

.privacy-hero-v2 {
  min-height: 62vh;
  padding: 170px 8vw 96px;
  display: grid;
  align-content: center;
  text-align: center;
}

.privacy-hero-v2 h1 {
  max-width: 820px;
  margin: 0 auto;
}

.privacy-hero-v2 p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

/* ---------- Statement ---------- */

.privacy-statement-v2 {
  padding: 130px 8vw;
  background: var(--white);
}

.privacy-statement-inner,
.privacy-note-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.privacy-statement-inner h2,
.privacy-note-inner h2 {
  max-width: 760px;
  margin: 0 auto;
}

.privacy-statement-inner p:not(.eyebrow),
.privacy-note-inner p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

/* ---------- Practices ---------- */

.privacy-practices-v2 {
  padding: 130px 8vw;
  background: var(--cream);
}

.privacy-list-v2 {
  max-width: 1060px;
  margin: 76px auto 0;
  border-top: 1px solid rgba(16,33,63,.14);
}

.privacy-item-v2 {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(36px,6vw,80px);
  padding: 44px 0;
  border-bottom: 1px solid rgba(16,33,63,.14);
}

.privacy-item-v2 h3 {
  font-family: var(--serif);
  font-size: clamp(1.9rem,3vw,2.6rem);
  font-weight: 700;
  color: var(--navy);
}

.privacy-item-v2 p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.06rem;
}

/* ---------- Note ---------- */

.privacy-note-v2 {
  padding: 130px 8vw;
  background: var(--white);
}

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

@media (max-width: 980px) {

  .site-header {
    padding: 14px 18px;
  }

  .site-header.is-scrolled {
    padding: 10px 18px;
  }

  .menu-toggle {
    display: block;
    z-index: 70;
  }

  .main-nav {
    position: fixed;
    inset: 82px 18px auto 18px;
    display: grid;
    gap: 18px;
    padding: 24px;
    background: rgba(251,248,242,.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: .25s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Homepage hero */

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding: 128px 28px 56px;
  }

  .hero-visual {
    min-height: 360px;
    background-size: cover;
    background-position: center;
    animation: none;
  }

  /* Interior page heroes */

  .operations-hero,
  .advisory-hero,
  .cpa-hero,
  .impact-hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    background: var(--cream-light);
  }

  .operations-hero-copy,
  .advisory-hero-copy,
  .cpa-hero-copy,
  .impact-hero-copy {
    order: 1;
    padding: 128px 28px 54px;
    width: 100%;
  }

  .operations-hero-copy h1,
  .advisory-hero-copy h1,
  .cpa-hero-copy h1,
  .impact-hero-copy h1 {
    max-width: 720px;
    font-size: clamp(3.1rem, 10vw, 4.8rem);
    line-height: .96;
  }

  .operations-hero-copy p:not(.eyebrow),
  .advisory-hero-copy p:not(.eyebrow),
  .cpa-hero-copy p:not(.eyebrow),
  .impact-hero-copy p:not(.eyebrow) {
    max-width: 620px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .operations-hero-image,
  .advisory-hero-image,
  .cpa-hero-image,
  .impact-hero-image {
    order: 2;
    width: 100%;
    height: 360px;
    min-height: 360px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    animation: none;
    filter: saturate(.92) brightness(.98) contrast(.94);
  }

  .operations-hero-image {
    background-image: url("/images/operations-conversation.jpg");
  }

  .advisory-hero-image {
    background-image: url("/images/advisory-discussion.jpg");
  }

  .cpa-hero-image {
    background-image: url("/images/cpa-review.jpg");
  }

  .impact-hero-image {
    background-image: url("/images/impact-hero.jpg");
  }

  /* Shared grids */

  .experience-top,
  .experience-bottom,
  .refined-audience,
  .promise-grid,
  .services-layout,
  .process-flow,
  .difference-layout,
  .resources,
  .founder,
  .conversation-panel,
  .operations-item,
  .advisory-item,
  .cpa-item,
  .impact-item,
  .about-founder-v2,
  .about-principle,
  .impact-project,
  .contact-form-wrap {
    grid-template-columns: 1fr;
  }

  /* Section spacing */

  .experience-statement,
  .founder-content {
    padding: 72px 28px;
  }

  .experience-photo,
  .audience-side-image {
    min-height: 340px;
  }

  .experience-bottom {
    padding: 56px 28px;
    gap: 36px;
  }

  .audiences,
  .operations-statement,
  .advisory-statement,
  .cpa-statement,
  .operations-support,
  .advisory-support,
  .cpa-support,
  .operations-fit,
  .advisory-fit,
  .cpa-fit,
  .impact-purpose,
  .impact-focus,
  .impact-results,
  .about-belief-v2,
  .about-principles,
  .about-quote-v2,
  .contact-form-section-v2 {
    padding-left: 28px;
    padding-right: 28px;
  }

  .operations-item,
  .advisory-item,
  .cpa-item,
  .impact-item,
  .about-principle {
    gap: 14px;
  }

  .operations-item p,
  .advisory-item p,
  .cpa-item p,
  .impact-item p {
    max-width: 620px;
  }

  .audience-list {
    grid-template-columns: 1fr 1fr;
    gap: 28px 0;
  }

  .service-tile,
  .service-wide {
    grid-column: span 1;
  }

  .about-founder-image {
    max-width: 420px;
    margin: 0 auto;
  }

  .impact-results-grid {
    grid-template-columns: 1fr;
  }

  .conversation-panel,
  .operations-main .conversation-panel,
  .advisory-main .conversation-panel,
  .cpa-main .conversation-panel {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
    padding: 76px 28px;
  }

  .conversation-actions {
    justify-content: center;
  }

  .contact-form-intro {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {

  .brand-name {
    font-size: 1.42rem;
  }

  .brand-line {
    font-size: .55rem;
    letter-spacing: .14em;
  }

  h1,
  .operations-hero-copy h1,
  .advisory-hero-copy h1,
  .cpa-hero-copy h1,
  .impact-hero-copy h1 {
    font-size: clamp(2.7rem, 11vw, 3.8rem);
    line-height: .98;
  }

  h2 {
    font-size: clamp(2.2rem, 10vw, 3.25rem);
  }

  .hero-copy,
  .operations-hero-copy,
  .advisory-hero-copy,
  .cpa-hero-copy,
  .impact-hero-copy {
    padding: 118px 24px 46px;
  }

  .hero-visual,
  .operations-hero-image,
  .advisory-hero-image,
  .cpa-hero-image,
  .impact-hero-image {
    height: 300px;
    min-height: 300px;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .conversation-actions,
  .thank-you-actions {
    display: grid;
    width: 100%;
  }

  .experience-statement,
  .founder-content {
    padding: 68px 24px;
  }

  .experience-bottom,
  .audiences,
  .operations-statement,
  .advisory-statement,
  .cpa-statement,
  .operations-support,
  .advisory-support,
  .cpa-support,
  .operations-fit,
  .advisory-fit,
  .cpa-fit,
  .impact-purpose,
  .impact-focus,
  .impact-results,
  .about-belief-v2,
  .about-principles,
  .about-quote-v2,
  .contact-form-section-v2 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .operations-statement,
  .advisory-statement,
  .cpa-statement,
  .operations-support,
  .advisory-support,
  .cpa-support,
  .operations-fit,
  .advisory-fit,
  .cpa-fit,
  .impact-purpose,
  .impact-focus,
  .impact-results {
    padding-top: 82px;
    padding-bottom: 82px;
  }

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

  .audience-item {
    padding: 22px 0;
    border-left: 0;
    border-top: 1px solid rgba(16,33,63,.16);
  }

  .operations-item,
  .advisory-item,
  .cpa-item,
  .impact-item,
  .about-principle {
    padding: 30px 0;
  }

  .contact-hero-v2,
  .thank-you-section {
    min-height: auto;
    padding: 135px 24px 72px;
  }

  .contact-form-section-v2 {
    padding-top: 72px;
    padding-bottom: 96px;
  }

  .contact-form button {
    width: 100%;
  }

.legal-hero {
  min-height: auto;
  padding: 135px 24px 72px;
}

.legal-content {
  padding: 76px 24px 96px;
}

.legal-content h2 {
  margin-top: 42px;
}
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .security-item-v2 {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .security-statement-v2,
  .security-practices-v2,
  .security-note-v2 {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 620px) {
  .security-hero-v2 {
    min-height: auto;
    padding: 135px 24px 72px;
  }

  .security-statement-v2,
  .security-practices-v2,
  .security-note-v2 {
    padding: 82px 24px;
  }

  .security-item-v2 {
    padding: 30px 0;
  }
}
  

