@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Unbounded:wght@500;600;700;800&display=swap");

:root {
  color-scheme: dark;
  --bg: #0a0a0a;
  --panel: #151515;
  --panel-2: #1e1e1e;
  --text: #f8f8f6;
  --muted: #a3a3a3;
  --line: rgba(255, 255, 255, 0.12);
  --red: #e63946;
  --orange: #ff6b35;
  --amber: #f59e0b;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Outfit, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 18% 12%, rgba(230, 57, 70, 0.2), transparent 34rem),
    radial-gradient(circle at 82% 6%, rgba(255, 107, 53, 0.18), transparent 28rem),
    linear-gradient(180deg, #0a0a0a 0%, #111 48%, #090909 100%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

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

h1, h2, h3, h4 {
  margin: 0;
  font-family: Unbounded, sans-serif;
  line-height: 1.04;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.65rem 0.9rem;
  background: var(--text);
  color: var(--bg);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  min-height: 74px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Unbounded, sans-serif;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red), var(--orange) 55%, var(--amber));
  color: white;
}

.brand span span {
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
}

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

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: white;
  font-weight: 700;
  cursor: pointer;
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.78fr);
  gap: 56px;
  align-items: center;
  max-width: var(--max);
  min-height: calc(100svh - 74px);
  margin: 0 auto;
  padding: 72px 24px 88px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--orange));
}

.hero h1 {
  max-width: 920px;
  font-size: clamp(3.1rem, 8.2vw, 7.5rem);
}

.gradient-text {
  background: linear-gradient(135deg, #fff, #ffb088 46%, var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 660px;
  margin-top: 26px;
  color: #d7d7d4;
  font-size: clamp(1.08rem, 1.9vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-media {
  position: relative;
  min-height: 560px;
}

.photo-stack {
  position: absolute;
  inset: 0;
}

.photo-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card.main {
  top: 0;
  right: 0;
  width: 82%;
  height: 74%;
}

.photo-card.side {
  bottom: 8%;
  left: 0;
  width: 52%;
  height: 42%;
}

.stat-strip {
  position: absolute;
  right: 5%;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 78%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(14px);
}

.stat {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-family: Unbounded, sans-serif;
  font-size: 1.35rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.section {
  padding: 92px 24px;
}

.section.alt {
  background: rgba(255, 255, 255, 0.035);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

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

.section-head h2,
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 4.8rem);
}

.section-head p {
  max-width: 520px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(21, 21, 21, 0.74);
}

.card h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.card p,
.card li {
  color: var(--muted);
}

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

.feature-image {
  overflow: hidden;
  min-height: 380px;
  border-radius: 8px;
  background: #181818;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.portfolio img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px 24px 48px;
}

.page-hero p {
  max-width: 780px;
  margin-top: 20px;
  color: #d7d7d4;
  font-size: 1.18rem;
}

.prose {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 24px 92px;
}

.prose h2 {
  margin-top: 44px;
  margin-bottom: 14px;
  font-size: 1.55rem;
}

.prose h3 {
  margin-top: 32px;
  margin-bottom: 10px;
}

.prose p,
.prose li {
  color: #d4d4d1;
}

.prose ul {
  padding-left: 1.2rem;
}

.prose a {
  color: #ffb088;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
}

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

.contact-list a,
.contact-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.contact-list strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
}

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

.site-footer {
  border-top: 1px solid var(--line);
  background: #080808;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 52px 24px;
}

.footer-inner p,
.footer-inner a {
  color: var(--muted);
}

.footer-inner ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-inner h2,
.footer-inner h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(10, 10, 10, 0.96);
  }

  .nav-links[data-open="true"] {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
  }

  .hero,
  .media-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

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

  .grid.three,
  .grid.two,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .nav {
    padding: 0 16px;
  }

  .brand span {
    font-size: 0.9rem;
  }

  .hero,
  .section,
  .page-hero,
  .prose {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 14vw, 4.2rem);
  }

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

  .stat-strip {
    left: 0;
    right: 0;
    width: auto;
  }

  .stat {
    padding: 12px;
  }

  .portfolio {
    grid-template-columns: repeat(2, 1fr);
  }
}
