/* =====================================================================
   STYLE.CSS — Sauvegarde du Patrimoine Maritime Girondin
   Délégation de Talence
   Design archetype: Refined Editorial / Literary Magazine
   ===================================================================== */

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

:root {
  --ivory:      #f7f3ec;
  --ivory-deep: #ede8df;
  --ink:        #1a1918;
  --ink-mid:    #3d3a36;
  --ink-light:  #6b6760;
  --ink-faint:  #a09c96;
  --accent:     #C8A96E;
  --brand:      #1B3A5C;
  --rule:       #c4beb6;
  --rule-light: #ddd8d0;
  --serif:      Georgia, 'Times New Roman', Times, serif;
  --max:        1120px;
  --gutter:     2.2rem;
}

html {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { background: var(--ivory); min-height: 100vh; }

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

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

h1, h2, h3, h4 { font-family: var(--serif); font-weight: normal; line-height: 1.15; color: var(--ink); }

p { color: var(--ink-mid); margin-bottom: 1.4em; }
p:last-child { margin-bottom: 0; }

strong { font-weight: bold; color: var(--ink); }

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

.wrap        { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: 780px; margin: 0 auto; padding: 0 var(--gutter); }
.wrap--mid   { max-width: 960px; margin: 0 auto; padding: 0 var(--gutter); }

/* =====================================================================
   TYPOGRAPHIC LABELS — small-caps kickers, section flags
   ===================================================================== */

.kicker {
  display: block;
  font-family: var(--serif);
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

/* =====================================================================
   HAIRLINE RULES
   ===================================================================== */

hr { border: none; }

.rule-heavy  { border-top: 2px solid var(--ink); }
.rule-mid    { border-top: 1px solid var(--rule); }
.rule-light  { border-top: 1px solid var(--rule-light); }
.rule-accent { border-top: 1px solid var(--accent); }

/* =====================================================================
   SITE HEADER & NAV
   ===================================================================== */

.site-header {
  background: var(--ivory);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 200;
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  text-decoration: none;
}

.site-header__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-header__wordmark {
  height: 26px;
  width: auto;
  object-fit: contain;
  /* dark artwork on transparent: visible as-is on ivory background */
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.site-header__nav a {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mid);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.18s, border-color 0.18s;
  white-space: nowrap;
}

.site-header__nav a:hover,
.site-header__nav a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: background 0.2s;
}

/* =====================================================================
   SITE FOOTER — colophon style
   ===================================================================== */

.site-footer {
  background: var(--brand);
  color: #c8c2bc;
  padding: 4.5rem 0 2.5rem;
  margin-top: 0;
}

.site-footer__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 220px 1fr 280px;
  gap: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 2rem;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.site-footer__logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 0.2rem;
}

.site-footer__wordmark {
  height: 22px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.site-footer__assoc {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-top: 0.3rem;
  font-style: italic;
}

.site-footer__nav-label,
.site-footer__contact-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.6rem;
}

.site-footer__links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.18s;
}

.site-footer__links a:hover { color: var(--accent); }

.site-footer__emails {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__email {
  display: block;
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  word-break: break-all;
  transition: color 0.18s;
  line-height: 1.4;
}

.site-footer__email:hover { color: var(--accent); }

.site-footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.05em;
}

/* =====================================================================
   HERO — homepage
   ===================================================================== */

.hero {
  padding: 5.5rem 0 0;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}

.hero__text {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  padding-bottom: 4rem;
}

.hero__headline {
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
  line-height: 1.06;
  font-style: italic;
  font-weight: normal;
  color: var(--ink);
  max-width: 920px;
  margin-bottom: 2.2rem;
}

.hero__sub {
  font-size: 1.08rem;
  line-height: 1.78;
  color: var(--ink-mid);
  max-width: 660px;
  margin-bottom: 2.8rem;
}

.hero__cta-group {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero__image-band {
  width: 100%;
  position: relative;
  background: var(--ivory-deep);
  padding: 2.8rem 2.8rem 0;
}

.hero__img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.hero__caption {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.8rem var(--gutter) 0;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--ink-faint);
  border-left: 2px solid var(--rule);
  margin-top: 0.8rem;
}

/* =====================================================================
   PAGE BANNER — interior pages
   ===================================================================== */

.page-banner {
  padding: 5rem 0 3.5rem;
  border-bottom: 2px solid var(--ink);
}

.page-banner__headline {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-style: italic;
  font-weight: normal;
  line-height: 1.1;
  max-width: 800px;
  margin-bottom: 1.2rem;
}

.page-banner__sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-mid);
  max-width: 640px;
}

/* =====================================================================
   IMPACT STRIP
   ===================================================================== */

.impact-strip {
  border-bottom: 1px solid var(--rule);
}

.impact-strip__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.impact-item {
  padding: 2.8rem 2rem;
  text-align: center;
  border-right: 1px solid var(--rule);
}

.impact-item:last-child { border-right: none; }

.impact-item__stat {
  display: block;
  font-size: 3rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.impact-item__label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* =====================================================================
   SECTION — shared section spacing
   ===================================================================== */

.section { padding: 5rem 0; border-bottom: 1px solid var(--rule); }
.section--tight { padding: 3.5rem 0; border-bottom: 1px solid var(--rule); }
.section--last { padding: 5rem 0; }

.section-head {
  margin-bottom: 3.2rem;
}

.section-head__rule {
  height: 2px;
  background: var(--ink);
  margin-bottom: 0.9rem;
}

.section-head__rule--accent {
  background: var(--accent);
  height: 1px;
}

.section-head__title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: normal;
  line-height: 1.15;
}

/* =====================================================================
   HOME INTRO — two-column with drop cap
   ===================================================================== */

.home-intro__cols {
  column-count: 2;
  column-gap: 4.5rem;
  column-rule: 1px solid var(--rule-light);
}

.home-intro__cols p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 5.4em;
  line-height: 0.74;
  float: left;
  margin-right: 0.06em;
  margin-top: 0.06em;
  color: var(--ink);
  font-style: normal;
}

/* =====================================================================
   HIGHLIGHTS — 3-column editorial
   ===================================================================== */

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 4rem;
}

.highlight {
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}

.highlight__icon { font-size: 1.3rem; margin-bottom: 0.85rem; display: block; }

.highlight__title {
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.25;
  margin-bottom: 0.7rem;
  font-style: italic;
}

.highlight__blurb {
  font-size: 0.88rem;
  line-height: 1.78;
  color: var(--ink-mid);
  margin: 0;
}

/* =====================================================================
   IMAGE MATTE
   ===================================================================== */

.image-matte {
  background: var(--ivory-deep);
  padding: 3rem;
}

.image-matte img {
  width: 100%;
  display: block;
}

.image-matte__caption {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
  padding-left: 0.6rem;
  border-left: 1px solid var(--rule);
}

/* =====================================================================
   PULL QUOTE
   ===================================================================== */

.pull-quote {
  padding: 4.5rem 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}

.pull-quote__mark {
  display: block;
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 0.4;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.pull-quote__text {
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  font-style: italic;
  line-height: 1.48;
  color: var(--ink);
  max-width: 820px;
  margin: 0 auto 1.5rem;
}

.pull-quote__attribution {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* =====================================================================
   ABOUT SPLIT — image + text
   ===================================================================== */

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-split__image-wrap {
  padding: 1.5rem;
  background: var(--ivory-deep);
}

.about-split__caption {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--ink-faint);
  padding-left: 0.5rem;
  border-left: 1px solid var(--rule);
}

.about-split__text p {
  font-size: 0.94rem;
  line-height: 1.82;
  margin-bottom: 1.35em;
}

/* =====================================================================
   STORY — with drop cap
   ===================================================================== */

.story-body p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 5.4em;
  line-height: 0.74;
  float: left;
  margin-right: 0.06em;
  margin-top: 0.06em;
  color: var(--ink);
  font-style: normal;
}

.story-body p {
  font-size: 0.96rem;
  line-height: 1.82;
  margin-bottom: 1.4em;
}

/* =====================================================================
   MISSION STATEMENT — full-bleed inset
   ===================================================================== */

.mission-block {
  background: var(--ivory-deep);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 5rem var(--gutter);
  text-align: center;
}

.mission-block__label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.6rem;
}

.mission-block__text {
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.65;
  color: var(--ink);
  max-width: 840px;
  margin: 0 auto;
}

/* =====================================================================
   TRUSTEES — register / colophon
   ===================================================================== */

.trustees-register {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
}

.trustee {
  padding: 2rem 2rem 2rem 0;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule-light);
  padding-right: 2rem;
}

.trustee:last-child { border-right: none; }

.trustee__role {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.trustee__name {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.2;
}

/* =====================================================================
   WHAT WE DO — two-column with drop cap
   ===================================================================== */

.what-we-do-cols {
  column-count: 2;
  column-gap: 4.5rem;
  column-rule: 1px solid var(--rule-light);
}

.what-we-do-cols p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 5.4em;
  line-height: 0.74;
  float: left;
  margin-right: 0.06em;
  margin-top: 0.06em;
  color: var(--ink);
  font-style: normal;
}

.what-we-do-cols p {
  font-size: 0.96rem;
  line-height: 1.82;
  margin-bottom: 1.4em;
}

/* =====================================================================
   PROGRAMMES — contents register
   ===================================================================== */

.contents-register {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 4rem;
}

.register-item {
  padding: 1.5rem 1.8rem;
  border-right: 1px solid var(--rule);
}

.register-item:last-child { border-right: none; }

.register-item__num {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.register-item__icon { font-size: 1.1rem; margin-bottom: 0.5rem; display: block; }

.register-item__title {
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.3;
  color: var(--ink-mid);
}

/* full programme entries */
.programme-list { display: flex; flex-direction: column; gap: 0; }

.programme-entry {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.8rem;
  padding: 2.8rem 0;
  border-bottom: 1px solid var(--rule-light);
  align-items: start;
}

.programme-entry:first-child { border-top: 1px solid var(--rule-light); }

.programme-entry__icon { font-size: 1.5rem; padding-top: 0.3rem; }

.programme-entry__num {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.programme-entry__title {
  font-size: 1.35rem;
  font-weight: normal;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.programme-entry__blurb {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--ink-light);
  margin-bottom: 0.9rem;
}

.programme-entry__detail {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--ink-mid);
  margin: 0;
}

/* =====================================================================
   WAYS TO GET INVOLVED
   ===================================================================== */

.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 4rem;
}

.way {
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}

.way__icon { font-size: 1.3rem; margin-bottom: 0.85rem; display: block; }

.way__title {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.25;
  margin-bottom: 0.7rem;
}

.way__blurb {
  font-size: 0.88rem;
  line-height: 1.78;
  color: var(--ink-mid);
  margin: 0;
}

/* =====================================================================
   CTA BLOCK
   ===================================================================== */

.cta-block {
  text-align: center;
  padding: 5.5rem 0;
  border-bottom: 1px solid var(--rule);
}

.cta-block__headline {
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-style: italic;
  margin-bottom: 2rem;
  font-weight: normal;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* =====================================================================
   BUTTONS
   ===================================================================== */

.btn {
  display: inline-block;
  font-family: var(--serif);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 1px solid var(--ink);
  color: var(--ivory);
  background: var(--ink);
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

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

.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--ivory); }

/* =====================================================================
   BLOG LIST — editorial teasers
   ===================================================================== */

.blog-header {
  padding: 5rem 0 3.5rem;
  border-bottom: 1px solid var(--rule);
}

.blog-entries { padding: 0; }

.blog-entry {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3.5rem;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--rule-light);
  align-items: start;
}

.blog-entry:first-child { border-top: 1px solid var(--rule-light); margin-top: 3.5rem; }

.blog-entry__img-wrap { overflow: hidden; }

.blog-entry__img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-entry:hover .blog-entry__img { transform: scale(1.02); }

.blog-entry__label {
  display: block;
  font-size: 0.63rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.blog-entry__title {
  font-size: 1.6rem;
  font-weight: normal;
  font-style: italic;
  line-height: 1.18;
  margin-bottom: 0.65rem;
}

.blog-entry__title a { transition: color 0.18s; }
.blog-entry__title a:hover { color: var(--accent); }

.blog-entry__dek {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--ink-mid);
  line-height: 1.68;
  margin-bottom: 1.4rem;
}

.blog-entry__more {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.18s;
}

.blog-entry__more:hover { color: var(--ink); }

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

.article-header {
  padding: 5rem 0 3.5rem;
  border-bottom: 1px solid var(--rule);
}

.article-header__title {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-style: italic;
  font-weight: normal;
  line-height: 1.1;
  max-width: 820px;
  margin-bottom: 1.4rem;
}

.article-header__dek {
  font-size: 1.08rem;
  font-style: italic;
  color: var(--ink-mid);
  max-width: 660px;
  line-height: 1.68;
}

.article-img {
  margin: 3.5rem 0;
  background: var(--ivory-deep);
  padding: 2rem;
}

.article-img img { width: 100%; display: block; }

.article-img figcaption {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--ink-faint);
  padding-left: 0.6rem;
  border-left: 1px solid var(--rule);
}

.article-body {
  padding: 4rem 0 5rem;
  border-bottom: 1px solid var(--rule);
}

.article-body__text { max-width: 720px; }

.article-body__text p {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.5em;
}

.article-body__text p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 5.2em;
  line-height: 0.74;
  float: left;
  margin-right: 0.07em;
  margin-top: 0.06em;
  color: var(--ink);
  font-style: normal;
}

.article-body__text p:last-child { margin-bottom: 0; }

.article-nav {
  padding: 3rem 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article-nav__link {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* =====================================================================
   CONTACT & COLOPHON
   ===================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-detail {
  margin-bottom: 1.8rem;
}

.contact-detail__label {
  display: block;
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.contact-detail__value {
  font-size: 0.94rem;
  color: var(--ink-mid);
  font-style: italic;
  line-height: 1.5;
}

.contact-detail__value a { border-bottom: 1px solid var(--rule); transition: border-color 0.18s; }
.contact-detail__value a:hover { border-color: var(--accent); color: var(--accent); }

/* =====================================================================
   CONTACT FORM
   ===================================================================== */

.form { }

.form__field { margin-bottom: 1.8rem; }

.form__label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.4rem;
}

.form__input,
.form__textarea {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 0.5rem 0;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.18s;
  -webkit-appearance: none;
}

.form__input:focus,
.form__textarea:focus { border-bottom-color: var(--accent); }

.form__textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

/* =====================================================================
   OURWORK IMAGE FEATURE
   ===================================================================== */

.work-image-feature {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  padding: 5rem 0;
  border-bottom: 1px solid var(--rule);
}

.work-image-feature__img-side {
  padding: 1.5rem;
  background: var(--ivory-deep);
}

.work-image-feature__text-side p {
  font-size: 0.94rem;
  line-height: 1.82;
  margin-bottom: 1.35em;
}

/* =====================================================================
   GETINVOLVED IMAGE
   ===================================================================== */

.involved-image-band {
  padding: 3rem 0;
  border-bottom: 1px solid var(--rule);
}

.involved-image-band__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  background: var(--ivory-deep);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.involved-image-band__img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.involved-image-band__caption {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--ink-faint);
  padding-left: 0.6rem;
  border-left: 1px solid var(--rule);
}

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

@media (max-width: 920px) {
  :root { --gutter: 1.4rem; }

  html { font-size: 17px; }

  /* Mobile nav */
  .site-header__nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem var(--gutter);
    gap: 0.85rem;
    z-index: 300;
  }

  .site-header__nav.open { display: flex; }

  .nav-toggle { display: flex; }

  .hero__image-band { padding: 1.5rem 1.5rem 0; }
  .hero__img { max-height: 380px; }

  .impact-strip__inner { grid-template-columns: 1fr; }
  .impact-item { border-right: none; border-bottom: 1px solid var(--rule); }
  .impact-item:last-child { border-bottom: none; }

  .home-intro__cols { column-count: 1; }
  .what-we-do-cols { column-count: 1; }

  .highlights__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .highlight { border-top: 1px solid var(--rule); padding-top: 1.5rem; }

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

  .trustees-register { grid-template-columns: 1fr; }
  .trustee { border-right: none; }

  .ways-grid { grid-template-columns: 1fr; gap: 2rem; }

  .blog-entry { grid-template-columns: 1fr; gap: 1.5rem; }
  .blog-entry__img { height: 210px; }

  .contents-register { grid-template-columns: repeat(2, 1fr); }
  .programme-entry { grid-template-columns: 2.5rem 1fr; gap: 1.2rem; }

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

  .work-image-feature { grid-template-columns: 1fr; gap: 2.5rem; }

  .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer__bottom { flex-direction: column; gap: 0.4rem; text-align: center; }

  .image-matte { padding: 1.5rem; }
}

@media (max-width: 600px) {
  html { font-size: 16px; }

  .hero { padding: 3.5rem 0 0; }
  .hero__headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__img { max-height: 280px; }

  .page-banner { padding: 3.5rem 0 2.5rem; }
  .page-banner__headline { font-size: clamp(1.75rem, 6.5vw, 2.8rem); }

  .article-header { padding: 3.5rem 0 2rem; }
  .article-header__title { font-size: clamp(1.6rem, 6vw, 2.4rem); }

  .impact-item__stat { font-size: 2.4rem; }

  .pull-quote { padding: 3rem 0; }
  .pull-quote__mark { font-size: 4rem; }

  .contents-register { grid-template-columns: 1fr; }
  .register-item { border-right: none; border-bottom: 1px solid var(--rule-light); }

  .cta-block { padding: 3.5rem 0; }

  .blog-entry:first-child { margin-top: 2rem; }

  .article-img { padding: 1rem; }

  .mission-block { padding: 3rem var(--gutter); }
}
