/*
Theme Name: Everhold
Theme URI: https://everhold.au
Author: Zendaita
Author URI: https://zendaita.com
Description: Custom editorial theme for Everhold — a permanent-capital firm acquiring and holding Australian SMEs. Restrained, generational, typography-led.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.1
License: Proprietary
Text Domain: everhold
*/

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --navy-1: #293B57;
  --navy-2: #1D2A47;
  --navy-3: #1C2331;
  --gold-1: #ECDE9D;
  --gold-2: #CEB04B;
  --ink: #F4F1EA;
  --ink-dark: #1A1A1A;
  --muted: rgba(244, 241, 234, 0.65);
  --muted-dark: rgba(26, 26, 26, 0.62);
  --stone: #F4F1EA;
  --stone-2: #EDE8DD;
  --hairline-gold: rgba(236, 222, 157, 0.22);
  --hairline-dark: rgba(26, 26, 26, 0.14);
  --divider: #D9D1BF;

  --ff-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --ff-body: 'Jost', system-ui, -apple-system, sans-serif;

  --ease-editorial: cubic-bezier(0.25, 0.1, 0.25, 1);

  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4rem;
  --s-7: 6rem;
  --s-8: 8rem;
  --s-9: 12rem;

  --container: 1320px;
  --prose: 640px;
  --header-h: 88px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-dark);
  background: var(--stone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.nav-open { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }
p { margin: 0 0 1.25em; }
:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--ff-heading);
  font-weight: 300;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
  color: inherit;
}
h1 { font-size: clamp(2.25rem, 4.5vw, 4rem); line-height: 1.1; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); line-height: 1.15; letter-spacing: -0.005em; }
h3 { font-size: 1.5rem; line-height: 1.25; font-weight: 400; }
em, i { font-style: italic; }

.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 300;
  max-width: var(--prose);
  color: inherit;
}

.prose {
  max-width: var(--prose);
  font-size: 1rem;
  line-height: 1.75;
}
.prose p + p { margin-top: 0; }

.accent-italic {
  font-style: italic;
  color: var(--gold-2);
  font-weight: 300;
}
.on-dark .accent-italic { color: var(--gold-1); }

/* ============================================================
   EYEBROW
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1.25em;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.eyebrow::before,
.eyebrow--flanked::after {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}
.eyebrow--plain::before { display: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 1rem 1.75rem;
  font-family: var(--ff-body);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.35s var(--ease-editorial);
  white-space: nowrap;
}
.btn__arrow {
  display: inline-block;
  transition: transform 0.35s var(--ease-editorial);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--gold-2);
  color: var(--ink-dark);
  border-color: var(--gold-2);
}
.btn--primary:hover { background: var(--gold-1); border-color: var(--gold-1); }

.btn--ghost {
  background: transparent;
  color: var(--gold-2);
  border-color: var(--gold-2);
}
.btn--ghost:hover { background: var(--gold-2); color: var(--ink-dark); }

.on-dark .btn--ghost { color: var(--gold-1); border-color: var(--gold-2); }
.on-dark .btn--ghost:hover { background: var(--gold-1); color: var(--ink-dark); border-color: var(--gold-1); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: var(--s-8) 0;
}
.section--tight { padding: var(--s-7) 0; }
.section--dark {
  background: var(--navy-2);
  color: var(--ink);
}
.section--darkest {
  background: var(--navy-3);
  color: var(--ink);
}
.section--stone { background: var(--stone); }
.section--stone-2 { background: var(--stone-2); }

.on-dark { color: var(--ink); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--ink); }
.on-dark .muted { color: var(--muted); }

.hairline-top { border-top: 1px solid var(--hairline-dark); }
.hairline-bottom { border-bottom: 1px solid var(--hairline-dark); }
.on-dark .hairline-top { border-top-color: var(--hairline-gold); }
.on-dark .hairline-bottom { border-bottom-color: var(--hairline-gold); }

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  z-index: 100;
  transition: background 0.4s var(--ease-editorial), backdrop-filter 0.4s var(--ease-editorial), height 0.4s var(--ease-editorial), border-color 0.4s var(--ease-editorial);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled,
body:not(.home) .site-header {
  height: 64px;
  background: rgba(28, 35, 49, 0.85);
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  border-bottom-color: var(--hairline-gold);
}
.site-header__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-brand {
  display: inline-flex;
  align-items: center;
  height: 40px;
}
.site-brand img { height: 40px; width: auto; }
.site-brand__text {
  font-family: var(--ff-heading);
  font-weight: 300;
  font-size: 1.375rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.site-nav__menu {
  display: flex;
  gap: 2rem;
}
.site-nav__menu a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  padding: 0.5em 0;
  transition: color 0.3s var(--ease-editorial);
}
.site-nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.25em;
  height: 1px;
  background: var(--gold-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-editorial);
}
.site-nav__menu a:hover { color: var(--gold-1); }
.site-nav__menu a:hover::after,
.site-nav__menu .current-menu-item > a::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 8px;
  color: var(--ink);
}
.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  margin: 6px 0;
  transition: transform 0.3s var(--ease-editorial), opacity 0.2s;
}
.nav-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-3) 0%, var(--navy-2) 100%);
  color: var(--ink);
  padding-top: var(--header-h);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg,
    rgba(28, 35, 49, 0.88) 0%,
    rgba(28, 35, 49, 0.55) 55%,
    rgba(28, 35, 49, 0.78) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 180px 40px rgba(0, 0, 0, 0.55);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--s-7) 0 var(--s-6);
  max-width: 900px;
}
.hero__eyebrow {
  margin-bottom: var(--s-4);
  color: var(--gold-1);
}
.hero__title {
  font-family: var(--ff-heading);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-5);
  color: var(--ink);
}
.hero__title-accent {
  display: block;
  font-style: italic;
  color: var(--gold-1);
  font-weight: 300;
}
.hero__cta { margin-top: var(--s-2); }

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  padding: var(--s-8) 0;
  background: var(--stone);
}
.intro-strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--s-7);
  align-items: start;
}
.intro-strip__hook {
  font-family: var(--ff-heading);
  font-weight: 300;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink-dark);
  margin: 0;
}
.intro-strip__hook em { color: var(--gold-2); }
.intro-strip__body {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted-dark);
  max-width: 540px;
}
.intro-strip__body p:last-child { margin-bottom: 0; }

/* ============================================================
   APPROACH TEASER (3-col)
   ============================================================ */
.approach-teaser {
  padding: var(--s-7) 0 var(--s-8);
  background: var(--stone);
}
.approach-teaser__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--s-5);
  margin-bottom: var(--s-6);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--hairline-dark);
}
.approach-teaser__title {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}
.approach-teaser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
.approach-tile {
  padding-top: var(--s-2);
  border-top: 1px solid var(--hairline-dark);
}
.approach-tile__number {
  font-family: var(--ff-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--gold-2);
  letter-spacing: 0;
  margin-bottom: var(--s-3);
}
.approach-tile__title {
  font-family: var(--ff-heading);
  font-weight: 400;
  font-size: 1.5rem;
  margin: 0 0 var(--s-2);
}
.approach-tile__body {
  color: var(--muted-dark);
  margin: 0;
}

/* ============================================================
   PORTFOLIO PREVIEW
   ============================================================ */
.portfolio-preview {
  padding: var(--s-8) 0;
  background: var(--stone-2);
}
.portfolio-preview__header {
  text-align: center;
  margin-bottom: var(--s-6);
}
.portfolio-preview__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: var(--s-2) 0 0;
}
.portfolio-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-3);
  align-items: center;
  justify-items: center;
}
.portfolio-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 128px;
  padding: var(--s-4);
  border: 1px solid var(--hairline-dark);
  background: #fff;
  transition: all 0.45s var(--ease-editorial);
}
.portfolio-logos__item:hover {
  border-color: var(--gold-2);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.08);
}
.portfolio-logos__item img {
  max-width: 80%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.82;
  transition: opacity 0.45s var(--ease-editorial);
}
.portfolio-logos__item:hover img { opacity: 1; }
.portfolio-logos__placeholder {
  font-family: var(--ff-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--muted-dark);
  text-align: center;
}

/* ============================================================
   QUOTE BLOCK
   ============================================================ */
.quote-block {
  padding: var(--s-8) 0;
  background: var(--navy-3);
  color: var(--ink);
  text-align: center;
}
.quote-block__mark {
  font-family: var(--ff-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--gold-1);
  max-width: 880px;
  margin: 0 auto;
}
.quote-block__rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold-2);
  margin: var(--s-5) auto 0;
  opacity: 0.6;
}

/* ============================================================
   CONTACT CTA
   ============================================================ */
.contact-cta {
  padding: var(--s-8) 0;
  background: var(--stone);
}
.contact-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--s-6);
  align-items: center;
}
.contact-cta__text {
  font-family: var(--ff-heading);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink-dark);
  margin: 0;
  max-width: 720px;
}
.contact-cta__text em {
  color: var(--gold-2);
}
.contact-cta__sub {
  margin-top: var(--s-2);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-style: normal;
  color: var(--muted-dark);
  font-weight: 400;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-3);
  color: var(--ink);
  padding: var(--s-7) 0 var(--s-4);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--s-6);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid var(--hairline-gold);
}
.site-footer__brand img { height: 56px; width: auto; margin-bottom: var(--s-3); }
.site-footer__tagline {
  font-family: var(--ff-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 1.125rem;
  color: var(--gold-1);
  max-width: 360px;
}
.site-footer__col h4 {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 0 0 var(--s-3);
}
.site-footer__col ul li { margin-bottom: var(--s-1); }
.site-footer__col a {
  color: var(--muted);
  font-size: 0.9375rem;
  transition: color 0.25s;
}
.site-footer__col a:hover { color: var(--ink); }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-4);
  font-size: 0.8125rem;
  color: var(--muted);
}
.site-footer__bottom a { color: var(--muted); }
.site-footer__bottom a:hover { color: var(--gold-1); }

/* ============================================================
   PAGE HEADER (non-home pages)
   ============================================================ */
.page-header {
  padding: calc(var(--header-h) + var(--s-7)) 0 var(--s-6);
  background: var(--stone);
  text-align: center;
}
.page-header__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin: var(--s-3) 0 var(--s-4);
}
.page-header__sub {
  margin: 0 auto;
  max-width: 720px;
  color: var(--muted-dark);
}

/* ============================================================
   APPROACH LONG-FORM
   ============================================================ */
.approach-long { padding: var(--s-6) 0 var(--s-7); }
.approach-long__row {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: var(--s-7);
  padding: var(--s-6) 0;
  border-top: 1px solid var(--hairline-dark);
  align-items: start;
}
.approach-long__row:last-child { border-bottom: 1px solid var(--hairline-dark); }
.approach-long__heading .eyebrow { margin-bottom: var(--s-3); }
.approach-long__heading h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}
.approach-long__body h3 {
  margin-top: var(--s-5);
  font-size: 0.8125rem;
  font-family: var(--ff-body);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: var(--s-2);
}
.list--em-dash { list-style: none; padding: 0; margin: 0; }
.list--em-dash li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: var(--s-2);
  line-height: 1.65;
}
.list--em-dash li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-2);
  font-weight: 400;
}

/* ============================================================
   DIFFERENCE CARDS (What Makes Us Different)
   ============================================================ */
.differences {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-3);
}
.difference-card {
  padding: var(--s-5);
  background: var(--navy-2);
  border-top: 1px solid var(--gold-2);
  border-radius: 2px;
}
.difference-card__number {
  font-family: var(--ff-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--gold-2);
  margin-bottom: var(--s-3);
}
.difference-card__title {
  font-family: var(--ff-heading);
  font-weight: 400;
  font-size: 1.375rem;
  color: var(--ink);
  margin: 0 0 var(--s-2);
}
.difference-card__body {
  color: var(--muted);
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ============================================================
   PORTFOLIO FULL PAGE GRID
   ============================================================ */
.portfolio-grid { padding: var(--s-6) 0 var(--s-8); }
.portfolio-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--s-4);
}
.portfolio-card {
  background: #fff;
  border: 1px solid var(--hairline-dark);
  border-radius: 2px;
  transition: all 0.45s var(--ease-editorial);
}
.portfolio-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.portfolio-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-5) var(--s-4);
  height: 160px;
  border-bottom: 1px solid var(--hairline-dark);
}
.portfolio-card__logo img {
  max-width: 65%;
  max-height: 80px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.4s var(--ease-editorial);
}
.portfolio-card__body {
  padding: var(--s-4);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.portfolio-card__name {
  font-family: var(--ff-heading);
  font-weight: 400;
  font-size: 1.375rem;
  margin: 0 0 var(--s-2);
  color: var(--ink-dark);
}
.portfolio-card__desc {
  color: var(--muted-dark);
  margin: 0 0 var(--s-3);
  font-size: 0.9375rem;
  line-height: 1.65;
  flex: 1;
}
.portfolio-card__more {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.portfolio-card:hover {
  border-color: var(--gold-2);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(26, 26, 26, 0.07);
}
.portfolio-card:hover .portfolio-card__logo img { opacity: 1; }

/* ============================================================
   CONTACT SECTION + FORM
   ============================================================ */
.contact-section { padding: var(--s-7) 0 var(--s-8); }
.contact-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: var(--s-7);
  align-items: start;
}
.contact-section__intro .lead { margin: 0 0 var(--s-5); color: var(--muted); }
.contact-details { margin: 0; }
.contact-details dt {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: var(--s-1);
}
.contact-details dd { margin: 0 0 var(--s-3); font-size: 1rem; color: var(--ink); }
.contact-details a { color: var(--ink); border-bottom: 1px solid var(--hairline-gold); padding-bottom: 2px; }
.contact-details a:hover { color: var(--gold-1); border-bottom-color: var(--gold-2); }

.contact-form__field { margin-bottom: var(--s-4); }
.contact-form__field label {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: var(--s-1);
}
.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline-gold);
  padding: var(--s-2) 0;
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 1rem;
  transition: border-color 0.3s var(--ease-editorial);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold-2);
}
.contact-form__field textarea { resize: vertical; min-height: 120px; }

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__submit { margin-top: var(--s-3); }
.contact-form__status {
  margin-top: var(--s-4);
  min-height: 1.5em;
  font-size: 0.9375rem;
  color: var(--gold-1);
}
.contact-form__status.is-error { color: #f0a0a0; }
.contact-form.is-submitting .contact-form__submit { opacity: 0.6; pointer-events: none; }

/* ============================================================
   BLOG LIST + SINGLE
   ============================================================ */
.blog-list { display: flex; flex-direction: column; gap: 0; }
.blog-card {
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--hairline-dark);
}
.blog-card:last-child { border-bottom: 0; }
.blog-card__link { display: block; color: inherit; }
.blog-card__title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  margin: var(--s-2) 0 var(--s-3);
  transition: color 0.3s var(--ease-editorial);
}
.blog-card__link:hover .blog-card__title { color: var(--gold-2); }
.blog-card__excerpt {
  color: var(--muted-dark);
  max-width: none;
}
.blog-card__excerpt p { margin: 0; }
.blog-card__more {
  display: inline-block;
  margin-top: var(--s-3);
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
}

/* Prose (blog content, approach body) */
.prose h2, .prose h3 { margin-top: var(--s-6); }
.prose h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.prose h3 {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  color: var(--gold-2);
  text-transform: uppercase;
  margin-bottom: var(--s-2);
}
.prose strong { font-weight: 500; color: var(--ink-dark); }
.prose em { font-style: italic; color: var(--gold-2); }
.prose ul, .prose ol {
  padding-left: 1.5rem;
  margin: 0 0 var(--s-3);
}
.prose ul li { list-style: disc; margin-bottom: var(--s-1); }
.prose ol li { list-style: decimal; margin-bottom: var(--s-1); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .intro-strip__inner { grid-template-columns: 1fr; gap: var(--s-4); }
  .approach-teaser__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
  .portfolio-logos { grid-template-columns: repeat(3, 1fr); }
  .contact-cta__inner { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .approach-long__row { grid-template-columns: 1fr; gap: var(--s-3); }
  .contact-section__grid { grid-template-columns: 1fr; gap: var(--s-5); }
}

@media (max-width: 640px) {
  .section { padding: var(--s-7) 0; }
  .approach-teaser__header { flex-direction: column; align-items: flex-start; }
  .approach-teaser__grid { grid-template-columns: 1fr; }
  .portfolio-logos { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; gap: var(--s-2); text-align: center; }

  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy-3);
    padding: calc(var(--header-h) + var(--s-4)) 2rem var(--s-6);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-4);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-editorial);
    z-index: 90;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav__menu { flex-direction: column; gap: var(--s-3); width: 100%; }
  .site-nav__menu a { font-size: 1.25rem; font-family: var(--ff-heading); }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__video { display: none; }
  .hero { background: linear-gradient(180deg, var(--navy-3) 0%, var(--navy-2) 100%); }
}
