/* ==========================================================================
   AVVA REKLAM — Design System "Molten Amber on Graphite"
   Editorial • Cinematic • Premium fabrication brand
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Surfaces */
  --bg:        #0B0B0D;
  --bg-2:      #0F1013;
  --surface:   #16171C;
  --surface-2: #1C1D23;
  --line:      rgba(255, 255, 255, 0.09);
  --line-2:    rgba(255, 255, 255, 0.14);

  /* Ink */
  --ink:       #F4F1EA;
  --ink-soft:  rgba(244, 241, 234, 0.66);
  --ink-faint: rgba(244, 241, 234, 0.42);
  --ink-dim:   rgba(244, 241, 234, 0.26);

  /* Accent — molten amber */
  --amber:     #FF5E1A;
  --amber-2:   #FF8A3D;
  --gold:      #FFB020;
  --glow:      rgba(255, 94, 26, 0.40);

  /* Type */
  --display: "Archivo", "Inter", sans-serif;
  --body:    "Inter", system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Metrics */
  --container: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-sm: 12px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-2: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--amber); color: #0B0B0D; }

/* Film grain overlay */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  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='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(72px, 11vw, 160px) 0; position: relative; }
.section--tight { padding: clamp(56px, 8vw, 110px) 0; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--amber); opacity: 0.7;
}
.eyebrow--center { justify-content: center; }

/* ---------- Headings ---------- */
.h-xxl, .h-xl, .h-lg, .h-md {
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.h-xxl { font-size: clamp(2.8rem, 8.5vw, 6.6rem); }
.h-xl  { font-size: clamp(2.4rem, 6vw, 4.6rem); }
.h-lg  { font-size: clamp(1.9rem, 3.6vw, 3rem); }
.h-md  { font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 600; }
.accent { color: var(--amber); }
.text-grad {
  background: linear-gradient(100deg, var(--amber) 0%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--ink-soft); max-width: 56ch; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 15px; --pad-x: 26px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--body); font-weight: 600; font-size: 0.95rem;
  border-radius: 100px; border: 1px solid transparent;
  transition: transform .5s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), box-shadow .5s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform .45s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--amber); color: #0B0B0D; box-shadow: 0 8px 30px -8px var(--glow); }
.btn-primary:hover { background: var(--amber-2); transform: translateY(-2px); box-shadow: 0 16px 44px -10px var(--glow); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); background: rgba(255,255,255,0.03); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }

.btn-lg { --pad-y: 18px; --pad-x: 34px; font-size: 1.02rem; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  padding: 20px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  padding: 13px 0;
  background: rgba(11, 11, 13, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: baseline; gap: 7px; font-family: var(--display); }
.brand__mark { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.brand__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); display: inline-block; box-shadow: 0 0 14px var(--glow); align-self: center; }
.brand__sub { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.32em; color: var(--ink-faint); text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-link {
  position: relative; padding: 9px 15px; font-size: 0.92rem; font-weight: 500;
  color: var(--ink-soft); border-radius: 100px; transition: color .3s var(--ease), background .3s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--ink); }
.nav-link.active::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 2px; height: 2px;
  background: var(--amber); border-radius: 2px;
}
.nav-cta { margin-left: 8px; }
.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line-2); border-radius: 12px; background: transparent; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { width: 18px; height: 1.6px; background: var(--ink); transition: transform .4s var(--ease), opacity .3s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(11,11,13,0.94) 0%, rgba(11,11,13,0.72) 34%, rgba(11,11,13,0.18) 66%, rgba(11,11,13,0.55) 100%),
    linear-gradient(0deg, rgba(11,11,13,0.95) 0%, rgba(11,11,13,0.15) 42%, rgba(11,11,13,0.30) 100%);
}
.hero__inner { padding-top: 140px; padding-bottom: clamp(40px, 6vw, 76px); width: 100%; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border: 1px solid var(--line-2); border-radius: 100px;
  font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 30px;
  background: rgba(255,255,255,0.02); backdrop-filter: blur(6px);
}
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 0 var(--glow); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 var(--glow); } 70% { box-shadow: 0 0 0 9px rgba(255,94,26,0); } 100% { box-shadow: 0 0 0 0 rgba(255,94,26,0); } }

.hero__title { max-width: 15ch; margin-bottom: 26px; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; }
.hero__desc { max-width: 46ch; margin-bottom: 38px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: clamp(44px, 6vw, 72px); }

.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(28px, 5vw, 68px); border-top: 1px solid var(--line); padding-top: 30px; }
.stat__num { font-family: var(--display); font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 600; line-height: 1; letter-spacing: -0.02em; }
.stat__num .suffix { color: var(--amber); }
.stat__label { display: block; margin-top: 8px; font-size: 0.82rem; color: var(--ink-faint); letter-spacing: 0.02em; }

.hero__scroll { position: absolute; right: var(--gutter); bottom: clamp(40px,6vw,76px); display: flex; flex-direction: column; align-items: center; gap: 12px; z-index: 2; }
.hero__scroll span { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-faint); writing-mode: vertical-rl; }
.hero__scroll .line { width: 1px; height: 54px; background: var(--line-2); position: relative; overflow: hidden; }
.hero__scroll .line::after { content: ""; position: absolute; inset: 0; background: var(--amber); animation: scrollLine 2.4s var(--ease) infinite; }
@keyframes scrollLine { 0% { transform: translateY(-100%); } 100% { transform: translateY(100%); } }

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--line); padding: 22px 0; overflow: hidden; background: var(--bg-2); }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: marquee 34s linear infinite; }
.marquee__item { display: inline-flex; align-items: center; gap: 56px; font-family: var(--display); font-size: clamp(1.2rem, 2vw, 1.7rem); font-weight: 500; color: var(--ink-faint); white-space: nowrap; }
.marquee__item::after { content: "✦"; color: var(--amber); font-size: 0.7em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Section header ---------- */
.section-head { display: flex; flex-direction: column; gap: 18px; margin-bottom: clamp(44px, 6vw, 72px); }
.section-head--center { align-items: center; text-align: center; }
.section-head--split { flex-direction: row; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.section-head p { max-width: 46ch; }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 24px); }
.svc {
  position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px; isolation: isolate;
  transition: transform .6s var(--ease), border-color .5s var(--ease);
}
.svc__img { position: absolute; inset: 0; z-index: -2; }
.svc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); filter: saturate(1.02); }
.svc::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(11,11,13,0.94) 6%, rgba(11,11,13,0.45) 48%, rgba(11,11,13,0.20) 100%); transition: opacity .5s; }
.svc:hover { transform: translateY(-6px); border-color: var(--line-2); }
.svc:hover .svc__img img { transform: scale(1.06); }
.svc__idx { position: absolute; top: 26px; left: 30px; font-family: var(--mono); font-size: 0.72rem; color: var(--ink-faint); letter-spacing: 0.1em; }
.svc__title { font-family: var(--display); font-size: 1.5rem; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; }
.svc__desc { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 18px; max-width: 40ch; }
.svc__link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--amber); }
.svc__link svg { width: 15px; height: 15px; transition: transform .4s var(--ease); }
.svc:hover .svc__link svg { transform: translateX(4px); }
.svc--wide { grid-column: span 2; min-height: 300px; }

/* ---------- Split (about) ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.split--rev .split__media { order: -1; }
.split__media { position: relative; }
.figure { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.figure--tall img { aspect-ratio: 3 / 4; }
.badge-float {
  position: absolute; bottom: -20px; right: -14px; background: var(--amber); color: #0B0B0D;
  border-radius: 16px; padding: 18px 22px; box-shadow: 0 18px 44px -14px var(--glow);
}
.badge-float b { font-family: var(--display); font-size: 2rem; font-weight: 700; line-height: 1; display: block; }
.badge-float span { font-size: 0.74rem; font-weight: 600; opacity: 0.82; }

.feature-list { display: grid; gap: 14px; margin: 30px 0 34px; }
.feature-list li { display: flex; align-items: flex-start; gap: 14px; color: var(--ink-soft); }
.feature-list .tick { flex: none; width: 24px; height: 24px; border-radius: 50%; background: rgba(255,94,26,0.12); border: 1px solid rgba(255,94,26,0.35); color: var(--amber); display: grid; place-items: center; font-size: 0.72rem; margin-top: 2px; }

/* ---------- Stat strip ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat-strip .cell { background: var(--bg); padding: clamp(24px, 3vw, 40px); }
.stat-strip .cell b { font-family: var(--display); font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 600; display: block; letter-spacing: -0.02em; }
.stat-strip .cell b .suffix { color: var(--amber); }
.stat-strip .cell span { color: var(--ink-faint); font-size: 0.86rem; margin-top: 6px; display: block; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 26px); }
.step { position: relative; padding-top: 30px; border-top: 1px solid var(--line-2); }
.step__no { font-family: var(--mono); font-size: 0.8rem; color: var(--amber); letter-spacing: 0.1em; }
.step h3 { font-family: var(--display); font-size: 1.32rem; font-weight: 600; margin: 16px 0 10px; }
.step p { color: var(--ink-soft); font-size: 0.92rem; }
.step::before { content: ""; position: absolute; top: -1px; left: 0; width: 44px; height: 3px; background: var(--amber); }

/* ---------- Portfolio ---------- */
.pf-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 20px); grid-auto-flow: dense; }
.pf {
  position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line);
  aspect-ratio: 3 / 2; isolation: isolate; cursor: pointer;
}
.pf img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.pf::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,11,13,0.9) 0%, rgba(11,11,13,0.05) 55%); opacity: 0.85; transition: opacity .5s; }
.pf:hover img { transform: scale(1.06); }
.pf:hover::after { opacity: 1; }
.pf__meta { position: absolute; inset: auto 0 0 0; padding: 24px; z-index: 2; transform: translateY(6px); opacity: 0.92; transition: transform .5s var(--ease), opacity .5s; }
.pf:hover .pf__meta { transform: translateY(0); opacity: 1; }
.pf__cat { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); }
.pf__title { font-family: var(--display); font-size: 1.24rem; font-weight: 600; margin-top: 6px; }
.pf--lg { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.pf--tall { grid-row: span 2; aspect-ratio: 3 / 4; }
.pf--w2 { grid-column: span 2; }

/* Portfolio filters */
.pf-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.pf-filters button {
  padding: 9px 18px; border-radius: 100px; border: 1px solid var(--line-2); background: transparent;
  color: var(--ink-soft); font-size: 0.86rem; font-weight: 500; transition: all .3s var(--ease);
}
.pf-filters button:hover { color: var(--ink); border-color: var(--ink); }
.pf-filters button.active { background: var(--amber); border-color: var(--amber); color: #0B0B0D; }
.pf.is-hidden { display: none; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: clamp(20px, 3vw, 32px); border: 1px solid var(--line); padding: clamp(48px, 8vw, 96px) var(--gutter); text-align: center; background: radial-gradient(120% 140% at 50% 0%, rgba(255,94,26,0.16) 0%, rgba(11,11,13,0) 55%), var(--bg-2); }
.cta-band__glow { position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 620px; height: 620px; background: radial-gradient(circle, var(--glow) 0%, transparent 65%); filter: blur(30px); z-index: 0; pointer-events: none; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band p { margin: 20px auto 34px; }
.cta-band .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); }
.footer__top { padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 5vw, 60px); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(28px, 4vw, 56px); }
.footer__desc { color: var(--ink-soft); max-width: 34ch; margin: 20px 0 24px; font-size: 0.95rem; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 42px; height: 42px; border: 1px solid var(--line-2); border-radius: 12px; display: grid; place-items: center; color: var(--ink-soft); transition: all .35s var(--ease); }
.footer__social a:hover { color: #0B0B0D; background: var(--amber); border-color: var(--amber); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer h4 { font-size: 0.78rem; font-family: var(--mono); letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 20px; }
.footer__menu { display: grid; gap: 12px; }
.footer__menu a { color: var(--ink-soft); font-size: 0.94rem; transition: color .3s, padding .3s var(--ease); }
.footer__menu a:hover { color: var(--amber); padding-left: 6px; }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); margin-bottom: 14px; font-size: 0.94rem; }
.footer__contact svg { width: 18px; height: 18px; color: var(--amber); flex: none; margin-top: 3px; }
.footer__bottom { border-top: 1px solid var(--line); padding: 24px 0; }
.footer__bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer__bottom p { color: var(--ink-faint); font-size: 0.84rem; }
.footer__bottom .credit { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 0.74rem; color: var(--ink-dim); }
.footer__bottom .credit a { display: inline-flex; align-items: center; }
.credit-logo {
  display: inline-block; height: 20px; width: calc(20px * 1362.64 / 480.926);
  background-color: var(--ink-dim);
  -webkit-mask: url("../images/dijital10-logo.svg") no-repeat center / contain;
  mask: url("../images/dijital10-logo.svg") no-repeat center / contain;
  transition: background-color .3s var(--ease);
}
.footer__bottom .credit a:hover .credit-logo { background-color: var(--amber); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { padding: clamp(140px, 18vw, 220px) 0 clamp(48px, 6vw, 80px); position: relative; border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; top: -30%; right: -10%; width: 60%; height: 160%; background: radial-gradient(circle, rgba(255,94,26,0.10) 0%, transparent 60%); pointer-events: none; }
.page-hero .breadcrumb { font-family: var(--mono); font-size: 0.76rem; color: var(--ink-faint); letter-spacing: 0.1em; margin-bottom: 24px; }
.page-hero .breadcrumb a:hover { color: var(--amber); }
.page-hero h1 { max-width: 18ch; margin-bottom: 22px; }
.page-hero p { max-width: 52ch; }

/* ---------- Service detail rows ---------- */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; padding: clamp(48px, 7vw, 96px) 0; border-bottom: 1px solid var(--line); }
.svc-row:last-child { border-bottom: none; }
.svc-row--rev .svc-row__media { order: -1; }
.svc-row__media .figure img { aspect-ratio: 3 / 2; }
.svc-row__idx { font-family: var(--mono); color: var(--amber); font-size: 0.82rem; letter-spacing: 0.1em; margin-bottom: 18px; }
.svc-row h2 { margin-bottom: 18px; }
.svc-row ul { display: grid; gap: 10px; margin-top: 24px; }
.svc-row ul li { display: flex; gap: 12px; color: var(--ink-soft); font-size: 0.95rem; }
.svc-row ul li::before { content: "→"; color: var(--amber); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-card { display: flex; gap: 18px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); transition: border-color .4s var(--ease), transform .4s var(--ease); }
.contact-card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.contact-card .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: rgba(255,94,26,0.12); border: 1px solid rgba(255,94,26,0.3); color: var(--amber); display: grid; place-items: center; }
.contact-card .ic svg { width: 20px; height: 20px; }
.contact-card h3 { font-size: 0.78rem; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-faint); margin-bottom: 8px; }
.contact-card a, .contact-card p { color: var(--ink); font-size: 1rem; }

.form { padding: clamp(28px, 4vw, 40px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 8px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; background: var(--bg); border: 1px solid var(--line-2);
  border-radius: 12px; color: var(--ink); font-family: inherit; font-size: 0.95rem; transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(255,94,26,0.14); }
.field textarea { resize: vertical; min-height: 130px; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form__note { font-size: 0.82rem; color: var(--ink-faint); margin-top: 14px; text-align: center; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; max-width: 820px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; transition: border-color .3s; }
.faq details[open] { border-color: var(--line-2); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 24px; font-family: var(--display); font-weight: 600; font-size: 1.08rem; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex: none; width: 26px; height: 26px; position: relative; transition: transform .4s var(--ease); }
.faq summary .plus::before, .faq summary .plus::after { content: ""; position: absolute; background: var(--amber); border-radius: 2px; }
.faq summary .plus::before { top: 50%; left: 4px; right: 4px; height: 2px; transform: translateY(-50%); }
.faq summary .plus::after { left: 50%; top: 4px; bottom: 4px; width: 2px; transform: translateX(-50%); transition: opacity .3s; }
.faq details[open] summary .plus { transform: rotate(90deg); }
.faq details[open] summary .plus::after { opacity: 0; }
.faq .faq__a { padding: 0 24px 24px; color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Values grid (about) ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.value { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: transform .5s var(--ease), border-color .5s var(--ease); }
.value:hover { transform: translateY(-5px); border-color: var(--line-2); }
.value .ic { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,94,26,0.12); border: 1px solid rgba(255,94,26,0.3); color: var(--amber); display: grid; place-items: center; margin-bottom: 22px; }
.value .ic svg { width: 22px; height: 22px; }
.value h3 { font-family: var(--display); font-size: 1.24rem; font-weight: 600; margin-bottom: 10px; }
.value p { color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .svc-row { grid-template-columns: 1fr; }
  .svc-row--rev .svc-row__media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px;
    background: var(--bg-2); border-left: 1px solid var(--line); padding: 40px;
    transform: translateX(105%); transition: transform .5s var(--ease); z-index: 999;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu .nav-link { font-size: 1.3rem; font-family: var(--display); }
  .nav-menu .nav-cta { margin: 14px 0 0; }
  .nav-toggle { display: flex; z-index: 1001; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc--wide { grid-column: span 1; }
  .pf-grid { grid-template-columns: 1fr 1fr; }
  .pf--lg, .pf--w2 { grid-column: span 2; grid-row: span 1; aspect-ratio: 3/2; }
  .pf--tall { grid-row: span 1; aspect-ratio: 3/2; }
  .form-row { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .badge-float { right: 12px; }
}
