:root {
  --ink: #141414;
  --paper: #efe2cd;
  --paper-bright: #f9edd9;
  --pine: #111d16;
  --pine-2: #1b3025;
  --field: #3f513b;
  --brass: #e7b058;
  --brass-2: #d1a365;
  --rust: #9f4b2d;
  --muted-light: rgba(248, 244, 234, 0.74);
  --muted-dark: rgba(20, 20, 20, 0.72);
  --line-light: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(20, 20, 20, 0.14);
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #0c0f0c;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 70% 12%, rgba(44, 66, 48, 0.3), transparent 30%),
    linear-gradient(180deg, #080b08, #101810 54%, #070907);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 22px clamp(18px, 4vw, 56px);
  color: #f8f4ea;
  background: rgba(8, 14, 10, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 0;
  border-radius: 0;
  backdrop-filter: blur(18px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  font-weight: 900;
}

.brand__mark {
  width: 25px;
  height: 31px;
  color: var(--brass);
  background:
    radial-gradient(circle at 50% 86%, currentColor 0 4px, transparent 5px),
    linear-gradient(75deg, transparent 0 42%, currentColor 43% 50%, transparent 51%),
    linear-gradient(110deg, transparent 0 44%, currentColor 45% 52%, transparent 53%);
  border-bottom: 9px solid currentColor;
  clip-path: polygon(45% 0, 55% 0, 60% 50%, 100% 8%, 82% 78%, 18% 78%, 0 8%, 40% 50%);
}

.site-nav {
  justify-content: center;
  gap: 20px;
  color: rgba(248, 244, 234, 0.78);
  font-size: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--accent {
  color: #15120d;
  background: var(--brass);
}

.button--ghost {
  color: #f8f4ea;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  min-height: 700px;
  margin: 0 auto;
  padding: clamp(46px, 7vw, 92px) clamp(22px, 5vw, 74px);
  color: #f8f4ea;
  background:
    linear-gradient(110deg, rgba(9, 19, 13, 0.97), rgba(22, 44, 33, 0.86) 52%, rgba(7, 11, 8, 0.96)),
    url("assets/charcoal-deer-head.jpeg") center / cover;
  border-radius: 0 0 8px 8px;
  box-shadow: var(--shadow);
}

.hero--cover {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #07100b;
}

.hero__copy {
  min-width: 0;
}

.hero__copy--hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.hero h1 {
  margin: 0 0 14px;
  max-width: 580px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero__subtitle {
  margin: 0 0 24px;
  font-size: clamp(1.22rem, 2vw, 1.85rem);
  font-weight: 900;
}

.hero p:not(.hero__subtitle) {
  max-width: 580px;
  margin: 0;
  color: var(--muted-light);
  font-size: clamp(1.04rem, 1.6vw, 1.24rem);
  line-height: 1.64;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__media {
  position: relative;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  background: #ecebe6;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.hero--cover .hero__media {
  min-height: 0;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 0 0 8px 8px;
  background: #07100b;
  box-shadow: none;
}

.hero__media img {
  object-fit: contain;
}

.hero__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.hero__phone-art {
  display: none;
}

.hero__floating-quote {
  position: absolute;
  z-index: 2;
  top: clamp(42px, 6.2vw, 82px);
  left: clamp(34px, 7.2vw, 112px);
  max-width: min(29vw, 340px);
  margin: 0;
  pointer-events: none;
  color: #f8f4ea;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.45vw, 1.55rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.72);
  opacity: 0;
  transform: translateY(18px);
  animation: heroQuoteFade 7.5s ease-in-out infinite;
}

.hero__real-cta {
  position: absolute;
  left: 48%;
  bottom: 14.2%;
  width: min(25vw, 310px);
  height: clamp(44px, 5.8vw, 74px);
  transform: translateX(-50%);
  overflow: hidden;
  border-radius: 3px;
  color: transparent;
  background: transparent;
}

.hero__real-cta:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 4px;
}

@keyframes heroQuoteFade {
  0%,
  12% {
    opacity: 0;
    transform: translateY(20px);
  }

  30%,
  58% {
    opacity: 1;
    transform: translateY(0);
  }

  82%,
  100% {
    opacity: 0;
    transform: translateY(-18px);
  }
}

.hero__stat {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin: 0;
  color: #16120d;
  background: #e6c27d;
  border-radius: 999px;
  text-align: center;
}

.hero__stat strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 0.84;
}

.hero__stat span {
  max-width: 78px;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.press-band {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 1px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  color: #f8f4ea;
  background: rgba(255, 255, 255, 0.14);
}

.press-band article {
  padding: 28px clamp(22px, 4vw, 42px);
  background: rgba(8, 15, 10, 0.94);
}

.press-band span,
.journal-list span {
  display: block;
  margin-bottom: 9px;
  color: var(--brass-2);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.press-band strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.12;
}

.press-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 72px) clamp(22px, 5vw, 74px);
  color: #f8f4ea;
  background:
    linear-gradient(135deg, rgba(10, 17, 12, 0.98), rgba(20, 35, 25, 0.97)),
    url("assets/charcoal-deer-head.jpeg") center / cover;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.press-feature__media {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: #0a100c;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.press-feature__media img,
.press-feature__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.04);
}

.press-feature__copy > span,
.press-feature__quote small,
.press-feature__note {
  display: block;
  color: var(--brass-2);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.press-feature h2 {
  margin: 12px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4.2vw, 3.9rem);
  line-height: 0.98;
}

.press-feature__copy > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted-light);
  font-size: 1.04rem;
  line-height: 1.72;
}

.press-feature__quote {
  margin: 28px 0 0;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.06);
  border-left: 5px solid var(--rust);
  border-radius: 0 8px 8px 0;
}

.press-feature__quote p {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.12;
}

.press-feature__note {
  color: rgba(248, 244, 234, 0.62);
  line-height: 1.4;
}

.story-section,
.book-section,
.photo-section,
.journal-section,
.contact-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.75fr);
  gap: 34px;
  padding: clamp(52px, 7vw, 90px) clamp(22px, 5vw, 74px);
  background: var(--paper);
}

.story-section h2,
.book-section h2,
.section-heading h2,
.contact-section h2 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.story-section p,
.book-section p,
.section-heading p,
.contact-section p {
  color: var(--muted-dark);
  font-size: 1.04rem;
  line-height: 1.72;
}

.story-section blockquote {
  align-self: center;
  margin: 0;
  padding: 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.05;
  background: var(--paper-bright);
  border-left: 6px solid var(--rust);
  border-radius: 0 8px 8px 0;
}

.story-section cite {
  display: block;
  margin-top: 18px;
  color: rgba(20, 20, 20, 0.56);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 900;
}

.book-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(50px, 7vw, 90px) clamp(22px, 5vw, 74px);
  background:
    radial-gradient(circle at 12% 24%, rgba(231, 176, 88, 0.14), transparent 34%),
    linear-gradient(135deg, #111b14, #17281d 58%, #0d140f);
  color: #f8f4ea;
}

.book-cover {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #efece3;
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
}

.book-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(15, 20, 14, 0.88));
}

.book-cover > img,
.book-cover > video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
}

.book-cover div {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.book-cover span {
  color: rgba(248, 244, 234, 0.74);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.book-cover h2 {
  margin: 10px 0 8px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.book-cover p {
  margin: 0;
  color: #f8f4ea;
  font-weight: 900;
}

.book-section__copy p {
  color: var(--muted-light);
}

.launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}

.text-link {
  color: #f3c67a;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.photo-section {
  padding: clamp(52px, 7vw, 90px) clamp(22px, 5vw, 74px);
  color: #f8f4ea;
  background:
    linear-gradient(180deg, rgba(18, 29, 21, 0.94), rgba(9, 14, 10, 0.98)),
    url("assets/charcoal-deer-head.jpeg") center / cover;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(240px, 0.5fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.photo-section .section-heading p {
  color: var(--muted-light);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 145px;
  gap: 12px;
}

.photo-grid figure {
  position: relative;
  grid-column: span 4;
  grid-row: span 2;
  margin: 0;
  overflow: hidden;
  background: #101710;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
  cursor: zoom-in;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.photo-grid figure:hover,
.photo-grid figure:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(231, 176, 88, 0.48);
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.34);
  outline: none;
}

.photo-grid img,
.photo-grid video {
  display: block;
  width: 100%;
  object-fit: cover;
  height: 310px;
}

.photo-grid figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.photo-grid .photo-grid__large {
  grid-column: 1 / -1;
  grid-row: span 3;
}

.photo-grid .photo-grid__large img,
.photo-grid .photo-grid__large video {
  height: 100%;
  min-height: 0;
  object-position: center center;
}

.photo-viewer {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 36px);
}

.photo-viewer.is-open {
  display: flex;
}

.photo-viewer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 5, 3, 0.88);
  backdrop-filter: blur(8px);
}

.photo-viewer__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(1180px, 100%);
  max-height: min(860px, calc(100vh - 48px));
  color: #f8f4ea;
}

.photo-viewer__media {
  grid-column: 2;
  min-height: 0;
  overflow: hidden;
  background: #050705;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
}

.photo-viewer__media img,
.photo-viewer__media video {
  display: block;
  width: 100%;
  max-height: calc(100vh - 170px);
  object-fit: contain;
  background: #050705;
}

.photo-viewer__media video {
  height: calc(100vh - 170px);
}

.photo-viewer__dialog h3 {
  grid-column: 2;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  line-height: 1.1;
  text-align: center;
}

.photo-viewer__close,
.photo-viewer__nav {
  color: #f8f4ea;
  background: rgba(18, 29, 21, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  cursor: pointer;
}

.photo-viewer__close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 42px;
  height: 42px;
  font-weight: 900;
}

.photo-viewer__nav {
  width: 48px;
  height: 48px;
  font-size: 2.2rem;
  line-height: 1;
}

.photo-viewer__nav--prev {
  grid-column: 1;
}

.photo-viewer__nav--next {
  grid-column: 3;
}

.photo-viewer-open {
  overflow: hidden;
}

.journal-section {
  padding: clamp(52px, 7vw, 90px) clamp(22px, 5vw, 74px);
  color: #f8f4ea;
  background: #111a13;
}

.section-heading--light p {
  color: var(--muted-light);
}

.journal-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  overflow: hidden;
}

.journal-list article {
  min-height: 230px;
  padding: clamp(26px, 4vw, 42px);
  background: #18251c;
}

.journal-list h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.62rem;
  line-height: 1.1;
}

.journal-list p {
  margin: 0;
  color: var(--muted-light);
  line-height: 1.62;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(44px, 6vw, 78px) clamp(22px, 5vw, 74px);
  color: #f8f4ea;
  background:
    linear-gradient(135deg, rgba(21, 38, 28, 0.97), rgba(11, 16, 12, 0.98)),
    url("assets/charcoal-deer-head.jpeg") center / cover;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0 0 8px 8px;
}

.contact-section h2,
.contact-section p {
  margin-bottom: 0;
}

.contact-section p {
  color: var(--muted-light);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px clamp(18px, 4vw, 56px) 46px;
  color: rgba(248, 244, 234, 0.7);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  margin-left: 12px;
  color: var(--brass-2);
  font-weight: 900;
}

.journal-admin-trigger {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: #f8f4ea;
  background: rgba(9, 15, 10, 0.86);
  border: 1px solid rgba(231, 176, 88, 0.36);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
  cursor: pointer;
  opacity: 0.42;
  transition: opacity 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.journal-admin-trigger:hover,
.journal-admin-trigger:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
  border-color: rgba(231, 176, 88, 0.78);
}

.journal-admin-trigger svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.journal-admin {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.journal-admin.is-open {
  display: flex;
}

.journal-admin__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 5, 3, 0.78);
  backdrop-filter: blur(10px);
}

.journal-admin__panel {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  overflow: auto;
  padding: clamp(24px, 4vw, 38px);
  color: #f8f4ea;
  background:
    linear-gradient(145deg, rgba(16, 28, 20, 0.98), rgba(7, 12, 8, 0.98)),
    url("assets/charcoal-deer-head.jpeg") center / cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.58);
}

.journal-admin__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: #f8f4ea;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.journal-admin span {
  display: block;
  margin-bottom: 10px;
  color: var(--brass-2);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.journal-admin h2 {
  margin: 0 44px 14px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
}

.journal-admin p {
  max-width: 620px;
  margin: 0 0 22px;
  color: var(--muted-light);
  line-height: 1.62;
}

.journal-admin label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(248, 244, 234, 0.8);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.journal-admin input[type="password"],
.journal-admin input[type="text"],
.journal-admin textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: #f8f4ea;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font: inherit;
  text-transform: none;
}

.journal-admin textarea {
  min-height: 118px;
  resize: vertical;
  line-height: 1.5;
}

.journal-admin__error {
  color: #f2a06d !important;
  font-weight: 900;
}

.journal-admin__section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.journal-admin__list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.journal-admin__item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.journal-admin__item img,
.journal-admin__item video {
  width: 100%;
  height: 112px;
  border-radius: 6px;
  object-fit: cover;
  background: #050705;
}

.journal-admin__item h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.journal-admin__item label {
  margin-bottom: 0;
}

.journal-admin__field-label {
  margin-bottom: 8px !important;
  color: rgba(248, 244, 234, 0.76) !important;
}

.journal-admin__url-field {
  display: block;
  margin-top: 14px;
}

.journal-admin__hint {
  margin: 10px 0 0;
  color: rgba(248, 244, 234, 0.58);
  font-size: 0.82rem;
  line-height: 1.45;
}

.journal-admin__file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.journal-admin__file-picker {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 38px;
  padding: 9px 12px;
  color: #15120d !important;
  background: var(--brass);
  border: 0;
  border-radius: 6px;
  font-size: 0.86rem !important;
  line-height: 1;
  cursor: pointer;
}

.journal-admin__file-input:focus-visible + .journal-admin__file-picker {
  outline: 3px solid rgba(231, 176, 88, 0.46);
  outline-offset: 3px;
}

.journal-admin__row-actions,
.journal-admin__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.journal-admin__row-actions button {
  min-height: 38px;
  padding: 9px 12px;
  color: #f8f4ea;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

.journal-admin__status {
  min-height: 18px;
  margin: 8px 0 0;
  color: rgba(248, 244, 234, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
}

.journal-admin__add-media,
.journal-admin__subhead {
  grid-column: 1 / -1;
}

.journal-admin__add-media {
  padding: 18px;
  background: rgba(231, 176, 88, 0.08);
  border: 1px solid rgba(231, 176, 88, 0.22);
  border-radius: 8px;
}

.journal-admin__add-media h3,
.journal-admin__subhead h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.journal-admin__subhead {
  margin-top: 8px;
}

.journal-admin__note-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.journal-admin__note-item {
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.journal-admin__note-item h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.journal-admin__note-item label:last-child {
  margin-bottom: 0;
}

.journal-admin__actions {
  justify-content: flex-end;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .site-header,
  .hero,
  .press-feature,
  .story-section,
  .book-section,
  .section-heading,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .press-band,
  .journal-list {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .photo-grid figure {
    grid-column: span 1;
    grid-row: span 1;
  }

  .photo-grid .photo-grid__large {
    grid-column: 1 / -1;
    grid-row: span 2;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .press-band,
  .press-feature,
  .story-section,
  .book-section,
  .photo-section,
  .journal-section,
  .contact-section,
  .site-footer {
    width: 100%;
  }

  .site-header {
    position: static;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 0;
  }

  .brand {
    font-size: 0.88rem;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: flex;
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

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

  .site-nav a {
    flex: 1 0 auto;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 6px;
    font-size: 0.78rem;
    text-align: center;
  }

  .hero {
    min-height: 0;
    padding: 48px 20px 58px;
    border-radius: 0;
  }

  .hero--cover {
    padding: 0;
    background: #07100b;
  }

  .hero--cover .hero__media,
  .hero--cover .hero__floating-quote,
  .hero--cover .hero__real-cta {
    display: none;
  }

  .hero__phone-art {
    display: block;
    width: 100%;
    background: #07100b;
  }

  .hero__phone-art img {
    height: auto;
    object-fit: contain;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 16vw, 4.5rem);
  }

  .hero__media {
    min-height: 390px;
  }

  .hero__stat {
    right: 16px;
    bottom: 16px;
    width: 94px;
    height: 94px;
  }

  .hero__stat strong {
    font-size: 2.45rem;
  }

  .button {
    width: 100%;
  }

  .site-header .button {
    width: auto;
    min-height: 38px;
    padding: 10px 12px;
    font-size: 0.86rem;
  }

  .story-section,
  .press-feature,
  .book-section,
  .photo-section,
  .journal-section,
  .contact-section {
    padding: 46px 20px;
  }

  .press-feature__media {
    min-height: 270px;
  }

  .book-cover {
    min-height: 430px;
  }

  .photo-grid img,
  .photo-grid video,
  .photo-grid__large img,
  .photo-grid__large video {
    height: 100%;
    min-height: 0;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .photo-grid figure,
  .photo-grid .photo-grid__large {
    grid-column: 1;
    grid-row: span 1;
  }

  .photo-grid .photo-grid__large {
    grid-row: span 2;
  }

  .photo-viewer {
    padding: 12px;
  }

  .photo-viewer__dialog {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) auto auto;
    gap: 10px;
    max-height: calc(100vh - 24px);
  }

  .photo-viewer__media {
    grid-column: 1 / -1;
  }

  .photo-viewer__media img,
  .photo-viewer__media video {
    max-height: calc(100vh - 170px);
  }

  .photo-viewer__media video {
    height: calc(100vh - 170px);
  }

  .photo-viewer__nav {
    grid-row: 3;
    width: 100%;
    border-radius: 8px;
  }

  .photo-viewer__nav--prev {
    grid-column: 1;
  }

  .photo-viewer__nav--next {
    grid-column: 2;
  }

  .photo-viewer__dialog h3 {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .photo-viewer__close {
    top: 8px;
    right: 8px;
  }

  .site-footer {
    flex-direction: column;
    padding: 28px 20px 40px;
  }

  .contact-actions {
    justify-content: stretch;
  }

  .contact-actions .button {
    flex: 1 1 100%;
  }

  .site-footer a {
    display: inline-block;
    margin: 8px 0 0;
  }

  .journal-admin {
    padding: 12px;
  }

  .journal-admin__panel {
    max-height: calc(100vh - 24px);
    padding: 24px 18px;
  }

  .journal-admin__item {
    grid-template-columns: 1fr;
  }

  .journal-admin__item img,
  .journal-admin__item video {
    height: 210px;
  }

  .journal-admin__actions .button,
  .journal-admin__locked .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }

  .hero__floating-quote {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
