/* ═══════════════════════════════════════════════════════
   Lukáš Rejmon — Konzultační web
   Volcano Design System (z faktury.rejmon.net)
   DM Sans + DM Mono · Ant Design Volcano palette
   ═══════════════════════════════════════════════════════ */

/* ── Volcano tokens (z fakturačního toolu) ── */
:root {
  --v1:  #fff2e8;
  --v2:  #ffd8bf;
  --v3:  #ffbb96;
  --v4:  #ff9c6e;
  --v5:  #ff7a45;
  --v6:  #fa541c;
  --v7:  #d4380d;
  --v8:  #ad2102;
  --v9:  #871400;
  --v10: #610b00;

  --bg:        #fafaf8;
  --bg-panel:  #ffffff;
  --bg-input:  #ffffff;
  --border:    #f0ece8;
  --border-md: #e2dbd5;
  --text-1:    #1a0f0a;
  --text-2:    #5c4033;
  --text-3:    #9c7b6e;
  --text-4:    #bfada6;

  --shadow-sm: 0 1px 3px rgba(212,56,13,.07), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(212,56,13,.10), 0 1px 4px rgba(0,0,0,.05);
  --shadow-lg: 0 8px 32px rgba(212,56,13,.14), 0 2px 8px rgba(0,0,0,.06);

  --container: 1280px;
  --pad-x: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(.6, .05, .2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text-1);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
em { font-style: italic; font-weight: 500; color: var(--v7); }

/* ═══════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(135deg, var(--v9) 0%, var(--v7) 60%, var(--v6) 100%);
  box-shadow: 0 2px 12px rgba(173,33,2,.25);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
  flex-shrink: 0;
}
.nav__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}
.nav__logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  filter: brightness(1.05);
}
.nav__logo-text {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.01em;
}
.nav__logo-text em {
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,.55);
  margin-left: 2px;
}
.nav__menu {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}
.nav__menu a {
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  border: 1px solid transparent;
  transition: all .15s;
  white-space: nowrap;
}
.nav__menu a:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.nav__menu a.is-active {
  background: rgba(255,255,255,.22);
  color: #fff;
  border-color: rgba(255,255,255,.5);
  font-weight: 600;
}
.nav__cta {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--v8);
  background: #fff;
  border: 1px solid #fff;
  transition: all .15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__cta:hover {
  background: var(--v1);
  color: var(--v9);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.nav__burger {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 8px;
}
.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform .2s, opacity .2s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  padding: clamp(40px, 6vw, 80px) 0 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, var(--v1) 0%, transparent 60%),
    var(--bg);
  position: relative;
}
.hero__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--v1);
  border: 1px solid var(--v2);
  color: var(--v8);
  font-size: 12px;
  font-weight: 500;
  font-family: 'DM Mono', monospace;
  letter-spacing: .02em;
  margin-bottom: 28px;
}
.hero__eyebrow .dot {
  width: 7px;
  height: 7px;
  background: var(--v6);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(250,84,28,.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

.hero__title {
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.035em;
  color: var(--text-1);
  margin-bottom: 28px;
}
.hero__title em {
  color: var(--v7);
  font-style: italic;
  font-weight: 500;
}

.hero__lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: all .15s;
  cursor: pointer;
  letter-spacing: .005em;
}
.btn--primary {
  background: linear-gradient(135deg, var(--v6) 0%, var(--v7) 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(250,84,28,.3);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(250,84,28,.4);
  background: linear-gradient(135deg, var(--v5) 0%, var(--v6) 100%);
}
.btn--ghost {
  background: #fff;
  color: var(--text-1);
  border: 1.5px solid var(--border-md);
}
.btn--ghost:hover {
  background: var(--v1);
  border-color: var(--v3);
  color: var(--v7);
}

/* hero stats card */
.hero__right {
  display: flex;
  justify-content: flex-end;
}
.hero__card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 420px;
}
.hero__card-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--v6);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero__stats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero__stats li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border-md);
}
.hero__stats li:last-child { border-bottom: none; padding-bottom: 0; }
.hero__stats .num {
  font-family: 'DM Mono', monospace;
  font-size: 28px;
  font-weight: 500;
  color: var(--v7);
  line-height: 1;
  min-width: 60px;
}
.hero__stats .lbl {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.4;
}
.hero__card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-2);
  font-family: 'DM Mono', monospace;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,.2);
}

/* ── ticker ── */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border-md);
  border-bottom: 1px solid var(--border-md);
  background: var(--v1);
  padding: 14px 0;
}
.ticker__track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--v8);
}
.ticker__track span:nth-child(even) { color: var(--v4); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   SECTION HEADS / TITLES
   ═══════════════════════════════════════════════════════ */
.section__head {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.section__num {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--v6);
  background: var(--v1);
  padding: 4px 10px;
  border: 1px solid var(--v2);
  letter-spacing: .05em;
}
.section__label {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .14em;
}
.section__head--light .section__num {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.25);
  color: #fff;
}
.section__head--light .section__label {
  color: rgba(255,255,255,.6);
}

.section__title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--text-1);
  margin-bottom: 24px;
}
.section__title em {
  color: var(--v7);
  font-style: italic;
  font-weight: 500;
}
.section__title--center {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════ */
.about {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg);
}
.about__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.about__main p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.about__lead {
  font-size: 19px !important;
  color: var(--text-1) !important;
  font-weight: 400;
  line-height: 1.55 !important;
  margin-bottom: 24px !important;
}
.about__side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about__chip {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: all .25s var(--ease);
}
.about__chip.reveal {
  opacity: 0;
  transform: translateY(20px);
}
.about__chip.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.about__chip.reveal:nth-child(2).is-in { transition-delay: .08s; }
.about__chip.reveal:nth-child(3).is-in { transition-delay: .16s; }
.about__chip:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--v3);
}
.about__chip--accent {
  background: linear-gradient(135deg, var(--v1) 0%, #fff 100%);
  border-left: 3px solid var(--v6);
}
.chip__label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--v6);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.about__chip h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.about__chip p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════ */
.services {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--v1);
  border-top: 1px solid var(--v2);
  border-bottom: 1px solid var(--v2);
}
.services__intro {
  max-width: 760px;
  margin: 0 auto clamp(32px, 5vw, 56px);
  padding: 0 var(--pad-x);
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-2);
}
.services__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all .3s var(--ease);
  min-height: 220px;
}
.service.reveal {
  opacity: 0;
  transform: translateY(20px);
}
.service.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.service.reveal:nth-child(2).is-in { transition-delay: .06s; }
.service.reveal:nth-child(3).is-in { transition-delay: .12s; }
.service.reveal:nth-child(4).is-in { transition-delay: .18s; }
.service.reveal:nth-child(5).is-in { transition-delay: .24s; }
.service.reveal:nth-child(6).is-in { transition-delay: .30s; }
.service:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--v3);
}
.service--lg {
  grid-column: span 2;
  background: linear-gradient(140deg, #fff 0%, var(--v1) 100%);
  border-color: var(--v3);
}
.service--wide {
  grid-column: span 2;
}
.service__num {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--v6);
  margin-bottom: 16px;
  letter-spacing: .06em;
}
.service h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 12px;
  letter-spacing: -.015em;
  line-height: 1.2;
}
.service--lg h3 { font-size: 26px; }
.service p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.55;
  flex: 1;
}
.service__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}
.service__tags li {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--v2);
  color: var(--v8);
  font-size: 11px;
  font-weight: 500;
  font-family: 'DM Mono', monospace;
  letter-spacing: .02em;
}

/* ═══════════════════════════════════════════════════════
   PROJECTS
   ═══════════════════════════════════════════════════════ */
.projects {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg);
}
.projects .section__title {
  max-width: var(--container);
  margin: 0 auto 40px;
  padding: 0 var(--pad-x);
}
.projects__list {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
}
.project {
  display: grid;
  grid-template-columns: 140px 1fr 180px;
  gap: 32px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid var(--border-md);
  transition: background .2s var(--ease);
}
.project.reveal {
  opacity: 0;
  transform: translateY(20px);
}
.project.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s var(--ease), transform .5s var(--ease), background .2s var(--ease);
}
.project.reveal:nth-child(2).is-in { transition-delay: .06s; }
.project.reveal:nth-child(3).is-in { transition-delay: .12s; }
.project.reveal:nth-child(4).is-in { transition-delay: .18s; }
.project.reveal:nth-child(5).is-in { transition-delay: .24s; }
.project.reveal:nth-child(6).is-in { transition-delay: .30s; }
.project:last-child {
  border-bottom: 1px solid var(--border-md);
}
.project:hover {
  background: var(--v1);
}
.project:hover h3 { color: var(--v7); }
.project__years {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--text-3);
  padding-top: 4px;
}
.project__years .from {
  color: var(--v7);
  font-weight: 500;
}
.project__years .to {
  color: var(--text-2);
}
.project__body h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: -.015em;
  margin-bottom: 4px;
  transition: color .15s;
}
.project__role {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--v6);
  margin-bottom: 12px;
  letter-spacing: .02em;
}
.project__body p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.55;
  max-width: 620px;
}
.project__meta {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--text-3);
  text-align: right;
  letter-spacing: .04em;
  padding-top: 6px;
}

/* ═══════════════════════════════════════════════════════
   CLIENTS
   ═══════════════════════════════════════════════════════ */
.clients {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.clients__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.clients__block {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all .5s var(--ease);
}
.clients__block.reveal {
  opacity: 0;
  transform: translateY(20px);
}
.clients__block.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.clients__block.reveal:nth-child(2).is-in { transition-delay: .12s; }
.clients__title {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--v6);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--v2);
}
.clients__block--past .clients__title {
  color: var(--text-3);
  border-bottom-color: var(--border-md);
}
.clients__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}
.clients__list li {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-1);
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  transition: color .15s;
}
.clients__block--past .clients__list li {
  color: var(--text-2);
  font-weight: 400;
}
.clients__list li:hover {
  color: var(--v7);
}
.clients__note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-3);
  font-family: 'DM Mono', monospace;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════ */
.contact {
  padding: clamp(60px, 8vw, 100px) 0;
  background: linear-gradient(135deg, var(--v9) 0%, var(--v8) 50%, var(--v7) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 10%, rgba(255,156,110,.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 90%, rgba(255,120,69,.2) 0%, transparent 60%);
  pointer-events: none;
}
.contact__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 1;
}
.contact__head {
  margin-bottom: 48px;
  max-width: 800px;
}
.contact .section__head {
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}
.contact__title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.025em;
  color: #fff;
  margin-bottom: 18px;
}
.contact__title em {
  color: var(--v3);
  font-style: italic;
  font-weight: 500;
}
.contact__sub {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  max-width: 620px;
}

/* contact grid: form + side */
.contact__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

/* === FORM === */
.contact__form {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form__field label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,.7);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.form__field input,
.form__field select,
.form__field textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 0;
  color: #fff;
  outline: none;
  transition: all .15s;
  width: 100%;
}
.form__field input::placeholder,
.form__field textarea::placeholder {
  color: rgba(255,255,255,.4);
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  background: rgba(255,255,255,.14);
  border-color: var(--v3);
  box-shadow: 0 0 0 3px rgba(255,156,110,.18);
}
.form__field input:invalid:not(:placeholder-shown),
.form__field textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(255,156,110,.4);
}
.form__field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.5;
}
.form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffbb96' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form__field select option {
  background: var(--v9);
  color: #fff;
}

/* honeypot - hidden */
.form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.form__note {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,.5);
  letter-spacing: .02em;
}

.form__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  color: var(--v8);
  border: none;
  cursor: pointer;
  transition: all .2s var(--ease);
  letter-spacing: .005em;
}
.form__submit:hover:not(:disabled) {
  background: var(--v1);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
  color: var(--v9);
}
.form__submit:disabled {
  opacity: .6;
  cursor: wait;
}
.form__submit-arrow {
  transition: transform .2s var(--ease);
}
.form__submit:hover:not(:disabled) .form__submit-arrow {
  transform: translateX(4px);
}

.form__status {
  margin-top: 4px;
  padding: 0;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,.85);
  min-height: 0;
  transition: all .2s var(--ease);
}
.form__status:not(:empty) {
  padding: 12px 16px;
  margin-top: 8px;
}
.form__status--success {
  background: rgba(110, 231, 183, .15);
  border-left: 3px solid #6ee7b7;
  color: #d1fae5;
}
.form__status--error {
  background: rgba(255, 99, 71, .15);
  border-left: 3px solid #ff6347;
  color: #fee2e2;
}

/* === SIDE === */
.contact__side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__side-block {
  padding: 22px 24px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.1);
}
.contact__side-block--note {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
}
.contact__side-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
}
.contact__side-value {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: #fff;
  word-break: break-all;
  display: block;
  transition: color .15s;
}
.contact__side-value:hover {
  color: var(--v3);
}
.contact__socials {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__socials a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 15px;
  color: rgba(255,255,255,.85);
  border-bottom: 1px dashed rgba(255,255,255,.15);
  transition: color .15s, padding-left .2s;
}
.contact__socials li:last-child a {
  border-bottom: none;
}
.contact__socials a:hover {
  color: var(--v3);
  padding-left: 6px;
}
.contact__socials span {
  font-family: 'DM Mono', monospace;
  color: rgba(255,255,255,.4);
}
.contact__side-block--note p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.7);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: var(--text-1);
  color: rgba(255,255,255,.6);
  padding: 32px 0;
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.footer__brand .nav__logo-mark {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
}
.footer__logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  opacity: .85;
}
.footer__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-family: 'DM Mono', monospace;
  color: rgba(255,255,255,.4);
}
.footer__meta a {
  color: var(--v4);
  transition: color .15s;
}
.footer__meta a:hover { color: var(--v3); }
.dot-sep { opacity: .5; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__right { justify-content: stretch; }
  .hero__card { max-width: 100%; }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }
  .service--lg, .service--wide {
    grid-column: span 2;
  }
  .project {
    grid-template-columns: 100px 1fr;
    gap: 20px;
  }
  .project__meta { display: none; }
  .clients__grid {
    grid-template-columns: 1fr;
  }
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact__side {
    order: -1;
  }
}

@media (max-width: 720px) {
  .nav__inner {
    position: relative;
  }
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--v9);
    padding: 12px;
    transform: translateY(-150%);
    transition: transform .25s var(--ease);
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
  }
  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    z-index: 100;
  }
  .nav__menu a {
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav__cta {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
  .nav__logo-text em {
    display: none;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }
  .service--lg, .service--wide {
    grid-column: span 1;
  }
  .service { min-height: auto; }

  .project {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .project__years {
    font-size: 11px;
  }

  .clients__list {
    grid-template-columns: 1fr;
  }

  .hero__title { font-size: 44px; }
  .section__title { font-size: 32px; }
  .contact__title { font-size: 32px; }
  .form__row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .form__footer {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 12px;
  }
  .form__submit {
    justify-content: center;
  }
}
