:root {
  --ink: #f7f4ee;
  --ink-muted: rgba(247, 244, 238, 0.72);
  --ink-soft: rgba(247, 244, 238, 0.52);
  --shadow: rgba(38, 40, 38, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  color: var(--ink);
  background: #858984;
}

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

.opening-page {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(24px, 4vw, 52px);
  background-image:
    linear-gradient(90deg, rgba(35, 37, 34, 0.68), rgba(62, 66, 62, 0.28) 48%, rgba(62, 66, 62, 0.08)),
    linear-gradient(180deg, rgba(16, 18, 17, 0.32), rgba(16, 18, 17, 0.08) 42%, rgba(16, 18, 17, 0.42)),
    url("studio-opening-bg.jpg");
  background-position: center;
  background-size: cover;
}

.site-header,
.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  text-transform: uppercase;
  text-shadow: 0 1px 18px var(--shadow);
}

.brand-name {
  font-size: clamp(24px, 2.3vw, 42px);
  line-height: 0.92;
  letter-spacing: 0;
}

.brand-subtitle {
  margin-top: 9px;
  padding-left: 5px;
  font-size: clamp(7px, 0.6vw, 10px);
  letter-spacing: 0.72em;
  color: var(--ink-muted);
}

.site-nav,
.social-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  padding-top: 7px;
  font-size: clamp(10px, 0.8vw, 12px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  text-shadow: 0 1px 14px var(--shadow);
}

.site-nav a,
.social-nav a {
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover,
.social-nav a:hover {
  color: var(--ink);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(720px, 100%);
  margin-top: clamp(24px, 6vh, 72px);
  text-shadow: 0 2px 28px var(--shadow);
}

.eyebrow {
  margin: 0 0 22px;
  font-size: clamp(10px, 0.8vw, 12px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--ink-soft);
}

h1 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(42px, 6vw, 92px);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.message {
  margin: clamp(24px, 3vw, 34px) 0 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.9;
  color: var(--ink-muted);
}

.rule {
  display: block;
  width: 48px;
  height: 1px;
  margin: clamp(26px, 3vw, 38px) 0 20px;
  background: var(--ink-soft);
}

.stay {
  margin: 0;
  font-size: clamp(12px, 0.9vw, 15px);
  line-height: 1.8;
  color: var(--ink-muted);
}

.site-footer {
  align-self: end;
  width: 100%;
  font-size: clamp(9px, 0.7vw, 11px);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--ink-soft);
  text-shadow: 0 1px 14px var(--shadow);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .opening-page {
    padding: 28px 24px;
    background-image:
      linear-gradient(90deg, rgba(35, 37, 34, 0.78), rgba(62, 66, 62, 0.36) 58%, rgba(62, 66, 62, 0.12)),
      linear-gradient(180deg, rgba(16, 18, 17, 0.28), rgba(16, 18, 17, 0.12) 45%, rgba(16, 18, 17, 0.5)),
      url("studio-opening-bg.jpg");
    background-position: 58% center;
  }

  .site-nav {
    display: none;
  }

  .hero-content {
    width: min(540px, 100%);
    margin-top: 44px;
  }

  h1 {
    font-size: clamp(36px, 13vw, 64px);
    letter-spacing: 0.15em;
  }

  .message br {
    display: none;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    letter-spacing: 0.24em;
  }

  .social-nav {
    gap: 22px;
    padding-top: 0;
  }
}

@media (max-width: 520px) {
  .opening-page {
    min-height: 100dvh;
    padding: 22px 18px;
    background-position: 62% center;
  }

  .brand-subtitle {
    letter-spacing: 0.58em;
  }

  .eyebrow {
    margin-bottom: 18px;
    letter-spacing: 0.22em;
  }

  h1 {
    letter-spacing: 0.1em;
  }

  .message {
    width: min(310px, 100%);
    line-height: 1.8;
  }

  .site-footer p {
    max-width: 310px;
  }
}
