/* ═══════════════════════════════════════════════════════════════
   HOME.CSS — homepage-only redesign layer
   Loaded after styles.min.css, on index.html ONLY.

   Rebuilt from ACTUAL screenshots of lightandshademedia.com (not
   just computed styles this time): full-bleed saturated color-block
   panels with corner viewfinder brackets and symmetric corner
   numbers, a letterboxed/framed full-bleed hero photo with camera-HUD
   corner text, full-bleed stacked work tiles (not a hairline list),
   an embedded "showreel" panel, oversized bleeding background word
   texture, and blur-to-sharp scroll reveals. Kept Everex's own orange
   as the single flat accent instead of L+S's red/cream/black.
   ═══════════════════════════════════════════════════════════════ */

body {
  --cream: #F3ECDF;
  --accent: var(--orange);
  --ink: #0c0a08;
  --display: 'Big Shoulders Display', Impact, sans-serif;
  --mono: 'Space Mono', 'Space Grotesk', monospace;
  /* Overrides the shared --max (1140px) just on this page. Uncapped — .wrap's
     max-width is 100%, so content is only ever constrained by --pad, the same
     way the Tower section's photo is unconstrained edge-to-edge. A fixed cap
     (even a wide one) still left a visible margin gutter on large screens
     that the Tower didn't have; this removes that gutter entirely. */
  --max: 100%;
  background: #000 !important;
  background-image: none !important;
  color: var(--cream);
}
/* Reclaims the shared grid-pattern pseudo-element (disabled above) as a fixed,
   viewport-covering grain layer — sits above body::before's gradient atmosphere
   but below all real content, so it reads through every black "border" gap
   (panel insets, hero-frame edge, work-project margins)
   without needing to be painted onto each one individually. */
body::after {
  display: block !important; content: ''; position: fixed; inset: 0; z-index: -1;
  pointer-events: none; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}
/* Subtle Everex-gradient atmosphere behind the plain black sections (manifesto
   intro, social/phone section, contact, footer). Fixed + very low z-index, so
   it sits behind everything — the color panels, hero, and tower all have their
   own opaque backgrounds and simply paint over it, unaffected. */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 10% 8%, rgba(247,147,30,.16), transparent),
    radial-gradient(ellipse 50% 38% at 92% 14%, rgba(233,30,99,.14), transparent),
    radial-gradient(ellipse 55% 42% at 50% 88%, rgba(47,167,167,.12), transparent);
}

main, .hero, .footer { color: var(--cream); }
main .lead, main p { color: rgba(243,236,223,.62); }

/* ── ANIMATED TEXT: per-word/letter stagger, driven by the shared .fade/.in reveal ── */
.split-unit { display: inline-block; opacity: 0; transform: translateY(.5em) rotate(2deg); transition: opacity .5s ease, transform .5s ease; }
.in .split-unit, .fade.in .split-unit { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .split-unit { transition-delay: 0s !important; } }

/* ── GLOBAL TYPE SCALE ── */
main h2, .footer-manifesto h2 {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(3rem, 7.5vw, 6.6rem);
  line-height: .92;
  letter-spacing: 0;
  margin: 0;
  color: var(--cream);
}
main > section:not(.color-panel):not(.full-bleed) { border-top: 1px solid rgba(243,236,223,.1); padding: clamp(4rem, 9vw, 8rem) 0; }

/* ── BLUR-TO-SHARP SCROLL REVEAL (extends the shared .fade mechanic) ── */
.fade { filter: blur(6px); transition: opacity .6s ease, transform .6s ease, filter .6s ease; }
.fade.in { filter: blur(0); }

/* ── GRAIN TEXTURE (reused on hero + color panels) ── */
.grain { position: absolute; inset: 0; pointer-events: none; opacity: .12; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── CORNER VIEWFINDER BRACKETS ── */
.frame-mark { position: absolute; width: 20px; height: 20px; z-index: 3; }
.frame-mark--tl { top: 22px; left: 22px; border-left: 1px solid currentColor; border-top: 1px solid currentColor; }
.frame-mark--tr { top: 22px; right: 22px; border-right: 1px solid currentColor; border-top: 1px solid currentColor; }
.frame-mark--bl { bottom: 22px; left: 22px; border-left: 1px solid currentColor; border-bottom: 1px solid currentColor; }
.frame-mark--br { bottom: 22px; right: 22px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; }

/* ── BUTTONS / LINKS: flat, no gradient pills ── */
.btn { border-radius: 0; padding: 1rem 1.9rem; text-transform: uppercase; font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; font-weight: 700; }
.btn-primary { background: var(--accent); color: var(--ink); border: 1px solid var(--accent); box-shadow: none; }
.btn-primary:hover { background: transparent; color: var(--cream); opacity: 1; }
.btn-secondary { background: transparent; border: 1px solid rgba(243,236,223,.25); color: var(--cream); }
.btn-secondary:hover { border-color: var(--cream); background: rgba(243,236,223,.06); color: var(--cream); }
.text-link { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--mono); text-transform: uppercase; font-size: .78rem; font-weight: 700; letter-spacing: .06em; color: var(--cream); border-bottom: 1px solid var(--accent); padding-bottom: .2rem; }
.text-link:hover { color: var(--accent); }
.color-panel .text-link, .color-panel .btn-secondary { color: var(--ink); border-color: var(--ink); }

/* ── NAV: corner-style stacked two-line links ── */
.nav { background: transparent; border-bottom: 1px solid transparent; height: 96px; }
.nav.scrolled { background: rgba(0,0,0,.9); backdrop-filter: blur(16px); border-color: rgba(243,236,223,.1); }
.nav-inner { height: 96px; align-items: center; }
.nav-brand-word { background: none; -webkit-text-fill-color: currentColor; color: var(--cream); font-family: var(--display); font-weight: 900; letter-spacing: .04em; }
.nav-links { gap: clamp(1rem, 3vw, 2.4rem); }
.nav-links a {
  display: flex; flex-direction: column; line-height: 1.05;
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(.85rem, 1.3vw, 1.05rem);
  color: rgba(243,236,223,.55);
}
.nav-links a span:first-child { color: rgba(243,236,223,.35); font-size: .8em; }
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover span:first-child, .nav-links a.active span:first-child { color: var(--accent); }
.nav-links a::after { display: none; }
.nav-cta { background: none; border: none; padding: 0; font-family: var(--mono); text-transform: uppercase; font-size: .7rem; letter-spacing: .08em; color: var(--cream); border-bottom: 1px solid var(--accent); }
.nav-cta:hover { border-color: var(--cream); transform: none; }
.nav-drawer a { font-family: var(--display); font-weight: 900; text-transform: uppercase; }

/* ── HERO: letterboxed full-bleed photo with camera-HUD corner text ── */
.hero { min-height: 100svh; padding-top: 96px; overflow: hidden; }
.hero .hero-photo { display: none; }

.hero-frame {
  position: absolute; inset: clamp(10px, 2vw, 20px);
  top: calc(96px + clamp(10px, 2vw, 20px));
  overflow: hidden;
  border-radius: clamp(12px, 2vw, 20px);
}
.hero-media-inner { position: absolute; inset: -6% -3%; will-change: transform; }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.4) contrast(1.4) brightness(.8); animation: kenBurns 26s ease-in-out infinite alternate; }
@keyframes kenBurns { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }
@media (prefers-reduced-motion: reduce) { .hero-frame img { animation: none; } }
/* Color-grades the soft pastel photo into the brand's own orange/mag/teal
   palette instead of a generic pink-blue sky — hard-light blend lets the
   photo's own tonal contrast show through while pulling every hue toward
   the brand gradient, so it reads as branded and graphic, not a stock sky. */
.hero-grade {
  content: ''; position: absolute; inset: 0; z-index: 1; mix-blend-mode: color; opacity: .95;
  background: linear-gradient(150deg, var(--orange) 0%, var(--mag) 45%, var(--teal) 100%);
}
.hero-frame::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.15) 28%, rgba(0,0,0,.2) 70%, rgba(0,0,0,.75) 100%);
}
/* Grittier than the shared .grain default (reused elsewhere at a subtler
   level) — the hero is the one place on the page still carrying an actual
   photo, so it's the one place a heavier film-grain texture reads as
   intentional grit rather than noise. */
.hero-frame .grain { z-index: 2; opacity: .22; }

.hero-topline { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; font-family: var(--mono); }
.hero-eyebrow { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(243,236,223,.85); display: flex; align-items: center; gap: .55rem; }
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--accent); flex-shrink: 0; }
.hero-clock { text-align: right; font-size: .72rem; color: rgba(243,236,223,.7); letter-spacing: .02em; line-height: 1.6; }
.hero-clock b { display: block; color: var(--cream); font-family: var(--mono); font-size: .9rem; font-weight: 700; }

.hero-wordmark-wrap { position: relative; z-index: 2; text-align: center; }
.hero .hero-wordmark {
  font-family: var(--display); text-transform: uppercase; font-weight: 900;
  letter-spacing: 0; line-height: .82;
  font-size: clamp(4.8rem, 17vw, 15.5rem);
  margin: 0;
  color: var(--cream);
  white-space: normal;
}
.hero-tagline {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(1.3rem, 2.8vw, 2.1rem); line-height: 1.15; letter-spacing: 0;
  margin-top: 1rem; color: rgba(243,236,223,.9);
}
.hero-tagline > span { display: inline; }
.hero-tagline > span:last-child .split-unit { color: var(--accent); }
.hero-tagline > span + span .split-unit:first-child::before { content: '\2014  '; color: rgba(243,236,223,.4); }

.hero-bottom { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 2rem; }
.hero-descriptor { font-family: var(--mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(243,236,223,.65); }
.hero-descriptor span { display: block; }
.hero-lens { font-family: var(--mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(243,236,223,.65); text-align: right; }

.hero-scroll-cue { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .6rem; font-family: var(--mono); font-size: .66rem; text-transform: uppercase; letter-spacing: .14em; color: rgba(243,236,223,.75); }
.hero-scroll-cue span.line { width: 1px; height: 42px; background: rgba(243,236,223,.3); position: relative; overflow: hidden; }
.hero-scroll-cue span.line::after { content: ''; position: absolute; left: 0; top: -100%; width: 100%; height: 100%; background: var(--accent); animation: scrollCue 2.2s ease-in-out infinite; }
@keyframes scrollCue { 0% { top: -100%; } 100% { top: 100%; } }
@media (prefers-reduced-motion: reduce) { .hero-scroll-cue span.line::after { animation: none; top: 40%; } }
@media (max-width: 700px) {
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: .8rem; }
  .hero-lens { text-align: left; }
  .hero-scroll-cue { display: none; }
}

/* ── SECTION EYEBROW WITH NUMBER ── */
.eyebrow-num { display: flex; align-items: baseline; gap: .7rem; font-family: var(--mono); margin-bottom: 1.4rem; }
.eyebrow-num em { font-style: normal; font-weight: 700; font-size: .95rem; color: var(--accent); }
.eyebrow-num span { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(243,236,223,.5); }

/* ── 01 MANIFESTO (brief black intro, mirrors the reference's short paragraph before its first color panel) ── */
.manifesto-intro { max-width: 640px; }
.manifesto-intro p { font-size: 1.25rem; color: rgba(243,236,223,.62); line-height: 1.75; margin-bottom: 1.4rem; }

/* ── FULL-BLEED COLOR PANEL (base) ── */
/* Inset from the viewport edge + rounded corners, matching the reference
   site's actual treatment (checked their computed styles: no literal border,
   just a ~19px margin revealing the black background behind, plus a ~19px
   border-radius — a "framed tile" rather than true edge-to-edge). */
.color-panel {
  position: relative; overflow: hidden;
  background: var(--accent); color: var(--ink);
  border-top: none !important;
  padding: clamp(3rem, 9vw, 6rem) 0 !important;
  margin: 0 clamp(10px, 2vw, 20px);
  border-radius: clamp(12px, 2vw, 20px);
}
.color-panel .wrap { position: relative; z-index: 2; }
.color-panel .eyebrow-num em, .color-panel .eyebrow-num span { color: var(--ink); opacity: .55; }
.color-panel .frame-mark { color: var(--ink); opacity: .4; }
/* Brand-color variants — spreads the panels across mag/red/orange/teal
   instead of every color-panel defaulting to orange via --accent. */
.color-panel[data-color="mag"]    { background: var(--mag); }
.color-panel[data-color="red"]    { background: var(--red); }
.color-panel[data-color="orange"] { background: var(--orange); }
.color-panel[data-color="teal"]   { background: var(--teal); }

/* Work section — each project's OWN real brand color (verified against their
   live sites/logos), not Everex's own accent palette used above. */
.color-panel[data-color="blissful"]     { background: #E89A7C; } /* peach/coral from their live site */
.color-panel[data-color="classiccycle"] { background: #F5F0E8; } /* their real logo is pure black & white — this is the one light panel on the page, reflecting that */
.color-panel[data-color="michaelblast"] { background: #C8860A; } /* gold/mustard, documented in their case study palette + visible on their live site */
.color-panel[data-color="dyna"]         { background: #FF3B46; } /* confirmed red from their live homepage */

/* Panel A — craft manifesto triplet */
.craft-stack { font-family: var(--display); font-weight: 900; text-transform: uppercase; line-height: .94; font-size: clamp(3rem, 8vw, 6.6rem); margin-bottom: 2rem; }
/* Each line pushes in from alternating sides (not just the shared fade-up),
   on top of the per-word stagger already running inside each line via
   .split-unit — the line slides as a block while its words settle in. */
.craft-stack > span {
  display: block; transform: translateX(-70px); opacity: 0;
  transition: transform .8s cubic-bezier(.16,1,.3,1), opacity .6s ease;
}
.craft-stack > span:nth-child(even) { transform: translateX(70px); }
.craft-stack > span:nth-child(1) { transition-delay: 0s; }
.craft-stack > span:nth-child(2) { transition-delay: .1s; }
.craft-stack > span:nth-child(3) { transition-delay: .2s; }
.craft-stack.in > span, .fade.in.craft-stack > span { transform: translateX(0); opacity: 1; }
@media (prefers-reduced-motion: reduce) { .craft-stack > span { transition-duration: .01s; } }
.craft-panel-foot { display: flex; justify-content: center; margin-top: 2.5rem; }
.craft-panel-copy { max-width: 680px; margin: 0 auto; text-align: center; font-size: 1.2rem; line-height: 1.75; }
.panel-corner-num { position: absolute; top: 26px; font-family: var(--mono); font-size: .78rem; font-weight: 700; opacity: .5; z-index: 2; }
.panel-corner-num--l { left: 30px; }
.panel-corner-num--r { right: 30px; }

/* Panel B — bleeding background word texture, slow drift.
   Confined to the right portion of the panel and kept very faint so it reads
   as a background texture, not competing text overlapping the headline/copy. */
.bg-bleed { position: absolute; top: 0; right: 0; bottom: 0; left: 58%; z-index: 0; overflow: hidden; pointer-events: none; }
.bg-bleed span {
  display: block; white-space: nowrap; text-align: right;
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1.15;
  color: rgba(12,10,8,.06);
  animation: bgDrift 20s ease-in-out infinite;
}
.bg-bleed span:nth-child(even) { animation-direction: alternate-reverse; animation-duration: 26s; }
@keyframes bgDrift { 0%,100% { transform: translateX(0); } 50% { transform: translateX(-6%); } }
@media (prefers-reduced-motion: reduce) { .bg-bleed span { animation: none; } }
@media (max-width: 900px) { .bg-bleed { display: none; } }

/* ── 02 WORK: compact rows, full case-study reveal on hover/focus ── */
/* color variants come from the shared .color-panel[data-color] rules above */
/* Black margin gap between every row — same "framed tile" language as the
   color panels elsewhere (rounded corners on each tile, black showing
   through between them), not a seamless connected column. */
.work-list { display: flex; flex-direction: column; gap: clamp(10px, 2vw, 20px); padding: 0 clamp(10px, 2vw, 20px); }
.work-row {
  position: relative; display: block; overflow: hidden; text-decoration: none; color: var(--ink);
  height: 130px; border-radius: clamp(12px, 2vw, 20px);
  background: var(--accent);
  transition: height .55s cubic-bezier(.16,1,.3,1);
}
.work-row[data-color="blissful"]     { background: #E89A7C; }
.work-row[data-color="classiccycle"] { background: #F5F0E8; }
.work-row[data-color="michaelblast"] { background: #C8860A; }
.work-row[data-color="dyna"]         { background: #FF3B46; }
.work-row-media { position: absolute; inset: 0; z-index: 0; }
.work-row-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  opacity: .28; transform: scale(1.08);
  transition: opacity .5s ease, transform 1s cubic-bezier(.16,1,.3,1);
}
.work-row:hover .work-row-media img, .work-row:focus-visible .work-row-media img { opacity: .85; transform: scale(1); }
.work-row-inner {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 clamp(1.5rem, 3vw, 2.5rem);
}
.work-row-tag { font-family: var(--mono); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink); opacity: .65; margin-bottom: .5rem; }
.work-row-inner h3 { font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: clamp(1.7rem, 3.6vw, 2.8rem); line-height: 1; color: var(--ink); margin: 0 0 .3rem; }
.work-row-url { font-family: var(--mono); font-size: .72rem; color: var(--ink); opacity: .55; }
.work-row-desc, .work-row-cta {
  opacity: 0; max-height: 0; overflow: hidden; margin-top: 0 !important;
  transition: opacity .35s ease, max-height .5s ease, margin-top .5s ease;
}
.work-row-desc { font-size: 1.05rem; color: var(--ink); opacity: 0; line-height: 1.6; max-width: 56ch; }
.work-row-cta { display: inline-flex; align-self: flex-start; }
.work-row:hover, .work-row:focus-visible { height: 420px; }
.work-row:hover .work-row-desc, .work-row:focus-visible .work-row-desc { opacity: .8; max-height: 200px; margin-top: 1rem !important; }
.work-row:hover .work-row-cta, .work-row:focus-visible .work-row-cta { opacity: 1; max-height: 60px; margin-top: 1.2rem !important; }
@media (prefers-reduced-motion: reduce) { .work-row, .work-row-media img, .work-row-desc, .work-row-cta { transition-duration: .01s; } }
@media (max-width: 820px) {
  /* No real hover on touch — show every row already-expanded instead of relying on a hover state that can't fire. */
  .work-row { height: auto !important; padding: 1.6rem 0; }
  .work-row-inner { height: auto; }
  .work-row-media img { opacity: .3 !important; transform: none !important; }
  .work-row-desc, .work-row-cta { opacity: 1 !important; max-height: none !important; margin-top: 1rem !important; }
}

/* ── SOCIAL: half-width layout, large phone, fake-Instagram feed of real posts ── */
.social-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2rem, 5vw, 5rem); }
.social-copy p { font-size: 1.15rem; line-height: 1.7; color: rgba(243,236,223,.7); max-width: 46ch; }
@media (max-width: 900px) {
  .social-grid { grid-template-columns: 1fr; }
  .social-copy { text-align: center; }
  .social-copy p { margin-left: auto; margin-right: auto; }
}

.phone-mockup { display: flex; justify-content: center; }
.phone-mockup-frame {
  width: min(430px, 100%); aspect-ratio: 9/18.5;
  border: 12px solid #151515; border-radius: 52px;
  background: #000; position: relative; overflow: hidden;
  box-shadow: 0 50px 110px rgba(0,0,0,.55), 0 0 0 1px rgba(243,236,223,.08);
}
.phone-mockup-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 46%; height: 26px; background: #151515; border-radius: 0 0 16px 16px; z-index: 3; }
.phone-mockup-screen { position: absolute; inset: 0; overflow: hidden; background: #fff; }

.ig-feed { display: flex; flex-direction: column; animation: phoneFeedScroll 42s linear infinite; }
@keyframes phoneFeedScroll { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@media (prefers-reduced-motion: reduce) { .ig-feed { animation-duration: 140s; } }
.phone-mockup:hover .ig-feed { animation-play-state: paused; }

.ig-post { background: #fff; color: #111; }
.ig-post-head { display: flex; align-items: center; gap: .55rem; padding: .65rem .8rem; }
.ig-avatar {
  width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 900; font-size: .9rem; color: #fff;
}
.ig-avatar[data-brand="blissful"]    { background: #E89A7C; }
.ig-avatar[data-brand="classiccycle"] { background: #111; }
.ig-avatar[data-brand="dyna"]        { background: #FF3B46; }
.ig-post-names { display: flex; flex-direction: column; line-height: 1.2; }
.ig-post-names b { font-size: .78rem; font-weight: 700; color: #111; }
.ig-post-names small { font-size: .66rem; color: #8a8a8a; font-weight: 400; }
.ig-more { margin-left: auto; color: #8a8a8a; font-size: .7rem; letter-spacing: .08em; }
.ig-post-img { width: 100%; aspect-ratio: 1/1; overflow: hidden; }
.ig-post-img img { width: 100%; height: 100%; display: block; object-fit: cover; }
.ig-post-actions { display: flex; align-items: center; gap: .95rem; padding: .6rem .8rem .25rem; }
.ig-icon { display: flex; color: #111; }
.ig-icon svg { width: 22px; height: 22px; }
.ig-icon--end { margin-left: auto; }
.ig-post-likes { padding: .15rem .8rem 0; font-size: .72rem; color: #111; }
.ig-post-likes b { font-weight: 700; }
.ig-post-caption { padding: .3rem .8rem .95rem; font-size: .72rem; line-height: 1.45; color: #111; }
.ig-post-caption b { font-weight: 700; margin-right: .35rem; }

/* ── 03 TRUST / CAPABILITY panel ── */
.trust-panel-inner { position: relative; z-index: 2; max-width: 720px; }
.trust-panel-inner p { font-size: 1.3rem; line-height: 1.7; margin-bottom: 1.6rem; }

/* ── CONTACT ── */
.contact-grid { gap: clamp(2rem, 5vw, 4rem); }
.contact-info.card, .contact-form.card { background: none; border: none; border-radius: 0; padding: 0; box-shadow: none; }
.contact-info.card::before, .contact-info.card::after,
.contact-form.card::before, .contact-form.card::after { display: none; }
.contact-info { border-right: 1px solid rgba(243,236,223,.1); padding-right: clamp(1.5rem, 3vw, 2.5rem) !important; }
.contact-info h3 { font-family: var(--display); font-weight: 900; text-transform: uppercase; letter-spacing: 0; color: var(--cream); }
.contact-info > p { font-size: 1.15rem; line-height: 1.7; }
.contact-list b { color: var(--cream); font-size: 1.05rem; }
.contact-list span { font-family: var(--mono); color: rgba(243,236,223,.4); }
.form-group label { font-family: var(--mono); text-transform: uppercase; font-size: .68rem; letter-spacing: .06em; color: rgba(243,236,223,.5); }
.form-group input, .form-group select, .form-group textarea { background: transparent; border: 1px solid rgba(243,236,223,.2); color: var(--cream); border-radius: 0; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
@media (max-width: 900px) { .contact-info { border-right: none; border-bottom: 1px solid rgba(243,236,223,.1); padding-right: 0 !important; padding-bottom: 2rem !important; } }

/* ── FOOTER manifesto CTA ── */
.footer-manifesto { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 2rem; padding-bottom: clamp(2.5rem, 6vw, 4rem); margin-bottom: clamp(2.5rem, 6vw, 4rem); border-bottom: 1px solid rgba(243,236,223,.1); }
.footer-manifesto h2 { font-size: clamp(2.6rem, 6.5vw, 4.8rem); max-width: 16ch; }
.footer-col-heading { font-family: var(--mono) !important; }
.footer-badges span { font-family: var(--mono); }
