* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #120f0c;
  color: #f5ead8;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 52px;
  background: transparent;
}

.logo {
  font-size: 16px;
  font-weight: 520;
  letter-spacing: -0.025em;
  color: rgba(245, 234, 216, 0.96);
}

nav {
  display: flex;
  gap: 30px;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: rgba(245, 234, 216, 0.68);
}

nav a {
  transition: color 0.2s ease;
}

nav a:hover {
  color: rgba(245, 234, 216, 0.96);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 52px 128px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 18% 8%,
      rgba(226, 184, 118, 0.08),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #19150f 0%,
      #15110d 48%,
      #120f0c 100%
    );
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("images/Beneath the Golden Veil.webp");
  background-size: cover;
  background-position: center 42%;
  opacity: 1;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 64% 36%,
      rgba(226, 184, 118, 0.1),
      transparent 36%
    ),
    linear-gradient(
      to right,
      rgba(23, 20, 15, 0.44),
      rgba(23, 20, 15, 0.08) 58%,
      rgba(23, 20, 15, 0.16)
    );
}

.hero > * {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: rgba(226, 184, 118, 0.78);
}

h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(62px, 10.6vw, 148px);
  line-height: 0.9;
  letter-spacing: -0.065em;
  font-weight: 520;
  text-wrap: balance;
}

.intro {
  max-width: 440px;
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(245, 234, 216, 0.72);
}

.section {
  padding: 52px;
}

.work {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-top: 212px;
  background: #120f0c;
}

.work::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -160px;
  height: 160px;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(18, 15, 12, 0) 0%,
    rgba(18, 15, 12, 0.16) 24%,
    rgba(18, 15, 12, 0.42) 48%,
    rgba(18, 15, 12, 0.72) 68%,
    rgba(18, 15, 12, 0.92) 84%,
    #120f0c 100%
  );
}

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

.photo-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  border: 0;
  outline: 0;
}

.photo-card::before,
.photo-card::after {
  content: none;
  display: none;
}

.photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.002);
  box-shadow: none;
  border: 0;
  outline: 0;
  filter: none;
}

.photo-card:nth-child(1) {
  display: none;
}

.photo-card:nth-child(2),
.photo-card:nth-child(5) {
  grid-column: span 7;
  aspect-ratio: 5 / 4;
}

.photo-card:nth-child(3),
.photo-card:nth-child(4),
.photo-card:nth-child(6) {
  grid-column: span 5;
  aspect-ratio: 4 / 5;
}

.placeholder {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 18px;
  color: rgba(245, 234, 216, 0.38);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.about {
  max-width: 1040px;
  margin-left: auto;
  padding-top: 180px;
  padding-bottom: 180px;
}

.about p {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 500;
  color: rgba(245, 234, 216, 0.9);
}

.contact {
  display: flex;
  justify-content: flex-end;
  padding-top: 0;
  padding-bottom: 120px;
}

.contact p {
  margin: 0;
  font-size: 15px;
  color: rgba(245, 234, 216, 0.52);
}

.contact a {
  margin-left: 12px;
  color: rgba(245, 234, 216, 0.92);
  border-bottom: 1px solid rgba(226, 184, 118, 0.46);
}

footer {
  padding: 0 40px 36px;
  color: rgba(245, 234, 216, 0.34);
  font-size: 12px;
}

@media (max-width: 800px) {
  .site-header {
    padding: 22px;
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
  }

  nav {
    gap: 18px;
    flex-wrap: wrap;
    font-size: 14px;
  }

  .hero {
    min-height: 92vh;
    padding: 132px 22px 96px;
  }

  .hero::before {
    background-position: center 42%;
  }

  .hero::after {
    background:
      linear-gradient(
        to top,
        rgba(18, 15, 12, 0.94) 0%,
        rgba(18, 15, 12, 0.72) 28%,
        rgba(18, 15, 12, 0.34) 52%,
        rgba(18, 15, 12, 0.1) 72%,
        rgba(18, 15, 12, 0.14) 100%
      ),
      linear-gradient(
        to right,
        rgba(18, 15, 12, 0.4) 0%,
        rgba(18, 15, 12, 0.08) 72%
      );
  }

  .hero .eyebrow,
  .hero h1,
  .hero .intro {
    position: relative;
    z-index: 2;
    text-shadow:
      0 1px 2px rgba(0, 0, 0, 0.95),
      0 4px 18px rgba(0, 0, 0, 0.78);
  }

  .hero .eyebrow {
    color: rgba(255, 231, 194, 0.92);
  }

  .hero h1 {
    color: #fff8ee;
  }

  .hero .intro {
    color: rgba(255, 248, 238, 0.92);
  }

  h1 {
    font-size: clamp(56px, 20vw, 96px);
    letter-spacing: -0.07em;
  }

  .section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .work {
    margin-top: 0;
    padding-top: 166px;
  }

  .work::before {
    top: -180px;
    height: 180px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .photo-card,
  .photo-card:nth-child(n) {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }

  .about {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .about p {
    font-size: clamp(34px, 12vw, 58px);
  }

  .contact {
    justify-content: flex-start;
    padding-bottom: 88px;
  }

  footer {
    padding: 0 20px 28px;
  }
}