@font-face {
  font-family: "Cormorant";
  src: url("assets/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFk9TQ7Q-668ec3ae.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --panel: rgba(240, 236, 229, 0.9);
  --ink: #20242b;
  --panel-width: min(59.2vw, 1365px);
  --menu-banner-gap: clamp(14px, 1vw, 20px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #1f2a36;
  color: var(--ink);
  font-family: "Cormorant", Baskerville, Georgia, serif;
}

a {
  color: inherit;
}

.artwork-page {
  position: relative;
  min-height: 100vh;
}

.artwork-page__image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-statement {
  position: absolute;
  z-index: 1;
  top: 52vw;
  left: 22.1vw;
  width: max-content;
  max-width: 70vw;
  margin: 0;
  color: #050505;
  font-family: "Cormorant", Baskerville, Georgia, serif;
  font-size: clamp(23px, 1.9vw, 42px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow:
    0 1px 8px rgba(240, 236, 229, 1),
    0 4px 22px rgba(240, 236, 229, 0.96),
    0 10px 50px rgba(240, 236, 229, 0.9),
    0 22px 98px rgba(240, 236, 229, 0.78);
  filter:
    drop-shadow(0 8px 30px rgba(240, 236, 229, 0.88))
    drop-shadow(0 18px 64px rgba(240, 236, 229, 0.68));
  isolation: isolate;
}

.hero-statement__line {
  position: relative;
  display: block;
  width: max-content;
}

.hero-statement__line::before {
  position: absolute;
  z-index: -1;
  inset: -0.34em -0.18em -0.32em -0.58em;
  border-radius: 999px;
  background: rgba(240, 236, 229, 0.46);
  content: "";
  filter: blur(20px);
}

.legal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65em;
  width: 100%;
  padding: clamp(34px, 4vw, 64px) 24px;
  background: var(--panel);
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: clamp(17px, 1.35vw, 26px);
  font-weight: 400;
}

.legal-footer a {
  text-decoration: none;
}

.legal-footer a:hover,
.legal-footer a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.header-stack {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: var(--panel-width);
  transform: translateX(-50%);
}

.site-header {
  position: relative;
  width: 100%;
  min-height: 0;
  padding: clamp(20px, 2vw, 46px) clamp(24px, 4vw, 92px) var(--menu-banner-gap);
  background: var(--panel);
  text-align: center;
}

.site-header__brand {
  display: block;
  width: clamp(300px, 38vw, 760px);
  margin: 0 auto clamp(12px, 1.4vw, 32px);
  line-height: 0;
  text-decoration: none;
}

.site-header__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 2.5vw, 58px);
}

.main-navigation a {
  position: relative;
  flex: 0 0 auto;
  font-size: clamp(17px, 1.35vw, 31px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
}

.main-navigation .main-navigation__instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
}

.instagram-icon {
  width: 1em;
  height: 1em;
  flex: 0 0 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.instagram-icon circle:last-child {
  fill: currentColor;
  stroke: none;
}

.main-navigation a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-navigation a:hover::after,
.main-navigation a:focus-visible::after,
.main-navigation a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.contact-cta {
  position: static;
  display: block;
  width: fit-content;
  min-width: clamp(250px, 18vw, 414px);
  margin: var(--menu-banner-gap) auto 0;
  padding: clamp(12px, 0.9vw, 21px) clamp(28px, 2vw, 46px);
  background: var(--panel);
  color: var(--ink);
  font-size: clamp(18px, 1.35vw, 31px);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease;
}

.contact-cta:hover,
.contact-cta:focus-visible {
  background: rgba(238, 236, 232, 0.98);
}

.page-section {
  max-width: 780px;
  margin: 0 auto;
  padding: 88px 28px;
  background: #fff;
}

.page-section + .page-section {
  border-top: 1px solid #dedede;
}

.page-section h2 {
  margin: 0 0 18px;
  font-size: 42px;
  font-weight: 400;
}

.page-section p,
.page-section a {
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

@media (min-width: 901px) {
  .page-section {
    display: none;
  }
}

@media (max-width: 900px) {
  :root {
    --panel-width: calc(100% - 32px);
  }

  .site-header {
    position: relative;
    min-height: 0;
    padding: 20px 22px;
    text-align: left;
  }

  .site-header__brand {
    width: min(74vw, 450px);
    margin: 0;
  }

  .menu-toggle {
    position: absolute;
    top: 31px;
    right: 22px;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
    gap: 5px;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--ink);
  }

  .main-navigation {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 34px 0 10px;
  }

  .main-navigation.is-open {
    display: flex;
  }

  .main-navigation a {
    font-size: 24px;
  }

  .contact-cta {
    min-width: 0;
    width: max-content;
    max-width: calc(100% - 64px);
    padding: 12px 22px;
    font-size: 19px;
  }

  .hero-statement {
    top: 42vw;
    left: 11vw;
    width: max-content;
    max-width: 78vw;
    font-size: clamp(16px, 3.1vw, 24px);
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 0;
    padding: 18px;
  }

  .site-header__brand {
    width: min(74vw, 315px);
  }

  .menu-toggle {
    top: 23px;
    right: 15px;
  }

  .contact-cta {
    font-size: 17px;
  }

  .hero-statement {
    top: 44vw;
    left: 9vw;
    width: max-content;
    max-width: 82vw;
    font-size: clamp(13px, 3.4vw, 17px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
