/*
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.0.0
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);
}

* {
  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: 190px 1fr 34px;
  align-items: start;
  gap: 28px;
  padding: 24px clamp(42px, 5.2vw, 108px) 0;
  pointer-events: none;
}

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

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

.brand::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -10px;
  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: screen;
  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: 0;
  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:
    drop-shadow(0 0 5px rgba(255, 216, 143, 0.58))
    drop-shadow(0 0 14px rgba(236, 164, 73, 0.34));
  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:
    drop-shadow(0 0 8px rgba(255, 224, 163, 0.82))
    drop-shadow(0 0 18px rgba(236, 164, 73, 0.52));
  transform: translateY(-1px);
}

.bag-icon {
  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-me-replaced.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
}

.hero-shade {
  z-index: -1;
  background:
    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(470px, calc(100% - 44px));
  margin-left: clamp(42px, 5.7vw, 124px);
  padding-top: 86px;
}

.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 {
  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);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.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: clamp(28px, 4vw, 78px);
  top: 52%;
  display: grid;
  justify-items: center;
  gap: 19px;
  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 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 16px clamp(24px, 5.6vw, 110px) 14px;
  color: #25211c;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.74), transparent 28%),
    radial-gradient(circle at 88% 90%, rgba(190, 145, 88, 0.12), transparent 30%),
    linear-gradient(105deg, #fbf4eb, #eadfce 62%, #f7efe3);
}

.promise-band article {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 4px;
  min-height: 82px;
  padding: 0 24px;
  text-align: center;
}

.promise-band article + article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  bottom: 9px;
  width: 1px;
  background: rgba(139, 104, 63, 0.22);
}

.promise-band h2 {
  font-size: 0.68rem;
  line-height: 1.2;
  color: #5e4528;
}

.promise-band p {
  max-width: 158px;
  margin: 0;
  color: #342d27;
  font-size: 0.6rem;
  line-height: 1.48;
}

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

.promise-icon {
  display: block;
  width: 30px;
  height: 30px;
  color: #9d7442;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.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(157, 116, 66, 0.18);
}

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

.compass-center {
  fill: rgba(157, 116, 66, 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;
  padding: 34px clamp(32px, 4.2vw, 58px) 30px;
  overflow: hidden;
  border-top: 1px solid rgba(199, 155, 91, 0.28);
  border-bottom: 1px solid rgba(199, 155, 91, 0.24);
}

.collections::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 196, 98, 0.15), transparent 2px),
    radial-gradient(circle at 96% 56%, rgba(255, 196, 98, 0.12), transparent 2px),
    radial-gradient(circle at 88% 80%, rgba(255, 196, 98, 0.1), transparent 1.5px);
}

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

.section-heading h2 {
  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;
}

.section-heading p {
  margin: 10px 0 0;
  color: rgba(255, 250, 240, 0.72);
  font-family: Georgia, serif;
  font-size: 0.9rem;
}

.heading-rule {
  position: relative;
  display: block;
  width: 100px;
  height: 13px;
  margin-top: 8px;
}

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

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

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

.heading-rule {
  background:
    linear-gradient(0deg, transparent 44%, #d8a95f 45% 55%, transparent 56%),
    linear-gradient(90deg, transparent 44%, #d8a95f 45% 55%, transparent 56%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  align-items: end;
  padding: 18px 0 8px;
}

.collection-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: clamp(180px, 18.4vw, 250px);
  padding: clamp(16px, 1.8vw, 26px);
  overflow: hidden;
  border: 1px solid rgba(223, 189, 131, 0.36);
  border-radius: 4px;
  background-color: #142020;
  background-image: linear-gradient(0deg, rgba(3, 9, 12, 0.7) 0%, rgba(3, 9, 12, 0.02) 68%), url("assets/collection-landscapes.jpg");
  background-size: cover;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
  outline: 1px solid rgba(255, 216, 143, 0.08);
  transition: transform 230ms ease, border-color 230ms ease, box-shadow 230ms ease, filter 230ms ease, outline-color 230ms ease;
}

.collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(3, 9, 12, 0.86) 0%, rgba(3, 9, 12, 0.28) 48%, rgba(3, 9, 12, 0.08) 100%);
  transition: background 210ms ease;
}

.collection-card:hover,
.collection-card:focus-visible,
.collection-card.is-active {
  transform: translateY(-24px) scale(1.025);
  border-color: rgba(255, 224, 163, 0.92);
  outline-color: rgba(255, 224, 163, 0.42);
  box-shadow:
    0 28px 54px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 216, 143, 0.24),
    0 0 28px rgba(255, 196, 98, 0.46),
    0 0 58px rgba(199, 128, 48, 0.32);
  filter: saturate(1.18) brightness(1.18);
}

.collection-card:hover::before,
.collection-card:focus-visible::before,
.collection-card.is-active::before {
  background:
    linear-gradient(0deg, rgba(3, 9, 12, 0.62) 0%, rgba(3, 9, 12, 0.12) 48%, rgba(3, 9, 12, 0) 100%);
}

.collection-card span {
  position: relative;
  z-index: 1;
  color: var(--gold-light);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.05rem, 1.45vw, 1.55rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.collection-card small {
  position: relative;
  z-index: 1;
  margin-top: 2px;
  color: rgba(255, 250, 240, 0.8);
  font-size: clamp(0.66rem, 0.75vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.collection-icon {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  color: #d8a95f;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  filter: drop-shadow(0 0 8px rgba(216, 169, 95, 0.36));
}

.collection-card b {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: #f0c27e;
  border: 1px solid rgba(240, 194, 126, 0.64);
  border-radius: 50%;
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 400;
}


.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 {
  display: grid;
  grid-template-columns: 1.1fr 1.45fr 1.05fr 1.55fr;
  min-height: 190px;
  border-top: 1px solid rgba(223, 189, 131, 0.28);
}

.about-copy,
.about-photo,
.story-strip blockquote,
.featured-prints {
  min-height: 150px;
}

.about-copy {
  padding: 18px 28px 16px clamp(42px, 5.7vw, 96px);
  background:
    linear-gradient(90deg, #071011 0%, #0b1213 78%, rgba(11, 18, 19, 0.92) 100%);
}

.about-copy h2,
.featured-prints h2 {
  color: var(--gold-light);
  font-size: 0.98rem;
}

.about-copy p {
  max-width: 355px;
  margin: 10px 0 12px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.62rem;
  line-height: 1.55;
}

.small-button {
  display: inline-flex;
  padding: 7px 13px;
  color: #241b12;
  background: var(--gold);
  font-size: 0.56rem;
}

.about-photo {
  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;
}

.story-strip blockquote {
  display: grid;
  align-content: center;
  place-items: center;
  margin: 0;
  padding: 22px 28px;
  color: var(--cream);
  background:
    radial-gradient(circle at 50% 35%, rgba(223, 189, 131, 0.08), transparent 42%),
    linear-gradient(140deg, #171c1d, #0b1214);
  text-align: center;
}

.story-strip blockquote::before {
  content: "\201C";
  display: block;
  margin-bottom: 4px;
  color: #c79b5b;
  font-family: Georgia, serif;
  font-size: 1.6rem;
  line-height: 1;
}

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

.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 {
  padding: 18px clamp(20px, 5vw, 68px);
  color: #2d251d;
  background:
    linear-gradient(90deg, rgba(246, 236, 221, 0.9), rgba(222, 205, 180, 0.92)),
    #eadcc8;
}

.compact {
  margin-bottom: 12px;
}

.compact a {
  color: #936a3f;
  font-size: 0.66rem;
}

.print-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(70px, 1fr));
  gap: clamp(10px, 2vw, 24px);
  align-items: end;
}

.print-frame {
  display: block;
  aspect-ratio: 0.75;
  border: 8px solid #efe9df;
  box-shadow: 0 6px 18px rgba(70, 48, 25, 0.22);
  background-image: url("assets/hero-me-replaced.jpg");
  background-size: cover;
}

.print-one {
  background-position: 77% 45%;
}

.print-two {
  background-image: url("assets/me.jpg");
  background-position: center;
}

.print-three {
  background-position: 60% center;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1.35fr;
  gap: 28px;
  align-items: center;
  padding: 18px clamp(20px, 5.6vw, 96px) 20px;
  color: rgba(255, 250, 240, 0.8);
  background: #081014;
  border-top: 1px solid rgba(223, 189, 131, 0.22);
}

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

.subscribe p {
  margin: 5px 0 11px;
  font-size: 0.78rem;
  line-height: 1.45;
}

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

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

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

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

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 14px 20px;
  color: var(--cream);
}

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

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

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

  .story-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@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-inline: 16px;
  }

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

  .collection-grid {
    grid-template-columns: repeat(5, minmax(142px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .collection-card {
    min-height: 104px;
  }

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

  .about-copy,
  .featured-prints {
    padding-inline: 18px;
  }

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

  .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 {
    transition: none;
  }
}
