@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --paper: #f4f0e8;
  --paper-soft: #ebe4d8;
  --ink: #15120d;
  --soft-ink: #30291f;
  --muted: #766d62;
  --line: rgba(21, 18, 13, 0.14);
  --dark: #080706;
  --dark-soft: #12100d;
  --dark-line: rgba(255, 255, 255, 0.16);
  --gold: #c59a5b;
  --terracotta: #8c3d2f;
  --max: 1500px;
  --font-display: "Barlow Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", Arial, Helvetica, sans-serif;
  --font-meta: "Barlow Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--dark);
  color: var(--ink);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.home {
  background: var(--dark);
}

body.portfolio,
body.categoria,
body.progetti,
body.articoli,
body.articolo,
body.reportage,
body.foto,
body.divulgazione,
body.bio,
body.contatti {
  background: var(--dark);
}

::selection {
  background: var(--gold);
  color: var(--dark);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}

[data-lightbox-photo],
.photo-lightbox {
  user-select: none;
  -webkit-touch-callout: none;
}

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

.site-header {
  --brand-signature-filter: none;
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto auto;
  align-items: center;
  column-gap: clamp(18px, 1.7vw, 30px);
  min-height: 86px;
  padding: 24px 58px;
  color: var(--ink);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, padding 220ms ease;
}

body.home .site-header {
  --brand-signature-filter: invert(1);
  color: #fff;
}

.site-header.scrolled {
  --brand-signature-filter: none;
  min-height: 72px;
  padding-top: 18px;
  padding-bottom: 18px;
  background: rgba(197, 154, 91, 0.96);
  border-bottom: 1px solid rgba(8, 7, 6, 0.18);
  color: var(--dark);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

body.portfolio .site-header,
body.categoria .site-header,
body.progetti .site-header,
body.foto .site-header,
body.articoli .site-header,
body.articolo .site-header,
body.reportage .site-header,
body.divulgazione .site-header,
body.bio .site-header,
body.contatti .site-header {
  --brand-signature-filter: invert(1);
  color: #fff;
}

body.portfolio .site-header.scrolled,
body.categoria .site-header.scrolled,
body.progetti .site-header.scrolled,
body.foto .site-header.scrolled,
body.articoli .site-header.scrolled,
body.articolo .site-header.scrolled,
body.reportage .site-header.scrolled,
body.home .site-header.scrolled,
body.divulgazione .site-header.scrolled,
body.bio .site-header.scrolled,
body.contatti .site-header.scrolled {
  --brand-signature-filter: none;
  color: var(--dark);
}

.brand,
.main-nav,
.hero-copy p,
.hero-lead,
.home-statement p,
.page-intro p,
.photo-detail aside p,
.text-page > p:first-child,
.text-link,
.selected-categories a,
.feature-tile span,
.category-card span,
.photo-card span,
.photo-detail dl,
.article-row time,
.article-inline-photo figcaption,
.article-gallery span,
.site-footer,
.button-link,
.hero-caption {
  font-family: var(--font-meta);
}

.brand {
  display: inline-grid;
  gap: 0;
  align-content: center;
  justify-items: start;
  width: fit-content;
  max-width: min(360px, 42vw);
  line-height: 1;
  color: inherit;
  transform: translate(-10px, -5px);
}

.brand-signature {
  width: clamp(170px, 17vw, 265px);
  height: auto;
  object-fit: contain;
  object-position: left center;
  filter: var(--brand-signature-filter);
  transition: filter 220ms ease, opacity 220ms ease, width 220ms ease;
}

.brand-payoff {
  margin-top: -15px;
  padding-left: clamp(42px, 4.1vw, 66px);
  font-size: clamp(13px, 0.85vw, 16px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

.main-nav {
  display: flex;
  gap: clamp(18px, 2.1vw, 38px);
  align-items: center;
  font-size: clamp(13px, 0.85vw, 15px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  opacity: 0.9;
  transition: opacity 180ms ease, color 180ms ease;
}

.main-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  inset: auto 0 -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--gold);
}

.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav a:focus-visible {
  color: #5b2418;
}

.main-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  --aperture-cut: var(--dark);
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  overflow: visible;
  transition: color 220ms ease, transform 220ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
}

.aperture-icon {
  width: 40px;
  height: 40px;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
  transform-origin: 50% 50%;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 220ms ease;
}

.aperture-ring {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.4;
  opacity: 0.95;
}

.aperture-blade {
  fill: currentColor;
  stroke: var(--aperture-cut);
  stroke-width: 4.8;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.aperture-hole {
  fill: var(--aperture-cut);
  stroke: currentColor;
  stroke-width: 2.4;
}

.aperture-blade,
.aperture-hole {
  transform-box: view-box;
  transform-origin: 50px 50px;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 220ms ease;
}

.aperture-blade {
  transform: rotate(0deg) scale(1.02);
}

.aperture-hole {
  transform: scale(0.72);
}

.site-header.scrolled .menu-toggle {
  --aperture-cut: var(--gold);
}

.menu-toggle:hover .aperture-icon,
.menu-toggle:focus-visible .aperture-icon {
  transform: rotate(12deg) scale(1.04);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.24));
}

.menu-toggle:hover .aperture-blade,
.menu-toggle:focus-visible .aperture-blade {
  transform: rotate(10deg) scale(0.94);
}

.menu-toggle:hover .aperture-hole,
.menu-toggle:focus-visible .aperture-hole {
  transform: scale(1.05);
}

.menu-toggle.is-open .aperture-icon {
  transform: rotate(34deg) scale(1.08);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.24));
}

.menu-toggle.is-open .aperture-blade {
  transform: rotate(28deg) scale(0.78);
}

.menu-toggle.is-open .aperture-hole {
  transform: scale(1.72);
}

@media (min-width: 981px) {
  .menu-toggle .aperture-icon {
    transform: rotate(34deg) scale(1.08);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.22));
  }

  .menu-toggle .aperture-blade {
    transform: rotate(28deg) scale(0.78);
  }

  .menu-toggle .aperture-hole {
    transform: scale(1.72);
  }

  .menu-toggle.is-menu-hover .aperture-icon,
  .menu-toggle:hover .aperture-icon,
  .menu-toggle:focus-visible .aperture-icon {
    transform: rotate(44deg) scale(1.12);
  }

  .menu-toggle.is-menu-hover .aperture-blade,
  .menu-toggle:hover .aperture-blade,
  .menu-toggle:focus-visible .aperture-blade {
    transform: rotate(36deg) scale(0.7);
  }

  .menu-toggle.is-menu-hover .aperture-hole,
  .menu-toggle:hover .aperture-hole,
  .menu-toggle:focus-visible .aperture-hole {
    transform: scale(1.96);
  }

  .menu-toggle.is-closing .aperture-icon {
    transform: rotate(0deg) scale(1);
  }

  .menu-toggle.is-closing .aperture-blade {
    transform: rotate(0deg) scale(1.02);
  }

  .menu-toggle.is-closing .aperture-hole {
    transform: scale(0.72);
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px 76px 78px;
  color: #fff;
  background:
    radial-gradient(circle at 72% 34%, rgba(197, 154, 91, 0.26), transparent 33%),
    linear-gradient(90deg, rgba(8, 7, 6, 0.94) 0%, rgba(8, 7, 6, 0.76) 42%, rgba(8, 7, 6, 0.34) 100%),
    var(--hero-image) center / cover no-repeat;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 23%, rgba(0, 0, 0, 0.52)),
    radial-gradient(circle at center, transparent 38%, rgba(0, 0, 0, 0.48) 100%);
}

.hero::after {
  inset: auto 0 0;
  z-index: 2;
  height: 180px;
  background: linear-gradient(180deg, transparent, var(--dark));
}

.hero-frame {
  position: absolute;
  inset: 106px 48px 46px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.34),
    0 34px 110px rgba(0, 0, 0, 0.46);
  animation: frameIn 900ms ease both;
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  width: 68px;
  height: 68px;
  border-color: rgba(197, 154, 91, 0.72);
  border-style: solid;
}

.hero-frame::before {
  top: 18px;
  left: 18px;
  border-width: 1px 0 0 1px;
}

.hero-frame::after {
  right: 18px;
  bottom: 18px;
  border-width: 0 1px 1px 0;
}

.hero-copy,
.home-statement,
.text-page {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 24px;
  max-width: 850px;
  margin: 0;
  padding: 0 0 30px;
  animation: heroFade 820ms ease 120ms both;
}

.hero-copy p,
.home-statement p,
.page-intro p,
.photo-detail aside p,
.text-page > p:first-child {
  margin: 0;
  color: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-copy p {
  color: var(--gold);
}

.hero h1 {
  margin: 0;
  max-width: 860px;
  font-family: var(--font-display);
  font-size: 118px;
  line-height: 0.84;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  text-shadow: 0 26px 70px rgba(0, 0, 0, 0.55);
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.65;
}

.hero-caption {
  position: absolute;
  right: 76px;
  bottom: 58px;
  z-index: 3;
  display: flex;
  gap: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-caption span {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.hero-caption span + span::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(197, 154, 91, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.button-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--dark);
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button-link:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.34);
}

.text-link {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-bottom: 8px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.text-link.dark {
  color: var(--ink);
}

.text-link.light {
  color: rgba(255, 255, 255, 0.86);
}

.home-statement {
  display: grid;
  grid-template-columns: 180px minmax(0, 870px) auto;
  gap: 70px;
  align-items: end;
  padding: 112px 76px;
}

.theme-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, #0b0907 0%, #16110c 100%);
  color: #fff;
}

.home-statement h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 300;
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.home-statement .text-link.dark {
  color: var(--gold);
}

.selected-categories {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--dark);
  color: #fff;
}

.selected-categories a {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: background 200ms ease, color 200ms ease;
}

.selected-categories a:hover {
  background: rgba(197, 154, 91, 0.16);
  color: #fff;
}

.selected-categories a:last-child {
  border-right: 0;
}

.featured-strip,
.category-grid,
.photo-grid {
  display: grid;
  background:
    radial-gradient(circle at 20% 0%, rgba(197, 154, 91, 0.12), transparent 28%),
    var(--dark);
  gap: 24px;
  padding: 26px;
}

.featured-strip {
  grid-template-columns: repeat(12, 1fr);
}

.feature-tile,
.category-card,
.photo-card {
  position: relative;
  overflow: hidden;
  background: var(--dark-soft);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(0, 0, 0, 0.34);
  isolation: isolate;
}

.feature-tile::before,
.category-card::before,
.photo-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.22);
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 280ms ease, transform 280ms ease;
  pointer-events: none;
}

.feature-tile:hover::before,
.category-card:hover::before,
.photo-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.feature-tile {
  min-height: 560px;
}

.feature-tile:nth-child(1),
.feature-tile:nth-child(4) {
  grid-column: span 5;
}

.feature-tile:nth-child(2),
.feature-tile:nth-child(5) {
  grid-column: span 3;
}

.feature-tile:nth-child(3),
.feature-tile:nth-child(6) {
  grid-column: span 4;
}

.featured-strip .home-feature-photo-one {
  grid-column: 1 / span 5 !important;
}

.featured-strip .home-feature-photo-two {
  grid-column: 6 / span 3 !important;
}

.featured-strip .home-feature-text-top {
  grid-column: 9 / span 4 !important;
}

.featured-strip .home-feature-text-middle {
  grid-column: 1 / -1 !important;
  min-height: auto;
}

.featured-strip .home-feature-text-bottom {
  grid-column: 1 / span 4 !important;
}

.featured-strip .home-feature-photo-three {
  grid-column: 5 / span 4 !important;
}

.featured-strip .home-feature-photo-four {
  grid-column: 9 / span 4 !important;
}

.feature-text-card {
  position: relative;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(30px, 4.2vw, 64px);
  color: #f7f1e8;
  background:
    radial-gradient(circle at 86% 8%, rgba(197, 154, 91, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(20, 16, 12, 0.98), rgba(5, 8, 9, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(0, 0, 0, 0.34);
  isolation: isolate;
}

.feature-text-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  opacity: 0.92;
}

.feature-text-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -22% 18%;
  z-index: -2;
  height: 48%;
  background: radial-gradient(circle, rgba(140, 61, 47, 0.34), transparent 68%);
  filter: blur(34px);
  opacity: 0.7;
}

.feature-text-card > span {
  margin-bottom: 22px;
  color: var(--gold);
  font-family: var(--font-meta);
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.feature-text-card h2,
.feature-text-card h3 {
  max-width: 980px;
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 76px);
  font-weight: 300;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.feature-text-card p,
.feature-text-card li,
.feature-text-card blockquote {
  max-width: 760px;
  margin: 0;
  color: rgba(247, 241, 232, 0.78);
  font-size: clamp(16px, 1.1vw, 20px);
  line-height: 1.72;
}

.feature-text-card p + p {
  margin-top: 18px;
}

.home-feature-text-middle {
  justify-content: center;
  min-height: clamp(250px, 24vw, 410px);
  padding-inline: clamp(34px, 8vw, 132px);
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.98), rgba(31, 23, 17, 0.96), rgba(8, 7, 6, 0.98)),
    radial-gradient(circle at 50% 50%, rgba(197, 154, 91, 0.18), transparent 45%);
}

.home-feature-text-middle p {
  max-width: 1120px;
  font-size: clamp(20px, 2vw, 34px);
  line-height: 1.35;
}

.feature-tile span,
.category-card span,
.photo-card span {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 3;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.72);
}

.feature-tile span {
  display: none;
}

.feature-tile::after,
.category-card::after,
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.82)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 44%);
  opacity: 0.9;
  pointer-events: none;
}

.feature-tile img,
.category-card img,
.photo-card img {
  transition: transform 760ms ease, filter 760ms ease, opacity 760ms ease;
  filter: saturate(0.94) contrast(1.04);
}

.category-card-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 68% 24%, rgba(197, 154, 91, 0.28), transparent 28%),
    linear-gradient(135deg, #0b0907 0%, #201812 100%);
}

.feature-tile:hover img,
.category-card:hover img,
.photo-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.08);
}

body.lightbox-open .site-header,
body.lightbox-open main,
body.lightbox-open .site-footer {
  filter: blur(4px) brightness(0.58);
}

.photo-lightbox[hidden] {
  display: none;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 34px;
  background: rgba(0, 0, 0, 0.58);
}

.photo-lightbox-panel {
  position: relative;
  width: min(1180px, 100%);
  max-height: calc(100vh - 68px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #050403;
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.72);
  overflow: hidden;
}

.photo-lightbox-panel img {
  width: 100%;
  max-height: calc(100vh - 210px);
  display: block;
  object-fit: contain;
  background: #050403;
}

.photo-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(0, 0, 0, 0.68);
  color: #fff;
  font: 800 14px/1 Inter, Arial, sans-serif;
  cursor: pointer;
}

.photo-lightbox-download {
  position: absolute;
  top: 14px;
  right: 70px;
  z-index: 2;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0 18px;
  border: 1px solid rgba(197, 154, 91, 0.78);
  background: rgba(197, 154, 91, 0.92);
  color: var(--dark);
  font: 800 11px/1 Inter, Arial, sans-serif;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.photo-lightbox-download[hidden] {
  display: none;
}

.photo-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 54px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 7, 6, 0.58);
  color: #fff;
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.photo-lightbox-nav:hover {
  border-color: rgba(197, 154, 91, 0.78);
  background: rgba(197, 154, 91, 0.92);
  color: var(--dark);
}

.photo-lightbox-nav[hidden] {
  display: none;
}

.photo-lightbox-prev {
  left: 18px;
}

.photo-lightbox-next {
  right: 18px;
}

.photo-lightbox-info {
  display: grid;
  gap: 10px;
  padding: 18px 22px 20px;
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0.88), rgba(5, 4, 3, 0.98));
  color: rgba(255, 255, 255, 0.72);
}

.photo-lightbox-info h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: 0;
}

.photo-lightbox-info p {
  margin: 0;
  max-width: 860px;
  line-height: 1.55;
}

.photo-lightbox-info dl {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-lightbox-info dt {
  color: var(--gold);
}

.photo-lightbox-info dd {
  margin: 0;
}

.page-intro {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 420px;
  display: grid;
  align-content: center;
  overflow: hidden;
  isolation: isolate;
  margin: 0;
  padding: 164px 76px 70px;
  background:
    radial-gradient(circle at 74% 24%, rgba(197, 154, 91, 0.22), transparent 30%),
    linear-gradient(180deg, #0b0907 0%, #17120d 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-intro::before {
  content: "";
  position: absolute;
  inset: 92px 48px 40px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.page-intro h1,
.text-page h1,
.photo-detail h1 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 300;
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

.page-intro h1 {
  color: #fff;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.page-intro div,
.text-page p,
.photo-detail aside div {
  max-width: 780px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.58;
}

.page-intro div {
  color: rgba(255, 255, 255, 0.68);
}

.page-intro.simple-page {
  min-height: calc(100vh - 132px);
}

.page-intro .contact-link {
  color: var(--gold);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 30px;
}

.contact-quote {
  max-width: 740px;
  margin: 72px 0 0;
  padding: 30px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-quote p {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.contact-quote cite {
  display: block;
  margin-top: 18px;
  color: var(--gold);
  font-family: var(--font-meta);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: right;
  text-transform: uppercase;
}

.bio-hero {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
}

.bio-hero-copy {
  min-width: 0;
}

.bio-hero-copy > div {
  max-width: 700px;
}

.bio-portrait {
  position: relative;
  width: min(32vw, 420px);
  min-width: 280px;
  aspect-ratio: 4 / 5;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #090806;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.bio-portrait::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.bio-portrait img {
  filter: saturate(0.92) contrast(1.04);
}

.bio-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 86px 34px 118px;
  color: rgba(255, 255, 255, 0.72);
}

.bio-content p {
  margin: 0;
  font-size: 20px;
  line-height: 1.78;
}

.bio-content p + p {
  margin-top: 28px;
}

.bio-content p:first-child::first-letter {
  float: left;
  margin: 9px 14px 0 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 86px;
  line-height: 0.76;
}

.category-grid {
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  align-items: start;
}

.category-card {
  grid-column: span 4;
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.category-card.is-landscape,
.category-card:nth-child(4n + 1).is-landscape {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.category-grid .category-card.is-landscape,
.category-grid .category-card:nth-child(4n + 1).is-landscape {
  grid-column: span 6;
}

.category-card.is-portrait,
.category-card:nth-child(4n + 1).is-portrait {
  grid-column: span 3;
  aspect-ratio: 3 / 4;
}

.category-card.is-square,
.category-card:nth-child(4n + 1).is-square {
  grid-column: span 4;
  aspect-ratio: 1 / 1;
}

.photo-grid {
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  align-items: start;
}

.photo-card {
  grid-column: span 4;
  aspect-ratio: 4 / 3;
}

.photo-card.is-portrait {
  grid-column: span 3;
  aspect-ratio: 4 / 5;
}

.photo-card.is-landscape,
.photo-card:nth-child(6n + 1).is-landscape,
.photo-card:nth-child(6n + 4).is-landscape {
  grid-column: span 6;
  aspect-ratio: 16 / 10;
}

.photo-card.is-square {
  grid-column: span 4;
  aspect-ratio: 1 / 1;
}

.empty-state {
  grid-column: 1 / -1;
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 32px;
  background: var(--paper);
  color: var(--muted);
  text-align: center;
}

.photo-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 64px;
  min-height: 100vh;
  padding: 116px 76px 58px;
  background:
    radial-gradient(circle at 20% 0%, rgba(197, 154, 91, 0.13), transparent 30%),
    var(--dark);
  color: #fff;
}

.photo-detail figure {
  margin: 0;
  min-height: calc(100vh - 174px);
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48);
}

.photo-detail figure img {
  object-fit: contain;
  background: #000;
}

.photo-detail aside {
  align-self: end;
}

.photo-detail h1 {
  color: #fff;
}

.photo-detail aside div {
  color: rgba(255, 255, 255, 0.72);
}

.photo-detail dl {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 8px 16px;
  margin: 28px 0 0;
  font-size: 13px;
}

.photo-detail dt {
  color: rgba(255, 255, 255, 0.55);
}

.photo-detail dd {
  margin: 0;
}

.article-list {
  display: grid;
  gap: 20px;
  padding: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(197, 154, 91, 0.12), transparent 30%),
    var(--dark);
}

.article-row {
  display: grid;
  grid-template-columns: 128px minmax(220px, 330px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.32);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.article-row:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(197, 154, 91, 0.46);
  transform: translateY(-2px);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.42);
}

.article-row-media {
  position: relative;
  display: block;
  height: 190px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(197, 154, 91, 0.18), transparent),
    #14100c;
}

.article-row-media::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.article-row-media img {
  transition: transform 720ms ease, filter 720ms ease;
  filter: saturate(0.92) contrast(1.04);
}

.article-row:hover .article-row-media img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.08);
}

.article-row time {
  color: var(--gold);
}

.article-row time {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-row-text {
  display: grid;
  gap: 16px;
}

.article-row-text span {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  line-height: 1.6;
}

.article-row strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 180ms ease;
}

.article-row:hover strong {
  color: var(--gold);
}

.text-page {
  max-width: 980px;
  padding: 164px 76px 96px;
  background: var(--paper);
}

.text-page h1 {
  color: var(--ink);
}

.text-page time {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-family: var(--font-meta);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-page p {
  white-space: normal;
}

.article-page {
  max-width: none;
  padding: 0 0 96px;
  background:
    radial-gradient(circle at 22% 38%, rgba(197, 154, 91, 0.12), transparent 32%),
    linear-gradient(180deg, #050403 0%, #0d0a07 40%, #050403 100%);
}

body.reportage .article-page {
  min-height: 100vh;
}

.article-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 148px 76px 78px;
  color: #fff;
  background:
    radial-gradient(circle at 72% 30%, rgba(197, 154, 91, 0.2), transparent 32%),
    linear-gradient(90deg, rgba(8, 7, 6, 0.94), rgba(8, 7, 6, 0.72) 46%, rgba(8, 7, 6, 0.34)),
    var(--article-image, none) center / cover no-repeat,
    linear-gradient(180deg, #0b0907, #17120d);
}

.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 28%, rgba(0, 0, 0, 0.56)),
    radial-gradient(circle at center, transparent 35%, rgba(0, 0, 0, 0.48));
  pointer-events: none;
}

.article-hero-frame {
  position: absolute;
  inset: 108px 48px 44px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.28);
}

.article-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  width: min(100%, 1120px);
  animation: heroFade 760ms ease both;
}

.article-hero-copy p {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-meta);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-hero-copy > div {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 21px;
  line-height: 1.58;
}

.divulgazione-page {
  min-height: 100vh;
}

.divulgazione-page .article-hero {
  min-height: 62vh;
}

.divulgazione-body {
  padding-top: 64px;
}

.article-hero .text-page time,
.article-hero time {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.article-hero h1 {
  max-width: 1040px;
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 300;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.52);
}

.article-page .article-cover,
.article-page .article-body,
.article-page .article-gallery {
  width: min(100% - 48px, 980px);
  margin-inline: auto;
}

.article-cover {
  margin-top: -54px;
  margin-bottom: 48px;
  position: relative;
  z-index: 3;
  padding: 12px;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.5);
}

.article-cover img {
  max-height: 72vh;
  object-fit: cover;
}

.article-body {
  max-width: 780px;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.article-body p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 21px;
  line-height: 1.75;
}

.article-body h2,
.article-body h3 {
  margin: 48px 0 18px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-body h2 {
  font-size: 58px;
}

.article-body h3 {
  font-size: 42px;
}

.article-body blockquote {
  margin: 42px 0;
  padding: 4px 0 4px 26px;
  border-left: 2px solid var(--gold);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-body ul {
  margin: 0 0 28px;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  line-height: 1.68;
}

.article-body a {
  border-bottom: 1px solid currentColor;
  color: var(--terracotta);
}

.content-callout {
  margin: 42px 0;
  padding: 24px 28px;
  background: rgba(189, 146, 83, 0.1);
  border: 1px solid rgba(189, 146, 83, 0.46);
  border-left: 4px solid var(--gold);
}

.content-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
  line-height: 1.58;
}

.content-separator {
  width: min(220px, 46%);
  margin: 52px 0;
  border: 0;
  border-top: 1px solid rgba(189, 146, 83, 0.7);
}

.article-inline-photo {
  margin: 42px 0;
  padding: 12px;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.article-inline-photo.large {
  width: min(980px, 100%);
}

.article-inline-photo img {
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  background: var(--dark);
}

.article-inline-photo figcaption,
.article-gallery span {
  display: block;
  padding-top: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.article-inline-gallery,
.article-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  align-items: start;
  gap: 18px;
  width: min(980px, 100%);
  margin: 44px 0;
}

.article-inline-gallery .article-inline-photo,
.article-gallery a {
  grid-column: span 6;
  margin: 0;
  padding: 12px 12px 18px;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.36);
}

.article-inline-gallery .article-inline-photo.is-landscape,
.article-gallery a.is-landscape {
  grid-column: span 6;
}

.article-inline-gallery .article-inline-photo.is-portrait,
.article-gallery a.is-portrait {
  grid-column: span 4;
}

.article-inline-gallery .article-inline-photo.is-square,
.article-gallery a.is-square {
  grid-column: span 4;
}

.article-inline-gallery img,
.article-gallery img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-inline-gallery .is-landscape img,
.article-gallery .is-landscape img {
  aspect-ratio: 16 / 10;
}

.article-inline-gallery .is-portrait img,
.article-gallery .is-portrait img {
  aspect-ratio: 3 / 4;
}

.article-inline-gallery .is-square img,
.article-gallery .is-square img {
  aspect-ratio: 1 / 1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 76px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--dark);
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes frameIn {
  from {
    opacity: 0;
    transform: scale(1.018);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1180px) {
  .hero h1 {
    font-size: 88px;
  }

  .home-statement h2,
  .page-intro h1,
  .text-page h1,
  .photo-detail h1 {
    font-size: 72px;
  }

  .feature-tile,
  .category-card {
    min-height: 460px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 78px;
    padding: 18px 22px;
  }

  .menu-toggle {
    width: 56px;
    height: 56px;
    justify-self: end;
    background: transparent;
  }

  .aperture-icon {
    width: 46px;
    height: 46px;
  }

  .main-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    z-index: 29;
    background: rgba(244, 240, 232, 0.98);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 26px 48px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 16px 22px;
    border-top: 1px solid var(--line);
    font-size: 16px;
    letter-spacing: 0.12em;
  }

  .main-nav a::after {
    display: none;
  }

  .hero,
  .home-statement,
  .page-intro,
  .photo-detail,
  .text-page,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero {
    min-height: 92vh;
    align-items: end;
    padding-top: 118px;
    padding-bottom: 78px;
    background:
      linear-gradient(180deg, rgba(8, 7, 6, 0.72), rgba(8, 7, 6, 0.92)),
      var(--hero-image) center / cover no-repeat;
  }

  .bio-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 34px;
    padding-top: 128px;
  }

  .bio-portrait {
    width: min(420px, 100%);
    min-width: 0;
  }

  .hero-frame {
    inset: 94px 18px 32px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-caption {
    right: auto;
    left: 24px;
    bottom: 32px;
    display: none;
  }

  .home-statement {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .selected-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .selected-categories a:nth-child(2n) {
    border-right: 0;
  }

  .featured-strip,
  .category-grid,
  .photo-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px;
    padding: 18px;
  }

  .feature-tile,
  .feature-tile:nth-child(n),
  .feature-text-card,
  .category-card,
  .category-card:nth-child(n),
  .photo-card,
  .photo-card:nth-child(n) {
    grid-column: 1 / -1 !important;
    width: 100%;
    max-width: 100%;
    min-height: 360px;
    aspect-ratio: 4 / 5;
  }

  .featured-strip .home-feature-photo-one,
  .featured-strip .home-feature-photo-two,
  .featured-strip .home-feature-text-top,
  .featured-strip .home-feature-text-middle,
  .featured-strip .home-feature-text-bottom,
  .featured-strip .home-feature-photo-three,
  .featured-strip .home-feature-photo-four {
    grid-column: 1 / -1 !important;
  }

  .feature-text-card,
  .feature-text-card:nth-child(n) {
    min-height: auto;
    aspect-ratio: auto;
    padding: 34px 26px;
  }

  .category-card.is-landscape,
  .photo-card.is-landscape,
  .feature-tile.is-landscape,
  .category-card:nth-child(n).is-landscape,
  .photo-card:nth-child(n).is-landscape,
  .feature-tile:nth-child(n).is-landscape {
    aspect-ratio: 16 / 10;
  }

  .category-card.is-portrait,
  .photo-card.is-portrait,
  .feature-tile.is-portrait,
  .category-card:nth-child(n).is-portrait,
  .photo-card:nth-child(n).is-portrait,
  .feature-tile:nth-child(n).is-portrait {
    aspect-ratio: 3 / 4;
  }

  .category-card.is-square,
  .photo-card.is-square,
  .feature-tile.is-square,
  .category-card:nth-child(n).is-square,
  .photo-card:nth-child(n).is-square,
  .feature-tile:nth-child(n).is-square {
    aspect-ratio: 1 / 1;
  }

  .photo-detail {
    grid-template-columns: 1fr;
    padding-top: 98px;
  }

  .photo-detail figure {
    min-height: 58vh;
  }

  .article-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px;
  }

  .article-row-media {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .article-hero {
    min-height: 62vh;
    padding: 126px 24px 64px;
  }

  .article-hero-frame {
    inset: 94px 18px 30px;
  }

  .article-hero h1 {
    font-size: 64px;
  }

  .article-inline-gallery,
  .article-gallery {
    grid-template-columns: 1fr;
  }

  .article-inline-gallery .article-inline-photo,
  .article-inline-gallery .article-inline-photo:nth-child(n),
  .article-gallery a,
  .article-gallery a:nth-child(n) {
    grid-column: 1 / -1;
  }

  .site-footer {
    display: block;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 70px;
  }

  .brand {
    max-width: 250px;
    transform: translate(-8px, -4px);
  }

  .brand-signature {
    width: 190px;
  }

  .brand-payoff {
    margin-top: -12px;
    padding-left: 42px;
    font-size: 13px;
    letter-spacing: 0.16em;
  }

  .main-nav {
    inset: 70px 0 auto;
  }

  .hero {
    min-height: 92vh;
    padding-top: 104px;
    padding-bottom: 62px;
  }

  .hero-frame {
    inset: 82px 14px 22px;
  }

  .hero h1 {
    font-size: 54px;
    line-height: 0.9;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 12px;
  }

  .button-link {
    width: 100%;
  }

  .home-statement h2,
  .page-intro h1,
  .text-page h1,
  .photo-detail h1 {
    font-size: 52px;
    line-height: 0.9;
  }

  .page-intro div,
  .text-page p,
  .photo-detail aside div,
  .article-body ul,
  .bio-content p {
    font-size: 18px;
  }

  .article-row strong,
  .article-body h3,
  .article-body blockquote {
    font-size: 34px;
  }

  .article-hero {
    min-height: 58vh;
    padding-top: 108px;
    padding-bottom: 54px;
  }

  .article-hero-frame {
    inset: 84px 14px 24px;
  }

  .article-hero h1 {
    font-size: 42px;
  }

  .article-page .article-cover,
  .article-page .article-body,
  .article-page .article-gallery {
    width: calc(100% - 28px);
  }

  .photo-lightbox-nav {
    width: 42px;
    height: 58px;
    font-size: 42px;
  }

  .photo-lightbox-prev {
    left: 8px;
  }

  .photo-lightbox-next {
    right: 8px;
  }

  .article-cover {
    margin-top: -26px;
    padding: 8px;
  }

  .article-body h2 {
    font-size: 42px;
  }

  .selected-categories {
    grid-template-columns: 1fr;
  }

  .selected-categories a {
    min-height: 68px;
    border-right: 0;
  }

  .feature-tile,
  .feature-tile:nth-child(n),
  .category-card,
  .category-card:nth-child(n),
  .photo-card,
  .photo-card:nth-child(n) {
    min-height: 310px;
  }
}
