:root {
  --ink: #0b0d0c;
  --ink-soft: #121614;
  --paper: #f4f0e7;
  --paper-strong: #fffdf8;
  --text: #f9f7f0;
  --muted: #b8b9b3;
  --line: rgba(255, 255, 255, 0.14);
  --orange: #d8020f;
  --orange-light: #f02a34;
  --green: #283c31;
  --max-width: 1120px;
  --radius: 1.25rem;
  --shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.24);
  --sans: "Manrope", "Segoe UI", Arial, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--orange-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 999;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--paper-strong);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2.5rem), var(--max-width));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--orange-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.section-light {
  background: var(--paper);
  color: #171a18;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.65fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}

.section-title {
  max-width: 16ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.section-title.small {
  font-size: clamp(2.35rem, 4vw, 3.7rem);
}

.lead {
  max-width: 43rem;
  margin: 0;
  color: #555b57;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(11, 13, 12, 0.14);
  background: #fff;
}

.header-inner {
  min-height: 8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 3.15rem;
  height: 3.15rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50% 50% 46% 54%;
  color: var(--orange-light);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transform: rotate(-3deg);
}

.brand-name {
  color: white;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.08;
  text-transform: uppercase;
}

.brand-logo {
  width: auto;
  object-fit: contain;
}

.brand-logo.fox {
  width: 12rem;
  height: auto;
  border: 0;
  border-radius: 0;
  background: white;
}

.brand-logo.text {
  height: 3.2rem;
  margin-left: -0.35rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-links a {
  position: relative;
  color: rgba(11, 13, 12, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(11, 13, 12, 0.3);
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: white;
}

.menu-btn {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(11, 13, 12, 0.28);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 1.1rem;
  height: 1px;
  margin: auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before { top: -0.35rem; }
.menu-icon::after { top: 0.35rem; }

.menu-btn[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-btn[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-btn[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(38rem, 72svh, 43rem);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  transform: scale(1.025);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 6, 5, 0.83) 0%, rgba(4, 6, 5, 0.52) 45%, rgba(4, 6, 5, 0.14) 76%),
    linear-gradient(0deg, rgba(4, 6, 5, 0.9) 0%, transparent 55%);
}

.hero-content {
  padding-block: 10.5rem 3.5rem;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 2.4rem;
  height: 2px;
  background: var(--orange);
}

.hero h1 {
  max-width: 15ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 8.5vw, 7.8rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.88;
  text-wrap: balance;
}

.hero h1.hero-title-long {
  max-width: 19ch;
  font-size: clamp(3.15rem, 5.2vw, 5.15rem);
  line-height: 0.95;
}

.hero-copy {
  max-width: 36rem;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.4rem;
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-contact-links a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  transition: color 180ms ease, border-color 180ms ease;
}

.hero-contact-links a:hover {
  border-color: var(--orange-light);
  color: white;
}

.btn {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  color: white;
}

.btn-primary:hover {
  background: var(--orange-light);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(9, 12, 10, 0.35);
  color: white;
  backdrop-filter: blur(8px);
}

.btn-dark {
  background: var(--ink);
  color: white;
}

.arrow {
  font-size: 1.15em;
  line-height: 1;
}

.trust-bar {
  border-top: 1px solid var(--line);
  background: #090b0a;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 1.35rem 0;
  list-style: none;
}

.trust-list li {
  padding-inline: 1.25rem;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.trust-list li:last-child {
  border: 0;
}

.positioning-strip {
  padding-block: clamp(3.25rem, 5vw, 4.75rem);
  background: var(--ink-soft);
  text-align: center;
}

.positioning-strip h2 {
  max-width: 23ch;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.65rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
}

.positioning-strip h2 span {
  color: var(--orange-light);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.75fr);
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.intro-copy p:not(.eyebrow) {
  max-width: 41rem;
  color: #4f5651;
  font-size: 1.05rem;
}

.intro-copy .lead {
  margin-bottom: 1.5rem;
  color: #2f3531;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 600;
}

.feature-panel {
  position: relative;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--green);
  color: white;
  box-shadow: var(--shadow);
}

.feature-panel::before {
  content: "Local / On set";
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-panel h3 {
  max-width: 12ch;
  margin: 3rem 0 0.75rem;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.feature-panel > p {
  color: rgba(255, 255, 255, 0.7);
}

.check-list {
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.8rem;
  padding-block: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.check-list li::before {
  content: "✓";
  color: var(--orange-light);
  font-weight: 900;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  overflow: hidden;
}

.service-card {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: var(--ink-soft);
}

.service-number {
  color: var(--orange-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card h3 {
  max-width: 8ch;
  margin: auto 0 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 600;
  line-height: 0.95;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.video-card {
  position: relative;
  min-width: 0;
  margin: 0;
  padding-bottom: 0.75rem;
}

.video-card::after {
  content: "";
  position: absolute;
  top: 1.25rem;
  right: -0.75rem;
  width: 42%;
  aspect-ratio: 1;
  z-index: 0;
  border: 1px solid rgba(216, 2, 15, 0.28);
  border-radius: 1.5rem;
  background: rgba(216, 2, 15, 0.06);
}

.video-card-facebook {
  grid-column: 1 / -1;
  width: min(100%, 23rem);
  justify-self: center;
}

.video-card-facebook .video-frame {
  aspect-ratio: 9 / 16;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: #050505;
  box-shadow: var(--shadow);
  z-index: 1;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame-portrait {
  aspect-ratio: 9 / 16;
}

.video-credit {
  margin-top: 0.85rem;
  color: #666d68;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
  overflow-wrap: anywhere;
}

.video-credit a {
  text-decoration: underline;
  text-decoration-color: rgba(216, 2, 15, 0.35);
  text-underline-offset: 0.2rem;
}

.video-credit a:hover {
  color: var(--orange);
}

.location-band {
  position: relative;
  min-height: 30rem;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  background: url("../../MoutainViews.png") center / cover no-repeat;
}

.location-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(5, 7, 6, 0.93), rgba(5, 7, 6, 0.12) 75%);
}

.location-content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 4rem;
}

.location-content h2 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.process-step {
  padding-top: 1.3rem;
  border-top: 2px solid #d4cfc4;
}

.process-step span {
  color: #a8000b;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-step h3 {
  margin: 1.7rem 0 0.65rem;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.process-step p {
  margin: 0;
  color: #5e635f;
}

.cta-section {
  padding-block: clamp(4rem, 6vw, 5.5rem);
  background: var(--orange);
  color: white;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.cta-grid h2 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5.3vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.cta-details p {
  max-width: 34rem;
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
}

.contact-list {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.contact-list a {
  width: fit-content;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(27, 14, 8, 0.35);
  text-underline-offset: 0.25rem;
}

.contact-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid rgba(27, 14, 8, 0.2);
  border-radius: 1rem;
  background: rgba(27, 14, 8, 0.2);
}

.contact-fact {
  min-width: 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.16);
}

.contact-fact span {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-fact strong,
.contact-fact a {
  display: block;
  overflow-wrap: anywhere;
  font-size: 0.85rem;
  font-weight: 800;
}

.footer {
  padding-block: 2.5rem;
  background: #070908;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer a:hover {
  color: white;
}

/* About page */
.about-hero {
  padding-block: 9rem clamp(4rem, 6vw, 5.25rem);
  background:
    radial-gradient(circle at 82% 30%, rgba(216, 2, 15, 0.22), transparent 30rem),
    linear-gradient(135deg, #0b0d0c 0%, #18221c 100%);
}

.about-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.5fr);
  gap: 3rem;
  align-items: end;
}

.about-hero h1 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 6.5vw, 5.75rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.about-hero-note {
  max-width: 27rem;
  margin: 0;
  padding-left: 1.25rem;
  border-left: 2px solid var(--orange);
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.about-story {
  background: var(--paper);
  color: #171a18;
}

.story-row {
  display: grid;
  gap: clamp(3rem, 7vw, 5.75rem);
  align-items: start;
  padding-block: clamp(4.5rem, 7vw, 6.5rem);
}

.story-row-image-right {
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.62fr);
}

.story-row-image-left {
  grid-template-columns: minmax(17rem, 0.62fr) minmax(0, 1fr);
}

.story-row + .story-row {
  border-top: 1px solid #d8d2c7;
}

.story-row-image-right .story-image {
  grid-column: 2;
  grid-row: 1;
}

.story-row-image-right .story-copy {
  grid-column: 1;
  grid-row: 1;
}

.story-image {
  position: relative;
  width: 100%;
  max-width: 27rem;
  margin: 0;
}

.story-video {
  max-width: 20rem;
}

.story-video::after {
  right: -1.2rem;
  bottom: 2.5rem;
  width: 72%;
  height: auto;
  aspect-ratio: 1;
  border-color: rgba(216, 2, 15, 0.3);
  border-radius: 1.5rem;
  background: rgba(216, 2, 15, 0.06);
}

.story-row-image-left .story-video::after {
  right: auto;
  left: -1.2rem;
}

.story-video .video-frame {
  position: relative;
  z-index: 1;
}

.story-row-image-right .story-image {
  justify-self: end;
}

.story-image::after {
  content: "";
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: 55%;
  height: 55%;
  z-index: 0;
  border: 1px solid rgba(72, 84, 76, 0.4);
  border-radius: var(--radius);
}

.story-row-image-left .story-image::after {
  right: auto;
  left: -1rem;
}

.story-image.story-video::after {
  right: -1.2rem;
  bottom: 2.5rem;
  width: 72%;
  height: auto;
  aspect-ratio: 1;
  border-color: rgba(216, 2, 15, 0.3);
  border-radius: 1.5rem;
  background: rgba(216, 2, 15, 0.06);
}

.story-row-image-left .story-image.story-video::after {
  right: auto;
  left: -1.2rem;
}

.story-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.story-image figcaption {
  position: relative;
  z-index: 2;
  margin-top: 1rem;
  color: #747972;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-image .video-credit {
  margin-top: 0.85rem;
  color: #666d68;
  font-size: 0.7rem;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.story-copy h2 {
  max-width: 13ch;
  margin: 0 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(2.55rem, 4vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.story-copy p {
  max-width: 43rem;
  margin: 0 0 1.2rem;
  color: #4f5651;
  font-size: 1.04rem;
}

.story-copy p:last-child {
  margin-bottom: 0;
}

.founder-signoff {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #d8d2c7;
}

.founder-signoff strong {
  display: block;
  color: #171a18;
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 1;
}

.founder-signoff span {
  color: #9f1019;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.belief-band {
  padding-block: clamp(4.5rem, 7vw, 6.5rem);
  background: var(--green);
  text-align: center;
}

.belief-band blockquote {
  max-width: 18ch;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.93;
}

.belief-band blockquote::before {
  content: "“";
  display: block;
  height: 0.65em;
  color: var(--orange-light);
  font-size: 1.5em;
}

/* Inner pages */
.page-hero {
  padding-block: 13rem 5.5rem;
  background:
    radial-gradient(circle at 82% 35%, rgba(216, 2, 15, 0.24), transparent 28rem),
    linear-gradient(135deg, #0b0d0c, #17221c);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.5fr);
  gap: 3rem;
  align-items: end;
}

.page-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 6.5vw, 5.75rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.page-hero-copy {
  max-width: 30rem;
  margin: 0;
  padding-left: 1.25rem;
  border-left: 2px solid var(--orange);
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.video-library {
  background: var(--paper);
  color: #171a18;
}

.video-library-wide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.video-library-subhead {
  margin: clamp(4rem, 7vw, 6rem) 0 2rem;
  font-family: var(--display);
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1;
}

.video-library-vertical {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.video-library-vertical .video-card {
  width: min(100%, 22rem);
  justify-self: center;
}

.location-heading-lockup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
}

.location-heading-mark {
  width: clamp(7rem, 11vw, 9.5rem);
  height: auto;
  justify-self: end;
  margin-bottom: 0.25rem;
}

.location-reel-groups {
  display: grid;
  gap: clamp(4rem, 8vw, 7rem);
}

.location-reel-group {
  padding-top: 2rem;
  border-top: 1px solid #d5d0c5;
}

.location-reel-title {
  margin: 0 0 2rem;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.location-reel-title a {
  text-decoration: underline;
  text-decoration-color: rgba(216, 2, 15, 0.3);
  text-underline-offset: 0.25rem;
}

.location-reel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.65fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.location-reel-single {
  margin-inline: auto;
}

.location-reel-wide {
  width: min(100%, 48rem);
}

.location-reel-portrait {
  width: min(100%, 22rem);
}

.contact-section {
  background: var(--paper);
  color: #171a18;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(25rem, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 2rem;
}

.contact-intro h2 {
  max-width: 12ch;
  margin: 0 0 1.25rem;
  font-family: var(--display);
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 600;
  line-height: 0.96;
}

.contact-intro > p {
  max-width: 34rem;
  color: #58605b;
}

.contact-direct {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #d5d0c5;
}

.contact-direct span {
  display: block;
  color: #7b817d;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-direct a,
.contact-direct strong {
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-identity-card {
  display: grid;
  grid-template-columns: minmax(8rem, 0.72fr) minmax(0, 1.28fr);
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid #ded8cd;
  border-radius: 1rem;
  background: white;
  box-shadow: 0 1rem 3rem rgba(36, 29, 23, 0.1);
}

.contact-identity-mark {
  display: grid;
  place-items: center;
  padding: 1.25rem;
  border-right: 2px solid var(--orange);
}

.contact-identity-mark img {
  width: 100%;
  height: auto;
}

.contact-identity-details {
  min-width: 0;
  padding: 1.5rem;
}

.contact-identity-name {
  margin: 0 0 1.35rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--orange);
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-identity-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-identity-list li {
  min-width: 0;
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  gap: 0.6rem;
  align-items: center;
}

.contact-identity-list a,
.contact-identity-list li > span:last-child {
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 600;
}

.contact-identity-icon {
  color: var(--orange);
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 900;
  text-align: center;
}

.enquiry-form {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid #d8d2c7;
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 1rem 3rem rgba(36, 29, 23, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.form-field {
  min-width: 0;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid #c9c3b8;
  border-radius: 0.7rem;
  background: white;
  color: #171a18;
}

.form-field textarea {
  min-height: 10rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(216, 2, 15, 0.14);
}

.consent-field {
  display: flex;
  grid-column: 1 / -1;
  gap: 0.7rem;
  align-items: flex-start;
  color: #5f6661;
  font-size: 0.8rem;
}

.consent-field input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  accent-color: var(--orange);
}

.form-actions {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 0.35rem;
}

.form-actions button {
  cursor: pointer;
}

.form-note {
  max-width: 32rem;
  margin: 0;
  color: #777d79;
  font-size: 0.72rem;
}

.microsoft-form-placeholder {
  min-height: 38rem;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 6vw, 4rem);
  border: 1px dashed rgba(216, 2, 15, 0.35);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(216, 2, 15, 0.05), rgba(40, 60, 49, 0.06));
  text-align: center;
}

.microsoft-form-placeholder > div {
  max-width: 30rem;
}

.microsoft-form-icon {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
  border-radius: 1rem;
  background: #038387;
  color: white;
  font-size: 1.6rem;
  font-weight: 900;
  box-shadow: 0 0.75rem 2rem rgba(3, 131, 135, 0.2);
}

.microsoft-form-placeholder h3 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1;
}

.microsoft-form-placeholder p {
  margin: 0 0 1.5rem;
  color: #5f6661;
}

.microsoft-form-frame {
  width: 100%;
  min-height: 56rem;
  border: 0;
  border-radius: 1rem;
  background: white;
}

.microsoft-form-frame[hidden],
.microsoft-form-placeholder[hidden] {
  display: none;
}

.thank-you-section {
  min-height: calc(100svh - 8rem);
  display: grid;
  place-items: center;
  padding-block: 13rem 5rem;
  background:
    radial-gradient(circle at 75% 30%, rgba(216, 2, 15, 0.2), transparent 26rem),
    var(--ink);
}

.thank-you-card {
  max-width: 48rem;
  text-align: center;
}

.thank-you-card h1 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 600;
  line-height: 0.92;
}

.thank-you-card p {
  max-width: 38rem;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
    padding: 7rem 1.25rem 2rem;
    background: rgba(8, 11, 9, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: clamp(2.2rem, 11vw, 4rem);
    line-height: 1;
  }

  .section-header,
  .intro-grid,
  .cta-grid,
  .about-hero-inner,
  .story-row,
  .page-hero-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    position: static;
  }

  .contact-identity-card {
    max-width: 48rem;
  }

  .video-library-vertical {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-reel-grid {
    grid-template-columns: 1fr;
  }

  .location-reel-grid .location-reel-portrait {
    justify-self: center;
  }

  .story-row-image-right .story-image,
  .story-row-image-right .story-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .story-row-image-right .story-copy {
    order: 1;
  }

  .story-row-image-right .story-image {
    order: 2;
  }

  .story-image {
    width: min(100%, 34rem);
  }

  .story-row-image-right .story-image {
    margin-left: auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-library-wide,
  .video-library-vertical,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-wide,
  .consent-field,
  .form-actions {
    grid-column: auto;
  }

  .video-card::after {
    right: -0.4rem;
  }

  .service-card {
    min-height: 18rem;
  }

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

  .trust-list li:nth-child(2) {
    border-right: 0;
  }

  .trust-list li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 2rem), var(--max-width));
  }

  .header-inner {
    min-height: 6rem;
  }

  .brand-logo.fox {
    width: 8.75rem;
    height: auto;
  }

  .brand-logo.text {
    height: 2.45rem;
  }

  .brand-mark {
    width: 2.8rem;
    height: 2.8rem;
  }

  .hero {
    min-height: 39rem;
  }

  .hero-content {
    padding-block: 9.25rem 3rem;
  }

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

  .hero h1.hero-title-long {
    font-size: clamp(2.85rem, 11.5vw, 3.8rem);
  }

  .about-hero {
    padding-block: 8rem 3.75rem;
  }

  .page-hero {
    padding-block: 11rem 4rem;
  }

  .location-heading-lockup {
    align-items: flex-start;
  }

  .location-heading-mark {
    width: 5.5rem;
  }

  .contact-identity-card {
    grid-template-columns: 1fr;
  }

  .contact-identity-mark {
    padding: 1rem 4rem;
    border-right: 0;
    border-bottom: 2px solid var(--orange);
  }

  .contact-identity-mark img {
    max-width: 12rem;
  }

  .microsoft-form-placeholder {
    min-height: 30rem;
    padding: 2rem 1rem;
  }

  .microsoft-form-frame {
    min-height: 64rem;
  }

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

  .story-image::after {
    right: -0.45rem;
    bottom: -0.45rem;
  }

  .story-row-image-left .story-image::after {
    left: -0.45rem;
  }

  .story-image.story-video::after {
    right: -0.45rem;
    bottom: 2.25rem;
    width: 68%;
    height: auto;
  }

  .story-row-image-left .story-image.story-video::after {
    right: auto;
    left: -0.45rem;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-contact-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-list li {
    padding: 0.85rem 0.5rem;
    font-size: 0.66rem;
  }

  .location-content {
    align-items: stretch;
    flex-direction: column;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .contact-facts {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
