﻿:root {
  --bg: #070707;
  --bg-soft: #101013;
  --panel: #131317;
  --panel-soft: #1a1a1f;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f4f1eb;
  --muted: #aaa39a;
  --gold: #d2ad72;
  --gold-soft: #f2d7a4;
  --container: 1180px;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(210, 173, 114, 0.08), transparent 25%),
    linear-gradient(180deg, #050505 0%, #0a0a0b 46%, #101013 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent);
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
  padding-top: 14px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(128, 123, 113, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.88rem;
  font-weight: 700;
}

.brand-mark {
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 0;
  color: transparent;
  background: #d9d9d9;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.02);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-links a:hover,
.nav-links a.active,
.brand:hover {
  color: var(--text);
}

.nav-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid rgba(210, 173, 114, 0.28);
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.nav-btn,
.btn-primary {
  background: linear-gradient(135deg, #1a1a1f, #101013);
  color: var(--gold-soft);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.nav-btn:hover,
.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(210, 173, 114, 0.58);
}

main section {
  padding: 34px 0;
}

.hero {
  padding-top: 72px;
}

.hero-grid,
.two-col,
.blog-layout,
.contact-grid,
.grid-3 {
  display: grid;
  gap: 22px;
}

.hero-grid {
  grid-template-columns: 1.08fr 0.92fr;
}

.two-col,
.contact-grid,
.blog-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-card,
.panel,
.post-card,
.service-card,
.contact-card,
.sidebar-card {
  background: linear-gradient(180deg, rgba(20, 20, 24, 0.96), rgba(10, 10, 12, 0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-copy,
.hero-side,
.panel,
.post-card,
.service-card,
.contact-card,
.sidebar-card {
  padding: 30px;
}

.hero-copy {
  padding: 52px;
}

.hero-side {
  display: grid;
  gap: 18px;
  background:
    radial-gradient(circle at top right, rgba(210, 173, 114, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(18, 18, 22, 0.98), rgba(8, 8, 10, 0.98));
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.77rem;
}

h1,
h2,
h3,
h4 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.05;
  font-weight: 700;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  letter-spacing: -0.05em;
  max-width: 9ch;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 12px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.lead,
.section-copy,
.meta,
.card-copy,
.post-meta,
.footer-bar,
.sidebar-card li,
.post-content p {
  color: var(--muted);
}

.lead {
  max-width: 60ch;
  margin-bottom: 28px;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric,
.mini-card,
.timeline-item,
.sidebar-card ul li {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.metric strong {
  display: block;
  color: var(--text);
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-card strong,
.post-category,
.service-no {
  color: var(--gold-soft);
}

.service-no {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(210, 173, 114, 0.3);
  margin-bottom: 16px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 26px;
}

.timeline {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.post-card,
.service-card {
  border-radius: 20px;
}

.post-thumb {
  min-height: 220px;
  margin: -30px -30px 24px;
  background:
    linear-gradient(180deg, rgba(11, 11, 12, 0.15), rgba(11, 11, 12, 0.95)),
    radial-gradient(circle at top right, rgba(210, 173, 114, 0.16), transparent 34%),
    linear-gradient(145deg, #1b1b1f, #111114);
}

.post-category {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.post-meta {
  margin-top: 14px;
  font-size: 0.92rem;
}

.sidebar-card {
  border-radius: 20px;
}

.sidebar-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.post-content {
  display: grid;
  gap: 18px;
}

.post-content blockquote {
  padding: 18px 22px;
  border-left: 3px solid rgba(210, 173, 114, 0.4);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-radius: 0 16px 16px 0;
}

.footer {
  padding: 12px 0 40px;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1024px) {
  .hero-grid,
  .two-col,
  .blog-layout,
  .contact-grid,
  .grid-3,
  .metrics {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    border-radius: 30px;
    padding: 18px;
    gap: 16px;
  }

  .hero-copy,
  .hero-side,
  .panel,
  .post-card,
  .service-card,
  .contact-card,
  .sidebar-card {
    padding: 22px;
  }

  .post-thumb {
    margin: -22px -22px 20px;
  }

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

  .nav-links {
    justify-content: flex-start;
    gap: 12px 18px;
    font-size: 0.84rem;
  }
}

.home-page {
  overflow: hidden;
}

.home-hero {
  padding-top: 56px;
}

.hero-stage {
  display: grid;
  grid-template-columns: 0.82fr 1.2fr 0.82fr;
  gap: 26px;
  align-items: start;
}

.hero-column {
  padding-top: 120px;
}

.hero-small-label {
  margin-bottom: 18px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
}

.hero-side-stack {
  display: grid;
  gap: 18px;
}

.hero-note-card,
.hero-year-box,
.hero-mini-metric,
.work-card,
.news-card {
  background: linear-gradient(180deg, rgba(20, 20, 24, 0.96), rgba(10, 10, 12, 0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-note-card,
.hero-mini-metric {
  padding: 18px;
  border-radius: 18px;
}

.hero-note-card h4,
.hero-year-box strong,
.hero-mini-metric strong {
  margin-bottom: 6px;
}

.hero-note-card p,
.hero-year-box p,
.hero-mini-metric p,
.service-row p,
.work-copy p,
.experience-line p,
.contact-inline a,
.social-inline span {
  color: var(--muted);
}

.hero-center {
  position: relative;
  text-align: center;
  padding: 42px 26px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-center::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 6px 6px;
  opacity: 0.22;
  pointer-events: none;
}

.hero-center > * {
  position: relative;
  z-index: 1;
}

.hero-center h1 {
  max-width: none;
  font-size: clamp(3.2rem, 7vw, 5.7rem);
  margin-bottom: 10px;
}

.hero-subtitle {
  color: var(--muted);
  margin-bottom: 28px;
}

.portrait-wrap {
  display: grid;
  justify-items: center;
  gap: 0;
  margin: 0 auto 20px;
}

.portrait-stage {
  position: relative;
  width: min(100%, 520px);
  min-height: 470px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 26px 18px 0;
}

.portrait-dots {
  position: absolute;
  inset: 0 8% 14% 8%;
  border-radius: 28px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.3;
}

.profile-photo {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.35));
}

.hero-center-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.93rem;
}

.hero-column-right {
  display: grid;
  gap: 18px;
}

.hero-year-box {
  padding: 22px;
  border-radius: 22px;
  text-align: right;
}

.hero-year-label {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.hero-year-box strong {
  display: block;
  font-size: 3rem;
  color: var(--text);
}

.hero-mini-metric {
  text-align: right;
}

.curved-band {
  position: relative;
  padding-top: 28px;
}

.curved-band::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  top: 0;
  height: 140px;
  background: linear-gradient(180deg, #17171b, #111114);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  opacity: 0.7;
}

.ticker-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 36px 0 4px;
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
}

.services-list {
  display: grid;
  gap: 0;
}

.home-services {
  position: relative;
  margin-top: -10px;
  padding-top: 56px;
  background: linear-gradient(180deg, #151518 0%, #111114 42%, #0d0d10 100%);
}

.home-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 20%);
  pointer-events: none;
}

.home-services .container {
  position: relative;
  z-index: 1;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: 58px;
  align-items: start;
}

.services-intro .section-kicker {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
}

.services-intro h2 {
  font-size: clamp(2.5rem, 5vw, 4.15rem);
  max-width: 7ch;
  margin-bottom: 20px;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.services-intro .section-copy {
  max-width: 26ch;
  font-size: 1rem;
  line-height: 1.72;
}

.service-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 320px) 1fr;
  gap: 20px;
  padding: 28px 0 26px;
  border-radius: 0;
  align-items: start;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  border: 1px solid rgba(210, 173, 114, 0.3);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
  font-weight: 700;
  font-size: 0.96rem;
}

.service-content h3 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2vw, 1.95rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.service-content p {
  max-width: 28ch;
  font-size: 1rem;
  line-height: 1.65;
  margin-top: 8px;
}

@media (max-width: 1280px) and (min-width: 781px) {
  .services-layout {
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
    gap: 46px;
  }

  .services-intro h2 {
    max-width: 6.5ch;
    font-size: clamp(2.25rem, 4.4vw, 3.5rem);
  }

  .services-intro .section-copy {
    max-width: 24ch;
    font-size: 0.98rem;
  }

  .service-row {
    grid-template-columns: 64px minmax(0, 260px) 1fr;
    gap: 20px;
    padding: 24px 0 22px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .service-content h3 {
    font-size: clamp(1.38rem, 1.8vw, 1.72rem);
  }

  .service-content p {
    max-width: 24ch;
    font-size: 0.96rem;
  }
}

.work-masonry {
  display: grid;
  grid-template-columns: 1.25fr 0.6fr 0.85fr;
  gap: 18px;
  align-items: start;
}

.work-card {
  overflow: hidden;
  border-radius: 18px;
}

.work-card-wide {
  grid-row: span 2;
}

.work-card-tall {
  grid-row: span 2;
}

.work-visual {
  min-height: 230px;
}

.work-card-wide .work-visual {
  min-height: 350px;
}

.work-card-tall .work-visual {
  min-height: 520px;
}

.work-wave {
  background:
    radial-gradient(circle at 20% 80%, rgba(83, 197, 180, 0.35), transparent 30%),
    linear-gradient(145deg, #76bdb3, #4d8d86);
}

.work-mono {
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.5), transparent 30%),
    linear-gradient(145deg, #d2d2d2, #969696);
}

.work-poster {
  background:
    radial-gradient(circle at 60% 20%, rgba(255, 214, 145, 0.34), transparent 26%),
    linear-gradient(145deg, #45645c, #24332f);
}

.work-fabric {
  background:
    radial-gradient(circle at 40% 50%, rgba(93, 130, 219, 0.35), transparent 28%),
    linear-gradient(145deg, #204f94, #0b1d39);
}

.work-device {
  background:
    radial-gradient(circle at 50% 25%, rgba(138, 124, 255, 0.4), transparent 28%),
    linear-gradient(145deg, #e3e6f7, #96a0d8);
}

.work-copy {
  padding: 20px;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.experience-showcase {
  padding: 66px 0;
}

.experience-intro {
  padding-right: 18px;
}

.experience-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: rgba(244, 241, 235, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-intro h2 {
  margin-top: 20px;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.experience-badges {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  margin-top: 62px;
}

.skill-pill {
  width: 138px;
  min-height: 198px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.skill-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.25), transparent 48%),
    rgba(255, 255, 255, 0.07);
}

.skill-pill h4 {
  font-size: 1.13rem;
  font-weight: 500;
}

.clients-head {
  text-align: center;
}

.clients-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 241, 235, 0.95);
}

.clients-head h2 {
  margin-top: 18px;
  font-size: clamp(2.1rem, 4.7vw, 4rem);
  letter-spacing: -0.02em;
}

.experience-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.experience-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px 16px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.experience-copy h4 {
  font-size: clamp(1.58rem, 2.4vw, 2.15rem);
  line-height: 1.1;
}

.experience-copy p {
  margin-top: 8px;
  color: rgba(244, 241, 235, 0.88);
  font-size: 1.05rem;
}

.experience-arrow {
  font-size: 1.28rem;
  color: rgba(255, 255, 255, 0.92);
}

.experience-year {
  color: var(--gold-soft);
  white-space: nowrap;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.quote-card {
  background: linear-gradient(180deg, rgba(20, 20, 24, 0.96), rgba(10, 10, 12, 0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 26px;
}

.quote-card p {
  margin-bottom: 14px;
}

.brand-section {
  position: relative;
  overflow: hidden;
  padding-top: 16px;
}

.brand-section::before {
  content: "";
  position: absolute;
  left: 4%;
  top: 126px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.03);
}

.client-marquee {
  margin-top: 42px;
  overflow: hidden;
  padding: 8px 0 20px;
  mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
}

.client-track {
  width: max-content;
  display: flex;
  gap: 34px;
  animation: clientSlide 36s linear infinite;
}

.client-set {
  display: flex;
  align-items: center;
  gap: 34px;
}

.client-row {
  width: 112%;
  margin-left: -6%;
}

.client-row + .client-row {
  margin-top: -94px;
}

.client-row-bottom .client-track {
  animation-duration: 44s;
  animation-delay: -6s;
}

.client-bubble {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.01);
  color: rgba(255, 255, 255, 0.92);
  text-transform: none;
  letter-spacing: 0;
}

.bubble-md {
  width: 278px;
  height: 278px;
}

.bubble-lg {
  width: 316px;
  height: 316px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: rgba(255, 255, 255, 0.94);
}

.logo.oak {
  font-size: clamp(2.5rem, 3.3vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.08em;
}

.logo.snyk {
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  font-weight: 800;
  text-transform: lowercase;
  padding: 6px 22px;
  border-radius: 999px;
  background: #f5f5f5;
  color: #141414;
  letter-spacing: -0.02em;
}

.logo.tekreact {
  width: 124px;
  text-transform: lowercase;
  font-size: 0.78rem;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.logo.janva {
  font-size: clamp(2.2rem, 2.8vw, 3rem);
  letter-spacing: 0.06em;
  font-weight: 400;
}

.logo.jovast {
  font-size: clamp(2rem, 2.7vw, 2.8rem);
  font-weight: 600;
}

.logo.okgo {
  font-size: clamp(2.2rem, 2.9vw, 3rem);
  font-weight: 500;
  font-family: "Times New Roman", serif;
}

.logo.okgo sup {
  font-size: 0.55em;
  font-weight: 700;
  top: -0.6em;
  position: relative;
}

@keyframes clientSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 17px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-track {
    animation: none;
  }
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.news-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-radius: 18px;
  overflow: hidden;
}

.news-thumb {
  min-height: 220px;
}

.news-thumb-one {
  background:
    radial-gradient(circle at 40% 25%, rgba(255, 222, 180, 0.18), transparent 28%),
    linear-gradient(145deg, #5a4f3f, #1e1d1b);
}

.news-thumb-two {
  background:
    radial-gradient(circle at 50% 10%, rgba(164, 197, 255, 0.25), transparent 24%),
    linear-gradient(145deg, #4e5768, #1d2028);
}

.news-copy {
  padding: 22px;
}

.contact-banner-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.contact-banner-copy h2 {
  max-width: 10ch;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 1.05;
}

.contact-inline,
.social-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
}

.social-inline a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.social-inline a:hover {
  color: var(--text);
}

.contact-pill {
  min-height: 60px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  padding: 0 28px;
}

@media (max-width: 1100px) {
  .hero-stage,
  .work-masonry,
  .experience-grid,
  .news-grid,
  .contact-banner-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-column {
    padding-top: 0;
  }

  .hero-column-left {
    order: 2;
  }

  .hero-center {
    order: 1;
    padding-bottom: 8px;
  }

  .hero-column-right {
    order: 3;
  }

  .hero-column-right,
  .hero-year-box,
  .hero-mini-metric {
    text-align: left;
  }

  .work-card-wide,
  .work-card-tall {
    grid-row: span 1;
  }

  .bubble-md {
    width: 234px;
    height: 234px;
  }

  .bubble-lg {
    width: 270px;
    height: 270px;
  }

  .experience-badges {
    flex-wrap: wrap;
  }

  .contact-banner-copy h2 {
    max-width: 14ch;
  }
}

@media (max-width: 780px) {
  .news-card {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding-top: 10px;
  }

  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .nav {
    padding: 12px 18px;
  }

  .brand {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }

  .hero-center {
    padding: 24px 0 12px;
    border: 0;
  }

  .hero-center::before,
  .curved-band::before {
    display: none;
  }

  .portrait-stage {
    min-height: 360px;
    padding-inline: 8px;
  }

  .profile-photo {
    width: min(100%, 320px);
  }

  .service-row {
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
  }

  .services-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .experience-showcase {
    padding: 48px 0;
  }

  .clients-head h2 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .client-marquee {
    margin-top: 30px;
    padding-bottom: 10px;
  }

  .client-track,
  .client-set {
    gap: 18px;
  }

  .client-row {
    width: 132%;
    margin-left: -16%;
  }

  .client-row + .client-row {
    margin-top: -46px;
  }

  .bubble-md {
    width: 168px;
    height: 168px;
  }

  .bubble-lg {
    width: 194px;
    height: 194px;
  }

  .logo.oak {
    font-size: 1.75rem;
  }

  .logo.snyk {
    font-size: 1.35rem;
    padding: 4px 14px;
  }

  .logo.tekreact,
  .logo.okgo sup {
    font-size: 0.62rem;
  }

  .logo.jovast,
  .logo.okgo,
  .logo.janva {
    font-size: 1.35rem;
  }

  .experience-badges {
    margin-top: 40px;
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .experience-badges::-webkit-scrollbar {
    display: none;
  }

  .skill-pill {
    flex: 0 0 132px;
    width: 132px;
    min-height: 176px;
  }

  .experience-line {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 26px 0;
  }

  .experience-arrow {
    display: none;
  }
}

.marquee-band {
  position: relative;
  padding: 20px 0 0;
  overflow: hidden;
  z-index: 0;
}

.marquee-band::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  top: 0;
  height: 170px;
  background:
    radial-gradient(circle at 50% -110%, rgba(255, 255, 255, 0.045), transparent 58%),
    linear-gradient(180deg, #17171a, #111114 78%, #101013 100%);
  border-radius: 0 0 48% 48% / 0 0 100% 100%;
  opacity: 0.92;
}

.marquee-band::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -18px;
  height: 76px;
  background: linear-gradient(180deg, rgba(18, 18, 22, 0.98), rgba(14, 14, 17, 1));
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  opacity: 0.95;
}

.marquee-shell {
  position: relative;
  overflow: hidden;
  padding: 28px 0 56px;
  z-index: 1;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 24s linear infinite;
}

.marquee-row {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
  white-space: nowrap;
}

.marquee-row span {
  position: relative;
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: clamp(3rem, 8vw, 5.3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: capitalize;
}

.marquee-row span::after {
  content: "*";
  display: inline-block;
  margin-left: 34px;
  color: rgba(255, 255, 255, 0.88);
}

.marquee-row .filled {
  color: #f4f1eb;
}

.marquee-row .outlined {
  color: transparent;
  -webkit-text-stroke: 1.6px rgba(255, 255, 255, 0.88);
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Services Page */
.services-page .site-header {
  margin-bottom: 8px;
}

.service-main {
  padding-bottom: 28px;
}

.svc-hero {
  padding-top: 56px;
}

.svc-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 44px;
  align-items: center;
}

.svc-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 5.1vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-top: 10px;
}

.svc-hero-grid p {
  color: var(--muted);
  max-width: 38ch;
}

.svc-wordmark {
  margin-top: 26px;
  overflow: hidden;
  padding-bottom: 8px;
  mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
}

.svc-wordmark-track {
  width: max-content;
  display: flex;
  animation: svcWordScroll 18s linear infinite;
}

.svc-wordmark-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding-right: 24px;
  white-space: nowrap;
}

.svc-wordmark .solid,
.svc-wordmark .outline {
  font-size: clamp(3.2rem, 11vw, 9rem);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.svc-wordmark .solid {
  color: #f2efe8;
}

.svc-wordmark .outline {
  color: transparent;
  -webkit-text-stroke: 1.3px rgba(242, 239, 232, 0.7);
}

@keyframes svcWordScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .svc-wordmark-track {
    animation: none;
  }
}

.svc-listing {
  padding-top: 28px;
}

.svc-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: end;
}

.svc-head p {
  color: var(--muted);
  max-width: 40ch;
}

.svc-cards {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.svc-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17, 17, 21, 0.95), rgba(10, 10, 13, 0.97));
  border-radius: 16px;
  padding: 22px;
}

.svc-card h3 {
  margin-top: 16px;
  font-size: 1.2rem;
  line-height: 1.35;
}

.svc-card p {
  margin-top: 12px;
  color: var(--muted);
}

.svc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f0dfc3;
  font-size: 0.82rem;
  font-weight: 700;
}

.svc-showcase {
  padding-top: 28px;
}

.svc-showcase-grid {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 28px;
  align-items: start;
}

.svc-show-visual {
  position: sticky;
  top: 116px;
  height: calc(100vh - 140px);
}

.svc-media-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.svc-photo {
  background-size: cover;
  background-position: center;
}

.svc-photo-stage {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.55s ease, transform 0.65s ease;
}

.svc-photo-stage.is-active {
  opacity: 1;
  transform: scale(1);
}

.svc-photo-one {
  background:
    linear-gradient(145deg, rgba(228, 190, 164, 0.28), rgba(47, 39, 35, 0.5)),
    radial-gradient(circle at 12% 65%, rgba(255, 219, 177, 0.42), transparent 34%),
    linear-gradient(120deg, #5a4338, #22242d);
}

.svc-photo-two {
  background:
    radial-gradient(circle at 72% 8%, rgba(255, 184, 158, 0.34), transparent 24%),
    radial-gradient(circle at 14% 74%, rgba(152, 192, 255, 0.22), transparent 32%),
    linear-gradient(135deg, #4a3f3d, #201f25);
}

.svc-photo-three {
  background:
    radial-gradient(circle at 20% 22%, rgba(163, 194, 255, 0.34), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(255, 198, 141, 0.28), transparent 30%),
    linear-gradient(135deg, #2f3443, #1f2028);
}

.svc-show-content {
  position: relative;
}

.svc-scroll-step {
  min-height: 84vh;
  position: relative;
}

.svc-scroll-step .svc-case {
  position: sticky;
  top: 120px;
  opacity: 0.26;
  transform: translateY(46px);
  transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.35s ease;
}

.svc-scroll-step.is-active .svc-case {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(255, 255, 255, 0.22);
}

.svc-scroll-step.is-past .svc-case {
  opacity: 0.18;
  transform: translateY(-42px);
}

.svc-scroll-step.is-next .svc-case {
  opacity: 0.2;
  transform: translateY(42px);
}

.svc-case {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 12, 15, 0.88);
  backdrop-filter: blur(6px);
}

.svc-case h3 {
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.1;
  margin-top: 8px;
}

.svc-case p {
  color: var(--muted);
  margin-top: 10px;
}

.svc-case ul {
  margin-top: 14px;
  list-style: none;
  display: grid;
  gap: 7px;
}

.svc-case li::before {
  content: "\2198  ";
  color: #e7c99a;
}

.svc-round-btn {
  margin-top: 16px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-grid;
  place-items: center;
  text-transform: uppercase;
  font-size: 0.63rem;
  letter-spacing: 0.14em;
}

.svc-round-btn:hover {
  border-color: rgba(255, 255, 255, 0.48);
}

.svc-capability {
  padding-top: 18px;
}

.svc-cap-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
}

.svc-art-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 420px;
}

.svc-art-image {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 36% 20%, rgba(152, 147, 255, 0.58), transparent 30%),
    radial-gradient(circle at 70% 68%, rgba(255, 129, 121, 0.38), transparent 40%),
    linear-gradient(135deg, #535f9f, #303445 52%, #17171b);
}

.svc-art-copy {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: min(80%, 310px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 9, 12, 0.86);
  border-radius: 12px;
  padding: 16px;
}

.svc-art-copy p {
  margin-top: 12px;
  color: rgba(244, 241, 235, 0.86);
}

.svc-number-list {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  background: rgba(14, 15, 18, 0.95);
}

.svc-number-list ol {
  margin-top: 18px;
  list-style: none;
}

.svc-number-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.svc-number-list li span {
  min-width: 32px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.svc-process-grid {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: 28px;
}

.svc-mini-tag {
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.svc-process h2 {
  max-width: 22ch;
}

.svc-qa {
  margin-top: 16px;
}

.svc-qa div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.svc-qa span {
  color: rgba(244, 241, 235, 0.9);
}

.svc-qa b {
  color: var(--muted);
  font-weight: 500;
}

.svc-cta {
  padding-top: 26px;
}

.svc-cta-strip {
  height: 110px;
  background:
    linear-gradient(135deg, rgba(255, 195, 161, 0.42), rgba(95, 102, 146, 0.36)),
    linear-gradient(90deg, #3f3f49, #23242c);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.svc-cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 34px;
}

.svc-cta-grid h2 {
  max-width: 16ch;
}

@media (max-width: 1100px) {
  .svc-hero-grid,
  .svc-showcase-grid,
  .svc-cap-grid,
  .svc-process-grid {
    grid-template-columns: 1fr;
  }

  .svc-head {
    grid-template-columns: 1fr;
  }

  .svc-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .svc-process-grid {
    gap: 10px;
  }

  .svc-show-visual {
    position: relative;
    top: auto;
    height: 420px;
  }

  .svc-scroll-step {
    min-height: 68vh;
  }
}

@media (max-width: 780px) {
  .svc-hero {
    padding-top: 30px;
  }

  .svc-wordmark {
    margin-top: 16px;
  }

  .svc-wordmark-row {
    gap: 10px;
    padding-right: 10px;
  }

  .svc-wordmark .outline {
    display: none;
  }

  .svc-cards {
    grid-template-columns: 1fr;
  }

  .svc-show-visual {
    height: 280px;
  }

  .svc-scroll-step {
    min-height: 62vh;
  }

  .svc-scroll-step .svc-case {
    position: relative;
    top: auto;
    opacity: 1;
    transform: none;
  }

  .svc-case {
    backdrop-filter: none;
  }

  .svc-round-btn {
    width: 82px;
    height: 82px;
  }

  .svc-art-card {
    min-height: 320px;
  }

  .svc-cta-strip {
    height: 82px;
  }

  .svc-cta-grid {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 24px;
  }
}

@media (max-width: 780px) {
  .marquee-shell {
    padding: 18px 0 42px;
  }

  .marquee-band::after {
    bottom: -10px;
    height: 42px;
  }

  .home-services {
    padding-top: 42px;
  }

  .marquee-row {
    gap: 26px;
    padding-right: 26px;
  }

  .marquee-row span {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .marquee-row span::after {
    margin-left: 26px;
  }
}

@media (max-width: 520px) {
  .hero-stage {
    gap: 18px;
  }

  .hero-center h1 {
    font-size: clamp(2.6rem, 12vw, 3.8rem);
  }

  .hero-subtitle {
    margin-bottom: 18px;
    font-size: 0.96rem;
  }

  .portrait-stage {
    min-height: 250px;
    padding-top: 12px;
  }

  .portrait-dots {
    inset: 6% 2% 12% 2%;
  }

  .profile-photo {
    width: min(100%, 225px);
  }

  .hero-center-meta {
    gap: 10px 14px;
    font-size: 0.82rem;
  }

  .hero-note-card,
  .hero-mini-metric,
  .hero-year-box {
    padding: 16px;
    border-radius: 16px;
  }

  .hero-year-box strong {
    font-size: 2.2rem;
  }

  .services-intro h2 {
    max-width: none;
    font-size: clamp(2rem, 11vw, 2.9rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
  }

  .services-intro .section-kicker {
    min-height: 42px;
    padding: 0 16px;
    margin-bottom: 18px;
  }

  .services-intro .section-copy {
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .service-row {
    padding: 22px 0 18px;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
  }

  .service-icon {
    width: 54px;
    height: 54px;
  }

  .experience-badges {
    gap: 12px;
  }

  .skill-pill {
    flex: 0 0 120px;
    width: 120px;
    min-height: 160px;
    gap: 16px;
  }

  .skill-mark {
    width: 56px;
    height: 56px;
    font-size: 1.75rem;
  }

  .skill-pill h4 {
    font-size: 1rem;
  }

  .contact-banner-copy h2 {
    max-width: none;
    font-size: clamp(1.95rem, 10vw, 2.6rem);
    line-height: 1.1;
  }

  .contact-inline,
  .social-inline {
    gap: 12px;
  }

  .contact-pill {
    min-height: 54px;
    width: 100%;
  }
}

@media (max-width: 380px) {
  .services-intro h2 {
    font-size: clamp(2rem, 11vw, 2.7rem);
  }

  .services-intro .section-copy {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .service-content h3 {
    font-size: 1.45rem;
    line-height: 1.2;
  }

  .service-content p {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    font-size: 0.9rem;
  }
}

.contact-page {
  position: relative;
}

.contact-intro {
  padding-top: 88px;
  padding-bottom: 72px;
}

.contact-intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.contact-intro-copy h1 {
  max-width: 8ch;
  margin-bottom: 0;
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.contact-intro-text {
  max-width: 26ch;
  font-size: 1.05rem;
  color: var(--muted);
}

.contact-main {
  position: relative;
  padding-top: 36px;
  padding-bottom: 80px;
}

.contact-main::before {
  content: "";
  position: absolute;
  right: 16%;
  top: 2%;
  width: 420px;
  height: 760px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03), transparent 68%);
  opacity: 0.65;
  pointer-events: none;
}

.contact-main-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: start;
}

.contact-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: 22px;
}

.contact-lead h2 {
  max-width: 8ch;
  font-size: clamp(3rem, 6vw, 5.3rem);
  margin-bottom: 18px;
}

.contact-lead p {
  max-width: 28ch;
  color: var(--muted);
  font-size: 1.02rem;
}

.contact-phone {
  display: inline-block;
  margin-top: 30px;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 54px;
  color: var(--text);
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.contact-social-link:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.contact-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex: 0 0 auto;
}

.contact-socials span {
  color: rgba(255, 255, 255, 0.9);
}

.contact-form-wrap {
  position: relative;
  z-index: 1;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 14px;
  color: var(--text);
  padding: 18px 18px;
  outline: none;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.contact-form textarea {
  min-height: 230px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(210, 173, 114, 0.42);
}

.contact-submit {
  justify-self: start;
  min-width: 150px;
}

@media (max-width: 1024px) {
  .contact-intro-grid,
  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-intro-text,
  .contact-lead p,
  .contact-lead h2,
  .contact-intro-copy h1 {
    max-width: none;
  }

  .contact-main::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-phone {
    font-size: 1.8rem;
  }
}

