:root {
  --black: #0b0b0b;
  --charcoal: #141414;
  --white: #f5f4f0;
  --gallery: #e9e8e4;
  --soft: #d7d6d1;
  --grey: #878787;
  --ink: #151515;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;

  --gutter: clamp(22px, 4vw, 72px);
}


/* =========================================================
   RESET / GLOBAL
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  font-family: var(--sans);
  font-weight: 300;

  background: var(--black);
  color: var(--white);

  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.skip-link {
  position: fixed;

  top: -80px;
  left: 20px;

  z-index: 1000;

  background: #fff;
  color: #000;

  padding: 12px 18px;

  transition: top .2s ease;
}

.skip-link:focus {
  top: 20px;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: fixed;

  inset: 0 0 auto 0;

  z-index: 100;

  height: 92px;

  padding: 0 var(--gutter);

  display: flex;

  align-items: center;
  justify-content: space-between;

  color: #fff;

  transition:
    color .35s ease,
    background .35s ease,
    height .35s ease,
    backdrop-filter .35s ease;
}


.site-header.scrolled {
  height: 70px;

  background:
    color-mix(
      in srgb,
      var(--black) 72%,
      transparent
    );

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}


.site-header.header-dark {
  color: var(--ink);
}


.site-header.header-dark.scrolled {
  background:
    color-mix(
      in srgb,
      var(--gallery) 85%,
      transparent
    );
}


/* =========================================================
   BRAND
   ========================================================= */

.brand {
  display: inline-flex;

  flex-direction: column;

  gap: 2px;

  line-height: 1;
}


.brand-name {
  text-transform: uppercase;

  letter-spacing: .14em;

  font-size: 12px;
  font-weight: 500;
}


.brand-sub {
  font-family: var(--serif);

  font-size: 13px;

  opacity: .72;

  letter-spacing: .04em;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.desktop-nav {
  display: flex;

  gap: clamp(20px, 2.1vw, 38px);

  align-items: center;
}


.desktop-nav a {
  position: relative;

  font-size: 10px;

  text-transform: uppercase;

  letter-spacing: .2em;

  font-weight: 500;
}


.desktop-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -7px;

  width: 100%;
  height: 1px;

  background: currentColor;

  transform: scaleX(0);

  transform-origin: right;

  transition: transform .28s ease;
}


.desktop-nav a:hover::after {
  transform: scaleX(1);

  transform-origin: left;
}


/* =========================================================
   ACTIVE NAVIGATION
   ========================================================= */

.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-button {
  display: none;

  width: 42px;
  height: 42px;

  padding: 0;

  border: 0;

  background: transparent;

  color: inherit;

  cursor: pointer;

  position: relative;
}


.menu-button span {
  position: absolute;

  left: 8px;

  width: 26px;
  height: 1px;

  background: currentColor;

  transition:
    transform .25s ease,
    top .25s ease;
}


.menu-button span:first-child {
  top: 17px;
}


.menu-button span:last-child {
  top: 25px;
}


.menu-button.active span:first-child {
  top: 21px;

  transform: rotate(45deg);
}


.menu-button.active span:last-child {
  top: 21px;

  transform: rotate(-45deg);
}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

.mobile-menu {
  position: fixed;

  inset: 0;

  z-index: 90;

  background: var(--black);

  display: grid;

  align-content: center;

  padding:
    110px
    var(--gutter)
    40px;

  transform: translateY(-100%);

  opacity: 0;

  pointer-events: none;

  transition:
    transform .45s cubic-bezier(.76, 0, .24, 1),
    opacity .3s ease;
}


.mobile-menu.open {
  transform: translateY(0);

  opacity: 1;

  pointer-events: auto;
}


.mobile-menu nav {
  display: flex;

  flex-direction: column;
}


.mobile-menu nav a {
  font-family: var(--serif);

  font-size: clamp(44px, 11vw, 72px);

  line-height: 1.03;

  border-bottom:
    1px solid rgba(255, 255, 255, .12);

  padding:
    7px 0
    10px;
}


.mobile-menu p {
  margin-top: 42px;

  color: #999;

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: .2em;
}


/* =========================================================
   PAGE THEMES
   ========================================================= */

.theme-dark {
  background: var(--black);
  color: var(--white);
}


.theme-charcoal {
  background: var(--charcoal);
  color: var(--white);
}


.theme-light {
  background: var(--gallery);
  color: var(--ink);
}


.theme-soft {
  background: var(--soft);
  color: var(--ink);
}


.theme-white {
  background: #f6f6f3;
  color: var(--ink);
}


/* =========================================================
   SMALL TYPOGRAPHY
   ========================================================= */

.eyebrow {
  margin: 0;

  font-size: 10px;
  font-weight: 500;

  text-transform: uppercase;

  letter-spacing: .28em;

  color:
    rgba(255, 255, 255, .78);
}


.eyebrow.dark {
  color:
    rgba(0, 0, 0, .62);
}


.section-number {
  margin:
    0 0
    32px;

  font-size: 10px;

  letter-spacing: .22em;

  font-weight: 500;

  color:
    rgba(0, 0, 0, .48);
}


.section-number.pale {
  color:
    rgba(255, 255, 255, .48);
}


/* =========================================================
   HERO
   ========================================================= */

/*
   The hero is the ONE intentional exception to the
   uncropped-artwork rule.

   Carlingfords Guiding Light is being used here as an
   environmental background rather than as a displayed print.

   All portfolio images below this section remain uncropped.
*/

.hero {
  position: relative;

  min-height: 100svh;

  overflow: hidden;
}


.hero-image {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position:
    center center;
}


.hero-shade {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, .42) 0%,
      rgba(0, 0, 0, .16) 34%,
      rgba(0, 0, 0, .03) 63%,
      rgba(0, 0, 0, .12) 100%
    ),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, .26) 0%,
      transparent 44%
    );
}


.hero-copy {
  position: absolute;

  z-index: 2;

  left: var(--gutter);

  top: 52%;

  transform:
    translateY(-50%);

  width:
    min(760px, 76vw);
}


.hero h1 {
  margin:
    16px 0
    15px;

  max-width: 10ch;

  font-family: var(--serif);

  font-weight: 400;

  font-size:
    clamp(
      52px,
      5.4vw,
      96px
    );

  line-height: .88;

  letter-spacing: -.035em;
}


.hero-line {
  margin: 0;

  font-family: var(--serif);

  font-size:
    clamp(
      17px,
      1.35vw,
      23px
    );

  letter-spacing: .08em;

  color:
    rgba(255, 255, 255, .88);
}


/* =========================================================
   HERO SCROLL CUE
   ========================================================= */

.scroll-cue {
  position: absolute;

  z-index: 3;

  left: 50%;
  bottom: 26px;

  transform:
    translateX(-50%);

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 10px;

  font-size: 8px;

  font-weight: 500;

  text-transform: uppercase;

  letter-spacing: .28em;
}


.scroll-cue i {
  width: 1px;
  height: 32px;

  background:
    rgba(255, 255, 255, .42);

  position: relative;

  overflow: hidden;
}


.scroll-cue i::after {
  content: "";

  position: absolute;

  inset:
    -100% 0
    0;

  background: #fff;

  animation:
    scrollLine
    1.9s
    ease-in-out
    infinite;
}


@keyframes scrollLine {

  0% {
    transform:
      translateY(-60%);
  }

  100% {
    transform:
      translateY(170%);
  }

}


/* =========================================================
   THE ART OF LESS
   ========================================================= */

.statement {
  padding:
    clamp(100px, 13vw, 210px)
    var(--gutter);
}


.statement-grid {
  max-width: 1540px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(300px, .58fr);

  gap:
    clamp(54px, 8vw, 135px);

  align-items: center;
}


.statement-image img {
  mix-blend-mode: multiply;
}


.statement-copy {
  max-width: 520px;
}


.statement-copy h2,
.section-heading h2,
.form-copy h2,
.feature-copy h2,
.collect-inner h2,
.about-copy h2,
.journal-heading h2 {
  font-family: var(--serif);

  font-weight: 400;

  letter-spacing: -.04em;
}


.statement-copy h2 {
  margin:
    16px 0
    30px;

  font-size:
    clamp(
      64px,
      7vw,
      112px
    );

  line-height: .82;
}


.statement-copy > p:not(.eyebrow):not(.section-number) {
  margin:
    0 0
    32px;

  font-size:
    clamp(
      16px,
      1.3vw,
      20px
    );

  line-height: 1.75;

  max-width: 46ch;
}


/* =========================================================
   TEXT LINKS
   ========================================================= */

.text-link {
  display: inline-flex;

  align-items: center;

  gap: 22px;

  padding-bottom: 6px;

  border-bottom:
    1px solid currentColor;

  font-size: 10px;

  text-transform: uppercase;

  letter-spacing: .2em;

  font-weight: 500;
}


.text-link span {
  font-size: 16px;

  transition:
    transform .25s ease;
}


.text-link:hover span {
  transform:
    translate(4px, 4px);
}


.text-link.light {
  color: #fff;
}


/* =========================================================
   WORK INTRO
   ========================================================= */

.work-intro {
  padding:
    clamp(90px, 11vw, 170px)
    var(--gutter)
    clamp(60px, 7vw, 110px);
}


.section-heading {
  max-width: 1280px;

  margin: 0 auto;
}


.section-heading h2 {
  margin:
    17px 0
    0;

  font-size:
    clamp(
      72px,
      9.7vw,
      154px
    );

  line-height: .78;
}


/* =========================================================
   COLLECTIONS
   ========================================================= */

/*
   Portfolio artwork rule:

   width: auto
   height: auto
   object-fit: contain

   The image may become large, but the entire photograph
   always remains visible.
*/

.collection {
  min-height: 100svh;

  padding:
    clamp(68px, 6vw, 96px)
    var(--gutter);

  display: grid;

  grid-template-columns:
    minmax(0, 1.55fr)
    minmax(250px, .45fr);

  gap:
    clamp(36px, 5vw, 88px);

  align-items: center;
}


.collection > * {
  min-width: 0;
}


.collection-media {
  overflow: visible;

  display: flex;

  align-items: center;
  justify-content: center;
}


.collection-media img {
  width: auto;

  max-width: 100%;

  max-height:
    min(82svh, 1050px);

  height: auto;

  object-fit: contain;
}


/* =========================================================
   COLLECTION INFORMATION
   ========================================================= */

.collection-meta {
  padding-bottom: 18px;
}


.collection-meta h3 {
  margin: 0;

  font-family: var(--serif);

  font-size:
    clamp(
      58px,
      6vw,
      98px
    );

  line-height: .85;

  font-weight: 400;

  letter-spacing: -.035em;
}


.collection-meta > p {
  max-width: 32ch;

  margin:
    32px 0
    28px;

  font-size: 15px;

  line-height: 1.7;
}


/* =========================================================
   SOLITUDE
   ========================================================= */

.collection-solitude {
  grid-template-columns:
    minmax(250px, .45fr)
    minmax(0, 1.55fr);

  align-items: center;
}


.collection-solitude .collection-meta {
  justify-self: center;
}


.collection-solitude .framed {
  padding: 0;
}


/* =========================================================
   IRELAND
   ========================================================= */

.collection-ireland {
  padding-bottom:
    clamp(68px, 6vw, 96px);
}


/* =========================================================
   FORM
   ========================================================= */

.form-section {
  min-height: 100svh;

  padding:
    clamp(72px, 7vw, 110px)
    var(--gutter);

  display: grid;

  grid-template-columns:
    minmax(300px, .7fr)
    minmax(0, 1fr);

  gap:
    clamp(70px, 10vw, 160px);

  align-items: center;
}


.form-image {
  width: 100%;

  justify-self: end;

  display: flex;

  justify-content: center;
  align-items: center;
}


.form-image img {
  width: auto;

  max-width: 100%;

  max-height:
    min(82svh, 1080px);

  height: auto;

  object-fit: contain;
}


.form-copy {
  max-width: 540px;
}


.form-copy h2 {
  margin:
    15px 0
    25px;

  font-size:
    clamp(
      84px,
      9vw,
      148px
    );

  line-height: .82;
}


.form-copy > p:not(.eyebrow):not(.section-number) {
  color:
    rgba(255, 255, 255, .72);

  line-height: 1.75;

  font-size: 16px;

  margin:
    0 0
    35px;
}


/* =========================================================
   FEATURED ARTWORK
   ========================================================= */

.feature-artwork {
  position: relative;

  min-height: 100svh;

  display: grid;

  grid-template-columns:
    1.55fr
    .45fr;

  align-items: center;

  gap:
    clamp(36px, 5vw, 88px);

  padding:
    clamp(76px, 7vw, 118px)
    var(--gutter);
}


.feature-image {
  display: flex;

  justify-content: center;
  align-items: center;
}


.feature-image img {
  width: auto;

  max-width: 100%;

  max-height:
    min(80svh, 1020px);

  height: auto;

  object-fit: contain;
}


.feature-copy {
  max-width: 520px;
}


.feature-copy h2 {
  margin:
    18px 0
    0;

  font-size:
    clamp(
      62px,
      6.6vw,
      112px
    );

  line-height: .84;
}


.feature-subtitle {
  margin:
    9px 0
    38px;

  font-family: var(--serif);

  font-size:
    clamp(
      24px,
      2.2vw,
      36px
    );

  font-style: italic;

  color:
    rgba(255, 255, 255, .72);
}


.feature-copy > p:not(.eyebrow):not(.section-number):not(.feature-subtitle) {
  color:
    rgba(255, 255, 255, .70);

  line-height: 1.75;

  margin-bottom: 34px;
}


/* =========================================================
   OUTLINE LINKS
   ========================================================= */

.outline-link {
  display: inline-flex;

  gap: 36px;

  align-items: center;

  border:
    1px solid rgba(255, 255, 255, .38);

  padding:
    16px 20px;

  font-size: 9px;

  text-transform: uppercase;

  letter-spacing: .22em;

  font-weight: 500;

  transition:
    background .25s ease,
    color .25s ease;
}


.outline-link:hover {
  background: #fff;

  color: #000;
}


/* =========================================================
   NEBULOUS / VISUAL PAUSE
   ========================================================= */

.pause {
  min-height: 100svh;

  position: relative;

  display: grid;

  place-items: center;

  padding:
    clamp(90px, 12vw, 180px)
    var(--gutter);
}


.pause-image {
  width:
    min(78vw, 1180px);

  display: flex;

  justify-content: center;
}


.pause-image img {
  width: auto;

  max-width: 100%;

  max-height:
    min(82svh, 1050px);

  height: auto;

  object-fit: contain;

  mix-blend-mode: multiply;
}


.pause-caption {
  position: absolute;

  right: clamp(35px, 4vw, 72px);

  top: 68%;

  bottom: auto;

  transform: translateY(-50%);

  text-align: right;
}


.pause-caption p {
  margin: 0;

  font-family: var(--serif);

  font-size:
    clamp(
      30px,
      3.2vw,
      54px
    );

  line-height: .95;

  color:
    rgba(0, 0, 0, .65);
}


/* =========================================================
   COLLECT
   ========================================================= */

.collect-section {
  padding:
    clamp(130px, 17vw, 260px)
    var(--gutter);
}


.collect-inner {
  max-width: 1100px;

  margin: 0 auto;
}


.collect-inner h2 {
  margin:
    20px 0
    34px;

  font-size:
    clamp(
      92px,
      12vw,
      190px
    );

  line-height: .72;
}


.collect-inner > p:not(.eyebrow) {
  max-width: 46ch;

  color:
    rgba(255, 255, 255, .68);

  line-height: 1.8;

  font-size:
    clamp(
      16px,
      1.4vw,
      20px
    );

  margin:
    0 0
    40px;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-section {
  padding:
    clamp(110px, 14vw, 210px)
    var(--gutter);

  display: grid;

  grid-template-columns:
    .55fr
    1.45fr;

  gap:
    clamp(50px, 8vw, 130px);
}


.about-copy {
  max-width: 940px;
}


.about-copy h2 {
  margin: 0;

  font-size:
    clamp(
      76px,
      10vw,
      162px
    );

  line-height: .74;
}


.about-copy .location {
  margin:
    24px 0
    45px;

  text-transform: uppercase;

  letter-spacing: .24em;

  font-size: 10px;

  font-weight: 500;
}


.about-copy > p:not(.location) {
  max-width: 50ch;

  line-height: 1.8;

  font-size:
    clamp(
      16px,
      1.4vw,
      20px
    );

  margin:
    0 0
    36px;
}


/* =========================================================
   JOURNAL
   ========================================================= */

.journal-section {
  padding:
    clamp(110px, 14vw, 200px)
    var(--gutter);

  display: grid;

  grid-template-columns:
    .72fr
    1.28fr;

  gap:
    clamp(50px, 8vw, 130px);
}


.journal-heading h2 {
  margin:
    18px 0
    0;

  font-size:
    clamp(
      70px,
      8.5vw,
      132px
    );

  line-height: .78;
}


.journal-list {
  border-top:
    1px solid rgba(0, 0, 0, .28);
}


.journal-list a {
  display: grid;

  grid-template-columns:
    45px
    1fr
    150px
    20px;

  gap: 20px;

  align-items: center;

  padding:
    28px 0;

  border-bottom:
    1px solid rgba(0, 0, 0, .22);

  transition:
    padding-left .25s ease;
}


.journal-list a:hover {
  padding-left: 8px;
}


.journal-index,
.journal-type {
  font-size: 9px;

  text-transform: uppercase;

  letter-spacing: .18em;

  font-weight: 500;

  color:
    rgba(0, 0, 0, .52);
}


.journal-title {
  font-family: var(--serif);

  font-size:
    clamp(
      21px,
      2vw,
      30px
    );
}


.journal-arrow {
  text-align: right;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: var(--black);

  color: #fff;

  padding:
    90px
    var(--gutter)
    35px;

  display: grid;

  grid-template-columns:
    1fr auto;

  gap: 80px;
}


.footer-name {
  margin:
    0 0
    18px;

  font-family: var(--serif);

  font-size:
    clamp(
      42px,
      5vw,
      80px
    );

  line-height: .9;
}


.site-footer > div:first-child > p:last-child {
  color: #888;

  line-height: 1.7;

  font-size: 12px;
}


.footer-links {
  display: flex;

  flex-direction: column;

  gap: 13px;

  padding-top: 5px;
}


.footer-links a {
  font-size: 10px;

  text-transform: uppercase;

  letter-spacing: .2em;
}


.footer-bottom {
  grid-column:
    1 / -1;

  border-top:
    1px solid rgba(255, 255, 255, .15);

  padding-top: 24px;

  display: flex;

  justify-content: space-between;

  color: #777;

  font-size: 9px;

  text-transform: uppercase;

  letter-spacing: .17em;
}


/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.reveal {
  opacity: 0;

  transform:
    translateY(34px);

  transition:
    opacity .9s ease,
    transform .9s cubic-bezier(.2, .7, .2, 1);
}


.reveal.visible {
  opacity: 1;

  transform:
    translateY(0);
}


.hero .reveal {
  transition-delay: .35s;
}


/* =========================================================
   WORK PAGE
   ========================================================= */


/* =========================================================
   WORK PAGE INTRO
   ========================================================= */

.work-page-intro {
  padding:
    clamp(170px, 18vw, 270px)
    var(--gutter)
    clamp(100px, 11vw, 170px);
}


.work-page-intro-inner {
  max-width: 1540px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    .34fr
    1.05fr
    .61fr;

  gap:
    clamp(40px, 6vw, 100px);

  align-items: end;
}


.work-page-label {
  align-self: start;

  padding-top: 14px;
}


.work-page-label .section-number {
  margin-top: 32px;
}


.work-page-heading h1 {
  margin: 0;

  font-family: var(--serif);

  font-weight: 400;

  font-size:
    clamp(
      92px,
      11vw,
      180px
    );

  line-height: .72;

  letter-spacing: -.045em;
}


.work-page-intro-copy {
  padding-bottom: 12px;
}


.work-page-intro-copy p {
  max-width: 37ch;

  margin: 0;

  font-size:
    clamp(
      15px,
      1.35vw,
      19px
    );

  line-height: 1.8;
}


/* =========================================================
   WORK GALLERY INDEX
   ========================================================= */

.work-gallery-index {
  padding:
    40px
    var(--gutter)
    clamp(130px, 16vw, 240px);
}


.work-gallery-grid {
  max-width: 1540px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(12, minmax(0, 1fr));

  column-gap:
    clamp(24px, 3.4vw, 56px);

  row-gap:
    clamp(60px, 7vw, 110px);
}


/* =========================================================
   INDIVIDUAL WORK COLLECTION
   ========================================================= */

.work-gallery-item {
  min-width: 0;
}


.work-gallery-image {
  display: flex;

  align-items: center;
  justify-content: center;
}


.work-gallery-image img {
  display: block;

  width: auto;

  max-width: 100%;

  max-height: 78svh;

  height: auto;

  object-fit: contain;
}


/* STILLNESS */

.work-gallery-item-stillness {
  grid-column:
    1 / span 7;
}


/* SOLITUDE */

.work-gallery-item-solitude {
  grid-column:
    8 / span 5;

  margin-top:
    clamp(100px, 13vw, 210px);
}


/* IRELAND */

.work-gallery-item-ireland {
  grid-column:
    2 / span 6;
}


/* FORM */

.work-gallery-item-form {
  grid-column:
    9 / span 4;

  margin-top:
    clamp(80px, 10vw, 170px);
}


.work-gallery-item-form .work-gallery-image img {
  max-height: 82svh;
}


/* =========================================================
   WORK CAPTIONS
   ========================================================= */

.work-gallery-caption {
  margin-top:
    clamp(22px, 2.4vw, 38px);

  display: grid;

  grid-template-columns:
    42px
    1fr;

  gap: 20px;

  align-items: start;
}


.work-gallery-number {
  padding-top: 11px;

  font-size: 9px;

  font-weight: 500;

  letter-spacing: .2em;

  color:
    rgba(0, 0, 0, .46);
}


.work-gallery-caption h2 {
  margin: 0;

  font-family: var(--serif);

  font-size:
    clamp(
      46px,
      5vw,
      82px
    );

  line-height: .88;

  font-weight: 400;

  letter-spacing: -.035em;
}


.work-gallery-caption p {
  margin:
    16px 0
    0;

  max-width: 30ch;

  line-height: 1.65;

  font-size: 13px;

  color:
    rgba(0, 0, 0, .68);
}


/* =========================================================
   WORK CLOSING
   ========================================================= */

.work-page-closing {
  padding:
    clamp(130px, 17vw, 260px)
    var(--gutter);
}


.work-page-closing-inner {
  max-width: 1240px;

  margin: 0 auto;
}


.work-page-closing h2 {
  margin:
    22px 0
    42px;

  font-family: var(--serif);

  font-weight: 400;

  font-size:
    clamp(
      70px,
      9vw,
      145px
    );

  line-height: .77;

  letter-spacing: -.04em;
}


.work-page-closing-inner > p:not(.eyebrow) {
  max-width: 48ch;

  margin:
    0 0
    40px;

  color:
    rgba(255, 255, 255, .70);

  font-size:
    clamp(
      15px,
      1.35vw,
      19px
    );

  line-height: 1.8;
}


/* =========================================================
   IMAGE PROTECTION
   ========================================================= */

/*
   Discourages casual saving, dragging and mobile long-press
   behaviour.

   This does not prevent screenshots or determined downloading.
*/

main img {
  -webkit-user-select: none;
  user-select: none;

  -webkit-user-drag: none;

  -webkit-touch-callout: none;
}


/* =========================================================
   COPYRIGHT OVERLAY
   ========================================================= */

/*
   Add the class "protected-artwork" to the figure or image
   wrapper when a visible copyright overlay is required.
*/

.protected-artwork {
  position: relative;
}


.protected-artwork::after {
  content: "© Michael McCafferty";

  position: absolute;

  right: 12px;
  bottom: 34px;

  padding: 4px 7px;

  background:
    rgba(0, 0, 0, 0.20);

  color:
    rgba(255, 255, 255, 0.72);

  font-family: var(--sans);

  font-size: 8px;

  font-weight: 400;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  white-space: nowrap;

  pointer-events: none;

  z-index: 2;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {

  .desktop-nav {
    display: none;
  }


  .menu-button {
    display: block;
  }


  .site-header {
    height: 76px;
  }


  .site-header.menu-active {
    color: #fff !important;

    background: transparent !important;

    backdrop-filter: none !important;
  }


  .statement-grid,
  .collection,
  .collection-solitude,
  .form-section,
  .feature-artwork,
  .about-section,
  .journal-section {
    grid-template-columns: 1fr;
  }


  .statement-copy {
    max-width: 640px;
  }


  .collection {
    gap: 40px;
  }


  .collection-solitude .collection-meta {
    order: 2;

    justify-self: stretch;
  }


  .collection-solitude .collection-media {
    order: 1;
  }


  .collection-meta {
    max-width: 560px;
  }


  .form-image {
    width: 100%;

    justify-self: stretch;
  }


  .form-copy {
    margin-left: auto;
  }


  .feature-artwork {
    min-height: auto;
  }


  .feature-copy {
    margin-left: auto;
  }


  .about-label {
    display: flex;

    gap: 40px;

    align-items: baseline;
  }


  .about-label .section-number {
    margin: 0;
  }


  .journal-list a {
    grid-template-columns:
      36px
      1fr
      20px;
  }


  .journal-type {
    display: none;
  }


  /* WORK PAGE */

  .work-page-intro-inner {
    grid-template-columns:
      1fr;
  }


  .work-page-label {
    display: flex;

    align-items: baseline;

    gap: 35px;
  }


  .work-page-label .section-number {
    margin: 0;
  }


  .work-page-heading h1 {
    font-size:
      clamp(
        88px,
        15vw,
        145px
      );
  }


  .work-page-intro-copy {
    max-width: 620px;
  }


  .work-gallery-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap:
      110px
      44px;
  }


  .work-gallery-item-stillness,
  .work-gallery-item-solitude,
  .work-gallery-item-ireland,
  .work-gallery-item-form {
    grid-column: auto;

    margin-top: 0;
  }


  .work-gallery-item-solitude,
  .work-gallery-item-form {
    padding-top: 100px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

  :root {
    --gutter: 20px;
  }


  .brand-sub {
    display: none;
  }


  .site-header.scrolled {
    height: 62px;
  }


  /* HERO */

  .hero {
    min-height: 100svh;
  }


  .hero-image {
    object-position:
      center center;
  }


  .hero-shade {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, .48) 0%,
        rgba(0, 0, 0, .13) 72%,
        rgba(0, 0, 0, .08) 100%
      ),
      linear-gradient(
        0deg,
        rgba(0, 0, 0, .32) 0%,
        transparent 48%
      );
  }


  .hero-copy {
    left: 20px;

    top: auto;

    bottom: 92px;

    transform: none;

    width:
      calc(100% - 40px);
  }


  .hero h1 {
    font-size:
      clamp(
        46px,
        13vw,
        64px
      );

    line-height: .9;

    max-width: 9ch;
  }


  .hero-line {
    font-size: 17px;
  }


  .scroll-cue {
    display: none;
  }


  /* THE ART OF LESS */

  .statement {
    padding-top: 92px;

    padding-bottom: 110px;
  }


  .statement-grid {
    gap: 58px;
  }


  .statement-copy h2 {
    font-size: 68px;
  }


  /* WORK */

  .work-intro {
    padding-top: 86px;
  }


  .section-heading h2 {
    font-size: 72px;
  }


  /* COLLECTIONS */

  .collection {
    padding-top: 82px;

    padding-bottom: 82px;
  }


  .collection-meta h3 {
    font-size: 64px;
  }


  .collection-solitude .framed {
    padding: 0;
  }


  /* FORM */

  .form-section {
    padding-top: 100px;

    padding-bottom: 100px;

    min-height: auto;
  }


  .form-image {
    width: 100%;
  }


  /*
     On smaller screens the image is governed by available
     width rather than viewport height.

     No cropping.
  */

  .collection-media img,
  .form-image img,
  .feature-image img,
  .pause-image img {
    max-height: none;

    max-width: 100%;
  }


  .form-copy {
    margin-left: 0;
  }


  .form-copy h2 {
    font-size: 86px;
  }


  /* FEATURED ARTWORK */

  .feature-artwork {
    padding-top: 100px;

    padding-bottom: 110px;
  }


  .feature-copy {
    margin-left: 0;
  }


  .feature-copy h2 {
    font-size: 66px;
  }


  /* NEBULOUS */

  .pause {
    min-height: 88svh;

    padding-top: 100px;

    padding-bottom: 150px;
  }


  .pause-image {
    width: 92vw;
  }


  .pause-caption {
    right: 20px;

    top: auto;
    bottom: 54px;

    transform: none;
  }


  /* COLLECT */

  .collect-section {
    padding-top: 130px;

    padding-bottom: 140px;
  }


  .collect-inner h2 {
    font-size: 90px;
  }


  /* ABOUT / JOURNAL */

  .about-section,
  .journal-section {
    padding-top: 105px;

    padding-bottom: 115px;
  }


  .about-copy h2 {
    font-size: 72px;
  }


  .journal-heading h2 {
    font-size: 72px;
  }


  .journal-list a {
    padding:
      23px 0;

    gap: 12px;
  }


  .journal-title {
    font-size: 22px;
  }


  /* FOOTER */

  .site-footer {
    grid-template-columns: 1fr;

    gap: 38px;

    padding-top: 72px;
  }


  .footer-bottom {
    flex-direction: column;

    gap: 10px;
  }


  /* WORK PAGE */

  .work-page-intro {
    padding:
      120px
      var(--gutter)
      90px;
  }


  .work-page-label {
    display: block;
  }


  .work-page-label .section-number {
    margin-top: 20px;
  }


  .work-page-heading h1 {
    font-size: 74px;

    line-height: .78;
  }


  .work-gallery-index {
    padding-top: 10px;

    padding-bottom: 120px;
  }


  .work-gallery-grid {
    grid-template-columns: 1fr;

    gap: 100px;
  }


  .work-gallery-item-solitude,
  .work-gallery-item-form {
    padding-top: 0;
  }


  .work-gallery-image img {
    max-height: none;

    width: 100%;
  }


  .work-gallery-caption {
    grid-template-columns:
      30px
      1fr;

    gap: 12px;
  }


  .work-gallery-caption h2 {
    font-size: 52px;
  }


  .work-gallery-caption p {
    font-size: 13px;
  }


  .work-page-closing {
    padding-top: 125px;

    padding-bottom: 140px;
  }


  .work-page-closing h2 {
    font-size: 67px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }


  *,
  *::before,
  *::after {
    animation: none !important;

    transition-duration: .01ms !important;

    transition-delay: 0ms !important;
  }


  .reveal {
    opacity: 1;

    transform: none;
  }

}