:root {
  --red: #b72024;
  --silver: #afb0b8;
  --ink: #1f2024;
  --muted: #6d6f76;
  --line: #ece8e1;
  --paper: #fbf9f5;
  --paper-soft: #fdfcf9;
  --white: #fffefa;
  --charcoal: #303136;
  --shadow: 0 24px 70px rgba(31, 32, 36, 0.11);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.page-shell {
  min-height: 100vh;
  background: var(--paper);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(31, 32, 36, 0.08);
  background: rgba(251, 249, 245, 0.92);
  backdrop-filter: blur(18px);
}

.nav-wrap,
.section-inner,
.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 194px;
}

.brand img {
  width: 126px;
  max-height: 96px;
  height: auto;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-size: 24px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-size: 14px;
  font-weight: 650;
}

.main-nav > a,
.dropdown > button {
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  padding: 13px 14px;
}

.main-nav > a:hover,
.dropdown > button:hover,
.main-nav .active {
  color: var(--red);
  background: rgba(183, 32, 36, 0.08);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: grid;
  width: 276px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 180ms ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  border-radius: 6px;
  color: var(--muted);
  padding: 9px 10px;
}

.dropdown-menu a:hover {
  background: rgba(175, 176, 184, 0.16);
  color: var(--ink);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid var(--red);
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
  font-weight: 750;
  padding: 11px 18px;
}

.btn.secondary {
  border-color: rgba(31, 32, 36, 0.18);
  background: transparent;
  color: var(--ink);
}

.btn,
.nav-cta {
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  background: #9f171b;
  border-color: #9f171b;
}

.btn.secondary:hover {
  border-color: var(--red);
  background: rgba(183, 32, 36, 0.06);
  color: var(--red);
}

.section {
  padding: 86px 0;
}

.section.compact {
  padding: 58px 0;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(31, 32, 36, 0.88) 0%, rgba(31, 32, 36, 0.62) 45%, rgba(31, 32, 36, 0.08) 100%),
    url("../img/hero-current-3.png");
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.025);
  will-change: opacity, transform;
  transition: opacity 850ms ease;
}

.hero-slide.slide-sport {
  background-image:
    linear-gradient(90deg, rgba(31, 32, 36, 0.88) 0%, rgba(31, 32, 36, 0.62) 45%, rgba(31, 32, 36, 0.08) 100%),
    url("../img/hero-current-2.png");
}

.hero-slide.slide-brand {
  background-image:
    linear-gradient(90deg, rgba(31, 32, 36, 0.9) 0%, rgba(31, 32, 36, 0.62) 46%, rgba(31, 32, 36, 0.12) 100%),
    url("../img/hero-current-1.png");
}

.hero-slide.is-active {
  opacity: 1;
  animation: hero-ken-burns 6.2s ease-out both;
}

.hero-slide.is-prev {
  transform: scale(1.025) translate3d(0, 0, 0);
}

@keyframes hero-ken-burns {
  0% {
    transform: scale(1.085) translate3d(-1%, -0.5%, 0);
  }

  100% {
    transform: scale(1.025) translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide.is-active {
    animation: none;
    transform: none;
    transition: opacity 250ms ease;
  }
}

.hero-controls {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.hero-dot {
  width: 34px;
  height: 3px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  padding: 0;
}

.hero-dot.is-active {
  background: var(--red);
}

.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
}

.hero .eyebrow {
  color: #fff;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
}

h1 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 600;
  margin-top: 18px;
}

.hero-text {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero .btn.secondary {
  border-color: rgba(255, 255, 255, 0.44);
  color: #fff;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  transform: translateY(50%);
  border-top: 4px solid var(--red);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(31, 32, 36, 0.1);
}

.hero-fact {
  position: relative;
  min-height: 154px;
  padding: 30px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: var(--white);
}

.hero-fact:last-child {
  border-right: 0;
}

.hero-fact strong {
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  color: var(--red);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 29px;
  font-weight: 600;
  line-height: 1.05;
}

.hero-fact > span:not(.fact-index) {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 290px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2,
.page-title h1 {
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 600;
}

.section-heading p,
.page-title p,
.lead {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

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

.card {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  padding: 28px;
}

.card.dark {
  background: var(--charcoal);
  color: #fff;
}

.card h3 {
  font-size: 29px;
  margin-bottom: 14px;
}

.card p,
.card li {
  color: var(--muted);
}

.card.dark p,
.card.dark li {
  color: rgba(255, 255, 255, 0.72);
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 20px;
}

.product-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.product-card-featured {
  grid-row: span 2;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(183, 32, 36, 0.32);
  box-shadow: 0 22px 54px rgba(31, 32, 36, 0.12);
}

.product-media {
  height: 190px;
  overflow: hidden;
  background: #d8d8d8;
}

.product-card-featured .product-media {
  height: 410px;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.045);
}

.product-copy {
  padding: 24px 26px 26px;
}

.product-card-featured .product-copy {
  padding: 30px 32px 32px;
}

.card-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-copy h3 {
  font-size: 32px;
}

.product-card-featured .product-copy h3 {
  font-size: 39px;
}

.product-copy p {
  margin: 10px 0 20px;
  color: var(--muted);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.text-link span {
  color: var(--red);
  transition: transform 180ms ease;
}

.product-card:hover .text-link span {
  transform: translateX(5px);
}

.visual-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/product-placeholder.svg") center / cover;
  opacity: 0.92;
}

.visual-card .label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  color: var(--ink);
  font-weight: 800;
  padding: 10px 14px;
}

.consulting-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 68px;
  align-items: center;
}

.visual-card-consulting {
  min-height: 520px;
  box-shadow: var(--shadow);
}

.visual-card-consulting::before {
  display: none;
}

.visual-card-consulting img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.visual-card-source::before {
  display: none;
}

.visual-card-source img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.image-note {
  position: absolute;
  left: 22px;
  bottom: 22px;
  border-left: 3px solid var(--red);
  background: rgba(255, 253, 248, 0.92);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  padding: 11px 14px;
}

.editorial-title {
  margin: 12px 0 24px;
  font-size: clamp(34px, 4.2vw, 56px);
}

.benefit-list {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.benefit-list > div {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 17px 0 17px 24px;
  border-bottom: 1px solid var(--line);
}

.benefit-list > div::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 26px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.benefit-list strong {
  color: var(--ink);
  font-size: 15px;
}

.benefit-list span {
  color: var(--muted);
  font-size: 14px;
}

.numbered {
  counter-reset: service;
  display: grid;
  gap: 14px;
}

.service-row {
  counter-increment: service;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 24px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.service-row::before {
  content: counter(service, decimal-leading-zero);
  color: var(--silver);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  line-height: 1;
}

.service-row h3 {
  font-size: 34px;
  margin-bottom: 8px;
}

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

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.logo-pill {
  display: grid;
  place-items: center;
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  font-weight: 850;
  text-align: center;
  padding: 18px 14px;
}

.logo-pill span {
  color: var(--silver);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 118px 0 72px;
}

.page-hero.has-image {
  min-height: 520px;
  display: grid;
  align-items: end;
  background: var(--charcoal);
}

.page-hero.has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(31, 32, 36, 0.88) 0%, rgba(31, 32, 36, 0.64) 48%, rgba(31, 32, 36, 0.1) 100%),
    url("../img/hero-current-3.png");
  background-size: cover;
  background-position: center;
}

.page-hero.hero-sport::before {
  background-image:
    linear-gradient(90deg, rgba(31, 32, 36, 0.88) 0%, rgba(31, 32, 36, 0.64) 48%, rgba(31, 32, 36, 0.1) 100%),
    url("../img/hero-current-2.png");
}

.page-hero.hero-brand::before {
  background-image:
    linear-gradient(90deg, rgba(31, 32, 36, 0.9) 0%, rgba(31, 32, 36, 0.68) 50%, rgba(31, 32, 36, 0.16) 100%),
    url("../img/hero-current-1.png");
}

.page-hero.hero-outdoor::before {
  background-image:
    linear-gradient(90deg, rgba(31, 32, 36, 0.9) 0%, rgba(31, 32, 36, 0.62) 50%, rgba(31, 32, 36, 0.12) 100%),
    url("../img/outdoor/outdoor-retail-promotion.jpg");
}

.page-hero.hero-outdoor-sport::before {
  background-image:
    linear-gradient(90deg, rgba(31, 32, 36, 0.9) 0%, rgba(31, 32, 36, 0.6) 50%, rgba(31, 32, 36, 0.1) 100%),
    url("../img/outdoor/outdoor-sport-run.jpg");
}

.page-hero.hero-outdoor-hospitality::before {
  background-image:
    linear-gradient(90deg, rgba(31, 32, 36, 0.9) 0%, rgba(31, 32, 36, 0.62) 50%, rgba(31, 32, 36, 0.1) 100%),
    url("../img/outdoor/outdoor-hospitality-flags.jpg");
}

.page-hero.hero-outdoor-industry::before {
  background-image:
    linear-gradient(90deg, rgba(31, 32, 36, 0.9) 0%, rgba(31, 32, 36, 0.64) 50%, rgba(31, 32, 36, 0.12) 100%),
    url("../img/outdoor/outdoor-event-tent-autohaus.jpg");
}

.page-hero.has-image .section-inner {
  position: relative;
}

.page-hero.has-image .page-title h1,
.page-hero.has-image .page-title p,
.page-hero.has-image .eyebrow {
  color: #fff;
}

.page-title {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.5fr);
  gap: 48px;
  align-items: end;
}

.split-band {
  background: var(--charcoal);
  color: #fff;
}

.split-band .section-heading h2,
.split-band h2,
.split-band h3 {
  color: #fff;
}

.split-band p {
  color: rgba(255, 255, 255, 0.7);
}

.branch-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 28px;
}

.branch-visual {
  position: relative;
  min-height: 394px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.branch-visual::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(0deg, rgba(31, 32, 36, 0.88), transparent);
}

.branch-visual img {
  width: 100%;
  height: 100%;
  min-height: 394px;
  object-fit: cover;
  transition: transform 800ms ease;
}

.branch-visual:hover img {
  transform: scale(1.035);
}

.branch-visual figcaption {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  line-height: 1.15;
}

.branch-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.branch-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 20px 22px;
  font-size: 1.1rem;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.branch-link:hover {
  color: var(--red);
  transform: translateX(4px);
  border-color: rgba(183, 32, 36, 0.5);
}

.branch-link span {
  transition: transform 180ms ease;
}

.branch-link:hover span {
  transform: translateX(4px);
}

.outdoor-teaser-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

.outdoor-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.outdoor-teaser-media {
  min-height: 520px;
  overflow: hidden;
}

.outdoor-teaser-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 800ms ease;
}

.outdoor-teaser:hover .outdoor-teaser-media img {
  transform: scale(1.035);
}

.outdoor-teaser-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
  color: #fff;
}

.outdoor-teaser-copy .eyebrow,
.outdoor-teaser-copy h2 {
  color: #fff;
}

.outdoor-teaser-copy h2 {
  margin: 12px 0 20px;
  font-size: clamp(38px, 4.2vw, 56px);
}

.outdoor-teaser-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.outdoor-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.outdoor-tags span {
  padding: 12px 8px 12px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.outdoor-service-band {
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

.outdoor-service-grid,
.outdoor-planning-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}

.outdoor-service-image,
.outdoor-planning-image {
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.outdoor-service-image img,
.outdoor-planning-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.outdoor-product-grid .card {
  min-height: 265px;
}

.outdoor-gallery-section {
  padding-bottom: 96px;
}

.outdoor-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  grid-template-rows: repeat(2, 285px);
  gap: 18px;
}

.outdoor-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.outdoor-gallery-main {
  grid-row: 1 / 3;
}

.outdoor-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.outdoor-gallery figure::after {
  content: "";
  position: absolute;
  inset: 52% 0 0;
  background: linear-gradient(0deg, rgba(31, 32, 36, 0.82), transparent);
}

.outdoor-gallery figure:hover img {
  transform: scale(1.035);
}

.outdoor-gallery figcaption {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 20px;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  line-height: 1.1;
}

.outdoor-planning-section {
  background: var(--paper-soft);
}

.outdoor-cta::before {
  background-image:
    linear-gradient(90deg, rgba(31, 32, 36, 0.94) 0%, rgba(31, 32, 36, 0.78) 54%, rgba(31, 32, 36, 0.28) 100%),
    url("../img/outdoor/outdoor-event-banner.jpg");
}

.process-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.process-step {
  position: relative;
  min-height: 245px;
  padding: 30px 26px 26px 0;
  border-right: 1px solid var(--line);
}

.process-step + .process-step {
  padding-left: 26px;
}

.process-step:last-child {
  border-right: 0;
}

.process-step > span {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 30px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.brand-section {
  background: var(--paper);
}

.project-cta {
  position: relative;
  overflow: hidden;
  padding: 106px 0;
  background: var(--charcoal);
  color: #fff;
}

.project-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(31, 32, 36, 0.94) 0%, rgba(31, 32, 36, 0.8) 54%, rgba(31, 32, 36, 0.28) 100%),
    url("../img/hero-current-3.png");
  background-size: cover;
  background-position: center;
}

.project-cta-inner {
  position: relative;
}

.project-cta h2 {
  max-width: 780px;
  margin-top: 12px;
  font-size: clamp(38px, 4.4vw, 60px);
}

.project-cta p {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.project-cta .eyebrow {
  color: #fff;
}

.project-cta .btn.secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

body.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms ease;
}

body.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .nav-cta,
  .product-card,
  .product-media img,
  .branch-link,
  .branch-link span,
  .branch-visual img,
  body.reveal-ready [data-reveal] {
    transition: none;
  }

  body.reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.placeholder {
  display: grid;
  place-items: center;
  min-height: 280px;
  border: 1px dashed rgba(109, 111, 118, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.62);
  color: var(--muted);
  text-align: center;
  padding: 28px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.55fr);
  gap: 34px;
}

.form {
  display: grid;
  gap: 14px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 14px 16px;
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

.site-footer {
  border-top: 1px solid rgba(31, 32, 36, 0.1);
  background: #f7f4ef;
  padding: 46px 0 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner strong {
  display: block;
  color: var(--ink);
  margin-bottom: 10px;
}

.footer-inner a:hover {
  color: var(--red);
}

@media (max-width: 940px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: 112px;
    left: 20px;
    right: 20px;
    display: none;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 12px;
  }

  .main-nav.is-open {
    display: grid;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    padding: 0 0 0 12px;
  }

  .nav-cta {
    display: none;
  }

  .section-heading,
  .page-title,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .grid-3,
  .grid-2,
  .logo-strip,
  .branch-list,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .product-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card-featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .product-card-featured .product-media {
    height: 360px;
  }

  .branch-layout,
  .consulting-grid,
  .outdoor-teaser,
  .outdoor-service-grid,
  .outdoor-planning-grid {
    grid-template-columns: 1fr;
  }

  .outdoor-teaser-copy {
    padding: 44px;
  }

  .outdoor-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 360px 280px;
  }

  .outdoor-gallery-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

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

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 660px) {
  .nav-wrap {
    min-height: 110px;
  }

  .brand {
    min-width: auto;
  }

  .brand img {
    width: 106px;
    max-height: 84px;
  }

  .nav-toggle {
    position: absolute;
    left: calc(min(100vw, 390px) - 56px);
    right: auto;
    top: 28px;
    z-index: 35;
    border-color: var(--red);
    background: var(--red);
    color: #fff;
  }

  .nav-wrap,
  .section-inner,
  .footer-inner,
  .hero-inner,
  .hero-facts {
    width: calc(100% - 28px);
    max-width: var(--max);
  }

  .hero {
    min-height: 720px;
  }

  .hero-inner {
    max-width: 360px;
    margin-left: 14px;
    margin-right: auto;
    padding-bottom: 44px;
  }

  .hero-facts,
  .grid-3,
  .grid-2,
  .product-showcase,
  .process-grid,
  .logo-strip,
  .branch-list,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    transform: translateY(30%);
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    margin-left: 14px;
    margin-right: 14px;
  }

  .hero-fact {
    min-height: auto;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-fact:last-child {
    border-bottom: 0;
  }

  .hero-fact > span:not(.fact-index) {
    max-width: 280px;
  }

  .section {
    padding: 64px 0;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  h1 {
    max-width: 360px;
    font-size: 36px;
  }

  .hero-text {
    max-width: 360px;
    font-size: 17px;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .product-card-featured {
    grid-column: auto;
  }

  .product-card-featured .product-media,
  .product-media {
    height: 250px;
  }

  .product-copy,
  .product-card-featured .product-copy {
    padding: 24px;
  }

  .branch-visual,
  .branch-visual img {
    min-height: 320px;
  }

  .visual-card-consulting,
  .visual-card-consulting img {
    min-height: 360px;
  }

  .visual-card-source img {
    min-height: 340px;
  }

  .consulting-grid {
    gap: 38px;
  }

  .process-step,
  .process-step + .process-step {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .process-step:first-child {
    border-top: 0;
  }

  .process-step > span {
    margin-bottom: 14px;
  }

  .project-cta {
    padding: 74px 0;
  }

  .outdoor-teaser-media,
  .outdoor-teaser-media img,
  .outdoor-service-image,
  .outdoor-service-image img,
  .outdoor-planning-image,
  .outdoor-planning-image img {
    min-height: 330px;
  }

  .outdoor-teaser-copy {
    padding: 34px 24px;
  }

  .outdoor-tags {
    grid-template-columns: 1fr;
  }

  .outdoor-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .outdoor-gallery-main {
    grid-column: auto;
  }

  .outdoor-gallery figure,
  .outdoor-gallery-main {
    min-height: 300px;
  }
}
