/* ============================================================
   STILL MOTION FRAMES — design system
   Minimalist · EB Garamond (serif) + Inter (sans) · B/W/grey
   ============================================================ */

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

:root {
  --black: #111111;
  --white: #ffffff;
  --grey-light: #f4f4f2;
  --grey-mid: #d4d4d0;
  --grey-dark: #888880;
  --ink-soft: #333333;
  --ink-softer: #444444;

  --serif: 'EB Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;

  --content-max: 1100px;
  --wide-max: 1320px;
  --section-pad-v: 100px;
  --section-pad-h: 80px;
  --header-h: 74px;

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

html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--serif);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ─── LAYOUT HELPERS ─── */
.inner { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--section-pad-h); }
.section { padding: var(--section-pad-v) var(--section-pad-h); max-width: var(--content-max); margin: 0 auto; }

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

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-dark);
}

h1, h2, h3 { font-weight: 400; letter-spacing: -0.01em; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 32px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  cursor: pointer;
}
.btn:hover { background: transparent; color: var(--black); }
.btn--ghost { background: transparent; color: var(--black); }
.btn--ghost:hover { background: var(--black); color: var(--white); }
.btn--light { border-color: var(--white); background: var(--white); color: var(--black); }
.btn--light:hover { background: transparent; color: var(--white); }

/* ─── IMAGE PLACEHOLDER (swap for real photos later) ─── */
.img-placeholder {
  background: var(--grey-light);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.img-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(var(--grey-mid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grey-mid) 1px, transparent 1px);
  background-size: 40px 40px; opacity: 0.35;
}
.img-placeholder span {
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--grey-dark);
  position: relative; z-index: 1; background: var(--white);
  padding: 6px 14px; border: 1px solid var(--grey-mid);
}
/* real image drop-in: <img class="photo"> replaces .img-placeholder */
.photo { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--grey-mid);
}
.site-header .inner {
  max-width: var(--wide-max);
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 46px; width: auto; }
.brand .brand-name {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--black);
  line-height: 1.4; white-space: nowrap;
}
@media (max-width: 520px) { .brand .brand-name { font-size: 9px; letter-spacing: 0.1em; } }
@media (max-width: 360px) { .brand .brand-name { display: none; } }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  color: var(--ink-soft); position: relative; padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--black); transition: width 0.25s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--black); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav .nav-cta { color: var(--black); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 30px; height: 30px; position: relative;
}
.nav-toggle span {
  position: absolute; left: 3px; right: 3px; height: 1.5px; background: var(--black);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 9px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 21px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .site-header .inner { padding: 0 24px; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--grey-mid);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 8px 24px 24px;
    transform: translateY(-120%); opacity: 0; pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  body.nav-open .nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { width: 100%; padding: 16px 0; font-size: 14px; border-bottom: 1px solid var(--grey-light); }
  .nav a::after { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; width: 100%; height: calc(100vh - var(--header-h)); min-height: 560px; }
.hero .img-placeholder, .hero .photo { width: 100%; height: 100%; }
/* darken the hero placeholder so white text reads (a real photo will do the same) */
.hero .img-placeholder { background: #262624; }
.hero .img-placeholder::after {
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px; opacity: 1;
}
.hero .img-placeholder span { background: rgba(255,255,255,0.9); color: #555; border-color: transparent; }
.hero-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0 var(--section-pad-h) 60px;
  background: linear-gradient(to top, rgba(0,0,0,0.74) 0%, rgba(0,0,0,0.28) 42%, rgba(0,0,0,0) 68%);
}
.hero-location {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 16px;
}
.hero-title {
  font-family: var(--serif); font-size: clamp(40px, 7vw, 76px); font-weight: 400;
  line-height: 1.02; color: var(--white); letter-spacing: -0.02em; max-width: 760px;
}
.hero-sub {
  margin-top: 22px; max-width: 440px; color: rgba(255,255,255,0.82);
  font-size: 18px; line-height: 1.6;
}
.hero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   GENERIC SECTION TYPES (ported from mockup)
   ============================================================ */
.two-col { display: grid; grid-template-columns: 55fr 45fr; gap: 80px; align-items: start; }
.two-col--rev { grid-template-columns: 42fr 58fr; }
.two-col--even { grid-template-columns: 1fr 1fr; }

.rich h2 { font-size: 32px; line-height: 1.3; margin-bottom: 32px; }
.rich p { font-size: 18px; line-height: 1.8; color: var(--ink-soft); }
.rich p + p { margin-top: 20px; }

/* intro photo is a true vertical (866×1300 ≈ 2:3) — display at its real
   aspect ratio so it never crops to a landscape box */
.intro-photo { width: 100%; height: auto; aspect-ratio: 866 / 1300; position: sticky; top: calc(var(--header-h) + 24px); }

/* columns sized to each photo's aspect ratio so vertical + horizontal both
   display true-to-ratio (no cropping) while ending at matching heights */
.community-photos { display: grid; grid-template-columns: 4.5fr 2fr; gap: 16px; margin-top: 8px; align-items: start; }
.community-photos .img-placeholder { height: 480px; }
.community-photos .photo { width: 100%; height: auto; }
.community-photos .photo:first-child { aspect-ratio: 3 / 2; }   /* horizontal skyline shot (left) */
.community-photos .photo:last-child { aspect-ratio: 2 / 3; }    /* vertical trees shot (right) */

/* venues */
.venue-list { list-style: none; border-top: 1px solid var(--grey-mid); }
.venue-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0; border-bottom: 1px solid var(--grey-mid); font-size: 17px;
}
.venue-list li span {
  font-family: var(--sans); font-size: 11px; color: var(--grey-dark);
  letter-spacing: 0.06em; white-space: nowrap; margin-left: 20px;
}

/* process */
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-bottom: 64px; }
.step { padding-top: 28px; border-top: 1px solid var(--grey-mid); }
.step-num { font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 0.14em; color: var(--grey-dark); margin-bottom: 14px; }
.step-title { font-size: 20px; font-weight: 500; margin-bottom: 14px; line-height: 1.25; }
.step p { font-size: 16px; line-height: 1.75; color: var(--ink-softer); }
.process-photo { width: 100%; height: 520px; }

/* location cards */
.location-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.location-card .img-placeholder, .location-card .photo { height: 340px; margin-bottom: 16px; }
.location-card h3 { font-family: var(--serif); font-size: 18px; font-weight: 500; line-height: 1.3; margin-bottom: 6px; }
.location-card p { font-family: var(--sans); font-size: 11px; color: var(--grey-dark); letter-spacing: 0.04em; }

/* deliverables table */
.delivery-table { width: 100%; border-collapse: collapse; }
.delivery-table tr { border-bottom: 1px solid var(--grey-mid); }
.delivery-table tr:first-child { border-top: 1px solid var(--grey-mid); }
.delivery-table td { padding: 18px 0; font-size: 16px; vertical-align: top; }
.delivery-table td:first-child {
  font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--grey-dark); width: 38%; padding-right: 16px; padding-top: 20px;
}

/* gta tags */
.gta-tags { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 4px; }
.gta-tag {
  font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  border: 1px solid var(--grey-mid); padding: 9px 18px; border-radius: 2px; color: var(--ink-softer);
}

/* section rule */
.section-rule { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--section-pad-h); }
.section-rule hr { border: none; border-top: 1px solid var(--grey-mid); }

/* ============================================================
   FAQ (accordion) — big for AI/Google answer engines
   ============================================================ */
.faq { }
.faq > h2 { font-size: 32px; line-height: 1.3; margin-bottom: 12px; max-width: 640px; }
.faq > p.faq-intro { font-size: 18px; color: var(--ink-soft); margin-bottom: 48px; max-width: 620px; }
.faq-list { border-top: 1px solid var(--grey-mid); }
.faq-item { border-bottom: 1px solid var(--grey-mid); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 26px 44px 26px 0; font-family: var(--serif); font-size: 21px; color: var(--black);
  position: relative; line-height: 1.35;
}
.faq-q::after {
  content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 22px; font-weight: 300; color: var(--grey-dark);
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-q::after { content: '\2013'; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a-inner { padding: 0 44px 28px 0; font-size: 17px; line-height: 1.8; color: var(--ink-soft); }
.faq-a-inner p + p { margin-top: 14px; }

/* ============================================================
   CTA (contact) block
   ============================================================ */
.cta { background: var(--black); }
.cta-inner { max-width: var(--content-max); margin: 0 auto; display: grid; grid-template-columns: 42fr 58fr; align-items: start; }
.cta-left { padding: 100px var(--section-pad-h); position: sticky; top: var(--header-h); }
.cta-left .label { color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.cta-left h2 { font-size: 40px; color: var(--white); line-height: 1.15; margin-bottom: 24px; letter-spacing: -0.02em; }
.cta-left p { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 40px; }
.cta-footer { font-family: var(--sans); font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; line-height: 2.2; }
.cta-footer a { color: rgba(255,255,255,0.55); text-decoration: none; }
.cta-footer a:hover { color: var(--white); }
.cta-right { background: var(--white); padding: 60px 56px; min-height: 100%; }

/* ============================================================
   CONTACT FORM (Web3Forms)
   ============================================================ */
.form-field { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field label {
  display: block; font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-dark); margin-bottom: 8px;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%; font-family: var(--serif); font-size: 17px; color: var(--black);
  padding: 12px 0; border: none; border-bottom: 1px solid var(--grey-mid);
  background: transparent; transition: border-color 0.2s var(--ease);
}
.form-field textarea { resize: vertical; min-height: 96px; line-height: 1.6; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-bottom-color: var(--black);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--grey-mid); }
.form-note { font-family: var(--sans); font-size: 12px; color: var(--grey-dark); margin-top: 8px; line-height: 1.6; }
.form-submit { margin-top: 32px; }
.form-submit .btn { width: 100%; border: none; }
.form-status { font-family: var(--sans); font-size: 14px; margin-top: 18px; line-height: 1.6; display: none; }
.form-status.show { display: block; }
.form-status.success { color: #1a7a3a; }
.form-status.error { color: #b3261e; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-head { padding: 80px var(--section-pad-h) 56px; max-width: var(--content-max); margin: 0 auto; }
.page-head h1 { font-size: clamp(38px, 5vw, 56px); line-height: 1.08; margin: 14px 0 22px; }
.page-head p { font-size: 19px; line-height: 1.7; color: var(--ink-soft); max-width: 640px; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.pt-embed { margin: 0 auto 72px; max-width: var(--wide-max); padding: 0 var(--section-pad-h); }
.pt-embed:last-child { margin-bottom: 0; }
.pt-caption { max-width: 720px; margin-bottom: 26px; }
.pt-caption .eyebrow { margin-bottom: 12px; display: block; }
.pt-caption h2 { font-size: 27px; line-height: 1.3; margin-bottom: 12px; }
.pt-caption p { font-size: 17px; line-height: 1.75; color: var(--ink-soft); }
.pt-caption .pt-meta { font-family: var(--sans); font-size: 12px; color: var(--grey-dark); letter-spacing: 0.04em; margin-top: 14px; }
.pt-slot {
  min-height: 320px; background: var(--grey-light); position: relative;
  display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px;
}
.pt-slot .eyebrow { color: var(--grey-dark); }
.pt-slot code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; color: var(--ink-softer); background: var(--white); padding: 2px 6px; border: 1px solid var(--grey-mid); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px 40px; max-width: var(--content-max); margin: 0 auto; padding: 0 var(--section-pad-h) var(--section-pad-v); }
/* 3-up variant for the homepage "Recent Weddings" row — sits inside a
   .section, so drop the standalone padding/max-width and align to the
   section width like the Locations & Process rows */
.blog-grid--3 { grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: none; padding: 0; }
.post-card { text-decoration: none; color: inherit; display: block; }
.post-card .img-placeholder, .post-card .photo { height: 300px; margin-bottom: 20px; }
.post-card .eyebrow { margin-bottom: 10px; display: block; }
.post-card h2 { font-size: 24px; line-height: 1.3; margin-bottom: 10px; transition: color 0.2s var(--ease); }
.post-card:hover h2 { color: var(--grey-dark); }
.post-card p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.post-card .read { font-family: var(--sans); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-dark); margin-top: 16px; display: inline-block; }

.blog-empty { max-width: 620px; margin: 0 auto; padding: 20px var(--section-pad-h) var(--section-pad-v); text-align: center; }
.blog-empty p { font-size: 18px; color: var(--ink-soft); line-height: 1.8; }

/* article */
.article { max-width: 720px; margin: 0 auto; padding: 40px var(--section-pad-h) 80px; }
.article-meta { font-family: var(--sans); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-dark); margin-bottom: 18px; }
.article h1 { font-size: clamp(32px, 5vw, 48px); line-height: 1.12; margin-bottom: 28px; }
.article .lead { font-size: 21px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 36px; }
.article-body { font-size: 18px; line-height: 1.85; color: var(--ink-soft); }
.article-body h2 { font-size: 27px; color: var(--black); margin: 44px 0 16px; }
.article-body h3 { font-size: 21px; color: var(--black); margin: 32px 0 12px; font-weight: 500; }
.article-body p { margin-bottom: 22px; }
.article-body ul, .article-body ol { margin: 0 0 22px 24px; }
.article-body li { margin-bottom: 10px; }
.article-body a { color: var(--black); text-decoration: underline; text-underline-offset: 3px; }
.article-body blockquote { border-left: 2px solid var(--black); padding-left: 24px; margin: 32px 0; font-style: italic; color: var(--ink-softer); }
.article-hero { width: 100%; height: 420px; margin-bottom: 40px; }
.article-back { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-dark); text-decoration: none; margin-bottom: 28px; }
.article-back:hover { color: var(--black); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--black); color: rgba(255,255,255,0.6); padding: 72px var(--section-pad-h) 40px; }
.footer-inner { max-width: var(--wide-max); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; align-items: start; }
.footer-brand img { height: 60px; width: auto; margin-bottom: 20px; filter: invert(1) brightness(2); }
.footer-brand p { font-size: 16px; line-height: 1.7; max-width: 320px; color: rgba(255,255,255,0.6); }
.footer-col h4 { font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.footer-col a { display: block; text-decoration: none; color: rgba(255,255,255,0.72); font-size: 15px; padding: 6px 0; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { max-width: var(--wide-max); margin: 56px auto 0; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.14); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-family: var(--sans); font-size: 12px; letter-spacing: 0.04em; color: rgba(255,255,255,0.4); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  :root { --section-pad-v: 72px; --section-pad-h: 40px; }
  .two-col--rev, .two-col--even { grid-template-columns: 1fr; gap: 40px; }
  /* intro stays side-by-side on tablets; photo column a touch narrower */
  .two-col { grid-template-columns: 1.15fr 0.85fr; gap: 40px; }
  .intro-photo { position: static; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .location-cards { grid-template-columns: 1fr; }
  .community-photos { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-left { position: static; padding: 72px 40px 48px; }
  .cta-right { padding: 48px 40px; }
  .blog-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 560px) {
  :root { --section-pad-h: 24px; }
  .hero-overlay { padding: 0 24px 40px; }
  .cta-left, .cta-right { padding-left: 24px; padding-right: 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  /* phones: stack intro, cap the vertical photo so it isn't oversized */
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .intro-photo { max-width: 320px; }
}

/* ─── TRUST STRIP (credibility band under hero) ─── */
.trust-strip { border-bottom: 1px solid var(--grey-mid); background: var(--white); }
.trust-strip .inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 46px;
  padding-bottom: 46px;
}
.trust-item { padding: 2px 30px; border-left: 1px solid var(--grey-mid); }
.trust-item:first-child { border-left: 0; padding-left: 0; }
.trust-figure {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 9px;
}
.trust-label {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-softer);
}
@media (max-width: 760px) {
  .trust-strip .inner { grid-template-columns: 1fr 1fr; gap: 34px 0; padding-top: 42px; padding-bottom: 42px; }
  .trust-item { padding: 0 22px; }
  .trust-item:nth-child(odd) { border-left: 0; padding-left: 0; }
  .trust-item:nth-child(even) { padding-right: 0; }
}
@media (max-width: 430px) {
  .trust-strip .inner { grid-template-columns: 1fr; gap: 26px; }
  .trust-item, .trust-item:nth-child(odd), .trust-item:nth-child(even) { border-left: 0; padding: 0; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
