/* ============================================================
   FOTO BACHMANN — Website
   Shared component styles. Built on colors_and_type.css tokens.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--fg1);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: var(--magenta-200); color: var(--ink); }

:root {
  --r-card: 28px;
  --r-card-lg: 40px;
  --r-img: 32px;
  --maxw: 1200px;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.wrap-wide { max-width: 1340px; margin: 0 auto; padding: 0 28px; }

/* image-slot + placeholder */
image-slot { border-radius: var(--r-img); overflow: hidden; background: var(--magenta-100); display: block; }
.ph {
  background: var(--magenta-100);
  background-image:
    radial-gradient(120% 130% at 22% 12%, rgba(243,61,160,0.20), rgba(227,0,135,0.03)),
    repeating-linear-gradient(135deg, rgba(227,0,135,0.045) 0 22px, transparent 22px 44px);
  display: flex; align-items: center; justify-content: center;
  color: var(--magenta-600); border-radius: var(--r-img);
}
.ph svg { width: 44px; height: 44px; opacity: 0.55; }

/* ---------- Kicker ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-text);
}
.kicker::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.kicker.on-dark { color: var(--magenta-200); }
.kicker.on-accent { color: #fff; }
.kicker.on-accent::before { background: #fff; }
.hl { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 16px; font-weight: 700; border: none; cursor: pointer;
  border-radius: var(--radius-pill); padding: 15px 28px; line-height: 1;
  transition: background var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-primary:active { background: var(--accent-press); transform: translateY(0); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: #423d31; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--accent); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 17px 34px; font-size: 17px; }
.btn-sm { padding: 11px 20px; font-size: 14.5px; }
.btn-text {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 16px; color: var(--accent-text); cursor: pointer;
  background: none; border: none; padding: 4px 0;
}
.btn-text svg { width: 18px; height: 18px; transition: transform var(--dur-base) var(--ease-out); }
.btn-text:hover svg { transform: translateX(5px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(248,246,239,0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap-wide {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px; gap: 24px;
}
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  position: relative; font-size: 15.5px; font-weight: 600; color: var(--fg1);
  padding: 10px 16px; border-radius: var(--radius-pill);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav-links a:hover { color: var(--accent-text); background: var(--magenta-100); }
.nav-links a.active { color: var(--accent-text); background: var(--magenta-100); }
.nav-right { display: flex; align-items: center; gap: 12px; flex: none; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 46px; height: 46px; align-items: center; justify-content: center;
  border-radius: var(--radius-pill); color: var(--ink);
}
.nav-toggle:hover { background: var(--magenta-100); }
.nav-toggle svg { width: 26px; height: 26px; }

/* dropdown */
.has-drop { position: relative; }
.has-drop > a { display: inline-flex; align-items: center; gap: 5px; }
.has-drop > a svg { width: 15px; height: 15px; transition: transform var(--dur-base); }
.has-drop:hover > a svg { transform: rotate(180deg); }
.drop {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 260px;
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  box-shadow: var(--shadow-md); padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), visibility var(--dur-base);
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: none; }
.drop a {
  display: flex; flex-direction: column; gap: 2px; padding: 12px 14px;
  border-radius: 14px; background: none;
}
.drop a:hover { background: var(--magenta-100); }
.drop a .t { font-size: 15px; font-weight: 700; color: var(--ink); }
.drop a:hover .t { color: var(--accent-text); }
.drop a .d { font-size: 13px; font-weight: 500; color: var(--fg2); }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 95; display: none;
  background: rgba(46,43,34,0.42); backdrop-filter: blur(3px);
}
.mobile-nav.open { display: block; }
.mobile-nav .panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(88vw, 380px);
  background: var(--paper); padding: 24px 26px 40px;
  display: flex; flex-direction: column; gap: 4px; box-shadow: var(--shadow-lg);
  overflow-y: auto;
}
.mobile-nav .panel .m-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.mobile-nav .panel .m-top img { height: 40px; }
.mobile-nav .panel a {
  font-size: 20px; font-weight: 700; color: var(--fg1);
  padding: 15px 8px; border-bottom: 1px solid var(--line);
}
.mobile-nav .panel a.sub { font-size: 16px; font-weight: 600; color: var(--fg2); padding-left: 22px; }
.mobile-nav .panel .btn { margin-top: 22px; }
.icon-btn { background: none; border: none; cursor: pointer; color: var(--ink); padding: 8px; display: inline-flex; border-radius: var(--radius-pill); }
.icon-btn:hover { background: var(--magenta-100); }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.band { padding: 104px 0; position: relative; }
.band.tight { padding: 76px 0; }
.band.paper { background: var(--paper); }
.band.white { background: var(--white); }
.band.tint { background: var(--magenta-100); }
.band.ink { background: var(--ink); color: var(--paper); }
.band.accent { background: var(--accent); color: #fff; }

.sec-head { max-width: 64ch; margin: 0 0 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .kicker { justify-content: center; }
.sec-head .kicker { margin-bottom: 18px; }
.sec-head h2 {
  font-weight: 800; font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  letter-spacing: -0.035em; line-height: 1.04; margin: 0 0 18px;
}
.sec-head p { font-size: 18px; line-height: 1.6; color: var(--fg2); margin: 0; }
.band.ink .sec-head p, .band.ink .sec-head h2 { color: inherit; }
.band.ink .sec-head p { color: var(--neutral-300); }

/* split head */
.head-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: end; margin-bottom: 56px; }
.head-split h2 { font-weight: 800; font-size: clamp(2.1rem, 4.2vw, 3.2rem); letter-spacing: -0.035em; line-height: 1.04; margin: 16px 0 0; }
.head-split .lede { font-size: 17px; line-height: 1.62; color: var(--fg2); margin: 0; }
.band.ink .head-split .lede { color: var(--neutral-300); }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 60px 0 96px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 56px; align-items: center; }
.hero h1 {
  font-weight: 800; font-size: clamp(2.9rem, 5.8vw, 4.7rem);
  line-height: 1.0; letter-spacing: -0.042em; margin: 24px 0 22px; max-width: 13ch;
}
.hero p.lede { font-size: 19px; line-height: 1.6; color: var(--fg2); margin: 0 0 32px; max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust { display: flex; align-items: center; gap: 20px; margin-top: 38px; flex-wrap: wrap; }
.avatars { display: flex; }
.avatars span {
  width: 44px; height: 44px; border-radius: 50%; border: 3px solid var(--paper);
  margin-left: -12px; background: var(--magenta-200); display: block;
  background-size: cover; background-position: center;
}
.avatars span:first-child { margin-left: 0; }
.hero-trust .t-txt { font-size: 14.5px; color: var(--fg2); line-height: 1.4; }
.hero-trust .t-txt b { color: var(--ink); }
.stars { color: var(--accent); letter-spacing: 2px; font-size: 15px; }

.hero-visual { position: relative; }
.hero-visual .main-img { width: 100%; height: clamp(440px, 46vw, 600px); border-radius: var(--r-card-lg); }
.float-card {
  position: absolute; background: var(--white); border-radius: 22px;
  box-shadow: var(--shadow-md); padding: 16px 20px; display: flex; align-items: center; gap: 13px;
}
.float-card .ic { width: 44px; height: 44px; border-radius: 14px; background: var(--magenta-100); color: var(--accent); display: flex; align-items: center; justify-content: center; flex: none; }
.float-card .ic svg { width: 22px; height: 22px; }
.float-card .big { font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; line-height: 1; }
.float-card .small { font-size: 13px; color: var(--fg2); margin-top: 3px; }
.blob {
  position: absolute; border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  background: var(--magenta-100); z-index: -1;
}

/* ============================================================
   CARDS — services / offers
   ============================================================ */
.card-grid { display: grid; gap: 22px; }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.s-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 30px; transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base);
  display: flex; flex-direction: column; min-height: 100%;
}
.s-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--magenta-200); }
.s-card .ic-pill { width: 56px; height: 56px; border-radius: 18px; background: var(--magenta-100); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.s-card .ic-pill svg { width: 27px; height: 27px; }
.s-card h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 10px; }
.s-card p { font-size: 15.5px; line-height: 1.58; color: var(--fg2); margin: 0 0 20px; flex: 1; }
.s-card.feature { background: var(--accent); color: #fff; border-color: var(--accent); }
.s-card.feature .ic-pill { background: rgba(255,255,255,0.18); color: #fff; }
.s-card.feature p { color: rgba(255,255,255,0.9); }
.s-card.feature .btn-text { color: #fff; }

.tile {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tile .img-wrap { overflow: hidden; aspect-ratio: 3/2.1; }
.tile .img-wrap image-slot, .tile .img-wrap .ph { width: 100%; height: 100%; border-radius: 0; transition: transform var(--dur-slow) var(--ease-out); }
.tile:hover .img-wrap image-slot, .tile:hover .img-wrap .ph { transform: scale(1.04); }
.tile .body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.tile .body h3 { font-size: 23px; font-weight: 700; letter-spacing: -0.02em; margin: 12px 0 10px; }
.tile .body p { font-size: 15.5px; line-height: 1.58; color: var(--fg2); margin: 0 0 22px; flex: 1; }
.chip { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-text); background: var(--magenta-100); padding: 7px 13px; border-radius: var(--radius-pill); }

/* ============================================================
   STAT BAND
   ============================================================ */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat .num { font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--accent); }
.band.ink .stat .num, .band.accent .stat .num { color: #fff; }
.band.accent .stat .num { color: #fff; }
.stat .lbl { font-size: 15px; color: var(--fg2); margin-top: 12px; line-height: 1.4; }
.band.ink .stat .lbl { color: var(--neutral-300); }
.band.accent .stat .lbl { color: rgba(255,255,255,0.85); }
.stat .num .suf { color: var(--magenta-500); }
.band.accent .stat .num .suf { color: rgba(255,255,255,0.7); }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 32px 30px; position: relative;
}
.step .n {
  width: 52px; height: 52px; border-radius: 50%; background: var(--magenta-100);
  color: var(--accent); display: flex; align-items: center; justify-content: center;
  font-size: 21px; font-weight: 800; margin-bottom: 22px;
}
.step h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 10px; }
.step p { font-size: 15.5px; line-height: 1.58; color: var(--fg2); margin: 0; }

/* ============================================================
   SPLIT FEATURE
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media image-slot, .split-media .ph { width: 100%; height: clamp(360px, 40vw, 480px); border-radius: var(--r-card-lg); }
.split h2 { font-weight: 800; font-size: clamp(2rem, 3.8vw, 2.9rem); letter-spacing: -0.034em; line-height: 1.06; margin: 16px 0 20px; }
.split p { font-size: 17px; line-height: 1.62; color: var(--fg2); margin: 0 0 18px; }
.feat-list { list-style: none; padding: 0; margin: 26px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.feat-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; line-height: 1.5; color: var(--fg1); }
.feat-list li .ck { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--magenta-100); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.feat-list li .ck svg { width: 15px; height: 15px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.t-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card); padding: 32px 30px; display: flex; flex-direction: column; }
.t-card .stars { margin-bottom: 18px; }
.t-card blockquote { margin: 0 0 24px; font-size: 17px; line-height: 1.58; color: var(--fg1); flex: 1; }
.t-card .who { display: flex; align-items: center; gap: 13px; }
.t-card .who .av { width: 46px; height: 46px; border-radius: 50%; background: var(--magenta-100); background-size: cover; background-position: center; flex: none; }
.t-card .who .nm { font-size: 15.5px; font-weight: 700; color: var(--ink); }
.t-card .who .rl { font-size: 13.5px; color: var(--fg2); margin-top: 2px; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 4px; font-size: 19px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em;
}
.faq-q .pm { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--magenta-100); color: var(--accent); display: flex; align-items: center; justify-content: center; transition: background var(--dur-base), color var(--dur-base), transform var(--dur-base); }
.faq-q .pm svg { width: 18px; height: 18px; transition: transform var(--dur-base) var(--ease-out); }
.faq-item.open .faq-q .pm { background: var(--accent); color: #fff; }
.faq-item.open .faq-q .pm svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease-out); }
.faq-a .inner { padding: 0 4px 26px; font-size: 16px; line-height: 1.62; color: var(--fg2); max-width: 70ch; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-card-lg); background: var(--accent); color: #fff; padding: 72px 64px; }
.cta-band h2 { font-weight: 800; font-size: clamp(2.1rem, 4vw, 3.2rem); letter-spacing: -0.035em; line-height: 1.05; margin: 0 0 16px; max-width: 16ch; }
.cta-band p { font-size: 18px; line-height: 1.55; color: rgba(255,255,255,0.92); margin: 0 0 30px; max-width: 50ch; }
.cta-band .deco { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.10); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: var(--neutral-300); padding: 80px 0 36px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 56px; }
.site-footer .f-brand img { height: 46px; margin-bottom: 22px; }
.site-footer .f-brand p { font-size: 15.5px; line-height: 1.6; color: var(--neutral-400); margin: 0 0 22px; max-width: 32ch; }
.site-footer h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--neutral-500); margin: 0 0 20px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.site-footer ul a { font-size: 15.5px; color: var(--neutral-300); transition: color var(--dur-fast); }
.site-footer ul a:hover { color: #fff; }
.site-footer .contact-row { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; color: var(--neutral-300); margin-bottom: 14px; }
.site-footer .contact-row svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--magenta-500); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.foot-bottom p { font-size: 14px; color: var(--neutral-500); margin: 0; }
.foot-bottom .socials { display: flex; gap: 10px; }
.foot-bottom .socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.16); display: flex; align-items: center; justify-content: center; color: var(--neutral-300); transition: background var(--dur-base), color var(--dur-base), border-color var(--dur-base); }
.foot-bottom .socials a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.foot-bottom .socials a svg { width: 18px; height: 18px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { padding: 64px 0 72px; background: var(--magenta-100); position: relative; overflow: hidden; }
.page-hero .inner { max-width: 56ch; }
.page-hero h1 { font-weight: 800; font-size: clamp(2.6rem, 5.2vw, 4.1rem); letter-spacing: -0.04em; line-height: 1.02; margin: 20px 0 18px; }
.page-hero p { font-size: 19px; line-height: 1.58; color: var(--fg2); margin: 0; }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--fg2); margin-bottom: 4px; }
.crumbs a:hover { color: var(--accent-text); }
.crumbs .sep { color: var(--neutral-400); }
.page-hero .ph-blob { position: absolute; border-radius: 50%; background: rgba(227,0,135,0.07); }

/* ============================================================
   FORMS
   ============================================================ */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card-lg); padding: 44px; }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 14.5px; font-weight: 700; color: var(--ink); margin-bottom: 9px; }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line-strong); border-radius: 14px;
  padding: 14px 16px; transition: border-color var(--dur-fast), box-shadow var(--dur-fast); -webkit-appearance: none;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--magenta-100); }
.field.error input, .field.error select, .field.error textarea { border-color: #d6336c; }
.field .err-msg { display: none; font-size: 13px; color: #d6336c; margin-top: 7px; font-weight: 600; }
.field.error .err-msg { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success .ic { width: 72px; height: 72px; border-radius: 50%; background: var(--magenta-100); color: var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
.form-success .ic svg { width: 36px; height: 36px; }
.form-success h3 { font-size: 26px; font-weight: 800; letter-spacing: -0.03em; margin: 0 0 12px; }
.form-success p { font-size: 17px; color: var(--fg2); line-height: 1.55; margin: 0; }

.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card); padding: 28px; display: flex; gap: 18px; align-items: flex-start; }
.info-card .ic { width: 52px; height: 52px; border-radius: 16px; background: var(--magenta-100); color: var(--accent); display: flex; align-items: center; justify-content: center; flex: none; }
.info-card .ic svg { width: 24px; height: 24px; }
.info-card h3 { font-size: 17px; font-weight: 700; margin: 0 0 6px; letter-spacing: -0.01em; }
.info-card p, .info-card a { font-size: 15.5px; line-height: 1.5; color: var(--fg2); margin: 0; }
.info-card a:hover { color: var(--accent-text); }

/* ============================================================
   GALLERY + LIGHTBOX
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery .g-item { border-radius: var(--r-img); overflow: hidden; cursor: pointer; aspect-ratio: 1; position: relative; }
.gallery .g-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery .g-item image-slot, .gallery .g-item .ph { width: 100%; height: 100%; border-radius: 0; transition: transform var(--dur-slow) var(--ease-out); }
.gallery .g-item:hover image-slot, .gallery .g-item:hover .ph { transform: scale(1.05); }
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(46,43,34,0.86); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lightbox .lb-inner { max-width: 80vw; max-height: 84vh; border-radius: 20px; overflow: hidden; background: var(--white); }
.lightbox .lb-inner .ph, .lightbox .lb-inner image-slot { width: min(70vw, 900px); height: min(70vh, 640px); border-radius: 0; }
.lightbox .lb-close { position: absolute; top: 28px; right: 32px; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.14); border: none; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lightbox .lb-close:hover { background: rgba(255,255,255,0.26); }
.lightbox .lb-close svg { width: 24px; height: 24px; }

/* ============================================================
   PLUS DECOR
   ============================================================ */
.plus { position: absolute; color: var(--magenta-500); font-size: 28px; line-height: 1; user-select: none; pointer-events: none; opacity: 0.8; }

/* ============================================================
   REVEAL — CSS fallback (GSAP overrides on pages that use it)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .nav-links, .nav-right .btn { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero h1 { max-width: 16ch; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
  .head-split { grid-template-columns: 1fr; gap: 18px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 860px) {
  .card-grid.cols-3, .card-grid.cols-4, .steps, .t-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .band { padding: 76px 0; }
  .cta-band { padding: 52px 32px; }
}
@media (max-width: 600px) {
  .wrap, .wrap-wide { padding: 0 20px; }
  .card-grid.cols-2, .card-grid.cols-3, .card-grid.cols-4, .steps, .t-grid, .field-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual .float-card { display: none; }
  .form-card { padding: 28px 22px; }
  .lightbox { padding: 18px; }
  .lightbox .lb-close { top: 14px; right: 16px; }
}
