/* =========================================================
   DJ in Muskoka — Consolidated Stylesheet
   ========================================================= */

/* ==========================
   Design tokens
========================== */

:root {
  --water: #18bc9c;
  --water-dark: #11967d;
  --stone: #eeeeee;
  --paper: #fafafa;
  --white: #ffffff;

  --night: #2c3e50;
  --night-deep: #1f2d3a;
  --footer-night: #232329;

  --sunset: #da5b33;
  --sunset-dark: #b74625;

  --ink: #25313c;
  --muted: #66727b;
  --line: #d4dadd;
  --stars: #f3c65f;

  --max: 1180px;
  --narrow: 780px;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius: 18px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 14px 40px rgba(44, 62, 80, .07);
  --shadow: 0 20px 55px rgba(44, 62, 80, .12);
  --shadow-lg: 0 30px 80px rgba(44, 62, 80, .18);

  --section-space: clamp(84px, 9vw, 112px);

  /* Backward-compatible aliases for older page CSS. */
  --charcoal: var(--night);
  --mint: var(--water);
  --light: var(--stone);
  --teal: var(--water);
}

/* ==========================
   Reset and document defaults
========================== */

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--stone);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

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

iframe {
  max-width: 100%;
}

a {
  color: inherit;
}

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

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

/* ==========================
   Accessibility
========================== */

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--night);
  color: var(--white);
  transform: translateY(-150%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================
   Layout utilities
========================== */

.shell {
  width: min(calc(100% - 36px), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 36px), var(--narrow));
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.hero-grid,
.split-grid,
.feature-grid,
.contact-grid,
.review-summary,
.card-grid,
.review-grid,
.mix-list,
.timeline,
.policy-list,
.footer-grid,
.footer-sites,
.field,
.field-row,
.inquiry-form {
  display: grid;
}

.hero-grid {
  gap: 34px;
}

.split-grid,
.feature-grid,
.contact-grid,
.review-summary {
  gap: 30px;
}

.card-grid,
.review-grid {
  gap: 20px;
}

.mix-list {
  gap: 22px;
}

.field {
  gap: 7px;
}

.field-row,
.inquiry-form {
  gap: 18px;
}

/* ==========================
   Typography
========================== */

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--night);
  letter-spacing: -.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 15vw, 6.8rem);
  line-height: .94;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 8vw, 4.2rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 5vw, 2rem);
  line-height: 1.12;
}

p {
  margin: 0 0 1.15em;
}

blockquote {
  margin: 0;
  color: var(--night);
}

.lead {
  font-size: clamp(1.22rem, 4.6vw, 1.55rem);
  line-height: 1.5;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sunset-dark);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 40px;
}

.text-link {
  color: var(--sunset-dark);
  font-weight: 850;
  text-underline-offset: 4px;
}

.light-link {
  color: var(--white) !important;
}

/* ==========================
   Header and navigation
========================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(44, 62, 80, .12);
  background: rgba(238, 238, 238, .94);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  width: 150px;
}

.menu-toggle {
  display: grid;
  width: 46px;
  height: 46px;
  place-content: center;
  gap: 5px;
  border: 1px solid #c9d0d4;
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--night);
}

.site-nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  display: none;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
  gap: 6px;
}

.site-nav a {
  padding: 11px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 750;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(24, 188, 156, .13);
  color: var(--night);
}

.nav-cta {
  background: var(--sunset);
  color: var(--white) !important;
  text-align: center;
}

/* ==========================
   Buttons
========================== */

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color .25s ease,
    border-color .25s ease,
    color .25s ease,
    box-shadow .25s ease,
    transform .25s ease;
}

.button:focus-visible {
  outline: 3px solid rgba(24, 188, 156, .35);
  outline-offset: 3px;
}

.button-primary {
  background: var(--water);
  color: var(--night-deep);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--water-dark);
  color: var(--white);
}

.button-secondary {
  border-color: var(--night);
  color: var(--night);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--night);
  color: var(--white);
}

.button-light {
  border-color: var(--stone);
  background: transparent;
  color: var(--stone);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: var(--water);
  background: var(--water);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(24, 188, 156, .35);
  transform: translateY(-2px);
}

.button-light:active {
  box-shadow: 0 4px 12px rgba(24, 188, 156, .25);
  transform: translateY(0);
}

.button-light span {
  transition: transform .25s ease;
}

.button-light:hover span,
.button-light:focus-visible span {
  transform: translateX(4px);
}

/* ==========================
   Shared section spacing
========================== */

.hero,
.page-hero {
  padding-block: clamp(78px, 9vw, 112px) clamp(68px, 8vw, 96px);
}

.split-section,
.services-section,
.reviews-preview,
.stories-preview,
.about-preview,
.series,
.contact-section,
.policies-section {
  padding-block: var(--section-space);
}

.services-section,
.series,
.reviews-preview,
.policies-section {
  background: var(--paper);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 760px;
}

.hero-actions,
.action-row {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

/* ==========================
   Shared image-backed components
========================== */

.hero-jamieson,
.split-room,
.service-card-weddings,
.service-card-corporate,
.service-card-private,
.feature-special-request,
.corporate-hero,
.private-events-hero,
.timeline-start,
.timeline-montreal,
.timeline-seoul,
.timeline-pentaport,
.timeline-muskoka,
.special-request-hero,
.weddings-hero,
.timeline-ceremony,
.timeline-cocktails,
.timeline-dinner,
.timeline-dancing,
.requests-band,
.reviews-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-jamieson::before,
.split-room::before,
.service-card-weddings::before,
.service-card-corporate::before,
.service-card-private::before,
.feature-special-request::before,
.corporate-hero::before,
.private-events-hero::before,
.timeline-start::before,
.timeline-montreal::before,
.timeline-seoul::before,
.timeline-pentaport::before,
.timeline-muskoka::before,
.special-request-hero::before,
.weddings-hero::before,
.timeline-ceremony::before,
.timeline-cocktails::before,
.timeline-dinner::before,
.timeline-dancing::before,
.requests-band::before,
.reviews-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-repeat: no-repeat;
}

/* ==========================
   Home hero
========================== */

.hero-jamieson::before {
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgba(238, 238, 238, .98) 0%,
      rgba(238, 238, 238, .95) 22%,
      rgba(238, 238, 238, .82) 45%,
      rgba(238, 238, 238, .55) 68%,
      rgba(238, 238, 238, .78) 100%
    ),
    url("../img/jamieson-djing-at-port-cunnington-lodge-lg.webp");
  background-position: right bottom;
  background-size: contain;
  opacity: .5;
  filter:
    grayscale(100%)
    contrast(120%)
    brightness(.92)
    sepia(12%)
    hue-rotate(-18deg);
  mix-blend-mode: multiply;
}

.hero-jamieson > *,
.hero-copy,
.proof-card {
  position: relative;
  z-index: 2;
}

.hero-jamieson h1 {
  max-width: 11ch;
  font-size: clamp(3.5rem, 6.5vw, 6.6rem);
  line-height: .94;
}

/* ==========================
   Split room
========================== */

.split-room::before {
  z-index: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(238, 238, 238, .98) 0%,
      rgba(238, 238, 238, .95) 20%,
      rgba(238, 238, 238, .82) 42%,
      rgba(238, 238, 238, .55) 68%,
      rgba(238, 238, 238, .80) 100%
    ),
    linear-gradient(rgba(24, 188, 156, .08), rgba(24, 188, 156, .08)),
    url("../img/jamieson-djing-at-trillium-resort-and-spa-lg.webp");
  background-position: 58% center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  opacity: .75;
  filter:
    grayscale(100%)
    contrast(125%)
    brightness(.92)
    sepia(12%)
    hue-rotate(-18deg);
  mix-blend-mode: multiply;
}

.split-room .split-grid {
  position: relative;
  z-index: 2;
}

.uca-days {
  display: grid;
  gap: 70px;
}

/* ==========================
   Service cards
   Image concentrated on right
========================== */

.service-card-weddings,
.service-card-corporate,
.service-card-private {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.service-card-weddings::before,
.service-card-corporate::before,
.service-card-private::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background-repeat: no-repeat;
  background-size: auto 100%;

  opacity: .50;

  filter:
    saturate(.65)
    contrast(115%)
    brightness(.92);
}

/* Keep card content above the image layer */

.service-card-weddings > *,
.service-card-corporate > *,
.service-card-private > * {
  position: relative;
  z-index: 1;
}

/* Weddings */

.service-card-weddings::before {
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, .98) 26%,
      rgba(255, 255, 255, .90) 42%,
      rgba(255, 255, 255, .64) 60%,
      rgba(255, 255, 255, .22) 82%,
      rgba(255, 255, 255, 0) 100%
    ),
    url("../img/jamieson-djing-at-windermere-golf-and-country-club-sm.webp");

  background-position:
    center,
    right center;
}

/* Corporate */

.service-card-corporate::before {
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, .98) 26%,
      rgba(255, 255, 255, .90) 42%,
      rgba(255, 255, 255, .64) 60%,
      rgba(255, 255, 255, .22) 82%,
      rgba(255, 255, 255, 0) 100%
    ),
    url("../img/jamieson-djing-at-cavana-ridge-sm.webp");

  background-position:
    center,
    right center;
}

/* Private events */

.service-card-private::before {
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, .98) 26%,
      rgba(255, 255, 255, .88) 42%,
      rgba(255, 255, 255, .58) 60%,
      rgba(255, 255, 255, .16) 82%,
      rgba(255, 255, 255, 0) 100%
    ),
    url("../img/jamieson-djing-in-dominican-republic-sm.webp");

  background-position:
    center,
    right center;

  filter:
    saturate(.78)
    contrast(115%)
    brightness(.94);
}

.service-card-weddings,
.service-card-corporate,
.service-card-private {
  background: var(--white);
}

@media (max-width: 767px) {
  .service-card-weddings::before,
  .service-card-corporate::before,
  .service-card-private::before {
    background-size: cover;
    opacity: .38;
  }

  .service-card-weddings::before {
    background-image:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, .94) 0%,
        rgba(255, 255, 255, .82) 55%,
        rgba(255, 255, 255, .68) 100%
      ),
      url("../img/jamieson-djing-at-windermere-golf-and-country-club-sm.webp");
  }

  .service-card-corporate::before {
    background-image:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, .94) 0%,
        rgba(255, 255, 255, .82) 55%,
        rgba(255, 255, 255, .68) 100%
      ),
      url("../img/jamieson-djing-at-cavana-ridge-sm.webp");
  }

  .service-card-private::before {
    background-image:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, .92) 0%,
        rgba(255, 255, 255, .78) 55%,
        rgba(255, 255, 255, .62) 100%
      ),
      url("../img/jamieson-djing-in-dominican-republic-sm.webp");
  }
}

/* ==========================
   Special request feature
========================== */

.feature-special-request::before {
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgba(44, 62, 80, .88) 0%,
      rgba(44, 62, 80, .74) 35%,
      rgba(44, 62, 80, .60) 60%,
      rgba(44, 62, 80, .74) 100%
    ),
    url("../img/a-special-request-001.png");
  background-position: center;
  background-size: cover;
  opacity: .22;
  filter: saturate(.55) contrast(120%) brightness(.82);
  mix-blend-mode: screen;
}

.feature-special-request .feature-grid {
  position: relative;
  z-index: 2;
}

/* ==========================
   About preview
========================== */

.about-grid {
  display: grid;
  align-items: center;
  gap: 60px;
}

.about-photo {
  display: flex;
  justify-content: center;
}

.about-photo img {
  width: 100%;
  max-width: 420px;
  margin-top: -40px;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* ==========================
   Network about
========================== */

.network-about {
  padding: clamp(70px, 8vw, 110px) 0;
}

.network-about .split-grid {
  grid-template-columns: minmax(360px, 460px) minmax(0, 1fr);
  align-items: center;
  max-width: 1120px;
  margin-inline: auto;
  gap: clamp(48px, 6vw, 80px);
}

.network-about-image,
.network-about-image picture {
  width: 100%;
}

.network-about-image img {
  width: 100%;
  height: clamp(500px, 45vw, 575px);
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: center 40%;
}

.network-about-copy {
  max-width: 620px;
}

.network-about-copy .eyebrow {
  margin-bottom: 14px;
}

.network-about-copy h2 {
  margin-bottom: 24px;
}

.network-about-copy p:not(.eyebrow) {
  max-width: 58ch;
}

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

/* ==========================
   Network cards
========================== */

.network-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.network-card::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 0;

    background-repeat: no-repeat;
background-position: right 18px bottom 18px;
    background-size: 400px auto;

    opacity: .15;

    filter: grayscale(100%);

    pointer-events: none;
}

.network-card > * {
    position: relative;
    z-index: 1;
}

.network-card-toronto::before {
    background-image: url("../img/dj-in-toronto-footer-logo.png");
}

.network-card-muskoka::before {
    background-image: url("../img/dj-in-muskoka-footer-logo.png");
}

.network-card-kawartha::before {
    background-image: url("../img/dj-in-kawartha-footer-logo.png");
}

/* ==========================
   Contact Hero
========================== */

.contact-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        linear-gradient(
            90deg,
            rgba(238,238,238,.96) 0%,
            rgba(238,238,238,.90) 26%,
            rgba(238,238,238,.70) 52%,
            rgba(238,238,238,.38) 78%,
            rgba(238,238,238,.20) 100%
        ),
        url("../img/jamieson-djing-at-trillium-resort-and-spa-01-lg.webp");

    background-repeat: no-repeat;
    background-size: cover;

    /* Keeps your face and the ceremony visible */
    background-position: center 35%;

    opacity: .90;

    filter:
        saturate(.82)
        contrast(112%)
        brightness(.94);

    mix-blend-mode: multiply;

    pointer-events: none;
}

.contact-hero .shell {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    max-width: 10ch;
}

.contact-hero .lead {
    max-width: 640px;
}

@media (max-width: 767px) {

    .contact-hero::before {

        background:
            linear-gradient(
                180deg,
                rgba(238,238,238,.92) 0%,
                rgba(238,238,238,.68) 48%,
                rgba(238,238,238,.90) 100%
            ),
            url("../img/jamieson-djing-at-trillium-resort-and-spa-01-sm.webp");

        background-size: cover;
        background-position: center 25%;
    }

}

/* ==========================
   Generic network page hero
========================== */

.page-hero.network-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--night);
  color: var(--white);
}

.network-hero::before,
.network-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.network-hero::before {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(44, 62, 80, .92) 0%,
      rgba(44, 62, 80, .82) 35%,
      rgba(44, 62, 80, .55) 70%,
      rgba(44, 62, 80, .70) 100%
    ),
    url("../img/jamieson-djing.webp");
  background-position: center;
  background-size: cover;
  opacity: .42;
  transform: scale(1.04);
}

.network-hero::after {
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(44, 62, 80, .10),
    rgba(44, 62, 80, .30)
  );
}

.network-hero .shell {
  position: relative;
  z-index: 2;
}

.network-hero h1,
.network-hero .lead,
.network-hero .eyebrow {
  color: var(--white);
}

.network-hero .lead {
  max-width: 720px;
  color: rgba(255, 255, 255, .88);
}

.network-hero .eyebrow {
  color: var(--water);
}

/* ==========================
   Corporate hero
========================== */

.corporate-hero::before {
  z-index: -1;
  background:
    linear-gradient(
      135deg,
      rgba(238, 238, 238, .90) 0%,
      rgba(238, 238, 238, .80) 35%,
      rgba(238, 238, 238, .55) 65%,
      rgba(238, 238, 238, .74) 100%
    ),
    url("../img/jamieson-djing-at-cavana-ridge-lg.webp");
  background-position: center 60%;
  background-size: cover;
  opacity: .45;
  filter: saturate(.75) contrast(115%) brightness(.95);
  mix-blend-mode: multiply;
}

.corporate-hero .shell {
  position: relative;
  z-index: 2;
}

/* ==========================
   About hero
========================== */

.about-hero {
  position: relative;
  display: flex;
  min-height: clamp(520px, 42vw, 680px);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #223548;
  color: var(--white);
}

.about-hero::before,
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-hero::before {
  z-index: -2;
  background:
    url("../img/jamieson-djing-at-vinyl-underground-korea-lg.webp")
    right bottom / auto 100%
    no-repeat;
}

.about-hero::after {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(34, 53, 72, 1) 0%,
      rgba(34, 53, 72, .99) 12%,
      rgba(34, 53, 72, .95) 24%,
      rgba(34, 53, 72, .86) 38%,
      rgba(34, 53, 72, .72) 52%,
      rgba(34, 53, 72, .52) 66%,
      rgba(34, 53, 72, .32) 80%,
      rgba(34, 53, 72, .16) 92%,
      rgba(34, 53, 72, 0) 100%
    );
}

.about-hero .shell {
  position: relative;
  z-index: 1;
  width: 100%;
}

.about-hero .shell.narrow {
  width: min(100% - 40px, 760px);
  margin-inline: auto;
}

.about-hero .eyebrow {
  color: var(--water);
}

.about-hero h1 {
  max-width: 10ch;
  color: var(--white);
  text-wrap: balance;
}

.about-hero .lead {
  max-width: 620px;
  color: rgba(255, 255, 255, .88);
}

/* ==========================
   Private events hero
========================== */

.private-events-hero {
  background: var(--night);
  color: var(--white);
}

.private-events-hero::before {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(44, 62, 80, .96) 0%,
      rgba(44, 62, 80, .88) 30%,
      rgba(44, 62, 80, .58) 58%,
      rgba(44, 62, 80, .30) 100%
    ),
    url("../img/private-events-discoball-lg.webp");
  background-position: center;
  background-size: cover;
}

.private-events-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(20, 31, 42, .12);
  pointer-events: none;
}

.private-events-hero .shell {
  position: relative;
  z-index: 1;
}

.private-events-hero h1,
.private-events-hero .lead {
  color: var(--white);
}

.private-events-hero .lead {
  color: rgba(255, 255, 255, .88);
}

.private-events-hero .eyebrow {
  color: rgba(255, 255, 255, .78);
}

/* ==========================
   Timeline backgrounds
========================== */

.timeline-start::before,
.timeline-montreal::before,
.timeline-seoul::before,
.timeline-pentaport::before,
.timeline-muskoka::before,
.timeline-ceremony::before,
.timeline-cocktails::before,
.timeline-dinner::before,
.timeline-dancing::before {
  z-index: -1;
  background-size: cover;
  mix-blend-mode: multiply;
}

.timeline-start::before {
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, .94) 0%,
      rgba(255, 255, 255, .88) 35%,
      rgba(255, 255, 255, .65) 70%,
      rgba(255, 255, 255, .80) 100%
    ),
    linear-gradient(rgba(24, 188, 156, .04), rgba(24, 188, 156, .04)),
    url("../img/sase-one-accomplice-and-krinjah-at-moog-in-montreal.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
  opacity: .60;
  filter: grayscale(100%) contrast(125%) brightness(.88);
}

.timeline-montreal::before {
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, .95) 0%,
      rgba(255, 255, 255, .86) 35%,
      rgba(255, 255, 255, .60) 70%,
      rgba(255, 255, 255, .76) 100%
    ),
    linear-gradient(rgba(24, 188, 156, .05), rgba(24, 188, 156, .05)),
    url("../img/accomplice-djing-at-blue-dog-montreal.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
  opacity: .90;
  filter: saturate(.45) contrast(130%) brightness(.82);
}

.timeline-seoul::before {
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, .95) 0%,
      rgba(255, 255, 255, .88) 32%,
      rgba(255, 255, 255, .66) 62%,
      rgba(255, 255, 255, .78) 100%
    ),
    linear-gradient(rgba(24, 188, 156, .05), rgba(24, 188, 156, .05)),
    url("../img/accomplice-djing-at-club-cargo-seoul.webp");
	background-repeat: no-repeat;
	background-position: center 30%;
	background-size: cover;	
  opacity: .38;
  filter: grayscale(100%) contrast(130%) brightness(.82);
}

.timeline-pentaport::before {
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, .95) 0%,
      rgba(255, 255, 255, .88) 30%,
      rgba(255, 255, 255, .64) 60%,
      rgba(255, 255, 255, .78) 100%
    ),
    linear-gradient(rgba(24, 188, 156, .04), rgba(24, 188, 156, .04)),
    url("../img/accomplice-djing-at-pentaport-korea.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
  opacity: .42;
  filter: saturate(.40) contrast(125%) brightness(.82);
}

.timeline-muskoka::before {
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, .94) 0%,
      rgba(255, 255, 255, .84) 28%,
      rgba(255, 255, 255, .58) 58%,
      rgba(255, 255, 255, .76) 100%
    ),
    linear-gradient(rgba(24, 188, 156, .08), rgba(24, 188, 156, .08)),
    url("../img/jamieson-djing-in-muskoka.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
  opacity: .90;
  filter: saturate(.55) contrast(120%) brightness(.90);
}

/* Wedding-day timeline */

.timeline-ceremony::before {
  background-image:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .95) 0%,
      rgba(255, 255, 255, .86) 35%,
      rgba(255, 255, 255, .62) 65%,
      rgba(255, 255, 255, .82) 100%
    ),
    url("../img/dj-in-muskoka-wedding-ceremony.webp");
	background-position: center 90%;
	background-repeat: no-repeat;
	background-size: cover;
  opacity: .42;
  filter: saturate(.75) contrast(115%) brightness(.94);
}

.timeline-cocktails::before {
  background-image:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .94) 0%,
      rgba(255, 255, 255, .84) 35%,
      rgba(255, 255, 255, .60) 65%,
      rgba(255, 255, 255, .82) 100%
    ),
    url("../img/dj-in-muskoka-wedding-cocktails.webp");
	background-position: center 60%;
	background-repeat: no-repeat;
	background-size: cover;
  opacity: .42;
  filter: saturate(.75) contrast(115%) brightness(.94);
}

.timeline-dinner::before {
  background-image:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .95) 0%,
      rgba(255, 255, 255, .86) 35%,
      rgba(255, 255, 255, .62) 65%,
      rgba(255, 255, 255, .82) 100%
    ),
    url("../img/dj-in-muskoka-wedding-dinner.webp");
	background-position: center 40%;
	background-repeat: no-repeat;
	background-size: cover;
  opacity: .60;
  filter: saturate(.75) contrast(115%) brightness(.94);
}

.timeline-dancing::before {
  background-image:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .94) 0%,
      rgba(255, 255, 255, .84) 35%,
      rgba(255, 255, 255, .58) 65%,
      rgba(255, 255, 255, .78) 100%
    ),
    url("../img/dj-in-muskoka-wedding-dancing.webp");
	background-position: center 65%;
	background-repeat: no-repeat;
	background-size: cover;
  opacity: .45;
  filter: saturate(.80) contrast(115%) brightness(.90);
}

.timeline-dinner > *,
.timeline-dancing > * {
  position: relative;
  z-index: 2;
}

/* ==========================
   Timeline content
========================== */

.timeline article {
  padding: 2rem;
  border: 1px solid rgba(44, 62, 80, .08);
  border-radius: 20px;
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(2px);
}

.timeline article > span {
  color: var(--sunset-dark);
  font-size: .86rem;
  font-weight: 850;
  word-break: break-word;
}

.timeline article h2 {
  font-size: clamp(1.8rem, 6vw, 3rem);
}

.timeline-mix {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(44, 62, 80, .15);
}

.timeline-mix-label {
  margin: 0 0 .35rem;
  color: var(--water);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.timeline-mix-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--night);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
}

.timeline-mix-link:hover {
  color: var(--water);
}

.timeline-mix-link span {
  transition: transform .2s ease;
}

.timeline-mix-link:hover span {
  transform: translateX(3px);
}

.timeline-mix-description {
  margin: 0 0 .6rem;
  color: rgba(44, 62, 80, .72);
  font-size: .9rem;
  font-style: italic;
}

/* ==========================
   A Special Request hero
========================== */

.special-request-hero::before {
  z-index: -1;
  background:
    linear-gradient(
      135deg,
      rgba(238, 238, 238, .92) 0%,
      rgba(238, 238, 238, .82) 35%,
      rgba(238, 238, 238, .60) 65%,
      rgba(238, 238, 238, .78) 100%
    ),
    url("../img/a-special-request-001.png");
  background-position: center;
  background-size: cover;
  opacity: .40;
  filter: saturate(.70) contrast(120%) brightness(.90);
  mix-blend-mode: multiply;
}

.special-request-hero .shell {
  position: relative;
  z-index: 2;
}

/* ==========================
   Weddings hero
========================== */

.weddings-hero::before {
  z-index: -1;
  background:
    linear-gradient(
      135deg,
      rgba(238, 238, 238, .88) 0%,
      rgba(238, 238, 238, .78) 35%,
      rgba(238, 238, 238, .55) 65%,
      rgba(238, 238, 238, .72) 100%
    ),
    url("../img/jamieson-djing-at-windermere-golf-and-country-club-lg.webp");
  background-position: center;
  background-size: cover;
  opacity: .48;
  filter: grayscale(100%) contrast(125%) brightness(.88);
  mix-blend-mode: multiply;
}

.weddings-hero .shell {
  position: relative;
  z-index: 2;
}

/* ==========================
   Requests band
========================== */

.requests-band::before {
  z-index: -1;
  background:
    linear-gradient(
      135deg,
      rgba(44, 62, 80, .94) 0%,
      rgba(44, 62, 80, .82) 35%,
      rgba(44, 62, 80, .62) 65%,
      rgba(44, 62, 80, .80) 100%
    ),
    url("../img/dj-in-muskoka-wedding-requests.webp");
  background-position: center;
  background-size: cover;
  opacity: .42;
  filter: grayscale(15%) contrast(120%) brightness(.90);
  mix-blend-mode: screen;
}

.requests-band .shell {
  position: relative;
  z-index: 2;
}

/* ==========================
   Beaver divider
========================== */

.svg-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.section-divider {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 0 auto 2.25rem;
  color: inherit;
}

.beavers-divider {
  display: block;
  width: clamp(220px, 24vw, 340px);
  height: auto;
  aspect-ratio: 24.06 / 4.37;
  overflow: visible;
  fill: currentColor;
}

/* ==========================
   Reviews hero
========================== */

.reviews-hero {
  background: var(--night);
  color: var(--white);
}

.reviews-hero::before {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(44, 62, 80, 1) 0%,
      rgba(44, 62, 80, .96) 22%,
      rgba(44, 62, 80, .82) 42%,
      rgba(44, 62, 80, .56) 62%,
      rgba(44, 62, 80, .24) 82%,
      rgba(44, 62, 80, 0) 100%
    ),
    url("../img/dj-in-muskoka-review-lg.webp");
  background-position: right center;
  background-size: cover;
}

.reviews-hero .shell {
  position: relative;
  z-index: 2;
}

.reviews-hero h1,
.reviews-hero .lead,
.reviews-hero .eyebrow {
  color: var(--white);
}

.reviews-hero .lead {
  color: rgba(255, 255, 255, .88);
}

.reviews-hero .eyebrow {
  color: rgba(255, 255, 255, .72);
}

/* ==========================
   Reviews library
========================== */

.reviews-library {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--stone);
}

.reviews-library-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.reviews-library-header h2 {
  max-width: 680px;
  margin-bottom: 0;
}

.review-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.review-filter {
  appearance: none;
  padding: 10px 17px;
  border: 1px solid rgba(44, 62, 80, .18);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--night);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    color .2s ease,
    background-color .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.review-filter:hover {
  border-color: var(--water);
  transform: translateY(-1px);
}

.review-filter.is-active {
  border-color: var(--water);
  background: var(--water);
  color: var(--white);
}

.review-filter:focus-visible {
  outline: 3px solid rgba(24, 188, 156, .28);
  outline-offset: 3px;
}

.all-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr));
  gap: 32px;
}

.full-review {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(44, 62, 80, .08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.full-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.full-review .review-stars {
  margin: 0;
}

.review-category {
  margin: 0;
  color: rgba(44, 62, 80, .62);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.full-review blockquote {
  flex-grow: 1;
  margin: 0 0 26px;
  padding: 0;
  border: 0;
  text-align: left;
}

.full-review blockquote p {
  margin: 0 0 1.35rem;
  font-size: clamp(1.12rem, 1vw + .9rem, 1.28rem);
  line-height: 1.9;
  letter-spacing: .01em;
  text-align: left;
}

.full-review .review-credit {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 20px;
  border-top: 1px solid rgba(44, 62, 80, .1);
}

.full-review .review-credit strong {
  color: var(--night);
}

.full-review .review-credit span {
  color: rgba(44, 62, 80, .64);
  font-size: .92rem;
}

.reviews-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

#show-more-reviews[hidden] {
  display: none;
}

/* ==========================
   Wedding review sections
========================== */

.wedding-featured-review-section,
.wedding-reviews-carousel-section {
  padding-block: var(--section-space);
}

.wedding-featured-review-section {
  background: var(--stone);
}

.wedding-reviews-carousel-section {
  background: var(--paper);
}

.wedding-featured-review {
  transition:
    opacity .25s ease,
    transform .25s ease;
}

.wedding-featured-review blockquote p {
  margin: 0 0 1rem;
}

.wedding-featured-review blockquote p:last-child {
  margin-bottom: 0;
}

.reviews-link-row {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.wedding-reviews-carousel {
  display: grid;
  gap: 20px;
}

.wedding-reviews-carousel .review-card {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.wedding-reviews-carousel .review-card blockquote {
  flex-grow: 1;
}

.wedding-reviews-carousel .review-card blockquote p {
  margin: 0 0 1rem;
}

.wedding-reviews-carousel .review-card blockquote p:last-child {
  margin-bottom: 0;
}

.wedding-review-controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.wedding-review-control {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--night);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    background-color .2s ease,
    border-color .2s ease,
    color .2s ease,
    transform .2s ease;
}

.wedding-review-control:first-child {
  justify-self: start;
}

.wedding-review-control:last-child {
  justify-self: end;
}

.wedding-review-control:hover,
.wedding-review-control:focus-visible {
  border-color: var(--water);
  background: var(--water);
  color: var(--night-deep);
  transform: translateY(-1px);
}

.wedding-review-control:focus-visible {
  outline: 3px solid rgba(24, 188, 156, .28);
  outline-offset: 3px;
}

.wedding-review-status {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
  text-align: center;
}

.wedding-reviews-carousel {
  width: min(100%, 900px);
  margin-inline: auto;
}

.wedding-reviews-carousel .review-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 5vw, 52px);
}

.wedding-reviews-carousel .review-card blockquote {
  flex-grow: 1;
}

.wedding-reviews-carousel .review-card blockquote p {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.45;
}

.wedding-reviews-carousel .review-card blockquote p:last-child {
  margin-bottom: 0;
}

.wedding-reviews-carousel .review-credit {
  margin-top: 28px;
}

@media (max-width: 600px) {
  .wedding-review-controls {
    grid-template-columns: 1fr 1fr;
  }

  .wedding-review-status {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .wedding-review-control {
    width: 100%;
  }
}

/* ==========================
   Proof and statement sections
========================== */

/* Headings inside dark cards should inherit the card colour */
.proof-card h1,
.proof-card h2,
.proof-card h3,
.proof-card h4 {
    color: inherit;
}

.proof-card {
  align-self: end;
  padding: 2rem;
  max-width: 340px;

  background: var(--night);
  color: var(--white);

  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stars,
.review-stars {
  margin: 0 0 1.25rem;
  color: var(--stars);
  font-size: 1.35rem;
  letter-spacing: .16em;
}

.proof-intro{
    margin:0;
    color:rgba(255,255,255,.72);
    font-size:.95rem;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.proof-heading{
    margin:.35rem 0 2rem;
    font-size:clamp(2rem,2.8vw,2.5rem);
    line-height:1.08;
    font-weight:800;
}

.proof-copy {
  margin: 0 0 2rem;

  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,.82);
}

.proof-card .text-link {
  display: inline-block;
  margin-bottom: .5rem;
  font-weight: 700;
}

.proof-google-link {
  opacity: .72;
  transition: opacity .2s ease;
}

.proof-google-link:hover {
  opacity: 1;
}

/* ==========================
   Cards and content blocks
========================== */

.service-card,
.story-card,
.review-card,
.mix-card,
.contact-card,
.content-note {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.card-number {
  color: var(--water-dark);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.feature-band,
.cta {
  padding: 84px 0;
  background: var(--night);
  color: var(--white);
}

.feature-band h2,
.feature-band h3,
.cta h2,
.feature-band .eyebrow,
.cta .eyebrow {
  color: var(--white);
}

.feature-band p,
.cta p {
  color: rgba(255, 255, 255, .8);
}

.quote-panel {
  display: grid;
  min-height: 260px;
  align-content: center;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.quote-panel p {
  color: var(--white);
  font-size: clamp(1.8rem, 7vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
}

.quote-panel span {
  color: rgba(255, 255, 255, .66);
}

.featured-review {
  max-width: 900px;
  margin-inline: auto;
  padding: 32px;
  border-left: 8px solid var(--water);
  border-radius: var(--radius);
  background: var(--white);
}

.featured-review blockquote,
.review-card blockquote {
  margin: 18px 0;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  line-height: 1.25;
}

.review-credit {
  color: var(--muted);
}

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

.check-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--water-dark);
  font-weight: 900;
}

.mix-card {
  gap: 24px;
}

.player-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f2f2f2;
}

.player-wrap iframe {
  display: block;
}

.review-grid {
  margin-top: 42px;
}

.review-card.featured {
  border-top: 8px solid var(--water);
}

.dark-number {
  color: var(--night);
}

.dark-label {
  color: var(--ink);
}

.content-note {
  margin-top: 28px;
  background: #f5f8f8;
}

.case-study {
  display: grid;
  gap: 26px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.case-details h3 {
  color: var(--sunset-dark);
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ==========================
   Contact and forms
========================== */

.contact-grid {
  align-items: start;
}

.inquiry-form {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  color: var(--night);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #bfc8cd;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--water-dark);
  outline: 3px solid rgba(24, 188, 156, .25);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

/* ==========================
   Policies
========================== */

.policy-list {
  gap: 14px;
}

.policy-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.policy-item summary {
  padding: 20px;
  color: var(--night);
  font-weight: 850;
  cursor: pointer;
}

.policy-content {
  padding: 0 20px 24px;
}

.policy-content h3 {
  margin-top: 28px;
  font-size: 1.4rem;
}

.policy-content ul {
  padding-left: 22px;
}

.policy-content a {
  color: var(--sunset-dark);
  font-weight: 750;
}

/* ==========================
   CTA
========================== */

.cta {
  background: var(--sunset);
}

.cta-inner {
  max-width: 850px;
  text-align: center;
}

/* ==========================
   Shared DJ in Network footer
========================== */

.site-footer {
  width: 100%;
  padding: 70px 0 28px;
  background: var(--footer-night);
  color: rgba(255, 255, 255, .78);
}

.footer-network {
  text-align: center;
}

.footer-network h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.25rem, 7vw, 4rem);
  line-height: 1;
}

.footer-network-intro {
  max-width: 780px;
  margin: 0 auto 46px;
  color: rgba(255, 255, 255, .72);
  font-size: 1.02rem;
}

.footer-sites {
  gap: 22px;
}

.footer-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 20px;
  background: rgba(255, 255, 255, .035);
  color: var(--white);
  text-align: left;
  text-decoration: none;
  transition:
    transform .2s ease,
    border-color .2s ease,
    background-color .2s ease;
}

.footer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(24, 188, 156, .08), transparent 55%);
  opacity: 0;
  transition: opacity .2s ease;
}

.footer-card:hover,
.footer-card:focus-visible {
  border-color: rgba(24, 188, 156, .65);
  background: rgba(255, 255, 255, .06);
  transform: translateY(-4px);
}

.footer-card:hover::after,
.footer-card:focus-visible::after {
  opacity: 1;
}

.footer-card img {
  position: absolute;
  right: 28px;
  bottom: 22px;
  z-index: -1;
  width: 150px;
  max-height: 130px;
  object-fit: contain;
  opacity: .10;
  filter: grayscale(1);
}

.footer-card strong {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(1.45rem, 5vw, 2rem);
  line-height: 1.05;
}

.footer-card span {
  position: relative;
  z-index: 1;
  max-width: 250px;
  color: rgba(255, 255, 255, .72);
  font-size: 1rem;
  line-height: 1.45;
}

.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .58);
  text-align: center;
  font-size: .9rem;
}

.footer-bottom p {
  margin: 0;
}

.network-page-logo {
  width: 150px;
  height: 90px;
  margin-bottom: 22px;
  object-fit: contain;
  object-position: left center;
}

/* Legacy footer elements retained for pages that still use them. */

.footer-logo {
  width: 170px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-heading {
  margin-bottom: 12px;
  color: var(--white);
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-grid {
  gap: 32px;
}

.footer-grid a {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  color: var(--white);
  text-decoration: none;
}

.footer-small {
  font-size: .92rem;
}

/* ==========================
   Responsive adjustments
========================== */

@media (min-width: 680px) {
  .hero-actions,
  .action-row {
    grid-template-columns: repeat(2, max-content);
  }

  .card-grid.three,
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .field-row,
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 10px;
    font-size: .93rem;
  }

  .nav-cta {
    margin-left: 6px;
    padding-inline: 17px !important;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.65fr) minmax(270px, .6fr);
    align-items: end;
    gap: 58px;
  }

  .split-grid,
  .feature-grid,
  .review-summary {
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
  }

  .contact-grid {
    grid-template-columns: .78fr 1.22fr;
    gap: 70px;
  }

  .mix-card {
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
    align-items: center;
    padding: 34px;
  }

  .case-study {
    grid-template-columns: .75fr 1.25fr;
    gap: 70px;
    padding: 54px 0;
  }

  .uca-days {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1.2fr .8fr;
  }
}

@media (min-width: 1000px) {
  .footer-sites {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .hero-jamieson h1 {
    max-width: 10ch;
    font-size: clamp(4rem, 8vw, 6rem);
  }

  .hero-jamieson::before {
    background-position: center bottom;
    background-size: auto 68%;
    opacity: .32;
  }

  .about-hero {
    min-height: 600px;
  }

  .about-hero::before {
    background-position: 62% bottom;
    background-size: auto 100%;
  }

  .about-hero::after {
    background:
      linear-gradient(
        90deg,
        rgba(34, 53, 72, .98) 0%,
        rgba(34, 53, 72, .90) 38%,
        rgba(34, 53, 72, .58) 68%,
        rgba(34, 53, 72, .26) 100%
      );
  }
}

@media (max-width: 900px) {
  .network-about .split-grid {
    grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
    gap: 42px;
  }

  .network-about-image img {
    height: 525px;
  }
}

@media (max-width: 860px) {
  .reviews-library-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-filters {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .hero-jamieson .hero-copy::before {
    content: none;
  }

  .hero-jamieson .hero-copy {
    padding-bottom: 0;
  }

  .hero-jamieson::before {
    background:
      linear-gradient(rgba(255, 255, 255, .18), rgba(255, 255, 255, .18)),
      url("../img/jamieson-djing-at-north-ridge-01-sm.webp");
    background-position: center 30%;
    background-size: cover;
    opacity: .30;
    filter: saturate(.85);
    mix-blend-mode: normal;
  }

  .split-room::before {
    background:
      linear-gradient(
        90deg,
        rgba(238, 238, 238, .98) 0%,
        rgba(238, 238, 238, .95) 20%,
        rgba(238, 238, 238, .82) 42%,
        rgba(238, 238, 238, .55) 68%,
        rgba(238, 238, 238, .80) 100%
      ),
      linear-gradient(rgba(24, 188, 156, .08), rgba(24, 188, 156, .08)),
      url("../img/jamieson-djing-at-trillium-resort-and-spa-sm.webp");
    background-position: center;
    background-size: cover;
  }

  .network-about {
    padding: 64px 0;
  }

  .network-about .split-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .network-about-image {
    max-width: 520px;
    margin-inline: auto;
  }

  .network-about-image img {
    height: auto;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius);
    object-position: center 38%;
  }

  .network-about-copy {
    max-width: none;
  }

  .corporate-hero::before {
    background:
      linear-gradient(
        135deg,
        rgba(238, 238, 238, .90) 0%,
        rgba(238, 238, 238, .80) 35%,
        rgba(238, 238, 238, .55) 65%,
        rgba(238, 238, 238, .74) 100%
      ),
      url("../img/jamieson-djing-at-cavana-ridge-sm.webp");
    background-position: center 60%;
    background-size: cover;
  }

  .about-hero {
    min-height: 680px;
    align-items: flex-start;
    padding-block: 72px;
  }

  .about-hero::before {
    background:
      url("../img/jamieson-djing-at-vinyl-underground-korea-sm.webp")
      center bottom / auto 100%
      no-repeat;
  }

  .about-hero::after {
    background:
      linear-gradient(
        180deg,
        rgba(34, 53, 72, .92) 0%,
        rgba(34, 53, 72, .76) 45%,
        rgba(34, 53, 72, .46) 72%,
        rgba(34, 53, 72, .70) 100%
      );
  }

  .about-hero .shell.narrow {
    width: min(100% - 36px, 760px);
  }

  .private-events-hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(44, 62, 80, .84) 0%,
        rgba(44, 62, 80, .68) 50%,
        rgba(44, 62, 80, .88) 100%
      ),
      url("../img/private-events-discoball-sm.webp");
    background-position: center;
    background-size: cover;
  }

  .reviews-hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(44, 62, 80, .82) 0%,
        rgba(44, 62, 80, .62) 40%,
        rgba(44, 62, 80, .84) 100%
      ),
      url("../img/dj-in-muskoka-review-sm.webp");
    background-position: center;
    background-size: cover;
  }
}

@media (max-width: 700px) {
  .all-reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-filters {
    width: 100%;
  }

  .review-filter {
    flex: 1 1 auto;
  }

  .full-review-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

/* ==========================
   Reduced motion
========================== */

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
