:root {
  --bg: #0d0b0b;
  --bg-soft: #171313;
  --panel: #211b1b;
  --text: #f4eee8;
  --muted: #b6aaa1;
  --accent: #e6532f;
  --accent-2: #f2b84b;
  --line: rgba(244, 238, 232, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 28px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(230, 83, 47, 0.22),
      transparent 28rem
    ),
    radial-gradient(
      circle at 90% 15%,
      rgba(242, 184, 75, 0.13),
      transparent 25rem
    ),
    radial-gradient(
      circle at 55% 90%,
      rgba(230, 83, 47, 0.1),
      transparent 28rem
    ),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

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

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

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

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.08rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--accent), transparent 62%),
    linear-gradient(315deg, var(--accent-2), transparent 56%), #2b2020;
  border: 1px solid rgba(244, 238, 232, 0.2);
  box-shadow: 0 0 0 6px rgba(230, 83, 47, 0.08);
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a {
  transition: color 180ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(244, 238, 232, 0.16);
  background: rgba(244, 238, 232, 0.07);
  color: var(--text);
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: rgba(244, 238, 232, 0.11);
  border-color: rgba(244, 238, 232, 0.28);
}

.button.primary {
  background: var(--accent);
  color: #160b08;
  border-color: rgba(255, 255, 255, 0.2);
}

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

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  padding: 80px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}

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

h1 {
  font-size: clamp(4rem, 10vw, 8.8rem);
  line-height: 0.86;
  letter-spacing: -0.09em;
  margin-bottom: 26px;
  max-width: 850px;
}

.hero-copy {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.6vw, 1.24rem);
}

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

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

.feature-card {
  position: absolute;
  inset: 34px 0 0 38px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transform: rotate(2deg);
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 11, 11, 0.84), transparent 42%);
}

.feature-label {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 28px;
  z-index: 2;
}

.feature-label strong {
  display: block;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

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

.floating-note {
  display: none;
}

.floating-note b {
  color: var(--text);
}

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

h2 {
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
  margin-bottom: 0;
}

.section-heading p {
  max-width: 420px;
  color: var(--muted);
  margin-bottom: 8px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  padding-bottom: 110px;
}

.work-card {
  position: relative;
  min-height: 360px;
  border-radius: 26px;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
}

.work-card.large {
  grid-column: span 7;
  min-height: 520px;
}

.work-card.medium {
  grid-column: span 5;
  min-height: 520px;
}

.work-card.small {
  grid-column: span 4;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 360ms ease,
    filter 360ms ease;
}

.work-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.05);
}

.work-info {
  position: absolute;
  inset: auto 18px 18px 18px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(13, 11, 11, 0.72);
  border: 1px solid rgba(244, 238, 232, 0.16);
  backdrop-filter: blur(18px);
}

.work-info h3 {
  font-size: 1.16rem;
  margin-bottom: 2px;
  letter-spacing: -0.04em;
}

.work-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.about {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 36px;
  align-items: start;
  padding: 88px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-panel {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(244, 238, 232, 0.06);
  border: 1px solid var(--line);
}

.about-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.about-copy {
  font-size: clamp(1.35rem, 2.7vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.about-copy p {
  margin-bottom: 0;
}

.about-copy p + p {
  margin-top: 24px;
}

.contact {
  text-align: center;
  padding: 110px 0;
}

.contact h2 {
  max-width: 880px;
  margin: 0 auto 24px;
}

.contact p {
  max-width: 620px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

footer {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 44px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .nav {
    min-height: 66px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 58px 0 70px;
  }

  .hero-art {
    min-height: 440px;
  }

  .feature-card {
    inset: 0;
  }

  .floating-note {
    bottom: 18px;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 16px;
  }

  .work-card.large,
  .work-card.medium,
  .work-card.small {
    grid-column: span 12;
    min-height: 420px;
  }

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

@media (max-width: 560px) {
  .hero-actions,
  .contact-links {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .floating-note {
    display: none;
  }

  .gallery {
    gap: 14px;
    padding-bottom: 72px;
  }

  .work-card.large,
  .work-card.medium,
  .work-card.small {
    min-height: 340px;
  }

  .about,
  .contact {
    padding: 72px 0;
  }
}
