/* OTTESU — shared site styles
   Imports brand tokens, then defines the components used across
   Home, Field Notes, and Post pages.
   ============================================================ */

@import url("colors_and_type.css");

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { display: block; max-width: 100%; }

/* In-page navigation. Sticky nav is ~70px; add headroom so anchored
   sections don't land under it. */
html { scroll-behavior: smooth; }
:target,
section[id],
header[id],
article[id] { scroll-margin-top: 96px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: var(--weight-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

/* Removed default anchor underline; the design uses underlines deliberately
   per-component, not globally. */
a { border-bottom: 0; color: inherit; text-decoration: none; }

/* ---------- Layout ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}
.container--wide {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Primitives ---------- */

.star {
  width: 12px; height: 12px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  display: inline-block;
  flex-shrink: 0;
}
.star-row {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-caption);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.eyebrow--blush { color: var(--ottesu-blush); }
.eyebrow--sage  { color: var(--ottesu-sage); }

.rule {
  width: 64px; height: 2px; background: var(--accent);
  border: 0; margin: 18px 0 24px;
  display: block;
}

.btn {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-ui);
  letter-spacing: 0.005em;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  border: 0;
  cursor: pointer;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-standard), color var(--dur-fast) var(--ease-standard), border-color var(--dur-fast) var(--ease-standard);
}
.btn--primary { background: var(--accent); color: var(--ottesu-cream); }
.btn--primary:hover { background: var(--accent-hover); }
.btn--primary:active { background: var(--accent-hover); box-shadow: inset 0 0 0 1px var(--ottesu-forest); }
.btn--primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.btn--ghost {
  background: transparent;
  color: var(--ottesu-cream);
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--ottesu-cream);
  border-radius: 0;
}
.btn--ghost:hover { color: var(--ottesu-blush); border-bottom-color: var(--ottesu-blush); }

.btn--ghost-forest {
  color: var(--ottesu-forest);
  border-bottom-color: var(--ottesu-forest);
}
.btn--ghost-forest:hover { color: var(--accent); border-bottom-color: var(--accent); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-ui);
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.005em;
  transition: color var(--dur-fast) var(--ease-standard);
}
.arrow-link:hover { color: var(--accent-hover); }
.arrow-link::after { content: "→"; transition: transform var(--dur-base) var(--ease-out); }
.arrow-link:hover::after { transform: translateX(4px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 44px 0 22px;
  background: var(--ottesu-cream);
  border-bottom: 1px solid var(--ottesu-cream-lo);
  transition: background var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard);
}
.nav--overlay {
  background: transparent;
  border-bottom-color: transparent;
}
.nav--scrolled {
  background: var(--ottesu-cream);
  border-bottom-color: var(--ottesu-cream-lo);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__wm { display: inline-flex; align-items: center; height: 22px; }
.nav__wm img { height: 100%; width: auto; transition: opacity var(--dur-fast); }
.nav__wm-cream { display: none; }
.nav--overlay .nav__wm-forest { display: none; }
.nav--overlay .nav__wm-cream { display: block; }

.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav__link {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-ui);
  letter-spacing: 0.005em;
  color: var(--ottesu-forest);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color var(--dur-fast) var(--ease-standard), border-color var(--dur-fast) var(--ease-standard);
}
.nav__link:hover { color: var(--accent); }
.nav__link.is-active { font-weight: 500; border-bottom-color: var(--accent); }
.nav--overlay .nav__link { color: var(--ottesu-cream); }
.nav--overlay .nav__link.is-active { border-bottom-color: var(--ottesu-blush); }
.nav--overlay .nav__link:hover { color: var(--ottesu-blush); }

.nav__cta { white-space: nowrap; }
.nav--overlay .btn--primary {
  background: var(--accent);
  color: var(--ottesu-cream);
}

/* ---------- Hero (Home) ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--ottesu-cream);
  background: #092118 url("assets/photography/hero-map.jpeg") center / cover no-repeat;
  margin-top: -92px;       /* pull under the sticky nav */
  padding: 200px 0 140px;
  overflow: hidden;
}
.hero__video {
  display: none;
}
/* Top-to-bottom darkening overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,33,24,0.35) 0%, rgba(9,33,24,0.55) 60%, rgba(9,33,24,0.8) 100%);
  z-index: 1;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}
.hero__inner { position: relative; padding: 0 32px; max-width: 980px; z-index: 2; }
.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ottesu-cream);
  margin: 0;
}
.hero__title em {
  font-style: italic;
  color: var(--ottesu-blush);
}
.hero__lead {
  margin: 28px auto 0;
  max-width: 30ch;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: rgba(247, 237, 232, 0.85);
  letter-spacing: 0.005em;
}
.hero__cta { margin-top: 44px; }
.hero__stars {
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  opacity: 0.95;
  z-index: 2;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 237, 232, 0.6);
}

/* ---------- Client logos ---------- */
.clients {
  padding: 112px 0 96px;
  background: var(--ottesu-cream);
  border-bottom: 1px solid var(--ottesu-cream-lo);
}
.clients .testimonials__carousel {
  margin-top: 80px;
  padding-top: 0;
}
.clients .testimonials__pips {
  margin-top: 24px;
}
.clients__head {
  max-width: 760px;
  margin: 0 0 72px;
}
.clients__lede {
  margin: 18px 0 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
  color: rgba(9, 33, 24, 0.7);
  max-width: 58ch;
}
.clients__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  justify-items: center;
  column-gap: 40px;
  row-gap: 56px;
}
.clients__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 68px;
}
.clients__logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity var(--dur-base) var(--ease-standard);
}
.clients__logo:hover img { opacity: 1; }
.clients__logo img.logo--constrained { max-height: 40%; }

/* ---------- Generic section heading ---------- */
.section { padding: 128px 0; }
.section--snug { padding: 96px 0; }
.section--forest { background: var(--ottesu-forest); color: var(--ottesu-cream); }
.section--cream  { background: var(--ottesu-cream); }
.section--cream-lo { background: var(--ottesu-cream-lo); }

.head { max-width: 760px; margin: 0 0 64px; }
.head__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.018em;
  color: var(--ottesu-forest);
  margin: 0;
}
.section--forest .head__title { color: var(--ottesu-cream); }

/* ---------- Positioning section (What OTTESU does) ---------- */
.position { padding: 144px 0 128px; background: var(--ottesu-cream-lo); }
.position__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 96px;
  align-items: start;
}
.position__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ottesu-forest);
  margin: 0;
  text-wrap: balance;
}
.position__title em {
  font-style: italic;
  color: var(--accent);
}
.position__body p {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-lead);
  line-height: 1.65;
  color: var(--ottesu-eucalypt);
  margin: 0 0 22px;
  max-width: 56ch;
}
.position__body p:first-child::first-letter {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 3.2em;
  float: left;
  line-height: 0.9;
  padding: 6px 12px 0 0;
  color: var(--ottesu-forest);
}

/* ---------- Process / How we work ---------- */
.engagements { background: var(--ottesu-cream-lo); padding: 128px 0; }

/* Step labels */
.process__step-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}
.process__path-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 36px 0 12px;
}

/* Path cards grid (DIY + Advisory + Fractional COO) */
.process__path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--ottesu-cream-lo);
  border: 1px solid var(--ottesu-cream-lo);
}

/* Right-aligned heading between Agency Mapping and path grid */
.process__path-title {
  text-align: right;
  margin: 56px 0 32px;
}

/* Full-width step header row inside path grid */
.process__step-header {
  grid-column: 1 / -1;
  background: var(--ottesu-cream);
  padding: 44px 36px 40px;
}
.process__step-header .engagement__name {
  font-size: clamp(28px, 3vw, 40px);
}

/* Standard engagement card (path options) */
.engagement {
  background: var(--ottesu-cream);
  padding: 44px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 340px;
  transition: background var(--dur-base) var(--ease-standard);
}
.engagement:hover { background: var(--ottesu-cream-hi); }
.engagement__name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.012em;
  line-height: 1.15;
  color: var(--ottesu-forest);
  margin: 0;
}
.engagement__desc {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ottesu-eucalypt);
  margin: 0;
}

/* Agency Mapping — featured card (full width, forest green) */
.engagement--mapping {
  background: var(--ottesu-forest);
  color: var(--ottesu-cream);
  padding: 56px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  border: 1px solid var(--ottesu-forest);
  margin-bottom: 2px;
}
.engagement--mapping .engagement__name {
  color: var(--ottesu-cream);
  font-size: clamp(28px, 3vw, 40px);
  margin: 0 0 20px;
}
.engagement--mapping .engagement__desc {
  color: var(--ottesu-cream);
  font-size: var(--fs-body);
  line-height: 1.65;
}

/* Mapping pull quote — spans both grid columns */
.mapping__pullquote {
  grid-column: 1 / -1;
  margin: 0;
  padding: 32px 0 0;
  border-top: 1px solid rgba(247,237,232,0.15);
}
.mapping__pullquote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.5;
  color: var(--ottesu-cream);
  margin: 0 0 14px;
  max-width: none;
}
.mapping__pullquote figcaption {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,237,232,0.45);
}

/* Mapping "What's involved" panel */
.mapping__what {
  border-top: 1px solid rgba(247,237,232,0.15);
  padding-top: 28px;
}
.mapping__what-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,237,232,0.5);
  margin: 0 0 16px;
}
.mapping__what-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mapping__what-item {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ottesu-cream);
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.mapping__arrow {
  color: var(--ottesu-blush);
  flex-shrink: 0;
  font-size: 13px;
}

/* ---------- Five-Star framework (Forest) ---------- */
.framework { background: var(--ottesu-forest); color: var(--ottesu-cream); padding: 144px 0; position: relative; overflow: hidden; }
.framework::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/photography/map-floorplan.jpeg") center / cover no-repeat;
  opacity: 0.13;
  transform: scaleX(-1);
  pointer-events: none;
}
.framework__top { margin-bottom: 80px; max-width: 820px; }
.framework__stars {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}
.framework__stars .star {
  width: 22px; height: 22px;
}
.framework__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--ottesu-cream);
  margin: 0 0 24px;
  text-wrap: balance;
}
.framework__lead {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--ottesu-cream);
  margin: 0;
  max-width: 60ch;
}
.framework__pillars {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(247, 237, 232, 0.12);
}
.pillar {
  display: grid;
  grid-template-columns: 80px 280px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(247, 237, 232, 0.12);
  align-items: center;
  transition: background var(--dur-base) var(--ease-standard);
}
.pillar:hover { background: rgba(247, 237, 232, 0.025); }
.pillar__num {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-caption);
  letter-spacing: 0.18em;
  color: var(--ottesu-blush);
}
.pillar__name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ottesu-cream);
  margin: 0;
}
.pillar__body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--ottesu-mist);
  margin: 0;
  max-width: 56ch;
}
.pillar__body em-dash {
  /* not a real element; using a span with this class in places where the em-dash leads */
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--ottesu-cream); padding: 144px 0; position: relative; }
.testimonials__head { margin: 0 0 80px; max-width: 720px; }
.testimonials__carousel {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 32px;
  align-items: center;
}
.testimonials__stage {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial {
  display: none;
  flex-direction: column;
  gap: 24px;
}
.testimonial.is-active {
  display: flex;
}
.testimonial__arrow {
  background: none;
  border: none;
  color: var(--ottesu-terracotta-lo);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity var(--dur-base) var(--ease-standard);
  padding: 0;
}
.testimonial__arrow:hover {
  opacity: 0.7;
}
.testimonials__pips {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
  padding-left: 76px; /* optically align with stage, not arrows */
}
.testimonials__pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ottesu-mist);
  transition: background var(--dur-base) var(--ease-standard);
}
.testimonials__pip.is-active {
  background: var(--ottesu-terracotta);
}
.testimonial__quote {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--ottesu-forest);
  margin: 0;
  text-wrap: pretty;
}
.testimonial__quote::before {
  content: "“";
  display: inline;
  color: var(--accent);
  margin-right: 2px;
}
.testimonial__quote::after {
  content: "”";
  color: var(--accent);
}
.testimonial__attr {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-body-sm);
  line-height: 1.5;
  color: var(--ottesu-forest);
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.testimonial__attr strong {
  font-weight: 500;
  color: var(--ottesu-forest);
}
.testimonial__agency {
  font-size: var(--fs-body-sm);
  font-weight: 400;
  color: var(--ottesu-eucalypt);
  letter-spacing: 0.01em;
}
.testimonial__highlight {
  color: var(--ottesu-terracotta-lo);
}
/* 2-column grid — no manual placement needed */

/* ---------- About Sam ---------- */
.about { background: var(--ottesu-cream); padding: 144px 0 128px; }
.about__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}
.about__portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(180deg, rgba(9,33,24,0.0) 35%, rgba(9,33,24,0.55) 100%),
    var(--ottesu-forest) url("assets/photography/kangaroo-paw.jpeg") center / cover no-repeat;
  position: relative;
}
.about__portrait-note {
  position: absolute;
  bottom: 18px; left: 22px; right: 22px;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(247, 237, 232, 0.85);
}
.about__eyebrow { margin: 0; }
.about__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ottesu-forest);
  margin: 0 0 24px;
  text-wrap: balance;
  max-width: 24ch;
}
.about__body p {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ottesu-eucalypt);
  margin: 0 0 20px;
  max-width: 56ch;
}
.about__links {
  display: flex;
  gap: 28px;
  margin-top: 12px;
  align-items: center;
}
.about__links a {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-ui);
  color: var(--ottesu-forest);
  border-bottom: 1px solid var(--ottesu-forest);
  padding-bottom: 2px;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.about__links a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ---------- Get in touch ---------- */
.contact {
  background: var(--ottesu-forest);
  color: var(--ottesu-cream);
  padding: 160px 0 160px;
  position: relative;
  overflow: hidden;
}
.contact__bg {
  position: absolute;
  inset: 0;
  background: url("assets/photography/map-city.jpeg") center / cover no-repeat;
  opacity: 0.06;
  filter: brightness(0.5);
}
.contact__inner { position: relative; }
.contact__stars {
  display: flex; gap: 8px; margin-bottom: 28px;
}
.contact__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--ottesu-cream);
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
}
.contact__title em { font-style: italic; color: var(--ottesu-blush); }
.contact__actions {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  max-width: 920px;
  border-top: 1px solid rgba(247, 237, 232, 0.18);
  padding-top: 40px;
}
.contact__action h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ottesu-blush);
  margin: 0 0 14px;
}
.contact__action a {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ottesu-cream);
  border-bottom: 1px solid rgba(247, 237, 232, 0.35);
  padding-bottom: 4px;
  transition: color var(--dur-fast), border-color var(--dur-fast);
  display: inline-block;
}
.contact__action a:hover { color: var(--ottesu-blush); border-bottom-color: var(--ottesu-blush); }
.contact__action--small a {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-body-sm);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ottesu-forest);
  color: var(--ottesu-cream);
  padding: 40px 0 36px;
  border-top: 1px solid rgba(247, 237, 232, 0.12);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__wm img { height: 24px; width: auto; }
.footer__meta {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-caption);
  letter-spacing: 0.04em;
  color: rgba(247, 237, 232, 0.55);
}
.footer__links {
  display: flex;
  gap: 28px;
}
.footer__links a {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 13px;
  color: rgba(247, 237, 232, 0.8);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.footer__links a:hover { color: var(--ottesu-blush); border-bottom-color: var(--ottesu-blush); }

/* =============================================================
   Field Notes (index)
   ============================================================= */
.fn-hero {
  position: relative;
  overflow: hidden;
  padding: 160px 0 96px;
  background: var(--ottesu-cream);
  border-bottom: 1px solid var(--ottesu-cream-lo);
}
.fn-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/photography/map-parchment.jpeg") center / cover no-repeat;
  opacity: 0.1;
  pointer-events: none;
}
.fn-hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(48px, 6.5vw, 92px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--ottesu-forest);
  margin: 24px 0 0;
}
.fn-hero__title em { font-style: italic; color: var(--accent); }
.fn-hero__lead {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--ottesu-eucalypt);
  margin: 28px 0 0;
  max-width: 42ch;
}

.fn-list { padding: 32px 0 144px; background: var(--ottesu-cream); }
.fn-list__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 96px;
  align-items: start;
}
.fn-list__items {
  display: flex;
  flex-direction: column;
}
.fn-item {
  display: grid;
  grid-template-columns: 110px 1fr 56px;
  gap: 40px;
  align-items: baseline;
  padding: 36px 0;
  border-top: 1px solid var(--ottesu-cream-lo);
  text-decoration: none;
  color: inherit;
  transition: background var(--dur-base) var(--ease-standard);
  margin: 0 -16px;
  padding-left: 16px;
  padding-right: 16px;
}
.fn-item:last-child { border-bottom: 1px solid var(--ottesu-cream-lo); }
.fn-item:hover { background: var(--ottesu-cream-lo); }
.fn-item:hover .fn-item__title { color: var(--accent); }
.fn-item:hover .fn-item__arrow { transform: translateX(4px); color: var(--accent); }
.fn-item__date {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 13px;
  color: var(--ottesu-sage);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fn-item__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--ottesu-forest);
  margin: 0 0 8px;
  transition: color var(--dur-fast);
  text-wrap: balance;
}
.fn-item__excerpt {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-body-sm);
  line-height: 1.55;
  color: var(--ottesu-eucalypt);
  margin: 0;
  max-width: 60ch;
}
.fn-item__arrow {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--ottesu-sage);
  text-align: right;
  transition: transform var(--dur-base) var(--ease-out), color var(--dur-fast);
  display: inline-block;
}

/* Rail (right column on the index) */
.fn-rail {
  position: sticky;
  top: 100px;
  padding: 40px 32px;
  border: 1px solid var(--ottesu-cream-lo);
  background: var(--ottesu-cream-hi);
}
.fn-rail__eyebrow { margin: 0 0 14px; }
.fn-rail__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-h3);
  letter-spacing: -0.012em;
  line-height: 1.2;
  color: var(--ottesu-forest);
  margin: 0 0 14px;
}
.fn-rail__desc {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-ui);
  line-height: 1.55;
  color: var(--ottesu-eucalypt);
  margin: 0 0 24px;
}
.fn-rail__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fn-rail__input {
  background: var(--ottesu-cream);
  border: 0;
  border-bottom: 1px solid var(--ottesu-forest);
  padding: 12px 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-body);
  color: var(--ottesu-forest);
  outline: none;
}
.fn-rail__input::placeholder { color: var(--ottesu-sage); }
.fn-rail__input:focus { border-bottom-color: var(--accent); }
.fn-rail__meta {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-caption);
  letter-spacing: 0.04em;
  color: var(--ottesu-sage);
  margin: 14px 0 0;
}
.fn-rail__sign {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--ottesu-cream-lo);
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: var(--fs-body);
  color: var(--ottesu-eucalypt);
}

/* =============================================================
   Field Notes (post page)
   ============================================================= */
.post-hero {
  position: relative;
  min-height: 64vh;
  margin-top: -70px;
  padding: 180px 0 120px;
  color: var(--ottesu-cream);
  background:
    linear-gradient(180deg, rgba(9,33,24,0.4) 0%, rgba(9,33,24,0.7) 100%),
    #092118 url("assets/photography/banksia.jpeg") center / cover no-repeat;
  display: grid;
  align-items: end;
}
.post-hero__inner { padding: 0 32px; max-width: 880px; margin: 0 auto; width: 100%; }
.post-hero__breadcrumb {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-caption);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ottesu-blush);
  margin: 0 0 24px;
}
.post-hero__breadcrumb a {
  color: var(--ottesu-blush);
  border-bottom: 1px solid rgba(223, 169, 159, 0.4);
  padding-bottom: 1px;
}
.post-hero__breadcrumb a:hover { color: var(--ottesu-cream); }
.post-hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--ottesu-cream);
  margin: 0;
  max-width: 22ch;
  text-wrap: balance;
}
.post-hero__meta {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-ui);
  color: rgba(247, 237, 232, 0.7);
  margin: 28px 0 0;
  letter-spacing: 0.04em;
}
.post-hero__meta .dot { margin: 0 10px; color: rgba(247, 237, 232, 0.4); }

.post-body {
  background: var(--ottesu-cream);
  padding: 96px 0 96px;
}
.post-body__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}
.post-lead {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-h3);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ottesu-forest);
  margin: 0 0 40px;
  text-wrap: pretty;
}
.post-body p {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ottesu-forest);
  margin: 0 0 24px;
}
.post-body p strong { font-weight: 500; }
.post-body h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ottesu-forest);
  margin: 48px 0 18px;
}
.post-body h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ottesu-forest);
  margin: 36px 0 12px;
}
.post-body a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color var(--dur-fast);
}
.post-body a:hover { color: var(--accent-hover); border-bottom-color: var(--accent-hover); }
.post-body em { font-style: italic; }

.pullquote {
  border-left: 2px solid var(--accent);
  padding: 8px 0 8px 28px;
  margin: 40px 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: var(--fs-h3);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ottesu-forest);
  max-width: none;
}

.post-figure {
  margin: 48px 0;
}
.post-figure img,
.post-figure__img {
  width: 100%;
  height: auto;
  display: block;
}
.post-figure figcaption {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ottesu-sage);
  margin-top: 12px;
}

/* End-of-post Sam card */
.post-end {
  margin-top: 80px;
  padding: 48px 40px 40px;
  background: var(--ottesu-cream-lo);
  border-top: 2px solid var(--accent);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
}
.post-end__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(9,33,24,0) 0%, rgba(9,33,24,0.3) 100%),
    var(--ottesu-forest) url("assets/photography/sturts-desert-pea.jpeg") center / cover no-repeat;
}
.post-end__sign {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: 22px;
  color: var(--ottesu-forest);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.post-end__name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-ui);
  letter-spacing: 0.02em;
  color: var(--ottesu-forest);
  margin: 0 0 16px;
}
.post-end__body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-body-sm);
  line-height: 1.6;
  color: var(--ottesu-eucalypt);
  margin: 0 0 20px;
  max-width: 56ch;
}
.post-end__actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.post-end__actions a {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-ui);
  color: var(--ottesu-forest);
  border-bottom: 1px solid var(--ottesu-forest);
  padding-bottom: 2px;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.post-end__actions a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* =============================================================
   Responsive — mobile first the breakpoints down from desktop
   ============================================================= */
@media (max-width: 1024px) {
  .position__grid { grid-template-columns: 1fr; gap: 32px; }
  .engagements__grid { grid-template-columns: 1fr; }
  .process__path-grid { grid-template-columns: 1fr; }
  .pillar { grid-template-columns: 60px 220px 1fr; gap: 24px; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__portrait { max-width: 480px; }
  .contact__actions { grid-template-columns: 1fr; gap: 24px; }
  .testimonials__carousel { grid-template-columns: 32px 1fr 32px; gap: 16px; }
  .testimonial { padding: 36px 28px; }
  .fn-list__grid { grid-template-columns: 1fr; gap: 56px; }
  .fn-rail { position: static; }
  .clients { padding: 88px 0 72px; }
  .clients__head { margin-bottom: 56px; }
  .clients__grid { grid-template-columns: repeat(3, 1fr); column-gap: 32px; row-gap: 44px; }
}
@media (max-width: 720px) {
  .container, .container--narrow, .container--wide { padding: 0 22px; }
  .nav { padding: 16px 0; }
  .nav__links { display: none; }
  .nav__cta { padding: 12px 16px; font-size: 13px; }
  .section { padding: 96px 0; }
  .position { padding: 96px 0; }
  .engagements { padding: 96px 0; }
  .framework { padding: 96px 0; }
  .testimonials { padding: 96px 0; }
  .about { padding: 96px 0; }
  .contact { padding: 112px 0; }
  .pillar { grid-template-columns: 1fr; gap: 6px; padding: 24px 0; }
  .pillar__num { letter-spacing: 0.16em; }
  .fn-item { grid-template-columns: 1fr; gap: 8px; }
  .fn-item__arrow { display: none; }
  .post-end { grid-template-columns: 1fr; gap: 20px; }
  .hero { min-height: 80vh; padding: 160px 0 120px; }
  .clients { padding: 72px 0 56px; }
  .clients__grid { grid-template-columns: repeat(2, 1fr); column-gap: 24px; row-gap: 36px; }
}

/* prefers-reduced-motion: drop everything but opacity */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .arrow-link:hover::after { transform: none; }
  .fn-item:hover .fn-item__arrow { transform: none; }
}

/* =============================================================
   In-page scroll affordances
   - Thin Terracotta progress bar at the top, fades in past hero
   - Subtle Terracotta highlight pulse on the target section
   ============================================================= */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  z-index: 100;
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-standard),
              width 40ms linear;
  pointer-events: none;
}
.scroll-progress.is-visible { opacity: 1; }

/* Highlight pulse on the targeted section. We toggle a class via JS
   so the cue fires every click — :target only fires once per hash. */
@keyframes ot-section-pulse {
  0%   { box-shadow: inset 0 3px 0 0 var(--ottesu-terracotta); }
  60%  { box-shadow: inset 0 3px 0 0 var(--ottesu-terracotta); }
  100% { box-shadow: inset 0 3px 0 0 rgba(206, 126, 111, 0); }
}
.is-targeted {
  animation: ot-section-pulse 1400ms var(--ease-out) 1;
}
.engagement.is-targeted {
  animation: ot-card-pulse 1400ms var(--ease-out) 1;
}
@keyframes ot-card-pulse {
  0%   { box-shadow: inset 0 0 0 2px var(--ottesu-terracotta); background: var(--ottesu-cream-hi); }
  60%  { box-shadow: inset 0 0 0 2px var(--ottesu-terracotta); background: var(--ottesu-cream-hi); }
  100% { box-shadow: inset 0 0 0 0 rgba(206,126,111,0); background: var(--ottesu-cream); }
}
@media (prefers-reduced-motion: reduce) {
  .is-targeted, .engagement.is-targeted { animation: none; }
}
