/* ===========================================================
   Sähköinspehtoori: sähkökeskusten kunnossapitotarkastukset
   Cleaner Future Oy:n aputoiminimi
   Design system · light theme · teal + yellow · Inter Tight / Inter
   =========================================================== */

:root {
  /* palette */
  --bg:        #ffffff;
  --bg-soft:   #f3f7f6;
  --bg-deep:   #0f1d1a;
  --ink:       #14201d;
  --ink-soft:  #4b5a56;
  --ink-faint: #8b9793;
  --line:      rgba(20,32,29,.10);
  --line-soft: rgba(20,32,29,.06);

  /* brand */
  --brand:         #6aa89a;   /* logon vihreä */
  --accent:        #2c7666;   /* tekstiin/napeille riittävä kontrasti */
  --accent-deep:   #1e5748;
  --accent-bright: #6aa89a;
  --accent-soft:   rgba(106,168,154,.12);
  --yellow:        #f4ea3b;   /* logon keltainen */
  --yellow-deep:   #d9cf1c;

  /* glass */
  --glass-bg:    rgba(255,255,255,.66);
  --glass-bd:    rgba(255,255,255,.55);

  /* type */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-display: 'Inter Tight', 'Inter', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;

  /* motion */
  --e: cubic-bezier(.16, 1, .3, 1);

  /* layout */
  --pad: clamp(20px, 5vw, 56px);
  --maxw: 1240px;
  --radius: 20px;
  --radius-md: 12px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; }
::selection { background: var(--accent); color: #fff; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600; letter-spacing: -.03em; line-height: 1.07; color: var(--ink);
}
.eyebrow {
  font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.1rem;
}
.eyebrow--light { color: rgba(255,255,255,.82); }
em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--accent); letter-spacing: 0;
}
.hero em, .cta em, .band em { color: var(--yellow); }

.section-title { font-size: clamp(1.9rem, 4.2vw, 3.1rem); text-wrap: balance; }
.section-head { margin-bottom: clamp(2.4rem, 5vw, 3.8rem); max-width: 780px; }
.section-lead { color: var(--ink-soft); font-size: 1.08rem; max-width: 660px; margin-top: 1.1rem; }

/* ---------- buttons ---------- */
.btn {
  --bh: 54px;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  height: var(--bh); padding: 0 1.7rem;
  font-size: .96rem; font-weight: 600; letter-spacing: -.01em;
  border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: transform .3s var(--e), background .25s var(--e), color .25s var(--e), box-shadow .3s var(--e), border-color .25s var(--e);
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn--sm { --bh: 46px; font-size: .9rem; }
.btn--block { width: 100%; }
.btn--solid {
  background: var(--accent); color: #fff;
  box-shadow: 0 12px 30px -12px rgba(44,118,102,.7);
}
.btn--solid:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 20px 40px -14px rgba(44,118,102,.85); }
.btn--yellow { background: var(--yellow); color: #14201d; box-shadow: 0 12px 30px -14px rgba(244,234,59,.8); }
.btn--yellow:hover { background: var(--yellow-deep); transform: translateY(-2px); }
.btn--ghost-light {
  background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.45);
  backdrop-filter: blur(6px);
}
.btn--ghost-light:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line); height: 50px; }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--pill { --bh: 44px; background: var(--ink); color: #fff; padding: 0 1.3rem; font-size: .9rem; }
.btn--pill:hover { background: var(--accent); transform: translateY(-2px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 600; color: var(--accent); font-size: .98rem;
  transition: gap .25s var(--e), color .25s var(--e);
}
.link-arrow i { width: 22px; height: 11px; position: relative; display: inline-block; }
.link-arrow i::before, .link-arrow i::after { content: ""; position: absolute; background: currentColor; transition: all .25s var(--e); }
.link-arrow i::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.link-arrow i::after {
  top: 50%; right: 0; width: 8px; height: 8px; background: none;
  border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor;
  transform: translate(0,-50%) rotate(45deg);
}
.link-arrow:hover { gap: .85rem; color: var(--accent-deep); }
.link-arrow--light { color: #fff; }
.link-arrow--light:hover { color: var(--yellow); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--e), transform .8s var(--e); }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--e), box-shadow .35s var(--e), backdrop-filter .35s var(--e);
}
.nav__inner {
  max-width: var(--maxw); margin-inline: auto; padding: 1.05rem var(--pad);
  display: flex; align-items: center; gap: 1.6rem;
}
.nav.scrolled {
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 1px 0 var(--line-soft), 0 14px 34px -26px rgba(20,32,29,.4);
}
.nav.scrolled .brand__name, .nav.scrolled .nav__links a { color: var(--ink); }
.nav.scrolled .nav__toggle span { background: var(--ink); }

.brand { display: inline-flex; align-items: center; gap: .6rem; margin-right: auto; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__logo { display: block; height: 46px; width: auto; }
.brand--footer .brand__logo { height: 52px; }
.brand__name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.12rem;
  letter-spacing: -.03em; color: #fff; transition: color .3s var(--e); white-space: nowrap;
}
.brand__name b { font-weight: 700; }
.brand--footer .brand__name, .brand--dark .brand__name { color: #fff; }
.brand--light .brand__name { color: var(--ink); }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links > a {
  font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.9);
  transition: color .25s var(--e); position: relative;
}
.nav__links > a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1.5px;
  background: currentColor; transition: width .3s var(--e);
}
.nav__links > a:hover::after, .nav__links > a.active::after { width: 100%; }

.nav__toggle {
  display: none; flex-direction: column; justify-content: center; gap: 6px;
  width: 44px; height: 44px; background: none; border: 0; cursor: pointer; padding: 0 10px;
}
.nav__toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--e), opacity .25s var(--e), background .3s var(--e); }
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); background: #fff; }
.nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); background: #fff; }

/* valikko auki: navin brändi ja painike pysyvät vaaleina tummaa taustaa vasten */
.nav.menu-open { background: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
.nav.menu-open .brand__name { color: #fff; }
.nav.menu-open .nav__toggle span { background: #fff; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--bg-deep); color: #fff;
  padding: 6.5rem var(--pad) 2.4rem;
  display: flex; flex-direction: column; gap: 1.6rem;
  transform: translateY(-100%); transition: transform .5s var(--e), visibility 0s .5s;
  visibility: hidden;
}
.mobile-menu.open { transform: none; visibility: visible; transition-delay: 0s; }
.mobile-menu nav { display: flex; flex-direction: column; gap: .3rem; }
.mobile-menu nav a {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
  letter-spacing: -.03em; padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.14);
}
.mobile-menu nav a.active { color: var(--yellow); }
.mobile-menu .btn { margin-top: auto; }

/* ===========================================================
   HERO
   =========================================================== */
.hero { position: relative; min-height: 100svh; padding-top: 5.5rem; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,29,26,.72) 0%, rgba(15,29,26,.32) 32%, rgba(15,29,26,.86) 100%),
    linear-gradient(90deg, rgba(15,29,26,.68) 0%, rgba(15,29,26,.1) 62%);
}
.hero__content { position: relative; width: 100%; max-width: var(--maxw); margin-inline: auto; padding: 0 var(--pad) 2.2rem; }
.hero__title {
  font-size: clamp(2.5rem, 6.4vw, 5.1rem); color: #fff; font-weight: 700;
  letter-spacing: -.045em; margin-bottom: 1.35rem; max-width: 16ch; text-wrap: balance;
}
.hero__sub { color: rgba(255,255,255,.9); font-size: clamp(1.02rem, 1.8vw, 1.24rem); max-width: 560px; margin-bottom: 2.1rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.hero__strip {
  position: relative; margin-top: 2.6rem;
  border-top: 1px solid rgba(255,255,255,.18);
  background: rgba(15,29,26,.42);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.hero__strip-inner {
  max-width: var(--maxw); margin-inline: auto; padding: 1.05rem var(--pad);
  display: flex; align-items: center; flex-wrap: wrap; gap: .5rem 1.4rem;
  color: rgba(255,255,255,.86); font-size: .93rem;
}
.hero__strip b { color: #fff; font-weight: 600; }
.hero__strip .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--yellow); flex: none; }

/* ---------- page hero (alasivut) ---------- */
.page-hero { position: relative; padding: clamp(8.5rem, 16vw, 12rem) 0 clamp(3.4rem, 7vw, 5.6rem); overflow: hidden; }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,29,26,.82) 0%, rgba(15,29,26,.6) 45%, rgba(15,29,26,.88) 100%);
}
.page-hero__content { position: relative; max-width: 820px; }
.page-hero__title { font-size: clamp(2.2rem, 5.4vw, 4.2rem); color: #fff; font-weight: 700; letter-spacing: -.04em; margin-bottom: 1.1rem; text-wrap: balance; }
.page-hero__lead { font-size: clamp(1.02rem, 1.7vw, 1.2rem); color: rgba(255,255,255,.9); max-width: 640px; }
.page-hero .crumbs {
  display: flex; gap: .6rem; align-items: center; flex-wrap: wrap;
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.72); margin-bottom: 1.3rem; font-weight: 500;
}
.page-hero .crumbs a:hover { color: var(--yellow); }

/* ===========================================================
   BLOCKS
   =========================================================== */
.block { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.block--soft { background: var(--bg-soft); }
.block--tight { padding: clamp(3rem, 6vw, 5rem) 0; }

.intro { padding: clamp(4rem, 9vw, 7rem) 0 0; }
.intro__title { font-size: clamp(1.9rem, 4.4vw, 3.2rem); max-width: 15ch; margin-bottom: 1.3rem; }
.intro__lead { color: var(--ink-soft); font-size: 1.1rem; max-width: 620px; }

.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.duo__text > p:not(.eyebrow) { color: var(--ink-soft); margin-top: 1.1rem; }
.duo .ph { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.duo .ph img { width: 100%; height: 100%; object-fit: cover; }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.mini-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  transition: transform .4s var(--e), box-shadow .4s var(--e), border-color .4s var(--e);
}
.block--soft .mini-card { background: #fff; }
.mini-card:hover { transform: translateY(-4px); border-color: transparent; box-shadow: 0 26px 55px -30px rgba(20,32,29,.35); }
.mini-card h3 { font-size: 1.22rem; margin-bottom: .7rem; }
.mini-card p { color: var(--ink-soft); font-size: .98rem; }
.mini-card__icon {
  width: 46px; height: 46px; border-radius: 13px; margin-bottom: 1.1rem;
  display: grid; place-items: center; background: var(--accent-soft); color: var(--accent);
}
.mini-card__icon svg { width: 22px; height: 22px; stroke-width: 1.7; }
.mini-card .link-arrow { margin-top: 1.1rem; font-size: .92rem; }

/* ---------- benefits list ---------- */
.benefits { display: flex; flex-direction: column; gap: .1rem; margin-top: 1.4rem; }
.benefits li {
  position: relative; padding: .85rem 0 .85rem 2.05rem;
  border-bottom: 1px solid var(--line-soft);
  font-weight: 500; color: var(--ink);
}
.benefits li:last-child { border-bottom: 0; }
.benefits li::before {
  content: ""; position: absolute; left: 0; top: 1.25rem;
  width: 12px; height: 7px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.benefits li span { display: block; font-weight: 400; color: var(--ink-soft); font-size: .93rem; margin-top: .2rem; }

/* ===========================================================
   GUARANTEE BAND
   =========================================================== */
.band { position: relative; background: var(--bg-deep); color: #fff; padding: clamp(3.6rem, 8vw, 6rem) 0; overflow: hidden; }
.band::after {
  content: ""; position: absolute; right: -140px; top: 50%; transform: translateY(-50%);
  width: 420px; height: 420px; border-radius: 50%; background: var(--brand); opacity: .16; filter: blur(10px);
}
.band__inner { position: relative; display: grid; grid-template-columns: auto 1fr; gap: clamp(1.6rem, 4vw, 3.4rem); align-items: center; }
.band__badge {
  width: clamp(112px, 15vw, 150px); height: clamp(112px, 15vw, 150px); border-radius: 50%;
  background: var(--yellow); color: #14201d; display: grid; place-content: center; text-align: center;
  font-family: var(--font-display); font-weight: 700; letter-spacing: -.04em; line-height: 1; flex: none;
}
.band__badge b { display: block; font-size: clamp(2.2rem, 4vw, 3rem); }
.band__badge span { display: block; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; margin-top: .35rem; font-weight: 600; }
.band h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.5rem); margin-bottom: .9rem; text-wrap: balance; }
.band p:not(.eyebrow) { color: rgba(255,255,255,.78); max-width: 640px; }
.band p + p { margin-top: .8rem; }

/* ---------- fact / quote ---------- */
.fact {
  border-left: 3px solid var(--yellow); padding: .3rem 0 .3rem 1.4rem;
  font-family: var(--font-display); font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 500; letter-spacing: -.02em; line-height: 1.35;
}
.fact cite { display: block; font-family: var(--font); font-size: .84rem; font-style: normal; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); margin-top: .8rem; }
.band .fact cite { color: rgba(255,255,255,.6); }

.quote-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.8rem, 3.4vw, 2.8rem); max-width: 860px;
}
.quote-card blockquote { font-family: var(--font-display); font-size: clamp(1.15rem, 2.2vw, 1.55rem); font-weight: 500; letter-spacing: -.02em; line-height: 1.4; }
.quote-card figcaption { margin-top: 1.3rem; display: flex; align-items: center; gap: .8rem; font-size: .95rem; color: var(--ink-soft); }
.quote-card figcaption b { color: var(--ink); font-weight: 600; }
.quote-card figcaption .rule { width: 34px; height: 2px; background: var(--yellow); flex: none; }

/* ---------- video (pystyformaatti 9:16) ---------- */
.video-frame {
  max-width: 390px; margin-inline: auto;
  border-radius: var(--radius); overflow: hidden;
  background: var(--bg-deep);
  box-shadow: 0 30px 60px -40px rgba(15,29,26,.45);
}
.video-frame video { display: block; width: 100%; height: auto; }

/* ===========================================================
   PROCESS
   =========================================================== */
.process { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2.4vw, 2.2rem); }
.step { position: relative; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.step::after {
  content: ""; position: absolute; left: 0; top: -1px; height: 2px; width: 0;
  background: var(--accent); transition: width 1s var(--e) .15s;
}
.step.in::after { width: 100%; }
.step__no { font-family: var(--font-display); font-size: .9rem; font-weight: 700; color: var(--accent); letter-spacing: .08em; }
.step h3 { font-size: 1.14rem; margin: .55rem 0 .5rem; }
.step p { color: var(--ink-soft); font-size: .96rem; }

/* ===========================================================
   HINNASTO
   =========================================================== */
.price-card {
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  padding: clamp(1.6rem, 3vw, 2.4rem);
}
.price-card--lead { border-color: var(--accent); box-shadow: 0 26px 55px -34px rgba(44,118,102,.55); }
.price-card__label { font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: .8rem; }
.price-card__sum { font-family: var(--font-display); font-size: clamp(2.2rem, 4.6vw, 3.1rem); font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.price-card__sum small { font-size: .95rem; font-weight: 500; color: var(--ink-faint); letter-spacing: 0; margin-left: .5rem; }
.price-card p:not([class]) { color: var(--ink-soft); font-size: .97rem; margin-top: .9rem; }
.price-rows { display: flex; flex-direction: column; margin-top: 1.2rem; }
.price-rows li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: .85rem 0; border-bottom: 1px solid var(--line-soft); font-weight: 500;
}
.price-rows li:last-child { border-bottom: 0; }
.price-rows b { font-family: var(--font-display); font-size: 1.22rem; font-weight: 700; letter-spacing: -.03em; white-space: nowrap; }
.price-note { color: var(--ink-soft); font-size: .95rem; margin-top: 1.4rem; }

/* ===========================================================
   CROSS-BRAND (Cleaner Future)
   =========================================================== */
.cross { position: relative; overflow: hidden; padding: clamp(3.6rem, 8vw, 6rem) 0; background: var(--bg-soft); }
.cross__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.cross__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; }
.cross__media img { width: 100%; height: 100%; object-fit: cover; }
.cross h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-bottom: 1rem; text-wrap: balance; }
.cross p:not(.eyebrow) { color: var(--ink-soft); }
.cross p + p { margin-top: .9rem; }
.cross .link-arrow { margin-top: 1.4rem; }

/* ===========================================================
   CTA
   =========================================================== */
.cta { position: relative; padding: clamp(4.5rem, 10vw, 8rem) 0; overflow: hidden; }
.cta__media { position: absolute; inset: 0; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; }
.cta__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,29,26,.78), rgba(15,29,26,.9)); }
.cta__content { position: relative; text-align: center; max-width: 760px; margin-inline: auto; }
.cta__title { color: #fff; font-size: clamp(1.9rem, 4.4vw, 3.2rem); margin-bottom: 1.05rem; text-wrap: balance; }
.cta__sub { color: rgba(255,255,255,.84); font-size: 1.06rem; margin-bottom: 2rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.cta__title + .cta__actions { margin-top: 2rem; }

/* ===========================================================
   YHTEYSTIEDOT + LOMAKE
   =========================================================== */
.contact { padding: clamp(4rem, 9vw, 7rem) 0; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact__info h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 1.05rem; }
.contact__info > p:not(.eyebrow) { color: var(--ink-soft); max-width: 480px; }
.contact__rows { margin-top: 2.2rem; display: flex; flex-direction: column; gap: 1.35rem; }
.contact__row { display: flex; gap: 1rem; align-items: flex-start; }
.contact__row-icon {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  display: grid; place-items: center; background: var(--accent-soft); color: var(--accent);
}
.contact__row-icon svg { width: 19px; height: 19px; stroke-width: 1.7; }
.contact__row b { display: block; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; margin-bottom: .2rem; }
.contact__row a { font-weight: 500; transition: color .25s var(--e); }
.contact__row a:hover { color: var(--accent); }
.contact__row span { color: var(--ink-soft); }

.people { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.6rem); }
.person {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.person__photo {
  width: 78px; height: 78px; border-radius: 50%; object-fit: cover; flex: none;
  border: 1px solid var(--line);
}
.person__role { font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: .6rem; }
.person h3 { font-size: 1.24rem; margin-bottom: .8rem; }
.person a { display: block; font-weight: 500; color: var(--ink-soft); transition: color .25s var(--e); word-break: break-word; }
.person a:hover { color: var(--accent); }

.form {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.3rem);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__field { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1rem; }
.form__field label { font-size: .85rem; font-weight: 600; color: var(--ink-soft); }
.form__field input, .form__field select, .form__field textarea {
  font: inherit; font-size: .97rem; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: .8rem .95rem; width: 100%;
  transition: border-color .25s var(--e), box-shadow .25s var(--e);
}
.form__field textarea { min-height: 130px; resize: vertical; }
.form__field input:focus, .form__field select:focus, .form__field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.form .btn { margin-top: .4rem; }
.form__hint { font-size: .84rem; color: var(--ink-faint); margin-top: .9rem; text-align: center; }
.form__error { display: none; font-size: .84rem; color: #b3261e; margin-top: .9rem; text-align: center; }
.form__error.show { display: block; }
.form__error a { color: inherit; text-decoration: underline; }
.form__success { display: none; text-align: center; padding: 2rem .5rem; }
.form__success.show { display: block; }
.form__success .tick {
  width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 1.1rem;
  display: grid; place-items: center; background: var(--accent); color: #fff;
}
.form__success h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.form__success p { color: var(--ink-soft); }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: var(--bg-deep); color: rgba(255,255,255,.72); padding: clamp(3.4rem, 7vw, 5rem) 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(1.8rem, 4vw, 3.4rem); }
.footer__tagline { margin: 1.1rem 0 1.6rem; max-width: 320px; font-size: .97rem; }
.footer__col h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-family: var(--font); font-weight: 600; margin-bottom: 1.1rem; }
.footer__col a, .footer__col span { display: block; font-size: .97rem; margin-bottom: .55rem; transition: color .25s var(--e); }
.footer__col a:hover { color: var(--yellow); }
.footer__label { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); margin: 1rem 0 .4rem; font-weight: 600; }
.footer__bottom {
  margin-top: clamp(2.4rem, 5vw, 3.4rem); padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; justify-content: space-between;
  font-size: .88rem; color: rgba(255,255,255,.55);
}
.footer__bottom a:hover { color: var(--yellow); }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1080px) {
  .process__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.6rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; z-index: 101; position: relative; }
  .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .duo, .contact__grid, .cross__grid { grid-template-columns: 1fr; }
  .duo .ph, .cross__media { order: -1; }
  .band__inner { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .brand__logo { height: 38px; }
  .brand--footer .brand__logo { height: 44px; }
  .hero { min-height: 92svh; padding-top: 5rem; }
  .hero__scrim {
    background: linear-gradient(180deg, rgba(15,29,26,.74) 0%, rgba(15,29,26,.66) 45%, rgba(15,29,26,.92) 100%);
  }
  .hero__title { font-size: clamp(2.05rem, 9vw, 2.8rem); }
  .hero__sub { margin-bottom: 1.6rem; }
  .hero__strip-inner { flex-direction: column; align-items: flex-start; gap: .4rem; }
  .hero__strip .dot { display: none; }
  .form__row { grid-template-columns: 1fr; }
  .people { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn, .cta__actions .btn { width: 100%; }
}
