/*
Theme Name: Through Her Scope
Theme URI: https://example.com/through-her-scope
Author: Sarah Tedstone
Author URI: https://example.com
Description: A cinematic, luxury photography homepage theme with editable images, text, links, and colours in the WordPress Customizer.
Version: 1.12.3
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: through-her-scope
*/

:root {
  --ink: #081014;
  --ink-soft: #101b20;
  --cream: #eee5d7;
  --paper: #f7efe4;
  --gold: #bd9459;
  --gold-light: #dfbd83;
  --sage: #77806b;
  --mist: #c5d0d0;
  --white: #fffaf0;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
  --page-gutter: clamp(24px, 5.6vw, 108px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 180px;
  align-items: start;
  gap: 24px;
  padding: 16px var(--page-gutter) 0;
  pointer-events: none;
}

.site-header > * {
  pointer-events: auto;
}

.brand {
  position: relative;
  display: block;
  width: 118px;
}

.brand::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -7px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d8a95f 18%, #ffe0a3 50%, #d8a95f 82%, transparent);
  box-shadow:
    0 0 8px rgba(255, 216, 143, 0.72),
    0 0 18px rgba(236, 164, 73, 0.42);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: normal;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.42));
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3.6vw, 62px);
  align-items: center;
  justify-self: center;
  min-height: 42px;
  padding: 0 24px;
  color: #ffe0a3;
  background:
    linear-gradient(90deg, rgba(4, 10, 12, 0.18), rgba(255, 216, 143, 0.08) 50%, rgba(4, 10, 12, 0.18));
  border: 1px solid rgba(255, 216, 143, 0.18);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 210, 0.08),
    0 0 18px rgba(255, 196, 98, 0.2),
    0 0 34px rgba(8, 12, 10, 0.22);
  backdrop-filter: blur(4px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-shadow:
    0 0 4px rgba(255, 230, 180, 0.95),
    0 0 12px rgba(255, 196, 98, 0.78),
    0 0 24px rgba(232, 139, 37, 0.55),
    0 0 38px rgba(173, 90, 20, 0.36);
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 0 2px;
}

.main-nav .active {
  color: #ffe0a3;
  text-shadow:
    0 0 4px rgba(255, 230, 180, 0.95),
    0 0 12px rgba(255, 196, 98, 0.78),
    0 0 24px rgba(232, 139, 37, 0.55),
    0 0 38px rgba(173, 90, 20, 0.36);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, #f0c27e 18%, #f4d49b 50%, #f0c27e 82%, transparent);
  box-shadow:
    0 0 8px rgba(240, 194, 126, 0.82),
    0 0 17px rgba(199, 128, 48, 0.54);
  transition: transform 180ms ease;
}

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

.icon-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-top: 2px;
  justify-self: end;
  flex: 0 0 38px;
  z-index: 1;
  isolation: isolate;
  opacity: 1;
  visibility: visible;
  color: #ffd88f;
  background:
    radial-gradient(circle, rgba(255, 216, 143, 0.16), rgba(255, 216, 143, 0.03) 62%, transparent 70%);
  border: 1px solid rgba(255, 216, 143, 0.28);
  border-radius: 50%;
  filter: none;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, filter 160ms ease, background 160ms ease;
}

.icon-button:hover {
  border-color: rgba(255, 224, 163, 0.68);
  background:
    radial-gradient(circle, rgba(255, 216, 143, 0.25), rgba(255, 216, 143, 0.06) 64%, transparent 72%);
  filter: none;
  transform: translateY(-1px);
}

.bag-icon {
  position: relative;
  z-index: 2;
  display: block;
  width: 23px;
  height: 23px;
  fill: rgba(255, 224, 163, 0.1);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.bag-shine {
  stroke: rgba(255, 244, 210, 0.5);
  stroke-width: 1.1;
}


.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(520px, 43vw, 635px);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  background-image: url("assets/hero-girl-panorama-hq.png");
  background-position: center;
  background-size: cover;
  transform: none;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(0deg, #030a0b 0 7%, rgba(3, 10, 11, 0.94) 12%, rgba(3, 10, 11, 0.4) 22%, transparent 34%),
    radial-gradient(circle at 72% 34%, rgba(238, 180, 104, 0.18), transparent 24%),
    linear-gradient(90deg, rgba(4, 10, 12, 0.92) 0%, rgba(7, 12, 12, 0.62) 30%, rgba(45, 26, 17, 0.08) 62%, rgba(7, 10, 10, 0.38) 100%),
    linear-gradient(0deg, rgba(7, 10, 9, 0.2), rgba(94, 51, 24, 0.1));
}

.hero-content {
  position: relative;
  width: min(500px, calc(100% - (var(--page-gutter) * 2)));
  margin-left: var(--page-gutter);
  padding-top: 82px;
}

.hero-content::before {
  content: none;
}

.hero-content::after {
  content: none;
}

.eyebrow,
.section-heading a,
.small-button,
.showreel-link,
.footer-nav,
.subscribe-row button {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--white);
  font-family: Cinzel, Georgia, serif;
  font-size: 0.68rem;
}

.eyebrow::after {
  content: none;
}

h1,
h2 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-weight: 500;
  text-transform: uppercase;
}

h1 {
  color: #fff7e7;
  font-size: clamp(2.75rem, 4.35vw, 5.15rem);
  line-height: 0.94;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
}

.hero-title-rule {
  display: none;
}

.hero-title-rule::before,
.hero-title-rule::after {
  content: "";
  position: absolute;
  top: 8px;
  height: 1px;
}

.hero-title-rule::before {
  left: 0;
  width: calc(50% - 16px);
  background: linear-gradient(90deg, transparent, rgba(216, 169, 95, 0.72));
}

.hero-title-rule::after {
  right: 0;
  width: calc(50% - 16px);
  background: linear-gradient(90deg, rgba(216, 169, 95, 0.72), transparent);
}

.hero-copy {
  max-width: 390px;
  margin: 18px 0 22px;
  color: rgba(255, 250, 240, 0.9);
  font-family: Georgia, serif;
  font-size: clamp(0.94rem, 1.1vw, 1.08rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 0;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  min-height: 43px;
  padding: 0 18px;
  border: 1px solid rgba(223, 189, 131, 0.8);
  overflow: hidden;
  isolation: isolate;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -45%;
  z-index: -1;
  width: 34%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 242, 211, 0.42), transparent);
  transition: left 520ms ease;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #c79b5b, #9d7442);
}

.button-secondary {
  background: rgba(5, 12, 15, 0.34);
}

.button:focus-visible {
  outline: 2px solid rgba(255, 224, 163, 0.9);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-3px);
    border-color: #f1c77f;
  }

  .button:hover::after {
    left: 118%;
  }

  .button-primary:hover {
    box-shadow:
      0 13px 25px rgba(0, 0, 0, 0.32),
      0 0 24px rgba(211, 157, 83, 0.34);
  }

  .button-secondary:hover {
    color: #ffe4b3;
    background: rgba(177, 124, 58, 0.18);
    box-shadow:
      0 13px 25px rgba(0, 0, 0, 0.34),
      inset 0 0 22px rgba(211, 157, 83, 0.08),
      0 0 20px rgba(211, 157, 83, 0.2);
  }
}

.showreel-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 250, 240, 0.86);
  text-shadow: 0 0 12px rgba(216, 169, 95, 0.22);
  transition: color 160ms ease, transform 160ms ease;
}

.showreel-link:hover,
.showreel-link:focus-visible {
  color: #ffe0a3;
  transform: translateX(2px);
}

.play-icon {
  width: 25px;
  height: 25px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 184, 82, 0.22);
}

.play-icon::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 7px 0 0 9px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--gold-light);
}

.hero-side {
  position: absolute;
  right: calc(var(--page-gutter) + 7px);
  top: auto;
  bottom: calc((100% - clamp(340px, 28vw, 396px)) / 2 + 8px);
  transform: none;
  display: grid;
  justify-items: center;
  gap: 26px;
  color: var(--gold-light);
  font-size: 0.78rem;
}

.side-line {
  width: 1px;
  height: 82px;
  background: var(--gold-light);
}

.hero-side a {
  position: relative;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #ffe0a3;
  filter:
    drop-shadow(0 0 7px rgba(255, 224, 163, 0.86))
    drop-shadow(0 0 16px rgba(255, 184, 82, 0.68))
    drop-shadow(0 0 28px rgba(196, 111, 28, 0.42));
  transition: color 160ms ease, filter 160ms ease, transform 160ms ease;
}

.hero-side a::before {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 230, 180, 0.3), rgba(255, 184, 82, 0.16) 50%, transparent 74%);
  border: 1px solid rgba(255, 224, 163, 0.28);
  opacity: 0.72;
  transform: scale(0.92);
  box-shadow:
    0 0 10px rgba(255, 224, 163, 0.22),
    0 0 24px rgba(236, 164, 73, 0.16);
  transition: opacity 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.hero-side a:hover,
.hero-side a:focus-visible,
.hero-side a.is-active {
  color: #ffe0a3;
  filter:
    drop-shadow(0 0 6px rgba(255, 235, 196, 0.72))
    drop-shadow(0 0 14px rgba(255, 184, 82, 0.52))
    drop-shadow(0 0 24px rgba(196, 111, 28, 0.32));
  transform: translateY(-1px);
}

.hero-side a:hover::before,
.hero-side a:focus-visible::before,
.hero-side a.is-active::before {
  opacity: 1;
  transform: scale(1);
  box-shadow:
    0 0 10px rgba(255, 224, 163, 0.3),
    0 0 22px rgba(236, 164, 73, 0.2);
}

.hero-side svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-side path {
  fill: currentColor;
  stroke: none;
}

.hero-side .stroke-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.hero-side .x-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}

.promise-band {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.5vw, 24px);
  overflow: hidden;
  padding: 26px clamp(32px, 6vw, 118px) 24px;
  color: #f0d8b3;
  background:
    radial-gradient(circle at 18% -30%, rgba(190, 133, 63, 0.16), transparent 38%),
    radial-gradient(circle at 82% 140%, rgba(69, 100, 91, 0.15), transparent 38%),
    linear-gradient(105deg, #071113, #0b1617 48%, #071012);
  border-top: 1px solid rgba(213, 165, 92, 0.32);
  border-bottom: 1px solid rgba(213, 165, 92, 0.28);
  box-shadow: inset 0 14px 32px rgba(0, 0, 0, 0.16);
}

.promise-band article {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 7px;
  min-height: 112px;
  padding: 12px clamp(14px, 1.8vw, 30px);
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0));
  border: 1px solid rgba(219, 174, 104, 0.1);
}

.promise-band article + article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  bottom: 15px;
  width: 1px;
  transform: translateX(calc(clamp(10px, 1.5vw, 24px) / -2));
  background: linear-gradient(transparent, rgba(218, 170, 96, 0.46), transparent);
}

.promise-band h2 {
  color: #e7bd7d;
  font-size: 0.76rem;
  line-height: 1.25;
  letter-spacing: 0.09em;
  text-shadow: 0 0 14px rgba(216, 164, 83, 0.18);
}

.promise-band p {
  max-width: 190px;
  margin: 0;
  color: rgba(249, 241, 226, 0.68);
  font-size: 0.68rem;
  line-height: 1.5;
}

.line-icon {
  position: relative;
  display: block;
  width: 30px;
  height: 28px;
  color: #9d7442;
}

.promise-icon {
  display: block;
  width: 30px;
  height: 30px;
  color: #d9a45d;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
  filter: drop-shadow(0 0 7px rgba(217, 164, 93, 0.24));
}

.ornate-icon {
  width: 46px;
  height: 46px;
  stroke-width: 1.15;
  filter:
    drop-shadow(0 0 5px rgba(255, 214, 143, 0.3))
    drop-shadow(0 0 13px rgba(205, 136, 53, 0.18));
}

.ornate-icon .icon-soft {
  fill: rgba(217, 164, 93, 0.08);
  stroke: currentColor;
  opacity: 0.62;
}

.ornate-icon .icon-accent {
  fill: currentColor;
  stroke: currentColor;
  opacity: 0.82;
}

.ornate-icon .icon-detail {
  stroke: #f1c77f;
  opacity: 0.78;
}

.mountain-icon {
  width: 34px;
  stroke-width: 2.15;
}

.compass-icon {
  width: 36px;
  height: 36px;
  stroke-width: 1.35;
}

.compass-icon text {
  fill: currentColor;
  stroke: none;
  font-family: Georgia, serif;
  font-size: 5px;
  font-weight: 700;
  text-anchor: middle;
}

.compass-needle-fill {
  fill: rgba(217, 164, 93, 0.18);
}

.compass-needle-line,
.compass-tick,
.compass-outer,
.compass-inner,
.compass-center {
  fill: none;
  stroke: currentColor;
}

.compass-center {
  fill: rgba(217, 164, 93, 0.12);
}

.mountain-badge {
  width: 30px;
  height: 30px;
  border: 1.25px solid currentColor;
  border-radius: 50%;
}

.mountain-badge::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 10px;
  width: 13px;
  height: 13px;
  border-top: 1.25px solid currentColor;
  border-left: 1.25px solid currentColor;
  transform: rotate(45deg);
}

.mountain-badge::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 14px;
  width: 8px;
  height: 8px;
  border-top: 1.25px solid currentColor;
  border-left: 1.25px solid currentColor;
  transform: rotate(45deg);
}

.mountain-badge .peak {
  display: none;
}

.mountain::before,
.mountain::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  width: 20px;
  height: 20px;
  border-top: 1.25px solid currentColor;
  border-left: 1.25px solid currentColor;
  transform: rotate(45deg);
}

.mountain::after {
  left: 18px;
  top: 16px;
  width: 12px;
  height: 12px;
}

.moon::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 21px;
  height: 21px;
  border: 1.35px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.moon::after,
.compass::after,
.heart::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 3px;
  width: 3px;
  height: 3px;
  background: currentColor;
  box-shadow: 7px 7px 0 -1px currentColor, -4px 10px 0 -0.5px currentColor;
}

.compass::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1.25px solid currentColor;
  border-radius: 50%;
}

.compass::after {
  left: 50%;
  top: 50%;
  width: 22px;
  height: 1.25px;
  background: currentColor;
  box-shadow: none;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.compass {
  transform: rotate(0deg);
}

.compass span {
  display: none;
}

.compass::before {
  box-shadow:
    inset 0 0 0 8px rgba(255, 255, 255, 0),
    0 0 0 0 currentColor;
}

.compass .needle {
  display: none;
}

.heart::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 19px;
  height: 17px;
  border: 1.35px solid currentColor;
  border-top: 0;
  border-left: 0;
  border-radius: 0 0 9px 0;
  transform: rotate(45deg);
}

.heart::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 11px;
  height: 11px;
  border: 1.35px solid currentColor;
  border-right: 0;
  border-bottom: 0;
  border-radius: 10px 0 0 0;
  background: transparent;
  box-shadow: 9px -1px 0 -1.35px transparent;
}

.section-dark {
  background:
    radial-gradient(circle at 50% 0%, rgba(102, 76, 44, 0.1), transparent 38%),
    linear-gradient(180deg, #071011, #050b0c),
    #050b0c;
}

.collections {
  position: relative;
  isolation: isolate;
  padding: clamp(56px, 3.6vw, 60px) clamp(28px, 3.1vw, 52px) 64px;
  overflow: hidden;
  border-top: 0;
  border-bottom: 1px solid rgba(199, 155, 91, 0.2);
  background-color: #030a0b;
  background-image:
    linear-gradient(180deg, #030a0b 0 44px, rgba(3, 10, 11, 0.96) 72px, transparent 150px),
    radial-gradient(circle at 50% 49%, rgba(178, 117, 43, 0.2), transparent 17%),
    radial-gradient(circle at 50% 0%, rgba(34, 48, 43, 0.18), transparent 44%),
    linear-gradient(180deg, #030a0b, #020809);
}

.hero + .collections {
  margin-top: -1px;
}

.collections::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.009) 0 1px, transparent 1px 5px),
    radial-gradient(circle at 18% 21%, rgba(255, 213, 140, 0.11), transparent 1px),
    radial-gradient(circle at 86% 72%, rgba(255, 213, 140, 0.1), transparent 1px);
  background-size: auto, 83px 71px, 101px 89px;
  opacity: 0.55;
}

.section-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 16px;
}

.section-heading h2 {
  margin: 0;
  color: var(--gold-light);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
}

.section-heading a {
  color: var(--gold);
  padding-top: 4px;
  font-size: 0.68rem;
  white-space: nowrap;
}

.collections-heading {
  display: grid;
  justify-items: center;
  margin-bottom: 36px;
  text-align: center;
}

.collections-heading h2 {
  margin: 0;
  color: var(--gold-light);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(2rem, 2.85vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.1;
  text-transform: uppercase;
}

.collections-ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  color: #d8a95f;
}

.collections-ornament i {
  width: clamp(62px, 5vw, 76px);
  height: 1px;
  background: currentColor;
}

.collections-ornament svg {
  width: 38px;
  height: 38px;
  overflow: visible;
  fill: currentColor;
  filter: drop-shadow(0 0 9px rgba(216, 169, 95, 0.45));
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 17px);
  align-items: center;
  width: 100%;
  max-width: 1570px;
  margin: 0 auto;
}

.collection-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: clamp(350px, 31.4vw, 528px);
  overflow: hidden;
  border: 1px solid rgba(201, 150, 80, 0.82);
  border-radius: 2px;
  background: #030a0b;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 218, 148, 0.5),
    inset 0 0 16px rgba(235, 174, 88, 0.3),
    inset 0 0 34px rgba(190, 111, 34, 0.16);
  transition: opacity 220ms ease;
}

.collection-card:focus-visible {
  z-index: 2;
  outline: 2px solid rgba(240, 189, 99, 0.72);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .collection-card:hover {
    z-index: 2;
    transform: translateY(-10px);
    border-color: #f4c36f;
    box-shadow:
      0 24px 42px rgba(0, 0, 0, 0.48),
      inset 0 0 0 1px rgba(255, 210, 128, 0.24);
  }

  .collection-card:hover::after {
    opacity: 1;
  }
}

.collection-image {
  min-height: 0;
  background-color: #15201f;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 500ms ease, filter 300ms ease;
}

.collection-card:focus-visible .collection-image {
  filter: brightness(1.04);
}

@media (hover: hover) and (pointer: fine) {
  .collection-card:hover .collection-image {
    transform: scale(1.025);
    filter: brightness(1.08) saturate(1.06);
  }
}

.collection-caption {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: clamp(105px, 7.4vw, 126px);
  padding: 18px 12px 16px;
  background:
    linear-gradient(180deg, rgba(6, 14, 15, 0.96), #020809),
    #020809;
  text-align: center;
}

.collection-caption::before {
  content: "";
  position: absolute;
  inset: -20px 0 auto;
  height: 20px;
  background: linear-gradient(180deg, transparent, rgba(4, 11, 12, 0.95));
  pointer-events: none;
}

.collection-caption strong {
  color: var(--cream);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.08rem, 1.65vw, 1.72rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-transform: uppercase;
}

.collection-caption small {
  margin-top: 19px;
  color: #e5b76d;
  font-size: clamp(0.72rem, 1vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collections-button {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(390px, 100%);
  min-height: 68px;
  margin: 70px auto 0;
  color: #e8b970;
  border: 1px solid #bd8742;
  background-color: #030a0b;
  background-image: linear-gradient(110deg, transparent 0 40%, rgba(255, 239, 205, 0.34) 48%, transparent 56% 100%);
  background-position: 125% 0;
  background-size: 250% 100%;
  background-repeat: no-repeat;
  font-size: clamp(0.82rem, 1.1vw, 1.05rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 220ms ease, border-color 220ms ease, color 220ms ease, background-color 220ms ease, background-position 520ms ease, box-shadow 220ms ease;
}

.collections-button:hover,
.collections-button:focus-visible {
  color: #ffe0a3;
  background-color: #21170e;
  background-position: -25% 0;
  outline: none;
}

.collections-button,
.subscribe-row button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 220ms ease, border-color 220ms ease, color 220ms ease, background-color 220ms ease, background-position 520ms ease, box-shadow 220ms ease;
}

.collections-button::after,
.subscribe-row button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -45%;
  z-index: -1;
  width: 34%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 242, 211, 0.42), transparent);
  transition: left 520ms ease;
}

.collections-button span {
  position: relative;
  z-index: 1;
}

.collections-button::after {
  display: none;
}

.collections-button,
.collections-button:hover,
.collections-button:focus-visible {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.collections-button:focus-visible,
.subscribe-row button:focus-visible {
  outline: 2px solid rgba(255, 224, 163, 0.9);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .collections-button:hover,
  .subscribe-row button:hover {
    transform: translateY(-3px);
    border-color: #f1c77f;
  }

  .collections-button:hover {
    box-shadow:
      0 13px 25px rgba(0, 0, 0, 0.34),
      0 0 22px rgba(211, 157, 83, 0.26);
  }

  .subscribe-row button:hover {
    box-shadow:
      0 13px 25px rgba(0, 0, 0, 0.32),
      0 0 24px rgba(211, 157, 83, 0.3);
  }

  .collections-button:hover::after,
  .subscribe-row button:hover::after {
    left: 118%;
  }
}


.landscapes {
  background-image: linear-gradient(0deg, rgba(3, 9, 12, 0.68), rgba(3, 9, 12, 0.02)), url("assets/collection-landscapes.jpg");
  background-position: center;
}

.night {
  background-image: linear-gradient(0deg, rgba(3, 9, 12, 0.68), rgba(3, 9, 12, 0.02)), url("assets/collection-night-sky.jpg");
  background-position: center;
}

.wild {
  background-image: linear-gradient(0deg, rgba(3, 9, 12, 0.68), rgba(3, 9, 12, 0.02)), url("assets/collection-wildlife.jpg");
  background-position: center;
}

.feminine {
  background-image: linear-gradient(0deg, rgba(3, 9, 12, 0.68), rgba(3, 9, 12, 0.02)), url("assets/collection-feminine.jpg");
  background-position: center;
}

.boudoir {
  background-image: linear-gradient(0deg, rgba(3, 9, 12, 0.68), rgba(3, 9, 12, 0.02)), url("assets/collection-boudoir.jpg");
  background-position: center;
}

.story-strip {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 16%, rgba(183, 127, 60, 0.1), transparent 26%),
    linear-gradient(145deg, #061012, #091416 62%, #071012);
  border-top: 1px solid rgba(223, 189, 131, 0.28);
}

.story-strip > .promise-band {
  padding-top: 30px;
  padding-bottom: 30px;
  background:
    radial-gradient(circle at 20% 0%, rgba(190, 133, 63, 0.14), transparent 34%),
    radial-gradient(circle at 80% 100%, rgba(69, 100, 91, 0.13), transparent 34%),
    linear-gradient(105deg, #081214, #0d1819 48%, #081113);
  border-top-color: rgba(213, 165, 92, 0.2);
  border-bottom-color: rgba(139, 92, 44, 0.32);
}

.about-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  grid-template-rows: minmax(570px, auto) auto;
  gap: 0;
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: clamp(76px, 7vw, 112px) clamp(32px, 5.5vw, 90px) 96px;
}

.about-copy {
  grid-column: 2;
  grid-row: 1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px clamp(42px, 4.4vw, 72px) 126px clamp(54px, 5.2vw, 84px);
  background-image: linear-gradient(135deg, #071113, #091416);
}

.about-kicker,
.prints-kicker {
  display: block;
  margin-bottom: 16px;
  color: #b98950;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.about-copy h2 {
  margin: 0;
  color: var(--gold-light);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(2.15rem, 3vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1.08;
  white-space: nowrap;
  text-transform: uppercase;
}

.about-rule {
  display: block;
  width: 94px;
  height: 1px;
  margin: 26px 0 30px;
  background: linear-gradient(90deg, #d6a45f, rgba(214, 164, 95, 0));
}

.about-copy p {
  max-width: 520px;
  margin: 0 0 34px;
  color: rgba(255, 250, 240, 0.76);
  font-family: Georgia, serif;
  font-size: clamp(0.98rem, 1.15vw, 1.16rem);
  line-height: 1.85;
}

.small-button {
  position: relative;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 52px;
  padding: 0 24px;
  overflow: hidden;
  isolation: isolate;
  color: #e8bb76;
  border: 1px solid rgba(212, 161, 91, 0.78);
  background: rgba(5, 13, 14, 0.56);
  font-size: 0.68rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, border-color 220ms ease, color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.small-button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -45%;
  z-index: -1;
  width: 34%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 242, 211, 0.38), transparent);
  transition: left 520ms ease;
}

.small-button:focus-visible {
  outline: 2px solid rgba(255, 224, 163, 0.9);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .small-button:hover {
    color: #071012;
    transform: translateY(-3px);
    border-color: #f1c77f;
    background: #d3a15f;
    box-shadow:
      0 13px 25px rgba(0, 0, 0, 0.34),
      0 0 24px rgba(211, 157, 83, 0.3);
  }

  .small-button:hover::after {
    left: 118%;
  }
}

.about-photo {
  grid-column: 1;
  grid-row: 1;
  min-height: 570px;
  border: 1px solid rgba(217, 169, 99, 0.72);
  background-image: linear-gradient(90deg, rgba(8, 16, 20, 0.08), rgba(8, 16, 20, 0.12)), url("assets/about-behind-lens.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow:
    20px 22px 0 rgba(190, 137, 73, 0.08),
    0 28px 60px rgba(0, 0, 0, 0.42);
}

.story-strip blockquote {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: center;
  display: grid;
  align-content: center;
  place-items: center;
  width: min(760px, 72%);
  min-height: 225px;
  margin: -92px 0 0;
  padding: 44px 70px;
  color: var(--cream);
  background:
    radial-gradient(circle at 50% 32%, rgba(223, 189, 131, 0.12), transparent 43%),
    linear-gradient(140deg, #182021, #091214 76%);
  border: 1px solid rgba(203, 153, 86, 0.52);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.38);
  text-align: center;
}

.story-strip blockquote::before {
  content: none;
  display: none;
}

.story-strip blockquote p {
  max-width: 630px;
  margin: 0;
  color: #eed8b8;
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.38;
}

.quote-rule {
  position: relative;
  display: block;
  width: 98px;
  height: 15px;
  margin-top: 12px;
  background: none;
}

.quote-rule::before,
.quote-rule::after {
  content: "";
  position: absolute;
  top: 7px;
  width: 37px;
  height: 1px;
  background: rgba(199, 155, 91, 0.56);
}

.quote-rule::before {
  left: 0;
}

.quote-rule::after {
  right: 0;
}

.quote-rule {
  background:
    linear-gradient(0deg, transparent 46%, #c79b5b 47% 53%, transparent 54%),
    linear-gradient(90deg, transparent 46%, #c79b5b 47% 53%, transparent 54%),
    linear-gradient(45deg, transparent 46%, #c79b5b 47% 53%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, #c79b5b 47% 53%, transparent 54%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 13px;
}

.featured-prints {
  position: relative;
  padding: clamp(78px, 7vw, 112px) clamp(32px, 7vw, 116px) clamp(90px, 8vw, 132px);
  color: #2d251d;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 250, 241, 0.72), transparent 42%),
    linear-gradient(120deg, rgba(246, 236, 221, 0.98), rgba(222, 205, 180, 0.96)),
    #eadcc8;
  border-top: 1px solid rgba(117, 79, 39, 0.2);
}

.featured-prints::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(105deg, rgba(83, 55, 28, 0.018) 0 1px, transparent 1px 6px);
}

.compact {
  position: relative;
  z-index: 1;
  align-items: end;
  width: min(1300px, 100%);
  margin: 0 auto 54px;
}

.featured-prints h2 {
  margin: 0;
  color: #6e4c2f;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(2rem, 3.1vw, 3.35rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.1;
  text-transform: uppercase;
}

.compact a {
  margin-bottom: 6px;
  padding: 0 0 8px;
  color: #80552f;
  border-bottom: 1px solid rgba(128, 85, 47, 0.52);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.print-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 76px);
  align-items: end;
  width: min(1300px, 100%);
  margin: 0 auto;
}

.print-frame {
  position: relative;
  display: block;
  aspect-ratio: 0.78;
  border: clamp(12px, 1.2vw, 18px) solid #f5efe6;
  outline: 1px solid rgba(111, 76, 42, 0.18);
  outline-offset: 6px;
  box-shadow:
    0 18px 35px rgba(70, 48, 25, 0.2),
    0 5px 12px rgba(70, 48, 25, 0.14);
  background-image: url("assets/hero-me-replaced.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: default;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.page:not(.home) .site-header,
.single .site-header,
.archive .site-header,
.blog:not(.home) .site-header {
  position: relative;
  padding-bottom: 22px;
  background:
    radial-gradient(circle at 78% 10%, rgba(177, 124, 58, 0.14), transparent 28%),
    linear-gradient(135deg, #071012, #0c1617);
  border-bottom: 1px solid rgba(216, 169, 95, 0.28);
}

.inner-page {
  min-height: 65vh;
  padding: clamp(72px, 7vw, 112px) var(--page-gutter) clamp(90px, 8vw, 132px);
  color: #2f2922;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.72), transparent 38%),
    linear-gradient(120deg, #f7efe4, #e8dbc8);
}

.inner-page-heading {
  display: grid;
  justify-items: center;
  max-width: 1040px;
  margin: 0 auto 54px;
  text-align: center;
}

.inner-page-heading span {
  margin-bottom: 14px;
  color: #9d6d38;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.inner-page-heading h1 {
  color: #68482c;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: 1.05;
  text-shadow: none;
}

.inner-page-heading i {
  width: 100px;
  height: 1px;
  margin-top: 26px;
  background: linear-gradient(90deg, transparent, #aa7540, transparent);
}

.inner-page-content {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 66px);
  color: #40382f;
  background: rgba(255, 251, 244, 0.76);
  border: 1px solid rgba(126, 86, 45, 0.2);
  box-shadow: 0 22px 55px rgba(80, 55, 31, 0.12);
  font-family: Georgia, serif;
  font-size: 1.04rem;
  line-height: 1.85;
}

.inner-page-content > :first-child {
  margin-top: 0;
}

.inner-page-content > :last-child {
  margin-bottom: 0;
}

.inner-page-content img {
  max-width: 100%;
  height: auto;
}

.journal-entry + .journal-entry {
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid rgba(126, 86, 45, 0.24);
}

.journal-entry h2 {
  color: #68482c;
}

@media (hover: hover) and (pointer: fine) {
  .print-frame:hover {
    z-index: 2;
    transform: scale(1.025);
    box-shadow:
      0 28px 48px rgba(70, 48, 25, 0.25),
      0 8px 18px rgba(70, 48, 25, 0.16);
  }
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(390px, 0.88fr) minmax(540px, 1.12fr);
  grid-template-rows: auto auto;
  gap: 34px 56px;
  align-items: start;
  align-content: start;
  min-height: 250px;
  padding: 46px var(--page-gutter) 30px;
  color: rgba(255, 250, 240, 0.8);
  background: #081014;
  border-top: 1px solid rgba(223, 189, 131, 0.22);
}

.subscribe {
  grid-row: 1 / 3;
}

.subscribe label {
  color: var(--gold-light);
  font-family: Cinzel, Georgia, serif;
  font-size: 1.16rem;
  text-transform: uppercase;
}

.subscribe p {
  max-width: 520px;
  margin: 8px 0 18px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.subscribe-row {
  display: grid;
  grid-template-columns: 1fr auto;
  width: min(540px, 100%);
  max-width: none;
  border: 1px solid rgba(223, 189, 131, 0.4);
}

.subscribe-row input {
  min-width: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  min-height: 52px;
  padding: 0 20px;
}

.subscribe-row input::placeholder {
  color: rgba(255, 250, 240, 0.48);
}

.subscribe-row button {
  min-height: 52px;
  padding: 0 30px;
  color: #241b12;
  background: var(--gold);
  border: 0;
  cursor: pointer;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-self: center;
  justify-content: flex-end;
  gap: 16px 14px;
  padding-top: 8px;
  color: var(--cream);
}

.copyright {
  grid-column: 2;
  justify-self: end;
  align-self: start;
  margin: 0;
  font-size: 0.76rem;
  color: rgba(255, 250, 240, 0.48);
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 142px minmax(0, 1fr) 142px;
    gap: 16px;
    padding-inline: 24px;
  }

  .main-nav {
    gap: 16px;
    font-size: 0.68rem;
  }

  .about-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    grid-template-rows: minmax(500px, auto) auto;
    gap: 0 48px;
  }

  .about-photo {
    min-height: 500px;
  }

  .story-strip blockquote {
    width: min(700px, 82%);
  }
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    grid-template-columns: 1fr auto;
    align-items: start;
    padding: 18px 18px 0;
  }

  .brand {
    width: 122px;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: start;
    gap: 13px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    min-height: 80vh;
    align-items: end;
  }

  .hero-bg {
    background-position: 58% center;
  }

  .hero-shade {
    background:
      radial-gradient(ellipse at center, transparent 38%, rgba(2, 5, 5, 0.5) 100%),
      linear-gradient(90deg, rgba(4, 11, 13, 0.82), rgba(4, 11, 13, 0.24)),
      linear-gradient(0deg, rgba(4, 11, 13, 0.82) 0%, rgba(4, 11, 13, 0.06) 62%);
  }

  .hero-content {
    margin: 0;
    width: 100%;
    padding: 168px 20px 42px;
  }

  .hero-content::before {
    inset: 132px 0 18px 0;
    background:
      radial-gradient(circle at 76% 12%, rgba(255, 205, 115, 0.32) 0 1px, transparent 2px),
      radial-gradient(ellipse at 16% 48%, rgba(216, 169, 95, 0.1), transparent 45%),
      linear-gradient(90deg, rgba(1, 6, 8, 0.76), rgba(1, 8, 11, 0.34) 70%, transparent);
  }

  .hero-content::after {
    display: none;
  }

  h1 {
    max-width: 480px;
    font-size: clamp(3rem, 10.5vw, 4.45rem);
  }

  .hero-title-rule {
    width: min(300px, 82%);
  }

  .hero-side,
  .signature {
    display: none;
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    min-width: min(190px, 100%);
    flex: 1 1 170px;
  }

  .promise-band {
    grid-template-columns: 1fr 1fr;
    padding: 24px 16px;
  }

  .promise-band article {
    min-height: 122px;
    padding: 10px;
  }

  .promise-band article + article::before {
    display: none;
  }

  .collections {
    padding: 54px 16px 58px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .collection-grid {
    grid-template-columns: repeat(5, 258px);
    align-items: center;
    margin-inline: -16px;
    padding: 10px 16px 14px;
    overflow-x: auto;
    scroll-padding-inline: 16px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .collection-card {
    height: 430px;
    scroll-snap-align: center;
  }

  .collection-caption {
    min-height: 112px;
  }

  .collections-button {
    min-height: 60px;
    margin-top: 48px;
    letter-spacing: 0.22em;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .about-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(390px, 62vh) auto;
    gap: 0;
    padding: 64px 18px 72px;
  }

  .about-copy {
    grid-column: 1;
    grid-row: 1;
    padding: 0 4px 48px;
  }

  .about-copy h2 {
    font-size: clamp(2rem, 10vw, 3.25rem);
  }

  .about-photo {
    grid-column: 1;
    grid-row: 2;
    min-height: 390px;
    box-shadow: 10px 12px 0 rgba(190, 137, 73, 0.08), 0 22px 44px rgba(0, 0, 0, 0.4);
  }

  .story-strip blockquote {
    grid-column: 1;
    grid-row: 3;
    width: calc(100% - 24px);
    min-height: 205px;
    margin-top: -44px;
    padding: 38px 24px;
  }

  .featured-prints {
    padding: 70px 18px 82px;
  }

  .compact {
    gap: 26px;
    margin-bottom: 38px;
  }

  .print-row {
    grid-template-columns: repeat(3, minmax(250px, 78vw));
    gap: 28px;
    width: auto;
    margin-inline: -18px;
    padding: 8px 24px 26px;
    overflow-x: auto;
    scroll-padding-inline: 24px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .print-frame {
    scroll-snap-align: center;
  }

  .site-footer {
    align-items: start;
  }

  .footer-nav {
    justify-content: start;
  }

  .copyright {
    grid-column: 1;
    justify-self: start;
    margin-top: 0;
  }
}

@media (max-width: 440px) {
  h1 {
    font-size: clamp(2.65rem, 12vw, 3.25rem);
    letter-spacing: 0.025em;
  }

  .eyebrow {
    font-size: 0.62rem;
    gap: 10px;
  }

  .eyebrow::after {
    width: 44px;
  }

  .promise-band {
    grid-template-columns: 1fr;
  }

  .subscribe-row {
    grid-template-columns: 1fr;
  }

  .subscribe-row input {
    min-height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content::after {
    animation: none;
  }

  .button,
  .showreel-link,
  .collection-card,
  .collection-image,
  .print-frame {
    transition: none;
  }
}
