:root {
  --ink: #f7f7f2;
  --muted: #c7c2ba;
  --charcoal: #222;
  --deep: #080808;
  --panel: #2b2b2b;
  --line: rgba(255, 255, 255, 0.14);
  --gold: #ffc32f;
  --gold-dark: #d99a00;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--panel);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #272727;
  border-top: 10px solid #50636a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.top-strip,
.main-nav {
  width: min(100% - 32px, 1920px);
  margin: 0 auto;
}

.top-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 48px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.social-links,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-links a,
.footer-socials a {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: #252525;
  background: #fff;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 900;
}

.email-link {
  flex: 1;
  color: #fff;
  text-decoration: none;
}

.main-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 74px;
}

.brand {
  position: absolute;
  left: 50%;
  top: -42px;
  width: 180px;
  transform: translateX(-50%);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
}

.brand img {
  width: 100%;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 38px);
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu li:nth-child(1) {
  margin-left: auto;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-menu a.active {
  color: var(--gold);
}

.store-button {
  min-width: 124px;
  justify-content: center;
  padding: 0 25px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px auto;
  background: #fff;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 132px);
  overflow: hidden;
  background: #111;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center 45%;
  opacity: 0.72;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.26) 54%, rgba(0, 0, 0, 0.62)),
    linear-gradient(0deg, rgba(43, 43, 43, 1), transparent 24%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--max));
  margin: auto;
  padding: 80px 0 110px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

h1,
h2,
.script-heading {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  max-width: 720px;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.88;
}

.hero-content p:not(.eyebrow) {
  max-width: 610px;
  margin: 24px 0 30px;
  color: #eee;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.primary-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.8px;
}

.welcome-section,
.portfolio-preview {
  background: var(--panel);
}

.section-inner {
  width: min(100% - 40px, 760px);
  margin: 0 auto;
  padding: 72px 0;
}

.section-inner.wide {
  width: min(100% - 40px, var(--max));
}

.script-heading {
  margin-bottom: 24px;
  color: #fff;
  text-align: center;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-style: italic;
  line-height: 1;
}

.copy-block {
  color: #f1eee9;
  font-size: 0.98rem;
}

.copy-block p {
  margin: 0 0 22px;
}

.copy-block a {
  color: #fff;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

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

h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1;
}

.image-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 18px;
}

.image-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #141414;
}

.image-card.large-card {
  min-height: 560px;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.image-card:hover img {
  transform: scale(1.035);
}

.image-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 58%);
}

.image-card div {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
}

.image-card p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1;
}

.image-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 44px 20px 38px;
  color: #fff;
  background: #030303;
  text-align: center;
}

.site-footer img {
  width: 150px;
  margin-bottom: 6px;
}

.site-footer p {
  margin: 0;
  font-size: 1.05rem;
}

.site-footer nav {
  display: grid;
  gap: 4px;
}

.site-footer nav a,
.site-footer small {
  color: #fff;
  font-size: 0.82rem;
}

@media (max-width: 1120px) {
  .top-strip {
    display: none;
  }

  .site-header {
    border-top-width: 6px;
  }

  .main-nav {
    justify-content: space-between;
    min-height: 78px;
  }

  .brand {
    position: static;
    width: 150px;
    transform: none;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 0;
    background: #222;
    border-top: 1px solid var(--line);
  }

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

  .nav-menu li:nth-child(1) {
    margin-left: 0;
  }

  .nav-menu a {
    justify-content: center;
    min-height: 52px;
  }

  .store-button {
    width: min(220px, 80%);
    margin: 8px auto;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 660px;
  }

  .hero-content {
    padding: 72px 0 90px;
  }

  .section-inner {
    padding: 56px 0;
  }

  .section-heading {
    display: block;
  }

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

  .image-card,
  .image-card.large-card {
    min-height: 470px;
  }
}

@media (max-width: 520px) {
  .brand {
    width: 124px;
  }

  .hero {
    min-height: 600px;
  }

  h1 {
    font-size: 4rem;
  }

  .image-card,
  .image-card.large-card {
    min-height: 390px;
  }
}
