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

:root {
  --black: #000;
  --white: #fff;
  --gray-1: #111;
  --gray-2: #1a1a1a;
  --gray-3: #8d8d8d;
  --gray-4: #c8c8c8;
  --border: rgba(255, 255, 255, 0.14);
  --max: 1240px;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  min-height: 100vh;
  color: var(--white);
  background: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
}

.navbar {
  width: min(calc(100% - 48px), var(--max));
  min-height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: #cfcfcf;
  font-size: 14px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  border: 1px solid var(--white);
  padding: 11px 17px;
  font-size: 13px;
  font-weight: 700;
}

.nav-cta span,
.button span {
  margin-left: 7px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 4px auto;
  background: var(--white);
}

.section {
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
  padding: 130px 0;
}

.hero {
  min-height: 100vh;
  padding-top: 180px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: 60px;
}

.eyebrow {
  margin-bottom: 20px;
  color: #a6a6a6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: #9e9e9e;
}

.hero-text {
  max-width: 680px;
  margin-top: 30px;
  color: var(--gray-4);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--white);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  color: var(--black);
  background: var(--white);
}

.button-light:hover {
  background: #ddd;
}

.button-dark {
  color: var(--white);
  background: transparent;
}

.hero-mark {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mark img {
  width: min(100%, 360px);
  max-height: 360px;
  object-fit: contain;
  opacity: 0.95;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 55px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 25px;
}

.section-heading h2,
.about-copy h2,
.contact-intro h2 {
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-card {
  min-height: 260px;
  padding: 34px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.service-card:hover,
.work-card:hover {
  background: var(--gray-1);
}

.service-number,
.work-top {
  color: #777;
  font-size: 11px;
  letter-spacing: 0.15em;
}

.service-card h3 {
  margin-top: 80px;
  font-size: 28px;
}

.service-card p {
  max-width: 470px;
  margin-top: 12px;
  color: #999;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.work-card {
  min-width: 0;
  padding: 50px 32px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease, background 0.3s ease;
}

.work-card:hover {
  background: rgba(255, 255, 255, 0.04);
}

.work-card h3 {
  margin-top: auto;
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.2;
}

.work-card p {
  margin: 0;
  max-width: 100%;
  line-height: 1.6;
  font-size: 14px;
}

.work-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 70px;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.work-link {
  display: inline-block;
  width: fit-content;
  margin-top: 24px;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 5px;
}

.work-link:hover {
  border-color: #fff;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-text {
  max-width: 620px;
  color: #aaa;
  font-size: 19px;
}

.about-text p+p {
  margin-top: 25px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}

.contact-intro h2 {
  max-width: 520px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form label {
  display: block;
}

.contact-form label>span {
  display: block;
  margin-bottom: 13px;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #444;
  outline: 0;
  border-radius: 0;
  padding: 12px 0 16px;
  color: var(--white);
  background: transparent;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #666;
}

.contact-form select {
  appearance: none;
  cursor: pointer;
}

.contact-form select option {
  color: var(--black);
  background: var(--white);
}

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

.submit-button {
  align-self: flex-start;
  min-width: 210px;
}

.form-note {
  margin-top: -18px;
  color: #666;
  font-size: 12px;
}

.site-footer {
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
  padding: 45px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: #777;
  font-size: 12px;
}

.site-footer strong {
  color: var(--white);
  letter-spacing: 0.1em;
}

.cursor-glow {
  position: fixed;
  z-index: -1;
  width: 260px;
  height: 260px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 65%);
  transform: translate(-50%, -50%);
}

@media (max-width: 900px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .navbar {
    position: relative;
  }

  .nav-links.open {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.98);
  }

  .nav-links.open a {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
  }

  .hero,
  .contact-section,
  .about-section {
    grid-template-columns: 1fr;
  }

  .hero-mark {
    justify-content: flex-start;
  }

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

@media (max-width: 650px) {

  .navbar,
  .section,
  .site-footer {
    width: min(calc(100% - 32px), var(--max));
  }

  .navbar {
    min-height: 70px;
  }

  .brand {
    font-size: 16px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .section {
    padding: 90px 0;
  }

  .hero {
    padding-top: 130px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 72px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 220px;
    padding: 25px;
  }

  .service-card h3 {
    margin-top: 55px;
  }

  .work-card {
    min-height: 310px;
  }

  .work-card h3 {
    margin-top: 70px;
  }

  .site-footer {
    flex-direction: column;
  }
}


.direct-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-note {
  color: #999;
  margin-bottom: 10px;
}

.contact-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.2s ease;
}

.contact-option:hover {
  padding-left: 8px;
}

.contact-option span {
  font-size: 20px;
  font-weight: 700;
}

.contact-option small {
  color: #999;
  font-size: 13px;
}

@media (max-width: 650px) {
  .contact-option {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}