:root {
  --coral: #de533c;
  --pink: #fad4d6;
  --cream: #ece8dc;
  --brown: #5d3827;
  --board-bg: #d8d8ca;
  --ink: #000;
  --footer-ink: #6f5438;
  --design: min(100vw, 1280px);
  --site-header-height: clamp(82px, 10.23vw, 131px);
}

@font-face {
  font-family: "PP Neue Montreal";
  src: url("assets/fonts/PPNeueMontreal-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "PP Neue Montreal";
  src: url("assets/fonts/PPNeueMontreal-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "PP Neue Montreal";
  src: url("assets/fonts/PPNeueMontreal-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Bigilla";
  src: url("assets/fonts/Bigilla.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Bigilla";
  src: url("assets/fonts/Bigilla-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "PP Playground";
  src: url("assets/fonts/PPPlayground-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "PP Playground";
  src: url("assets/fonts/PPPlayground-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "PP Playground";
  src: url("assets/fonts/PPPlayground-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "QCF Page 590";
  src: url("assets/fonts/quran/p590.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--pink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "PP Neue Montreal", Avenir, "Helvetica Neue", Arial, sans-serif;
  animation: page-fade-in 260ms ease-out both;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: var(--pink);
  opacity: 0;
  animation: page-wash-out 260ms ease-out both;
}

body.page-is-leaving {
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease-in;
}

body.page-is-leaving::before {
  opacity: 0;
  animation: none;
}

@keyframes page-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes page-wash-out {
  from {
    opacity: 0.42;
  }

  to {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }

  body::before {
    opacity: 0;
    animation: none;
  }

  body.page-is-leaving {
    opacity: 1;
    transition: none;
  }

  body.page-is-leaving::before {
    opacity: 0;
    transition: none;
  }
}

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

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

picture {
  display: block;
}

.page {
  width: 100%;
}

.section-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.design-inner {
  width: min(100%, 1280px);
  height: 100%;
  position: relative;
}

.hero,
.quote,
.intro,
.brown,
.vision,
.footer {
  height: 100svh;
  min-height: 100svh;
}

.hero {
  --hero-box-height: min(91.35svh, calc(var(--design) * 0.59453125));
  background: var(--coral);
  color: var(--pink);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin: 0 auto;
}

.hero-copy,
.hero-media {
  position: relative;
  height: var(--hero-box-height);
  min-height: 0;
}

.hero-media {
  display: grid;
  place-items: center;
}

.hero-art {
  width: auto;
  height: var(--hero-box-height);
  max-height: 100%;
  max-width: none;
  object-fit: contain;
}

.hero-nav a {
  position: absolute;
  z-index: 2;
  color: var(--pink);
  font-size: clamp(16px, 2.27vw, 29px);
  line-height: 1;
}

.nav-blog {
  left: 10.9%;
  top: 0;
}

.nav-about {
  right: 4.2%;
  top: 0;
}

.nav-gallery {
  left: 10.9%;
  bottom: 0;
}

.nav-contact {
  right: 4.3%;
  bottom: 0;
}

h1 {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  color: var(--pink);
  font-family: "Bigilla", Didot, Georgia, serif;
  font-size: clamp(80px, 13.3vw, 170px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.72;
  text-align: center;
}

h1 span {
  display: block;
  color: var(--pink);
  font-family: "Bigilla", Didot, Georgia, serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
}

.quote {
  display: grid;
  place-items: center;
  background: var(--pink);
  color: var(--brown);
  text-align: center;
}

.quote-inner {
  height: auto;
}

.script-quote {
  margin: 0;
  color: var(--brown);
  font-family: "PP Playground", "Snell Roundhand", cursive;
  font-size: clamp(54px, 10vw, 128px);
  font-weight: 500;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures discretionary-ligatures contextual;
  font-feature-settings:
    "kern" 1, "liga" 1, "dlig" 1, "calt" 1, "swsh" 1,
    "ss01" 1, "ss02" 1, "ss03" 1, "ss04" 1, "ss05" 1, "ss06" 1,
    "ss07" 1, "ss08" 1, "ss09" 1, "ss10" 1, "ss11" 1, "ss12" 1;
  line-height: 0.95;
  text-rendering: optimizeLegibility;
}

.script-quote-mobile {
  display: none;
}

.script-quote .script-terminal {
  display: inline;
  font-feature-settings:
    "kern" 1, "liga" 1, "dlig" 1, "calt" 1, "fina" 1, "swsh" 1,
    "ss01" 1, "ss02" 1, "ss03" 1, "ss04" 1, "ss05" 1, "ss06" 1,
    "ss07" 1, "ss08" 1, "ss09" 1, "ss10" 1, "ss11" 1, "ss12" 1;
}

.quote-credit {
  margin: clamp(34px, 3.9vw, 50px) 0 0;
  color: var(--brown);
  font-size: clamp(15px, 1.56vw, 20px);
  line-height: 1.08;
}

.intro {
  display: grid;
  place-items: center;
  background: var(--cream);
  text-align: center;
}

.intro-inner {
  height: auto;
  display: grid;
  justify-items: center;
  gap: clamp(56px, 8.3vh, 90px);
}

.intro-copy {
  font-size: clamp(18px, 2.8vw, 36px);
  line-height: 1.18;
}

.intro-copy p {
  margin: 0;
}

.welcome {
  margin-bottom: clamp(24px, 3.3vw, 42px) !important;
  color: var(--coral);
  font-weight: 500;
}

.slate-art {
  width: min(74.5vw, 954px);
}

.slate-art img,
.board-art img,
.brown-art img,
.gallery-art img {
  display: block;
  width: 100%;
  height: auto;
}

.board {
  background: var(--board-bg);
}

.board-art {
  width: 100vw;
  max-width: none;
  height: auto;
}

.brown {
  display: grid;
  place-items: center;
  background: var(--brown);
}

.brown-inner {
  display: grid;
  place-items: center;
}

.brown-art {
  width: min(58.6vw, 750px);
}

.vision {
  display: grid;
  place-items: center;
  background: var(--coral);
  color: var(--pink);
  text-align: center;
}

.vision-inner {
  height: 100%;
  display: grid;
  place-items: center;
}

.vision p {
  margin: 0;
  width: max-content;
  max-width: min(100%, 900px);
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.2;
}

.gallery {
  background: var(--cream);
}

.gallery-art {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  height: auto;
}

.gallery-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.gallery h2 {
  position: absolute;
  left: 10%;
  top: 10%;
  margin: 0;
  color: var(--coral);
  font-family: "Bigilla", Didot, Georgia, serif;
  font-size: clamp(62px, 9.8vw, 126px);
  font-weight: 400;
  line-height: 0.86;
}

.gallery h2 a {
  pointer-events: auto;
}

.footer {
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--footer-ink);
  text-align: center;
}

.footer-inner {
  display: grid;
  grid-template-rows: 1fr auto 1fr auto;
  align-items: center;
  justify-items: center;
  padding: clamp(64px, 10vh, 124px) clamp(26px, 7vw, 90px) clamp(44px, 10vh, 84px);
}

.contact-line {
  grid-row: 1;
  align-self: start;
  max-width: min(66.5vw, 850px);
  margin: 0;
  color: var(--coral);
  font-size: clamp(20px, 2.8vw, 36px);
  font-weight: 400;
  line-height: 1.18;
}

.signature {
  grid-row: 2;
  width: min(45.3vw, 580px);
}

.footer-nav {
  grid-row: 4;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr repeat(5, auto);
  align-items: center;
  gap: clamp(22px, 4.3vw, 55px);
  color: var(--footer-ink);
  font-size: clamp(15px, 1.72vw, 22px);
  text-align: left;
}

.footer-nav a {
  text-align: center;
}

.site-header {
  height: var(--site-header-height);
  background: var(--pink);
  color: var(--footer-ink);
}

.site-header-inner {
  width: min(100%, 1280px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: 0 clamp(22px, 3.9vw, 50px);
}

.site-logo {
  flex: 0 0 auto;
  color: var(--coral);
  font-family: "Bigilla", Didot, Georgia, serif;
  font-size: clamp(27px, 2.73vw, 35px);
  line-height: 1;
  white-space: nowrap;
}

.site-nav {
  flex: 1 1 auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  max-width: min(55vw, 704px);
  color: var(--footer-ink);
  font-size: clamp(18px, 2.34vw, 30px);
  line-height: 1;
  white-space: nowrap;
}

.site-nav .is-active {
  color: var(--coral);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.about-page {
  background: var(--brown);
}

.about-quote {
  height: calc(100svh - var(--site-header-height));
  min-height: 469px;
  display: grid;
  place-items: center;
  background: var(--pink);
  color: var(--brown);
  text-align: center;
}

.about-quote-inner {
  height: auto;
}

.about-quote h1 {
  position: static;
  transform: none;
  margin: 0;
  color: var(--brown);
  font-family: "PP Playground", "Snell Roundhand", cursive;
  font-size: clamp(48px, 5.45vw, 70px);
  font-weight: 500;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures discretionary-ligatures contextual;
  font-feature-settings:
    "kern" 1, "liga" 1, "dlig" 1, "calt" 1, "swsh" 1,
    "ss01" 1, "ss02" 1, "ss03" 1, "ss04" 1, "ss05" 1, "ss06" 1,
    "ss07" 1, "ss08" 1, "ss09" 1, "ss10" 1, "ss11" 1, "ss12" 1;
  line-height: 1.02;
  text-rendering: optimizeLegibility;
}

.about-quote h1 span {
  color: inherit;
  display: inline;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.about-quote h1 .script-terminal {
  display: inline !important;
  font-feature-settings:
    "kern" 1, "liga" 1, "dlig" 1, "calt" 1, "fina" 1, "swsh" 1,
    "ss01" 1, "ss02" 1, "ss03" 1, "ss04" 1, "ss05" 1, "ss06" 1,
    "ss07" 1, "ss08" 1, "ss09" 1, "ss10" 1, "ss11" 1, "ss12" 1;
}

.about-quote h1 .script-plain-i {
  display: inline !important;
  font-feature-settings:
    "kern" 1, "liga" 1, "dlig" 1, "calt" 1, "swsh" 0,
    "ss01" 0, "ss02" 0, "ss03" 0, "ss04" 0, "ss05" 0, "ss06" 0,
    "ss07" 0, "ss08" 0, "ss09" 0, "ss10" 0, "ss11" 0, "ss12" 0;
}

.mobile-break {
  display: none;
}

.about-quote p {
  margin: 112px 0 0;
  color: var(--brown);
  font-size: clamp(15px, 1.56vw, 20px);
  line-height: 1;
}

.about-story {
  background: var(--brown);
  color: var(--pink);
}

.about-story-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 150px 0 150px;
}

.about-copy {
  margin: 0;
  color: var(--pink);
  font-size: clamp(24px, 2.58vw, 33px);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

.about-copy-top {
  width: 650px;
  margin-left: 147px;
}

.about-portrait {
  width: 878px;
  margin: 145px 0 0 279px;
}

.about-copy-mid {
  width: 710px;
  margin: 154px 0 0 421px;
}

.about-tiles {
  width: 1054px;
  margin: 171px 0 0 98px;
}

.about-copy-bottom {
  width: 745px;
  margin: 148px 0 0 98px;
}

.about-gallery-callout {
  width: 1054px;
  margin: 150px 0 0 98px;
  display: grid;
  grid-template-columns: 330px 624px;
  gap: 100px;
  align-items: end;
}

.about-gallery-link {
  color: var(--pink);
  font-family: "Bigilla", Didot, Georgia, serif;
  font-size: clamp(52px, 5.7vw, 73px);
  line-height: 0.82;
}

.about-plate {
  width: 624px;
}

.gallery-page {
  background: var(--brown);
}

.inner-page .site-nav {
  font-size: clamp(18px, 1.56vw, 20px);
}

.gallery-quote {
  height: calc(100svh - var(--site-header-height));
  min-height: 469px;
  display: grid;
  place-items: center;
  background: var(--pink);
  color: var(--brown);
  text-align: center;
}

.gallery-quote-inner {
  height: auto;
}

.gallery-quote p {
  margin: 0;
  color: var(--brown);
  font-family: "QCF Page 590", serif;
  font-size: clamp(86px, 9.37vw, 120px);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.gallery-quote-translation {
  display: block;
  margin-top: clamp(52px, 6.25vw, 80px);
  color: var(--brown);
  font-family: "PP Neue Montreal", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(15px, 1.56vw, 20px);
  font-weight: 400;
  line-height: 1.28;
}

.gallery-quote-translation span {
  display: block;
}

.contact-page {
  background: var(--pink);
}

.contact-quote {
  height: calc(100svh - var(--site-header-height));
  min-height: 700px;
  display: grid;
  place-items: center;
  background: var(--pink);
  color: var(--brown);
  text-align: center;
}

.contact-quote-inner {
  height: auto;
  display: grid;
  justify-items: center;
  transform: translateY(-4vh);
}

.contact-quote h1 {
  position: static;
  transform: none;
  margin: 0;
  color: var(--brown);
  font-family: "PP Playground", "Snell Roundhand", cursive;
  font-size: clamp(50px, 5.86vw, 75px);
  font-weight: 500;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures discretionary-ligatures contextual;
  font-feature-settings:
    "kern" 1, "liga" 1, "dlig" 1, "calt" 1, "swsh" 1,
    "ss01" 1, "ss02" 1, "ss03" 1, "ss04" 1, "ss05" 1, "ss06" 1,
    "ss07" 1, "ss08" 1, "ss09" 1, "ss10" 1, "ss11" 1, "ss12" 1;
  line-height: 0.98;
  text-align: center;
  text-rendering: optimizeLegibility;
}

.contact-quote h1 span {
  color: inherit;
  display: inline;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.contact-quote-line {
  display: block !important;
}

.contact-quote-mobile {
  display: none !important;
}

.contact-quote-desktop {
  display: block !important;
}

.contact-quote-line-second {
  transform: translateX(0.3em);
}

.contact-quote h1 .contact-quote-emphasis {
  display: inline !important;
  font-weight: inherit;
}

.contact-quote h1 .contact-ellipsis {
  display: inline !important;
  font-weight: inherit;
  letter-spacing: -0.02em;
  margin-right: 0.08em;
}

.contact-quote h1 .contact-ellipsis-tight {
  margin-right: -0.2em;
}

.contact-quote h1 .contact-tight-space {
  display: inline !important;
  font-weight: inherit;
}

.contact-quote p {
  margin: clamp(44px, 5vw, 64px) 0 0;
  color: var(--brown);
  font-size: clamp(16px, 1.56vw, 20px);
  font-weight: 400;
  line-height: 1;
}

.contact-email {
  height: 100svh;
  min-height: 720px;
  display: grid;
  place-items: center;
  background: var(--coral);
  color: var(--pink);
  text-align: center;
}

.contact-email a {
  color: var(--pink);
  font-size: clamp(48px, 6.17vw, 79px);
  font-weight: 100;
  letter-spacing: -0.02em;
  line-height: 1;
}

.policies-page {
  background: var(--pink);
}

.policies-content {
  background: var(--pink);
  color: var(--brown);
}

.policies-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: clamp(48px, 6.25vw, 80px) clamp(22px, 3.9vw, 50px) clamp(70px, 8.59vw, 110px);
  display: grid;
  justify-items: center;
}

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

.policy-section {
  width: min(100%, 750px);
  margin: 0 0 clamp(38px, 4.69vw, 60px);
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h2 {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 400;
  line-height: 1;
}

.policy-section p {
  margin: 0 0 18px;
  font-size: clamp(18px, 1.72vw, 22px);
  font-weight: 400;
  line-height: 1.16;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section strong {
  font-weight: 500;
  color: var(--brown);
}

.policy-section a {
  color: var(--coral);
  text-decoration: none;
}

.gallery-catalog {
  background: var(--brown);
  color: var(--pink);
}

.gallery-catalog-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: clamp(86px, 10.9vw, 140px) clamp(50px, 5.47vw, 70px) clamp(90px, 11.7vw, 150px);
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1fr);
  align-items: end;
  gap: clamp(56px, 7.8vw, 100px);
  margin-bottom: clamp(72px, 10.1vw, 130px);
}

.gallery-heading h1 {
  position: static;
  transform: none;
  margin: 0;
  color: var(--pink);
  font-family: "Bigilla", Didot, Georgia, serif;
  font-size: clamp(92px, 13.3vw, 170px);
  font-weight: 400;
  line-height: 0.76;
  text-align: left;
}

.gallery-heading p {
  max-width: 680px;
  margin: 0 0 12px;
  color: var(--pink);
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.14;
}

.artwork-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(66px, 7.8vw, 100px) clamp(26px, 3.9vw, 50px);
}

.artwork-card {
  margin: 0;
  color: var(--pink);
}

.artwork-card-wide {
  grid-column: span 2;
}

.artwork-card img {
  width: 100%;
  height: auto;
  background: rgba(250, 212, 214, 0.08);
}

.protected-print-image {
  -webkit-touch-callout: none;
  user-select: none;
}

.artwork-card figcaption {
  margin-top: clamp(15px, 1.72vw, 22px);
  display: grid;
  gap: 9px;
}

.artwork-card strong {
  color: var(--pink);
  font-size: clamp(20px, 2.18vw, 28px);
  font-weight: 400;
  line-height: 1;
}

.artwork-card span {
  color: rgba(250, 212, 214, 0.78);
  font-size: clamp(15px, 1.41vw, 18px);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.16;
}

.artwork-buy-link {
  justify-self: start;
  color: var(--pink);
  font-size: clamp(15px, 1.41vw, 18px);
  font-weight: 400;
  line-height: 1.16;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.artwork-buy-note {
  display: block;
  color: rgba(250, 212, 214, 0.62);
  font-size: clamp(12px, 1.09vw, 14px);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.16;
}

@media (min-width: 1281px) {
  .board-art,
  .gallery-art {
    width: 100%;
  }
}

@media (max-width: 1100px) and (min-width: 701px) {
  .about-story-inner {
    padding: 11.7vw 0;
  }

  .about-copy {
    font-size: clamp(20px, 2.58vw, 33px);
  }

  .about-copy-top {
    width: 50.8vw;
    margin-left: 11.5vw;
  }

  .about-portrait {
    width: 68.6vw;
    margin-top: 11.3vw;
    margin-left: 21.8vw;
  }

  .about-copy-mid {
    width: 55.5vw;
    margin-top: 12vw;
    margin-left: 32.9vw;
  }

  .about-tiles {
    width: 82.3vw;
    margin-top: 13.35vw;
    margin-left: 7.65vw;
  }

  .about-copy-bottom {
    width: 58.2vw;
    margin-top: 11.55vw;
    margin-left: 7.65vw;
  }

  .about-gallery-callout {
    width: 82.3vw;
    margin-top: 11.7vw;
    margin-left: 7.65vw;
    grid-template-columns: 25.8vw 48.75vw;
    gap: 7.8vw;
  }

  .about-plate {
    width: 48.75vw;
  }

  .gallery-catalog-inner {
    padding-top: 10.9vw;
    padding-bottom: 11.7vw;
  }
}

@media (max-width: 700px) {
  .site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 10;
    height: auto;
    background: transparent;
  }

  .site-header-inner {
    min-height: calc(100vw * 96 / 420);
    padding: calc(100vw * 31 / 420) calc(100vw * 32 / 420) 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .site-logo {
    font-size: min(6.43vw, 27px);
    font-weight: 700;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    width: 19px;
    height: 17px;
    margin-top: 3px;
    padding: 0;
    border: 0;
    display: grid;
    gap: 5px;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--coral);
    transform-origin: center;
    transition: transform 180ms ease, opacity 140ms ease;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: none;
    min-height: 100svh;
    overflow: hidden;
    background: var(--pink);
    color: var(--footer-ink);
  }

  .menu-open {
    overflow: hidden;
  }

  .menu-open .mobile-menu {
    display: block;
  }

  .mobile-menu-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: calc(100vw * 31 / 420) calc(100vw * 32 / 420) 0;
  }

  .mobile-menu-close {
    position: relative;
    margin-top: 3px;
  }

  .mobile-menu-close span {
    position: absolute;
    top: 8px;
    left: 0;
  }

  .mobile-menu-close span:nth-child(1) {
    transform: rotate(45deg);
  }

  .mobile-menu-close span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-close span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .mobile-menu-nav {
    margin-top: calc(100vw * 178 / 420);
    display: grid;
    justify-items: center;
    gap: calc(100vw * 45 / 420);
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
  }

  .mobile-menu-nav .is-active {
    color: var(--coral);
    font-weight: 400;
  }

  .mobile-menu-contact {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(100vw * 15 / 420);
    min-height: calc(100vw * 175 / 420);
    display: grid;
    place-items: center;
    color: var(--coral);
    text-align: center;
  }

  .mobile-menu-contact span {
    grid-area: 1 / 1;
    position: relative;
    z-index: 2;
    width: 100%;
    color: rgba(236, 232, 220, 0.72);
    font-family: "PP Playground", "Snell Roundhand", cursive;
    font-size: clamp(94px, 30vw, 105px);
    font-weight: 300;
    line-height: 0.72;
  }

  .mobile-menu-contact strong {
    grid-area: 1 / 1;
    position: relative;
    z-index: 1;
    font-size: clamp(26px, 7.14vw, 30px);
    font-weight: 400;
  }

  .about-quote {
    height: auto;
    min-height: 0;
    padding: calc(100vw * 160 / 420) calc(100vw * 31 / 420) calc(100vw * 77 / 420);
  }

  .about-quote h1 {
    font-size: clamp(41px, 11vw, 47px);
    line-height: 0.98;
  }

  .about-quote h1 span {
    display: block;
  }

  .desktop-break {
    display: none;
  }

  .mobile-break {
    display: none;
  }

  .quote-line-third {
    margin-top: calc(100vw * 29 / 420);
  }

  .about-quote p {
    margin-top: calc(100vw * 59 / 420);
    font-size: 15px;
  }

  .about-story-inner {
    padding: 40px 20px;
  }

  .about-copy {
    width: 100%;
    margin-left: 0;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.09;
  }

  .about-copy br {
    display: none;
  }

  .about-portrait {
    width: 100%;
    margin: 40px 0 0;
  }

  .about-copy-mid {
    margin-top: 40px;
  }

  .about-tiles {
    width: 100%;
    margin: 40px 0 0;
  }

  .about-copy-bottom {
    margin-top: 40px;
  }

  .about-gallery-callout {
    width: 100%;
    margin: 40px 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-gallery-link {
    order: 2;
    justify-self: center;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
  }

  .about-plate {
    order: 1;
    width: 100%;
  }

  .gallery-page .site-header {
    color: var(--pink);
  }

  .gallery-quote {
    height: auto;
    min-height: 0;
    padding: calc(100vw * 169 / 420) calc(100vw * 32 / 420) calc(100vw * 90 / 420);
  }

  .gallery-quote p {
    font-size: clamp(50px, 13.8vw, 58px);
    line-height: 1;
  }

  .gallery-quote-translation {
    margin-top: calc(100vw * 42 / 420);
    font-size: 15px;
  }

  .contact-quote {
    height: auto;
    min-height: 0;
    padding: calc(100vw * 170 / 420) calc(100vw * 24 / 420) calc(100vw * 90 / 420);
  }

  .contact-quote-inner {
    transform: none;
  }

  .contact-quote h1 {
    width: 100%;
    font-size: xx-large;
    line-height: 1;
  }

  .contact-quote-desktop {
    display: none !important;
  }

  .contact-quote-mobile {
    display: grid !important;
    gap: calc(100vw * 11 / 420);
  }

  .contact-quote-line {
    transform: none;
    white-space: nowrap;
  }

  .contact-quote p {
    margin-top: calc(100vw * 60 / 420);
    font-size: 15px;
  }

  .contact-page .site-header-inner,
  .contact-page .mobile-menu-header {
    padding: calc(100vw * 50 / 420) calc(100vw * 47 / 420) 0 calc(100vw * 52 / 420);
  }

  .contact-email {
    height: calc(100vw * 330 / 420);
    min-height: 0;
  }

  .contact-email a {
    font-size: clamp(28px, 7.14vw, 30px);
    letter-spacing: -0.03em;
  }

  .policies-inner {
    padding: calc(100vw * 126 / 420) calc(100vw * 32 / 420) 64px;
  }

  .policy-section {
    margin-bottom: 36px;
  }

  .policy-section h2 {
    margin-bottom: 14px;
    font-size: 24px;
  }

  .policy-section p {
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.22;
  }

  .gallery-catalog-inner {
    padding: calc(100vw * 64 / 420) 20px 56px;
  }

  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  .gallery-heading h1 {
    font-size: 76px;
    font-weight: 700;
    line-height: 0.8;
  }

  .gallery-heading p {
    max-width: none;
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.16;
  }

  .artwork-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .artwork-card-wide {
    grid-column: auto;
  }

  .artwork-card figcaption {
    margin-top: 14px;
    gap: 7px;
  }

  .artwork-card strong {
    font-size: 20px;
    font-weight: 400;
    text-wrap: balance;
  }

  .artwork-card span {
    font-size: 15px;
    letter-spacing: 0;
    line-height: 1.14;
    text-wrap: pretty;
  }

  .quote,
  .intro,
  .brown,
  .vision,
  .footer {
    height: auto;
    min-height: 0;
  }

  .hero {
    height: max(100svh, calc(100vw * 1000 / 420));
    min-height: 100svh;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .hero-copy {
    height: 100%;
    min-height: 0;
  }

  .hero-media {
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0 0 28px;
  }

  .hero-art {
    width: min(84vw, 420px);
    height: auto;
    max-width: 100%;
  }

  .hero-nav a {
    font-size: clamp(15px, 4.29vw, 18px);
  }

  .nav-blog {
    left: 8%;
    top: 7%;
  }

  .nav-about {
    right: 8%;
    top: 7%;
  }

  .nav-gallery {
    left: 8%;
    bottom: 7%;
  }

  .nav-contact {
    right: 8%;
    bottom: 7%;
  }

  h1 {
    font-size: clamp(74px, 24vw, 104px);
    font-weight: 700;
  }

  h1 span {
    font-size: clamp(31px, 8vw, 38px);
    font-weight: 700;
  }

  .intro-copy {
    font-size: clamp(15px, 3.57vw, 18px);
    line-height: 1.08;
  }

  .quote-credit {
    font-size: 15px;
  }

  .script-quote-desktop {
    display: none;
  }

  .script-quote-mobile {
    display: block;
  }

  .quote {
    padding: calc(100vw * 112 / 420) 20px calc(100vw * 96 / 420);
  }

  .intro {
    padding: calc(100vw * 50 / 420) 0 calc(100vw * 58 / 420);
  }

  .intro-inner {
    gap: calc(100vw * 50 / 420);
  }

  .intro-copy,
  .vision p,
  .contact-line {
    width: min(84vw, 420px);
  }

  .intro-copy br,
  .vision p br,
  .contact-line br {
    display: none;
  }

  .slate-art {
    width: min(74.5vw, 313px);
  }

  .brown-art {
    width: min(58.4vw, 245px);
  }

  .brown {
    padding: calc(100vw * 43 / 420) 0;
  }

  .gallery {
    min-height: auto;
  }

  .gallery h2 {
    left: 10%;
    top: 10%;
    font-size: 42px;
    font-weight: 700;
  }

  .vision p,
  .contact-line {
    font-size: clamp(15px, 3.57vw, 18px);
    line-height: 1.12;
  }

  .vision {
    padding: calc(100vw * 86 / 420) 0 calc(100vw * 88 / 420);
  }

  .footer-inner {
    min-height: 0;
    grid-template-rows: auto auto auto;
    gap: calc(100vw * 48 / 420);
    padding: calc(100vw * 49 / 420) calc(100vw * 29 / 420) calc(100vw * 23 / 420);
  }

  .contact-line {
    grid-row: auto;
    max-width: 84vw;
  }

  .signature {
    grid-row: auto;
    width: min(72vw, 302px);
  }

  .footer-nav {
    grid-row: auto;
    width: min(84vw, 420px);
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: space-between;
    gap: 14px 18px;
    font-size: 13px;
    text-align: center;
  }

  .footer-nav a:not(.footer-policies) {
    grid-row: 1;
  }

  .footer-nav a:nth-of-type(2) {
    grid-column: 1;
    justify-self: start;
  }

  .footer-nav a:nth-of-type(3) {
    grid-column: 2;
  }

  .footer-nav a:nth-of-type(4) {
    grid-column: 3;
  }

  .footer-nav a:nth-of-type(5) {
    grid-column: 4;
    justify-self: end;
  }

  .footer-copy {
    grid-column: 1 / 4;
    grid-row: 2;
    justify-self: start;
    padding: 2px 0 0;
    font-size: inherit;
    line-height: 1;
    text-align: left;
    white-space: nowrap;
  }

  .footer-policies {
    grid-column: 4 / -1;
    grid-row: 2;
    justify-self: end;
    padding: 2px 0 0;
    font-size: inherit;
    line-height: 1;
    text-align: right;
    white-space: nowrap;
  }
}

.simple-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--coral);
}

.simple-page.inner-page {
  display: block;
  background: var(--pink);
}

.simple-page-inner {
  display: grid;
  justify-items: center;
  gap: 32px;
}

.inner-page.simple-page .simple-page-inner {
  min-height: calc(100svh - var(--site-header-height));
  place-items: center;
  background: var(--pink);
}

.simple-page h1 {
  position: static;
  transform: none;
  color: var(--coral);
  font-size: clamp(84px, 12vw, 160px);
  text-align: center;
}
