:root {
  --bg: #f5f3ee;
  --surface: #ffffff;
  --surface-alt: #ece7de;
  --text: #1f2328;
  --muted: #5e6772;
  --line: #ddd4c7;
  --dark: #161a1f;
  --dark-soft: #232931;
  --accent: #c78d2a;
  --accent-dark: #9f6c17;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.section {
  padding: 88px 0;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 700;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  max-width: 13ch;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head p:last-child {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.04rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(245, 243, 238, 0.88);
  border-bottom: 1px solid rgba(221, 212, 199, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--dark);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo-text {
  display: grid;
  gap: 2px;
}

.logo-text strong {
  font-size: 1rem;
}

.logo-text small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  font-weight: 600;
  font-size: 0.96rem;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 4px auto;
}

.hero {
  padding: 72px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-panel {
  min-width: 0;
}

.hero-text {
  max-width: 640px;
  margin-top: 22px;
  font-size: 1.08rem;
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #1d1406;
}

.btn-primary:hover {
  background: #d39a35;
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--line);
}

.btn-light {
  background: #fff;
  color: var(--dark);
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 500;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

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

.panel-card,
.panel-note,
.service-card,
.project-card,
.contact-card,
.career-card,
.split-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-card {
  padding: 28px;
}

.panel-dark {
  background: linear-gradient(180deg, var(--dark-soft), var(--dark));
  color: #fff;
}

.panel-label {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.64);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.panel-card h2 {
  max-width: none;
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.panel-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.82);
  display: grid;
  gap: 10px;
}

.panel-note {
  background: var(--surface-alt);
  padding: 22px 24px;
  border: 1px solid var(--line);
}

.panel-note span {
  color: var(--muted);
}

.trust-strip {
  padding: 10px 0 0;
}

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

.trust-grid > div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}

.trust-grid strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.95rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--surface);
  padding: 26px;
  border: 1px solid var(--line);
}

.service-number {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

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

.split-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: center;
}

.split-image {
  background: linear-gradient(180deg, #ddd6cb, #cfc6b8);
  border: 1px solid #d1c6b5;
  min-height: 460px;
  overflow: hidden;
  position: relative;
}

.mock-scene {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,0.22), rgba(0,0,0,0.04));
}

.mock-wire {
  position: absolute;
  left: 12%;
  top: 12%;
  width: 46%;
  height: 46%;
  border: 3px solid rgba(32, 35, 40, 0.26);
  border-right: none;
  border-bottom: none;
  border-radius: 24px 0 0 0;
}

.mock-board {
  position: absolute;
  right: 12%;
  bottom: 12%;
  width: 220px;
  height: 260px;
  border-radius: 22px;
  background: rgba(26, 30, 36, 0.94);
  box-shadow: 0 20px 60px rgba(0,0,0,0.16);
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mock-board span {
  display: block;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.split-copy p {
  margin-top: 18px;
  color: var(--muted);
  max-width: 60ch;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 500;
}

.check-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-dark);
  font-weight: 800;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 28px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.project-tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.cta-band {
  padding: 12px 0;
}

.cta-band-inner {
  background: var(--dark);
  color: #fff;
  border-radius: 28px;
  padding: 34px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta-band-inner .eyebrow {
  color: rgba(255,255,255,0.62);
  margin-bottom: 10px;
}

.cta-band-inner h2 {
  max-width: 14ch;
}

.career-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 18px;
  align-items: stretch;
}

.career-copy p:last-child {
  margin-top: 16px;
  color: var(--muted);
  max-width: 64ch;
}

.career-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 28px;
}

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

.text-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  color: var(--accent-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 28px;
}

.contact-info h2 {
  margin-bottom: 28px;
}

.contact-list {
  display: grid;
  gap: 22px;
}

.contact-list span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  font-weight: 700;
}

.contact-list strong {
  font-size: 1rem;
  line-height: 1.6;
}

.contact-form h3 {
  margin-bottom: 18px;
}

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

label {
  display: grid;
  gap: 8px;
}

label span {
  font-size: 0.92rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 15px 16px;
  color: var(--text);
  outline: none;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
}

.full {
  grid-column: 1 / -1;
}

.full-width {
  width: 100%;
  margin-top: 16px;
}

.site-footer {
  padding: 28px 0 42px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.footer-inner p {
  margin-top: 6px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .career-grid,
  .contact-grid,
  .services-grid,
  .project-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .cta-band-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .career-grid {
    gap: 18px;
  }
}

@media (max-width: 860px) {
  .site-nav {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-block;
  }

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

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

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

  .hero {
    padding-top: 34px;
  }

  .section {
    padding: 68px 0;
  }

  .panel-card,
  .contact-card,
  .service-card,
  .project-card {
    padding: 22px;
  }

  .split-image {
    min-height: 340px;
  }
}

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

  .header-inner {
    min-height: 72px;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

  .cta-band-inner {
    padding: 24px 22px;
    border-radius: 22px;
  }

  .contact-card,
  .service-card,
  .project-card,
  .career-card {
    border-radius: 20px;
  }
}
