/* ============================================================
   HIMAZ Consultancy — V2 "New Age" (Kren-inspired minimalism)
   Bone background · Ink type · Purple accent · Anton display
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Hanken+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  --bone: #E9E8E2;
  --bone-2: #DFDED6;
  --ink: #151515;
  --ink-soft: #45443F;
  --muted: #79776E;
  --line: #C9C8BE;
  --purple: #473F99;
  --purple-deep: #322C6E;
  --white: #FFFFFF;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Hanken Grotesk', sans-serif;

  --ease: cubic-bezier(.19, 1, .22, 1);
  --r-img: 22px;
  --gutter: clamp(20px, 4vw, 64px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; overflow-x: clip; }
body {
  font-family: var(--font-body);
  background: var(--bone);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

::selection { background: var(--purple); color: var(--white); }

.wrap { max-width: 1440px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
section { position: relative; }

/* ---------- Type ---------- */
.d-xl, .d-lg, .d-md, .d-sm {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: .96;
  letter-spacing: .01em;
  color: var(--ink);
}
.d-xl { font-size: clamp(64px, 10.5vw, 170px); }
.d-lg { font-size: clamp(46px, 7vw, 110px); }
.d-md { font-size: clamp(32px, 4.6vw, 68px); }
.d-sm { font-size: clamp(24px, 3vw, 40px); }
.accent { color: var(--purple); }
.outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

.label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-soft);
}
.label::before { content: ''; width: 34px; height: 1.5px; background: var(--purple); }
.lede { font-size: clamp(17px, 1.4vw, 21px); font-weight: 400; color: var(--ink-soft); max-width: 60ch; }

/* ---------- Buttons ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--bone);
  font-weight: 600; font-size: 15.5px;
  padding: 16px 32px; border-radius: 999px;
  transition: background .35s var(--ease), transform .35s var(--ease), color .35s;
  cursor: pointer;
}
.pill:hover { background: var(--purple); transform: translateY(-3px); }
.pill svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.pill:hover svg { transform: translate(3px, -3px); }
.pill--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }
.pill--ghost:hover { background: var(--ink); color: var(--bone); }
.pill--bone { background: var(--bone); color: var(--ink); }
.pill--bone:hover { background: var(--white); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 16px; border-bottom: 1.5px solid var(--ink);
  padding-bottom: 4px; transition: color .3s, border-color .3s;
}
.link-arrow svg { width: 15px; height: 15px; transition: transform .35s var(--ease); }
.link-arrow:hover { color: var(--purple); border-color: var(--purple); }
.link-arrow:hover svg { transform: translate(4px, -4px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: background .4s, box-shadow .4s, transform .45s var(--ease);
}
.nav.is-scrolled { background: rgba(233, 232, 226, .82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 1px 0 rgba(21,21,21,.08); }
.nav.is-hidden { transform: translateY(-100%); }
.nav__in {
  max-width: 1440px; margin: 0 auto; height: 88px;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav__logo img { height: 40px; width: auto; }
.nav__links { display: flex; gap: 4px; }
.nav__links a {
  position: relative; font-size: 15.5px; font-weight: 500; color: var(--ink);
  padding: 10px 16px; border-radius: 999px; transition: background .3s;
}
.nav__links a:hover { background: rgba(21,21,21,.06); }
.nav__links a.is-active { font-weight: 700; }
.nav__links a.is-active::after {
  content: ''; position: absolute; left: 50%; bottom: 3px; translate: -50% 0;
  width: 5px; height: 5px; border-radius: 50%; background: var(--purple);
}
.nav .pill { padding: 13px 26px; font-size: 14.5px; }
.burger { display: none; width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: var(--bone); place-items: center; }
.burger svg { width: 22px; height: 22px; }

/* Fullscreen menu */
.menu {
  position: fixed; inset: 0; z-index: 1200; background: var(--ink); color: var(--bone);
  display: flex; flex-direction: column; padding: 26px var(--gutter) 44px;
  clip-path: inset(0 0 100% 0); visibility: hidden;
  transition: clip-path .65s var(--ease), visibility .65s;
}
.menu.is-open { clip-path: inset(0 0 0% 0); visibility: visible; }
.menu__head { display: flex; justify-content: space-between; align-items: center; }
.menu__head img { height: 38px; }
.menu__close { width: 52px; height: 52px; border-radius: 50%; background: var(--bone); color: var(--ink); display: grid; place-items: center; }
.menu__close svg { width: 24px; height: 24px; }
.menu nav { margin: auto 0; display: grid; gap: 4px; }
.menu nav a {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(38px, 9vw, 72px); line-height: 1.06; color: var(--bone);
  display: flex; align-items: baseline; gap: 18px;
  opacity: 0; transform: translateY(30px); transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s;
}
.menu.is-open nav a { opacity: 1; transform: none; }
.menu nav a:hover { color: var(--purple); -webkit-text-stroke: 0; }
.menu nav a i { font-family: var(--font-body); font-style: normal; font-size: 14px; color: #8B897F; letter-spacing: .1em; }
.menu__foot { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 14px; color: #8B897F; }
.menu__foot a:hover { color: var(--bone); }

/* ---------- Reveal machinery ---------- */
.mask { overflow: hidden; display: block; }
.mask > .mask__in { display: block; transform: translateY(115%); transition: transform 1s var(--ease); }
.mask.is-in > .mask__in { transform: translateY(0); }

.fade { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.fade.is-in { opacity: 1; transform: none; }

.ph { overflow: hidden; border-radius: var(--r-img); position: relative; background: var(--bone-2); }
.ph img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.22); transition: transform 1.4s var(--ease); will-change: transform; }
.ph.is-in img { transform: scale(1.02); }
.ph--clip { background: transparent; }
.ph--clip img { clip-path: inset(100% 0 0 0); transition: clip-path 1.1s var(--ease), transform 1.4s var(--ease); }
.ph--clip.is-in img { clip-path: inset(0 0 0 0); }

[data-parallax] { will-change: transform; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: 170px; padding-bottom: 40px; min-height: 92svh; display: flex; flex-direction: column; justify-content: center; }
.hero__line, .mask > .mask__in.hero__line { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 36px); flex-wrap: nowrap; }
.hero__line--indent { padding-left: clamp(0px, 8vw, 130px); }
.hero__img {
  position: relative; height: clamp(90px, 13.5vw, 230px); aspect-ratio: 3/2; flex: none;
  margin-bottom: clamp(10px, 2vw, 18px);
}
.hero__img-frame {
  position: absolute; inset: 0; transform: rotate(-4deg);
  border-radius: clamp(16px, 2vw, 30px); overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: clamp(6px, 1vw, 10px) clamp(10px, 1.6vw, 16px) 0 0 var(--purple);
}
.hero__img-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__img--mobile { display: none; }

.hero__badge { position: relative; display: grid; place-items: center; width: clamp(40px, 6vw, 92px); height: clamp(40px, 6vw, 92px); flex: none; }
.hero__badge-ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: badge-spin 18s linear infinite; }
.hero__badge-ring-text { font-family: var(--font-body); font-size: 9.5px; font-weight: 700; letter-spacing: .03em; fill: var(--ink-soft); text-transform: uppercase; }
.hero__arrow { width: 42%; height: auto; color: var(--ink); }
@keyframes badge-spin { to { transform: rotate(360deg); } }
.hero__meta {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 40px;
  margin-top: clamp(36px, 5vw, 64px); flex-wrap: wrap;
}
.hero__meta p { max-width: 400px; font-size: 17.5px; color: var(--ink-soft); }
.hero__cta { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

/* ---------- Display marquee ---------- */
.dmarquee { border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); padding: clamp(18px, 2.4vw, 34px) 0; overflow: hidden; }
.dmarquee__track { display: flex; width: max-content; animation: dm 26s linear infinite; }
.dmarquee span {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(34px, 5.4vw, 84px); line-height: 1; white-space: nowrap; padding-right: 26px;
}
.dmarquee span.outline { -webkit-text-stroke: 1.5px var(--ink); padding-right: 40px; }
@keyframes dm { to { transform: translateX(-50%); } }

/* ---------- Statement ---------- */
.statement { padding-top: clamp(90px, 12vw, 170px); padding-bottom: clamp(90px, 12vw, 170px); }
.statement__grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(30px, 5vw, 90px); }
.statement h2 { font-size: clamp(26px, 3.2vw, 46px); font-weight: 600; line-height: 1.28; letter-spacing: -.015em; }
.statement h2 em { font-style: normal; color: var(--purple); }
.statement p { margin-top: 22px; color: var(--ink-soft); max-width: 58ch; }
.statement .link-arrow { margin-top: 30px; }

/* ---------- Color block (what we do) ---------- */
.block { padding-top: clamp(60px, 8vw, 120px); }
.block__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: clamp(30px, 4vw, 56px); flex-wrap: wrap; }
.block__panel {
  position: relative; background: var(--purple); border-radius: 0;
  padding-bottom: clamp(60px, 8vw, 120px); margin-top: clamp(-16px, -1.5vw, -8px);
}
.block__imgs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.8vw, 26px);
  transform: translateY(clamp(-32px, -2.5vw, -14px));
  padding: 0 var(--gutter); max-width: 1440px; margin: 0 auto;
}
.block__imgs .ph { aspect-ratio: 3/4.1; }
.block__strip {
  max-width: 1440px; margin: 0 auto; padding: 0 var(--gutter);
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
  color: #CDC9F0;
}
.block__strip h3 { color: var(--white); font-size: clamp(22px, 2.6vw, 34px); font-weight: 600; max-width: 560px; line-height: 1.3; letter-spacing: -.01em; }

/* ---------- Service index rows ---------- */
.svc-index { padding-top: clamp(90px, 12vw, 160px); padding-bottom: clamp(70px, 9vw, 120px); }
.svc-index__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: clamp(36px, 5vw, 64px); flex-wrap: wrap; }
.rows { border-top: 1.5px solid var(--ink); }
.row {
  display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: clamp(14px, 3vw, 40px);
  padding: clamp(20px, 2.6vw, 34px) 8px;
  border-bottom: 1.5px solid var(--ink);
  transition: background .35s, padding .35s var(--ease);
  cursor: pointer; position: relative;
}
.row:hover { background: var(--ink); padding-left: 26px; }
.row__num { font-size: 14px; font-weight: 600; letter-spacing: .14em; color: var(--muted); transition: color .3s; }
.row__name {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(26px, 3.8vw, 54px); line-height: 1; color: var(--ink); transition: color .3s;
}
.row__tag { font-size: 14.5px; color: var(--muted); max-width: 300px; text-align: right; transition: color .3s; display: flex; align-items: center; gap: 16px; }
.row__tag svg { width: 20px; height: 20px; flex: none; transition: transform .35s var(--ease); }
.row:hover .row__num { color: #8B89D9; }
.row:hover .row__name { color: var(--bone); }
.row:hover .row__tag { color: #B9B7AC; }
.row:hover .row__tag svg { transform: translate(4px, -4px); color: var(--bone); }

/* Cursor-follow preview */
.preview {
  position: fixed; z-index: 60; width: 300px; aspect-ratio: 4/3; border-radius: 18px;
  overflow: hidden; pointer-events: none; top: 0; left: 0;
  opacity: 0; transform: scale(.75) rotate(-4deg);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.preview.is-on { opacity: 1; transform: scale(1) rotate(0deg); }
.preview img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .25s; }
.preview img.is-cur { opacity: 1; }

/* ---------- Stats ---------- */
.stats { border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(34px, 4vw, 60px) 24px; text-align: center; border-left: 1.5px solid var(--ink); }
.stat:first-child { border-left: 0; }
.stat b { font-family: var(--font-display); font-weight: 400; font-size: clamp(44px, 5.6vw, 84px); line-height: 1; display: block; }
.stat b i { font-style: normal; color: var(--purple); }
.stat > span { font-size: 14px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 10px; display: block; }

/* ---------- Industries chip marquees ---------- */
.industries { padding: clamp(90px, 12vw, 150px) 0; }
.chipline { overflow: hidden; margin-top: 18px; }
.chipline__track { display: flex; gap: 14px; width: max-content; animation: dm 38s linear infinite; }
.chipline--rev .chipline__track { animation-direction: reverse; }
.chip {
  white-space: nowrap; font-size: 15.5px; font-weight: 600;
  padding: 13px 26px; border-radius: 999px; border: 1.5px solid var(--ink);
  color: var(--ink); background: transparent; transition: background .3s, color .3s;
}
.chip--fill { background: var(--ink); color: var(--bone); }
.chipline .chip:hover { background: var(--purple); border-color: var(--purple); color: var(--white); }

/* ---------- Why list ---------- */
.why { padding-bottom: clamp(90px, 12vw, 160px); }
.why__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.why__sticky { position: sticky; top: 130px; }
.why__sticky .ph { aspect-ratio: 4/4.6; margin-top: 34px; max-width: 420px; }
.why-item { border-bottom: 1.5px solid var(--line); padding: clamp(26px, 3vw, 38px) 0; display: grid; grid-template-columns: 70px 1fr; gap: 20px; }
.why-item:first-child { border-top: 1.5px solid var(--line); }
.why-item b { font-family: var(--font-display); font-weight: 400; font-size: 22px; color: var(--purple); }
.why-item h3 { font-size: 21px; font-weight: 700; letter-spacing: -.01em; }
.why-item p { margin-top: 8px; color: var(--ink-soft); font-size: 15.5px; max-width: 52ch; }

/* ---------- Testimonial cluster ---------- */
.voices { padding: 0 0 clamp(100px, 13vw, 180px); }
.voices__stage { position: relative; max-width: 1080px; margin: clamp(40px, 6vw, 80px) auto 0; min-height: 620px; }
.voices__portrait {
  position: absolute; left: 50%; top: 50%; translate: -50% -50%;
  width: min(400px, 62vw); aspect-ratio: 3.4/4.3; border-radius: var(--r-img); overflow: hidden;
}
.voices__portrait img { width: 100%; height: 100%; object-fit: cover; }
.vcard {
  position: absolute; background: rgba(255,255,255,.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.8); border-radius: 24px;
  padding: 28px 30px; max-width: 350px; box-shadow: 0 24px 60px rgba(21,21,21,.10);
}
.vcard p { font-size: 17.5px; font-weight: 500; line-height: 1.5; color: var(--ink); }
.vcard span { display: block; margin-top: 16px; font-size: 13.5px; font-weight: 600; color: var(--muted); }
.vcard--1 { left: 0; top: 6%; }
.vcard--2 { right: 0; top: 30%; }
.vcard--3 { left: 6%; bottom: 4%; }
.vcard--pill {
  display: flex; align-items: center; gap: 14px; padding: 18px 26px; border-radius: 999px;
  right: 8%; top: 2%;
}
.vcard--pill b { font-family: var(--font-display); font-weight: 400; font-size: 30px; }
.vcard--pill span { margin: 0; font-size: 12.5px; }

/* ---------- End CTA ---------- */
.end { padding: clamp(110px, 15vw, 200px) 0 0; text-align: center; }
.end .d-lg { max-width: 1100px; margin: 0 auto; }
.big-link {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  max-width: 1440px; margin: clamp(60px, 9vw, 130px) auto 0;
  padding: 0 var(--gutter) clamp(28px, 3vw, 44px);
  border-bottom: 1.5px solid var(--ink);
  transition: color .35s;
}
.big-link span { font-size: clamp(34px, 6vw, 84px); font-weight: 500; letter-spacing: -.02em; }
.big-link svg { width: clamp(38px, 5vw, 74px); height: auto; transition: transform .5s var(--ease); }
.big-link:hover { color: var(--purple); }
.big-link:hover svg { transform: translate(10px, -10px) rotate(0deg); }

/* ---------- Footer ---------- */
.footer { padding: clamp(60px, 8vw, 100px) 0 36px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(30px, 4vw, 60px); padding-bottom: clamp(44px, 6vw, 70px); }
.footer__brand img { height: 46px; margin-bottom: 20px; }
.footer__brand p { color: var(--ink-soft); font-size: 15px; max-width: 300px; }
.footer h4 { font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.footer li { margin-bottom: 12px; }
.footer li a { font-size: 15.5px; font-weight: 500; transition: color .3s; }
.footer li a:hover { color: var(--purple); }
.footer address { font-style: normal; font-size: 15px; color: var(--ink-soft); line-height: 1.7; }
.footer address a { font-weight: 600; color: var(--ink); }
.footer address a:hover { color: var(--purple); }
.footer__socials { display: flex; gap: 10px; margin-top: 20px; }
.footer__socials a {
  width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--ink);
  display: grid; place-items: center; transition: background .3s, color .3s, border-color .3s, transform .35s var(--ease);
}
.footer__socials a:hover { background: var(--purple); border-color: var(--purple); color: var(--white); transform: translateY(-4px); }
.footer__socials svg { width: 17px; height: 17px; }
.footer__bar {
  border-top: 1.5px solid var(--line); padding-top: 26px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--muted);
}

/* ---------- Inner page hero ---------- */
.phero { padding-top: 190px; padding-bottom: clamp(50px, 7vw, 90px); }
.phero .label { margin-bottom: 22px; }
.phero__meta { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-top: 34px; flex-wrap: wrap; }
.phero__meta p { max-width: 480px; color: var(--ink-soft); font-size: 18px; }

/* ---------- Split feature (about/services) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 100px); align-items: center; padding-top: clamp(50px, 7vw, 100px); padding-bottom: clamp(50px, 7vw, 100px); }
.split .ph { aspect-ratio: 4/4.4; }
.split--flip > .split__media { order: 2; }
.split h2.h-md { font-size: clamp(28px, 3.4vw, 48px); font-weight: 600; letter-spacing: -.02em; line-height: 1.15; }
.split .body { margin-top: 20px; color: var(--ink-soft); }
.split .body + .body { margin-top: 14px; }

/* chips cloud */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chips .chip { font-size: 14px; padding: 10px 20px; border-color: var(--line); color: var(--ink-soft); cursor: default; }
.chips .chip:hover { border-color: var(--purple); color: var(--purple); background: transparent; }

/* Service detail blocks */
.sdetail { border-top: 1.5px solid var(--ink); padding: clamp(60px, 8vw, 100px) 0; }
.sdetail__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(36px, 6vw, 90px); align-items: start; }
.sdetail__grid .ph { aspect-ratio: 4/3; position: sticky; top: 130px; }
.sdetail__num { font-size: 14px; font-weight: 700; letter-spacing: .2em; color: var(--purple); margin-bottom: 14px; display: block; }
.sdetail h2 { margin-bottom: 18px; }
.sdetail .body { color: var(--ink-soft); }

/* FAQ */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1.5px solid var(--line); }
.faq-item__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 26px 4px; text-align: left; font-size: clamp(17px, 1.6vw, 21px); font-weight: 600;
}
.faq-item__q svg { width: 22px; height: 22px; flex: none; transition: transform .4s var(--ease); }
.faq-item.is-open .faq-item__q svg { transform: rotate(45deg); color: var(--purple); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-item__a p { padding: 0 4px 26px; color: var(--ink-soft); max-width: 68ch; }

/* ---------- Careers ---------- */
.job {
  display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: clamp(16px, 3vw, 40px);
  padding: clamp(24px, 3vw, 36px) 8px; border-bottom: 1.5px solid var(--ink); transition: background .35s, padding .35s var(--ease);
}
.jobs { border-top: 1.5px solid var(--ink); }
.job:hover { background: rgba(21,21,21,.04); padding-left: 22px; }
.job h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(22px, 2.8vw, 38px); line-height: 1.05; }
.job__meta { display: flex; gap: 20px; font-size: 14px; font-weight: 600; color: var(--muted); flex-wrap: wrap; }
.job .tagnew { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; color: var(--white); background: var(--purple); border-radius: 999px; padding: 5px 12px; margin-left: 14px; vertical-align: middle; }

/* ---------- Blog ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 40px); }
.post { display: flex; flex-direction: column; }
.post .ph { aspect-ratio: 4/3; }
.post:hover .ph img { transform: scale(1.08); }
.post__meta { display: flex; gap: 12px; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin: 20px 0 10px; }
.post__meta .cat { color: var(--purple); }
.post h3 { font-size: clamp(19px, 1.8vw, 24px); font-weight: 700; letter-spacing: -.01em; line-height: 1.3; transition: color .3s; }
.post:hover h3 { color: var(--purple); }
.post p { margin-top: 10px; color: var(--ink-soft); font-size: 15px; flex: 1; }
.post .link-arrow { margin-top: 18px; align-self: flex-start; font-size: 14.5px; }

/* Newsletter band */
.nl-band { background: var(--ink); color: var(--bone); padding: clamp(70px, 9vw, 110px) 0; text-align: center; }
.nl-band .d-md { color: var(--bone); }
.nl-band p { color: #A5A399; margin-top: 14px; }
.nl-form { display: flex; gap: 12px; max-width: 520px; margin: 36px auto 0; }
.nl-form input {
  flex: 1; min-width: 0; background: transparent; border: 0; border-bottom: 1.5px solid #55534A;
  color: var(--bone); font: inherit; font-size: 16px; padding: 14px 4px;
  transition: border-color .3s;
}
.nl-form input::placeholder { color: #7C7A70; }
.nl-form input:focus { outline: none; border-color: var(--bone); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(40px, 6vw, 110px); padding-bottom: clamp(70px, 9vw, 120px); }
.cinfo { display: grid; gap: 0; align-content: start; }
.cinfo__item { border-bottom: 1.5px solid var(--line); padding: 24px 0; }
.cinfo__item h3 { font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.cinfo__item p, .cinfo__item a { font-size: 18px; font-weight: 600; color: var(--ink); line-height: 1.5; }
.cinfo__item a:hover { color: var(--purple); }
.cinfo__item small { display: block; font-size: 14.5px; font-weight: 400; color: var(--ink-soft); margin-top: 4px; }

.cform .fields { display: grid; grid-template-columns: 1fr 1fr; gap: 0 34px; }
.cform .field { position: relative; padding: 20px 0 8px; }
.cform .field.full { grid-column: 1/-1; }
.cform label { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.cform input, .cform select, .cform textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1.5px solid var(--line);
  font: inherit; font-size: 17px; font-weight: 500; color: var(--ink); padding: 10px 2px 14px;
  border-radius: 0; transition: border-color .3s;
}
.cform textarea { min-height: 110px; resize: vertical; }
.cform input:focus, .cform select:focus, .cform textarea:focus { outline: none; border-color: var(--purple); }
.cform .err { display: none; font-size: 12.5px; font-weight: 600; color: #C0392B; margin-top: 6px; }
.cform .field.has-error input, .cform .field.has-error textarea { border-color: #C0392B; }
.cform .field.has-error .err { display: block; }
.cform .pill { margin-top: 36px; }
.form-ok { display: none; padding: 50px 0; text-align: center; }
.form-ok.is-visible { display: block; }
.form-ok .d-sm { margin-bottom: 10px; }
.map { border-radius: var(--r-img); overflow: hidden; margin-bottom: clamp(70px, 9vw, 120px); filter: grayscale(.5); }
.map iframe { width: 100%; height: 440px; border: 0; display: block; }

/* ---------- Utility ---------- */
.pt-lg { padding-top: clamp(90px, 12vw, 160px); }
.pb-lg { padding-bottom: clamp(90px, 12vw, 160px); }
.center { text-align: center; }
.mt-30 { margin-top: 30px; }

/* Floating WhatsApp */
.wa {
  position: fixed; right: 24px; bottom: 24px; z-index: 900;
  width: 54px; height: 54px; border-radius: 50%; background: var(--ink); color: var(--bone);
  display: grid; place-items: center; transition: background .3s, transform .35s var(--ease);
}
.wa:hover { background: #25D366; transform: scale(1.08); }
.wa svg { width: 26px; height: 26px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav .pill { display: none; }
  .burger { display: grid; }
  .statement__grid, .why__grid, .split, .sdetail__grid, .contact-grid { grid-template-columns: 1fr; }
  .split--flip > .split__media { order: 0; }
  .why__sticky { position: static; }
  .sdetail__grid .ph { position: static; }
  .block__imgs { grid-template-columns: repeat(2, 1fr); }
  .posts { grid-template-columns: repeat(2, 1fr); }
  .voices__stage { min-height: 560px; }
  .vcard { max-width: 300px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav__in { height: 74px; }
  html { scroll-padding-top: 90px; }
  .hero { padding-top: 130px; min-height: 0; }
  .hero__line--indent { padding-left: 0; }
  .hero__line, .mask > .mask__in.hero__line { flex-wrap: wrap; row-gap: 8px; }
  .hero__img--inline { display: none; }
  .hero__img--mobile {
    display: block; margin: 18px 0 0; height: clamp(130px, 42vw, 220px); aspect-ratio: 3/2;
  }
  .d-xl { font-size: clamp(42px, 12.5vw, 170px); }
  .mask > .mask__in.hero__line--tight { flex-wrap: nowrap; font-size: clamp(28px, 8.7vw, 170px); }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat { border-left: 0; border-top: 1.5px solid var(--ink); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .stat:nth-child(even) { border-left: 1.5px solid var(--ink); }
  .row { grid-template-columns: 44px 1fr; }
  .row__tag { display: none; }
  .posts { grid-template-columns: 1fr; }
  .job { grid-template-columns: 1fr; align-items: flex-start; }
  .voices__stage { min-height: 0; display: grid; gap: 16px; }
  .voices__portrait { position: static; translate: none; width: 100%; aspect-ratio: 16/10; order: -1; }
  .vcard { position: static; max-width: none; }
  .big-link span { font-size: 30px; }
  .nl-form { flex-direction: column; }
  .cform .fields { grid-template-columns: 1fr; }
  .preview { display: none; }
}
@media (max-width: 360px) {
  .hero__img-badge { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .mask > .mask__in { transform: none; }
  .fade { opacity: 1; transform: none; }
  .ph img { transform: none; }
  .ph--clip { clip-path: none; }
}
