:root {
  --ink: #17231e;
  --muted: #5b6b63;
  --paper: #f6f1e6;
  --paper-2: #efe6d4;
  --forest: #1b3a2f;
  --forest-2: #24483b;
  --moss: #3d6b54;
  --amber: #c9782b;
  --cream: #fffaf1;
  --line: rgba(23, 35, 30, 0.12);
  --shadow: 0 18px 40px rgba(23, 35, 30, 0.12);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: auto;
  scroll-padding-top: 15px;
}
a.link-glitch {
  animation: linkGlitch 0.28s steps(3);
}
@keyframes linkGlitch {
  0% { transform: none; text-shadow: none; }
  20% {
    transform: translateX(3px);
    text-shadow:
      -4px 0 #ff3b3b,
      4px 0 #3bf0ff,
      -2px 2px rgba(255,255,255,0.7),
      2px -2px #ff3b3b;
  }
  45% {
    transform: translateX(-4px) skewX(-1deg);
    text-shadow:
      6px 0 #3bf0ff,
      -6px 0 #ff3b3b,
      0 3px #3bf0ff,
      0 -3px #ff3b3b,
      3px 1px rgba(255,255,255,0.55);
  }
  70% {
    transform: translateX(2px);
    text-shadow:
      -5px 1px #ff3b3b,
      5px -1px #3bf0ff,
      -3px -2px rgba(255,255,255,0.5),
      3px 2px #3bf0ff;
  }
  100% { transform: none; text-shadow: none; }
}
#about,
#sunnyside,
#latest-film,
#featured-site,
#upcoming,
#subscribe,
#contact,
.section {
  scroll-margin-top: 15px;
}
body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--forest); }
h1, h2, h3, .brand-text, .eyebrow {
  font-family: Fraunces, Georgia, serif;
}
h1, h2, h3 { line-height: 1.15; margin: 0 0 0.6em; }
p { margin: 0 0 1em; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  padding: 8px 12px;
}
.skip:focus { left: 8px; }

.wrap {
  width: min(1080px, 100%);
  padding-inline: 48px;
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 241, 230, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 35, 30, 0.08);
}
.site-header.light-type .brand-text,
.site-header.light-type .brand-text strong,
.site-header.light-type .brand-tag,
.site-header.light-type .site-nav a {
  color: #f6f1e6;
}
.site-header.light-type .brand-text em { color: #efe4c8; }
.site-header.light-type .btn-small {
  color: #f6f1e6;
  border-color: rgba(246, 241, 230, 0.45);
}
.brand-text,
.brand-text strong,
.brand-text em,
.brand-tag,
.site-nav a,
.site-header .btn-small {
  transition: color 0.5s ease, border-color 0.5s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding: 10px 0;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand-logo-wrap {
  position: relative;
  width: 93px;
  height: 93px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.brand-logo-wrap::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  pointer-events: none;
  box-shadow:
    0 0 0 2px #f3e2a0,
    0 0 0 4px #c9a227,
    0 0 0 5px #6e5410,
    0 0 18px 3px rgba(212, 175, 55, 0.9);
  transition: box-shadow 0.5s ease;
}
.site-header.light-type .brand-logo-wrap::after {
  box-shadow:
    0 0 0 2px #fff8d6,
    0 0 0 4px #e4c46a,
    0 0 0 5px #8a6a18,
    0 0 20px 4px rgba(246, 231, 161, 0.95);
}
.brand-logo {
  height: 114px;
  width: 114px;
  margin: -11px;
  object-fit: contain;
  display: none;
  border-radius: 50%;
  clip-path: circle(40.5%);
}
.brand-logo.is-on { display: block; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: var(--paper);
  font-family: Fraunces, serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand-mark.is-off { display: none; }
.brand-text.is-off { display: none; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  color: var(--forest);
}
.brand-text strong {
  font-weight: 700;
  font-size: 1.15rem;
}
.brand-text em {
  font-style: italic;
  color: var(--moss);
  font-weight: 500;
  font-size: 1.05rem;
}
.brand-tag {
  margin-top: 4px;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-toggle {
  display: none;
  border: 0;
  background: var(--cream);
  color: var(--forest);
  padding: 8px 16px;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  box-shadow:
    0 0 0 2px #f3e2a0,
    0 0 0 4px #c9a227,
    0 0 0 5px #6e5410;
}

.btn,
.watch-row,
.social-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
  border: 0;
  box-shadow:
    0 0 0 2px #f3e2a0,
    0 0 0 4px #c9a227,
    0 0 0 5px #6e5410,
    0 4px 10px rgba(110, 84, 16, 0.18);
}
.btn-small { padding: 8px 14px; font-size: 0.9rem; }
.btn-primary {
  background: var(--amber);
  color: #fff;
}
.btn-primary:hover { filter: brightness(1.05); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: 120% auto;
  background-position: center 18%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.hero-bg.is-glitching {
  animation: one-glitch 0.9s steps(3, end);
}
.hero-bg.is-glitching::after {
  animation: one-glitch-flash 0.9s steps(3, end);
}
@keyframes one-glitch {
  0% { filter: none; background-position: center 18%; }
  8% { filter: contrast(2) saturate(0.2) brightness(1.15); background-position: calc(50% + var(--glitch, 18px)) 22%; }
  16% { filter: contrast(2.4) saturate(1.8) brightness(0.85); background-position: calc(50% - var(--glitch, 18px)) 12%; }
  24% { filter: invert(0.15) contrast(1.7); background-position: calc(50% + 22px) 20%; }
  32% { filter: contrast(0.55) brightness(1.45); background-position: center 28%; }
  42% { filter: contrast(2.1) hue-rotate(-25deg) saturate(2); background-position: calc(50% - 26px) 14%; }
  52% { filter: grayscale(1) contrast(1.8) brightness(1.2); background-position: calc(50% + 14px) 24%; }
  62% { filter: contrast(1.9) hue-rotate(35deg) saturate(1.6); background-position: calc(50% - 10px) 16%; }
  74% { filter: contrast(1.4) saturate(0.6); background-position: calc(50% + 8px) 19%; }
  88% { filter: contrast(1.15); background-position: center 18%; }
  100% { filter: none; background-position: center 18%; }
}
@keyframes one-glitch-flash {
  0%, 100% { opacity: 1; }
  10% { opacity: 0.2; }
  14% { opacity: 1; }
  22% { opacity: 0.35; }
  28% { opacity: 1; }
  48% { opacity: 0.15; }
  55% { opacity: 1; }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 28, 22, 0.28) 0%, rgba(18, 28, 22, 0.18) 38%, rgba(12, 18, 16, 0.82) 100%),
    linear-gradient(90deg, rgba(12, 18, 16, 0.35) 0%, transparent 42%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding: 64px 48px 72px !important;
  box-sizing: border-box;
  text-align: left;
  opacity: 1 !important;
}
.eyebrow {
  font-family: Oswald, "Arial Narrow", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--amber);
}
.hero .eyebrow {
  color: #f3d3a4;
  margin-bottom: 18px;
  padding-left: 0;
}
.hero h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.75rem);
  max-width: 16ch;
  margin: 0 0 22px;
  font-weight: 500;
  letter-spacing: -0.035em;
  padding-left: 14px;
  border-left: 2px solid #c9782b;
}
.hero-line {
  display: block;
  line-height: 1.08;
  opacity: 0;
  transform: translateY(10px);
  animation: rise 0.7s ease forwards;
}
.hero-line:nth-child(2) { animation-delay: 0.12s; font-style: italic; font-weight: 500; }
.hero-line:nth-child(3) { animation-delay: 0.24s; }
@keyframes rise {
  to { opacity: 1; transform: none; }
}
.lede {
  max-width: 46ch;
  font-size: 1.02rem;
  color: rgba(255,255,255,0.88);
  padding-left: 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  padding-left: 0;
}

.stats {
  background: var(--paper);
  padding: 0 0 8px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -28px;
  padding: 0 0 12px;
  position: relative;
  z-index: 2;
}
.stat {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: block;
  text-decoration: none;
  color: inherit;
  background-color: #efe4c8;
  border-radius: 18px;
  padding: 24px 22px 22px;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--tile-image);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}
.stat.has-photo::before { opacity: 0.16; }
.stat.has-photo:hover::before { opacity: 0.42; }
.stat:hover { transform: translateY(-3px); box-shadow: 0 22px 40px rgba(23, 35, 30, 0.16); }
.stat strong,
.stat span { position: relative; z-index: 1; }
.stats strong {
  display: block;
  font-family: Fraunces, serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: #1b3a2f !important;
}
.stats span {
  color: #3d6b54 !important;
  font-size: 0.95rem;
  line-height: 1.55;
}

.gallery-wrap {
  position: relative;
  margin-top: 14px;
  overflow: visible;
  background-image:
    url("images/film-holes.svg"),
    url("images/film-holes.svg"),
    url("images/film-stock.jpg");
  background-repeat: repeat-x, repeat-x, no-repeat;
  background-position: left 6px, left calc(100% - 6px), center;
  background-size: 26px 11px, 26px 11px, cover;
  padding: 16px 44px 14px;
  border-radius: 2px;
  box-shadow:
    inset 0 0 0 1px #3a2414,
    0 8px 18px rgba(40, 20, 8, 0.22);
}
.gallery-grid {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: none;
  scroll-behavior: auto;
  padding: 6px 0;
  -webkit-overflow-scrolling: touch;
}
.gallery-grid::-webkit-scrollbar { height: 6px; }
.gallery-grid::-webkit-scrollbar-thumb { background: #c9a227; border-radius: 99px; }
.gallery-item {
  flex: 0 0 108px;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
  background: #0c0c0c;
  padding: 5px;
  box-shadow: 0 0 0 1px #2e2e2e;
  scroll-snap-align: start;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #c9a227;
  color: #161616;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.gallery-nav#gallery-prev { left: 10px; }
.gallery-nav#gallery-next { right: 10px; }
.gallery-nav:hover { background: #fffaf1; }
.gallery-all-link {
  margin: 10px 0 0;
  text-align: right;
}
.gallery-all-link button {
  background: none;
  border: 0;
  padding: 0;
  color: var(--amber);
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  cursor: pointer;
}
.gallery-all-link button:hover { color: var(--forest); }
.gallery-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(20, 14, 8, 0.88);
  padding: 28px 18px;
  overflow: auto;
}
.gallery-overlay-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-overlay-close {
  display: block;
  margin: 0 0 16px auto;
  background: #c9a227;
  color: #161616;
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 700;
}
.gallery-collage {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
}
.gallery-collage a { display: block; }
.gallery-collage img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 4px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.section { padding: 84px 0; }
.section.tint { background: var(--paper-2); }
.site-banner {
  height: 148px;
  max-width: 720px;
  background-size: cover;
  background-position: center 78%;
  margin: 12px 0 22px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(23, 35, 30, 0.12);
  filter: saturate(0.92) contrast(1.04) brightness(0.96);
}
.section-intro { max-width: 70ch; font-size: 1.08rem; }
.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.quote-card blockquote {
  margin: 0 0 16px;
  font-family: Fraunces, serif;
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.35;
}
.muted { color: var(--muted); font-size: 0.92rem; }

.watch-row {
  margin: 0 0 16px;
  gap: 10px;
  color: var(--ink);
  background: var(--cream);
  padding: 8px 18px 8px 10px;
}
.watch-row:hover { filter: brightness(1.03); }
.yt-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 32px 0;
}
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  padding-top: 8px;
}
.facts span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.clip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}
.clip-card p { margin: 8px 0 0; font-weight: 700; }
.clip-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  box-shadow:
    0 0 0 2px #f3e2a0,
    0 0 0 4px #c9a227,
    0 0 0 5px #6e5410;
}
.clip-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.subscribe {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 32px;
  align-items: center;
}
.subscribe-actions {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.subscribe-actions .btn {
  min-width: 230px;
  text-align: center;
}
.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-outline:hover { background: rgba(27, 58, 47, 0.06); }
#notify-line { max-width: 58ch; margin-top: 16px; }
.contact {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  align-items: center;
}
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.contact-ghost {
  color: var(--forest) !important;
  border-color: var(--forest);
  background: transparent;
}
.footer-contact {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 28px 48px;
  align-items: center;
  padding: 8px 0 22px;
}
#socials:empty,
#contact-links:empty { display: none; }
.footer-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}
.site-footer .eyebrow { color: #e8b86a; }
.site-footer h2 { color: #fffaf1; margin-bottom: 0.4em; }
.site-footer #contact-text { color: rgba(246,241,230,0.88); margin: 0 0 4px; }
.site-footer #contact-email,
.site-footer #contact-enquiries {
  color: rgba(246,241,230,0.92);
  margin: 0 0 12px;
  line-height: 1.4;
}
.site-footer #contact-email a,
.site-footer #contact-enquiries a { color: #f3d3a4; }
.site-footer .footer-name { margin-top: 6px; }

.site-banner {
  overflow: hidden;
}
.site-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}
.site-banner.is-upcoming {
  position: relative;
}
.site-banner.is-upcoming img {
  opacity: 0.82;
  filter: saturate(0.8) contrast(1.08) blur(0.35px);
  transform: perspective(700px) rotateY(-1.6deg) scale(1.06);
}
.site-banner.is-upcoming::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 241, 230, 0.22);
  pointer-events: none;
}

.site-footer {
  background: var(--forest);
  background-size: cover;
  background-position: center;
  color: var(--paper);
  padding: 48px 0 28px;
}
.site-footer .wrap {
  padding-inline: 48px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.site-footer a { color: #f3d3a4; }
.footer-name {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.35rem;
  margin: 0 0 8px;
  color: var(--paper);
}
.footer-name strong { color: var(--paper); font-weight: 700; }
.footer-name em { color: #c5d5c8; font-style: italic; font-weight: 500; }
.footer-socials {
  display: flex;
  align-items: stretch;
  gap: 18px;
  flex-wrap: nowrap;
  justify-content: flex-end;
  background: rgba(255,250,241,0.94);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow:
    0 0 0 2px #f3e2a0,
    0 0 0 4px #c9a227;
}
.footer-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: #fff;
  padding: 8px;
  border-radius: 12px;
}
.footer-qr img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  background: #fff;
}
.footer-qr span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1b3a2f;
}
.footer-qr[hidden] { display: none; }
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.social-chip {
  background: var(--cream);
  color: var(--forest) !important;
  padding: 8px 16px;
  font-size: 0.88rem;
}
.social-chip:hover { filter: brightness(1.03); }
.footer-meta {
  display: block;
  padding-top: 14px;
  border-top: 1px solid rgba(246, 241, 230, 0.12);
}
.legal-line {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(246,241,230,0.72);
  text-align: left;
}
.legal-line strong { font-weight: 700; color: rgba(246,241,230,0.88); }
.legal-line em { font-style: italic; font-weight: 500; color: #c5d5c8; }
.legal-dot { margin: 0 0.45em; opacity: 0.55; }
#footer-domain { display: none; }
.legal {
  font-size: 0.78rem;
  color: rgba(246, 241, 230, 0.62);
}

@media (max-width: 800px) {
  .wrap {
    padding-inline: 18px;
  }
  .hero-inner {
    padding: 28px 18px 40px !important;
  }
  .hero h1 {
    font-size: 1.55rem;
    max-width: none;
    padding-left: 10px;
  }
  .lede {
    font-size: 0.95rem;
    max-width: none;
  }
  .nav-toggle {
    display: inline-flex;
    border: 0;
    background: var(--cream);
    color: var(--forest);
    box-shadow:
      0 0 0 2px #f3e2a0,
      0 0 0 4px #c9a227,
      0 0 0 5px #6e5410;
  }
  .site-nav {
    display: none;
    position: absolute;
    inset: 72px 20px auto;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .stats-grid,
  .split,
  .feature-grid,
  .subscribe,
  .contact,
  .facts,
  .footer-inner,
  .footer-contact {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .subscribe-actions { text-align: left; align-items: flex-start; }
  .footer-aside, .contact-links { align-items: flex-start; justify-content: flex-start; }
  .clip-grid { grid-template-columns: 1fr; }
  .gallery-item { flex-basis: 96px; }
  .hero { min-height: 78vh; }
  .hero-bg {
    background-attachment: scroll;
    background-size: cover;
    background-position: center 22%;
  }
  .brand-tag { display: none; }
  .brand-logo-wrap {
    height: 72px;
    width: 72px;
  }
  .brand-logo {
    height: 90px;
    width: 90px;
    margin: -9px;
  }
  .stats-grid { margin-top: -16px; }
}
