:root {
  --bg: #080807;
  --panel: #12110f;
  --panel-soft: #1d1915;
  --ink: #f8f1e8;
  --muted: #b9afa5;
  --orange: #f26b2e;
  --gold: #d7aa5f;
  --teal: #58b8ad;
  --line: rgba(248, 241, 232, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(242, 107, 46, 0.12), transparent 36%),
    linear-gradient(280deg, rgba(88, 184, 173, 0.12), transparent 42%);
  z-index: -1;
}

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

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

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  min-width: max-content;
}

.brand span {
  color: var(--orange);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(44px, 7vw, 74px);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 0.88;
}

.brand strong {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(44px, 7vw, 74px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 1px;
}

.menu-button {
  display: none;
  min-height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 8px 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.main-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--orange);
}

.section,
.hero-section,
.contact-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-section {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  padding: 42px 0;
}

.hero-media {
  min-height: 640px;
  overflow: hidden;
  background: var(--panel);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center 34%;
}

.hero-copy {
  align-self: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(54px, 7vw, 86px);
  overflow-wrap: break-word;
}

h2 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 72px);
}

h3 {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 17px;
  text-transform: uppercase;
}

p {
  color: var(--muted);
  font-size: 17px;
}

.hero-copy p {
  max-width: 560px;
  font-size: 19px;
}

.actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--orange);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.button.primary {
  background: var(--orange);
  color: #120b07;
}

.button.secondary,
.contact-links a {
  color: var(--ink);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1fr);
  gap: 52px;
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.intro-section p:last-child {
  max-width: 670px;
  font-size: 21px;
}

.feature-section,
.project-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 48px;
  align-items: center;
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.project-section {
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--ink);
  list-style: none;
}

.clean-list li {
  border-left: 3px solid var(--orange);
  padding-left: 14px;
  color: var(--ink);
  font-weight: 700;
}

.image-panel,
.portrait-panel {
  margin: 0;
  overflow: hidden;
  background: var(--panel-soft);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
  object-position: center;
}

.portrait-panel img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  object-position: center 22%;
}

.cards-section {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

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

.cards-grid article {
  min-height: 220px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  padding: 24px;
}

.cards-grid p {
  margin-bottom: 0;
  font-size: 15px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 40px;
  align-items: center;
  padding: 88px 0 110px;
  border-top: 1px solid var(--line);
}

.contact-section h2 {
  color: var(--orange);
}

.contact-links {
  align-content: start;
  margin-top: 0;
}

.contact-links a {
  width: 100%;
}

.chat-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 14px 32px rgba(88, 184, 173, 0.28);
}

.chat-button span {
  width: 27px;
  height: 20px;
  position: relative;
  border-radius: 14px;
  background: #07100f;
}

.chat-button span::after {
  content: "";
  position: absolute;
  left: 6px;
  bottom: -5px;
  border-width: 6px 6px 0 0;
  border-style: solid;
  border-color: #07100f transparent transparent transparent;
}

.chat-button span::before {
  content: "";
  position: absolute;
  inset: 6px 7px;
  border-top: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    padding: 18px 0;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0 4px;
  }

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

  .hero-section,
  .intro-section,
  .feature-section,
  .project-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: 0;
    gap: 28px;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-media img {
    min-height: 420px;
  }

  .intro-section,
  .feature-section,
  .project-section,
  .cards-section,
  .contact-section {
    padding: 68px 0;
  }

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

@media (max-width: 560px) {
  .brand strong {
    font-size: 46px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-media,
  .hero-media img {
    min-height: 360px;
  }

  .button,
  .contact-links a {
    width: 100%;
  }
}
