@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');

:root {
  --charcoal: #11100e;
  --ink: #1c1914;
  --ink-soft: #2c261d;
  --ivory: #f8f1e2;
  --ivory-dim: #eadfca;
  --white: #fff5e6;
  --brass: #d6ad57;
  --brass-dark: #a9782f;
  --primary: #d6ad57;
  --teal: #21b6a8;
  --accent: #21b6a8;
  --coral: #d94b40;
  --red: #d94b40;
  --yellow: #f4ce4a;
  --yellow-dark: #b8862c;
  --green: #46bf5a;
  --paper: #fbf6ea;
  --line: rgba(214, 173, 87, 0.34);
  --line-strong: rgba(214, 173, 87, 0.68);
  --shadow: 0 28px 70px rgba(17, 16, 14, 0.35);
  --shadow-md: 0 14px 36px rgba(0, 0, 0, 0.24);
  --max: 1180px;
  --max-w: 1400px;
  --site-bg-opacity: 0.34;
  --section-bg-opacity: 0.28;
  --header-height: 100px;
  --nav-bg: rgba(10, 8, 7, 0.86);
  --text-light: rgba(242, 234, 219, 0.72);
}

.u-text-accent { color: var(--accent) !important; }
.u-text-yellow { color: var(--yellow) !important; }
.u-text-ivory { color: var(--ivory) !important; }
.u-text-white { color: var(--white) !important; }

.u-mt-8 { margin-top: 8px !important; }
.u-mt-16 { margin-top: 16px !important; }
.u-mt-28 { margin-top: 28px !important; }
.u-mt-48 { margin-top: 48px !important; }
.u-mt-60 { margin-top: 60px !important; }
.u-mb-24 { margin-bottom: 24px !important; }
.u-text-center { text-align: center !important; }
.u-relative-z1 { position: relative !important; z-index: 1 !important; }

.footer-emphasis { color: var(--white); }

.section--flush {
  padding: 0;
}

.section--article-body {
  padding: 0 0 60px;
}

.blog-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.feature-row__icon--violet { background: rgba(70, 50, 218, 0.08); color: var(--primary); }
.feature-row__icon--cyan { background: rgba(6, 217, 250, 0.1); color: var(--accent); }
.feature-row__icon--green { background: rgba(76, 204, 76, 0.12); color: var(--green); }
.feature-row__icon--gold { background: rgba(244, 219, 52, 0.15); color: var(--yellow-dark); }
.feature-row__icon--red { background: rgba(212, 60, 60, 0.1); color: var(--red); }
.feature-row__icon--orange { background: rgba(180, 83, 9, 0.1); color: #b45309; }
.feature-row__icon--blue { background: rgba(30, 64, 175, 0.1); color: #1e40af; }
.feature-row__icon--violet-soft { background: rgba(70, 50, 218, 0.08); }
.feature-row__icon--cyan-soft { background: rgba(6, 217, 250, 0.08); }
.feature-row__icon--green-soft { background: rgba(76, 204, 76, 0.08); }
.feature-row__icon--gold-soft { background: rgba(244, 219, 52, 0.1); }
.feature-row__icon--red-soft { background: rgba(212, 60, 60, 0.08); }

.content-note {
  margin-top: 16px;
  color: var(--text-light);
  font-size: 16px;
}

.inline-link-strong {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.inline-link-strong--sm {
  font-size: 15px;
}

.industry-link-wrap {
  margin-top: 16px;
}

.services-photo-surface {
  background-image: url("../assets/img/wp/AdobeStock_182280992-scaled-1.jpeg");
  background-position: center;
  background-size: cover;
}

.services-photo-overlay {
  background: rgba(6, 15, 37, 0.9);
}

.map-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-frame iframe {
  border: 0;
  display: block;
}

.hours-card--flush {
  margin: 0;
  max-width: 100%;
}

.content-lead-dark {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.cta-banner--blue {
  background: linear-gradient(135deg, #1e40af 0%, var(--primary) 100%);
}

.callout--centerwide {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.callout--center-spaced {
  text-align: center;
  margin-bottom: 60px;
}

.callout__title-lg {
  font-size: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--charcoal);
}

body {
  position: relative;
  isolation: isolate;
  margin: 0;
  background: transparent;
  color: var(--ivory);
  font-family: "Mulish", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: var(--site-bg-opacity);
  background: url("../assets/art-deco-site-background.png") center top / cover no-repeat;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  background:
    repeating-linear-gradient(90deg, rgba(214, 173, 87, 0.05) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(214, 173, 87, 0.035) 0 1px, transparent 1px 96px);
  mix-blend-mode: screen;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

.section-pad {
  padding: 72px 0;
}

.hero-supporting {
  max-width: 62ch;
  margin-top: 14px;
  color: rgba(248, 241, 226, 0.82);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(214, 173, 87, 0.24);
  background: rgba(17, 16, 14, 0.78);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  background: rgba(17, 16, 14, 0.96);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(200, 156, 61, 0.34);
  backdrop-filter: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  min-height: 90px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 90px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 3%;
}

.nav-logo {
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo .brand-lockup,
.footer-brand-lockup {
  text-decoration: none;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-header .brand-lockup {
  gap: 16px;
}

.brand-word {
  font-family: "Limelight", Georgia, serif;
  font-size: 2.05rem;
  line-height: 1;
  color: var(--ivory);
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.42),
    0 0 12px rgba(255, 226, 152, 0.16),
    0 0 26px rgba(214, 173, 87, 0.28);
}

.site-header .brand-word {
  font-size: 2.96rem;
}

.nav-logo .brand-word,
.footer-brand-lockup .brand-word {
  font-size: 2.96rem;
}

.motion-logo {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #080807;
  box-shadow:
    0 0 0 1px rgba(214, 173, 87, 0.76),
    0 0 0 4px rgba(7, 7, 6, 0.92),
    0 0 16px rgba(255, 214, 122, 0.18),
    0 0 30px rgba(214, 173, 87, 0.18),
    0 10px 26px rgba(0, 0, 0, 0.6);
}

.site-header .motion-logo {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  margin-block: -2px;
}

.nav-logo .motion-logo,
.footer-brand-lockup .motion-logo {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  margin-block: -2px;
}

.motion-logo::before {
  content: "";
  position: absolute;
  inset: -5px;
  background: url("../assets/mediafy-logo-reel-layer-tight.png") center / cover no-repeat;
  animation: reel-drift 180s linear infinite;
}

.motion-logo::after {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: 1;
  background: url("../assets/mediafy-logo-m-layer-tight.png") center / contain no-repeat;
  pointer-events: none;
}

@keyframes reel-drift {
  to {
    transform: rotate(360deg);
  }
}

.site-nav {
  position: fixed;
  top: 108px;
  left: 16px;
  right: 16px;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(17, 16, 14, 0.98);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  color: var(--ivory);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brass);
}

.nav-cta {
  --btn-line: #e0c351;
  --btn-text: #e0c351;
  --btn-fill: rgba(8, 8, 7, 0.94);
  --btn-hover-fill: rgba(224, 195, 81, 0.92);
  --btn-hover-text: #080807;
  position: relative;
  isolation: isolate;
  overflow: visible;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 0;
  border-radius: 0;
  background: var(--btn-fill);
  box-shadow: inset 0 0 0 1px var(--btn-line);
  color: var(--btn-text) !important;
  white-space: nowrap;
  font-family: "Poiret One", "Mulish", sans-serif;
  font-size: 1rem !important;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition:
    color 500ms ease,
    background-color 500ms ease,
    transform 200ms ease,
    box-shadow 200ms ease;
}

.nav-cta::before,
.nav-cta::after,
.button::before,
.button::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: transform 400ms cubic-bezier(.54, .06, .39, .96);
}

.nav-cta::before,
.button::before {
  inset: -7px 0;
  background:
    linear-gradient(var(--btn-line), var(--btn-line)) top left / 100% 1px no-repeat,
    linear-gradient(var(--btn-line), var(--btn-line)) bottom left / 100% 1px no-repeat,
    linear-gradient(var(--btn-line), var(--btn-line)) top left / 1px 100% no-repeat,
    linear-gradient(var(--btn-line), var(--btn-line)) top right / 1px 100% no-repeat;
}

.nav-cta::after,
.button::after {
  inset: 0 -7px;
  background:
    linear-gradient(var(--btn-line), var(--btn-line)) top left / 100% 1px no-repeat,
    linear-gradient(var(--btn-line), var(--btn-line)) bottom left / 100% 1px no-repeat,
    linear-gradient(var(--btn-line), var(--btn-line)) top left / 1px 100% no-repeat,
    linear-gradient(var(--btn-line), var(--btn-line)) top right / 1px 100% no-repeat;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  color: var(--btn-hover-text) !important;
  background: var(--btn-hover-fill);
}

.nav-cta:hover::before,
.nav-cta:focus-visible::before,
.button:hover::before,
.button:focus-visible::before {
  transform: scale(1, 0);
}

.nav-cta:hover::after,
.nav-cta:focus-visible::after,
.button:hover::after,
.button:focus-visible::after {
  transform: scale(0, 1);
}

.nav-links {
  position: fixed;
  top: 90px;
  left: 16px;
  right: 16px;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  margin: 0;
  list-style: none;
  border: 1px solid rgba(200, 156, 61, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(14, 11, 9, 0.98), rgba(14, 11, 9, 0.92)),
    url("../assets/art-deco-site-background-soft.png") center / cover;
  box-shadow: var(--shadow);
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 245, 230, 0.9);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  position: relative;
}

.nav-links .nav-cta {
  font-size: 1rem !important;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  transition: width 0.28s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 240px;
  height: 12px;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  padding: 12px 0;
  margin: 0;
  list-style: none;
  border: 1px solid rgba(200, 156, 61, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(14, 11, 9, 0.98), rgba(14, 11, 9, 0.92)),
    url("../assets/art-deco-site-background-soft.png") center / cover;
  box-shadow: var(--shadow);
}

.nav-dropdown-menu a {
  min-height: 36px;
  display: block;
  padding: 10px 24px;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.nav-toggle,
.mobile-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--ivory);
}

.nav-toggle span,
.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
}

@media (max-width: 1024px) {
  .mobile-toggle {
    display: grid;
    margin-left: auto;
  }

  .nav-links {
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    gap: 4px;
    padding: 14px 14px 16px;
    border-color: rgba(200, 156, 61, 0.34);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
    z-index: 1001;
  }

  .nav-links.open {
    display: flex;
    align-items: stretch;
  }

  .nav-links li {
    width: 100%;
    list-style: none;
  }

  .nav-links a {
    width: 100%;
    min-height: 40px;
    justify-content: flex-start;
    padding: 8px 6px;
    font-size: 0.96rem;
    letter-spacing: 0.12em;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-dropdown > a {
    padding-bottom: 4px;
  }

  .nav-dropdown-menu,
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    padding: 2px 0 8px 18px;
    border: 0;
    background: transparent;
    box-shadow: none;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .nav-dropdown-menu a {
    width: 100%;
    justify-content: flex-start;
    padding: 6px 0;
    min-height: 28px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    color: rgba(255, 245, 230, 0.82);
  }

  .nav-links .nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
    padding: 12px 18px;
  }
}

@media (min-width: 1025px) {
  .nav {
    background: var(--nav-bg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    min-height: 90px;
  }

  .nav-inner {
    width: 100%;
    max-width: var(--max-w);
    min-height: 90px;
    height: 90px;
    padding: 0 3%;
    gap: 24px;
  }

  .nav-logo {
    margin-right: 0;
  }

  .mobile-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 42px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    margin-left: auto;
    flex: 1 1 auto;
  }

  .nav-links li {
    list-style: none;
    flex: 0 0 auto;
  }

  .nav-dropdown-menu li {
    list-style: none;
  }

  .nav-links a {
    white-space: nowrap;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
    color: rgba(255, 254, 254, 0.92);
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
  }

  .nav-links .nav-cta {
    font-size: 18px !important;
    font-weight: 600 !important;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }

  .nav-cta {
    padding: 12px 28px;
    min-height: auto;
  }

  .nav-links a::after {
    height: 1px;
  }
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: clip;
  padding: calc(var(--header-height) + 32px) 0 72px;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.96), rgba(17, 16, 14, 0.7) 52%, rgba(17, 16, 14, 0.36)),
    linear-gradient(0deg, rgba(17, 16, 14, 0.98), rgba(17, 16, 14, 0.12) 48%, rgba(17, 16, 14, 0.92)),
    url("../assets/chattanooga-bridge.jpg") left top / cover no-repeat;
  filter: saturate(0.72) contrast(1.1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 70% 80%, rgba(244, 206, 74, 0.18), transparent 34%);
}

.hero + * {
  position: relative;
}

.hero + *::before {
  content: none;
}

.hero + *::after {
  content: none;
}

.searchlight-rig {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100svh;
  pointer-events: none;
  opacity: 0.34;
  filter: saturate(0.78);
}

.searchlight {
  position: absolute;
  width: 0;
  height: 0;
  --can-width: 156px;
  --can-height: 146px;
  --pivot-x: 74px;
  --pivot-y: 76px;
  --lens-x: 101px;
  --lens-y: 62px;
  --beam-angle-offset: -18deg;
  --beam-height: clamp(112px, 9vw, 126px);
  --beam-core: rgba(255, 252, 230, 0.38);
  --beam-mid: rgba(255, 242, 198, 0.19);
  --beam-edge: rgba(255, 255, 255, 0.068);
  --beam-line: rgba(255, 255, 255, 0.3);
}

.searchlight-one {
  left: clamp(86px, 8vw, 132px);
  bottom: clamp(-14px, -0.9vh, 2px);
  z-index: 2;
  --beam-core: rgba(98, 234, 223, 0.34);
  --beam-mid: rgba(47, 196, 182, 0.17);
  --beam-edge: rgba(180, 255, 248, 0.062);
  --beam-line: rgba(182, 255, 248, 0.27);
}

.searchlight-two {
  left: clamp(168px, 15vw, 238px);
  bottom: clamp(-36px, -2.2vh, -14px);
  z-index: 1;
  transform: scale(0.9);
  opacity: 0.68;
}

.searchlight-sweep {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  transform-origin: 0 0;
}

.searchlight-one .searchlight-sweep {
  animation: searchlight-sweep-one 16s ease-in-out infinite alternate;
}

.searchlight-two .searchlight-sweep {
  animation: searchlight-sweep-two 21s ease-in-out infinite alternate;
}

.searchlight-beam {
  position: absolute;
  left: calc(var(--lens-x) - var(--pivot-x));
  top: calc(var(--lens-y) - var(--pivot-y) - (var(--beam-height) / 2));
  z-index: 0;
  width: max(1320px, 128vw);
  height: var(--beam-height);
  transform-origin: 0 50%;
  transform: rotate(var(--beam-angle-offset));
  clip-path: polygon(0 4%, 0 96%, 100% 86%, 100% 14%);
  background:
    radial-gradient(ellipse at 0 50%, var(--beam-core), var(--beam-mid) 24%, transparent 62%),
    linear-gradient(0deg, transparent 0 4%, var(--beam-edge) 16%, var(--beam-mid) 38%, var(--beam-core) 50%, var(--beam-mid) 62%, var(--beam-edge) 84%, transparent 96%),
    linear-gradient(90deg, var(--beam-core), var(--beam-mid) 34%, var(--beam-edge) 74%, transparent 100%);
  filter: blur(20px);
  opacity: 0.84;
  -webkit-mask-image: linear-gradient(90deg, #000 0, rgba(0, 0, 0, 0.74) 36%, rgba(0, 0, 0, 0.32) 72%, rgba(0, 0, 0, 0.1) 100%);
  mask-image: linear-gradient(90deg, #000 0, rgba(0, 0, 0, 0.74) 36%, rgba(0, 0, 0, 0.32) 72%, rgba(0, 0, 0, 0.1) 100%);
}

.searchlight-beam::before {
  content: "";
  position: absolute;
  inset: 8% -2%;
  background:
    linear-gradient(0deg, transparent, var(--beam-edge) 18%, transparent 35% 65%, var(--beam-edge) 82%, transparent),
    linear-gradient(90deg, var(--beam-mid), transparent 78%);
  filter: blur(26px);
  opacity: 0.72;
}

.searchlight-beam::after {
  content: "";
  position: absolute;
  inset: 42% 0;
  background: linear-gradient(90deg, var(--beam-line), rgba(255, 255, 255, 0.045) 42%, transparent 90%);
  filter: blur(24px);
  opacity: 0.62;
}

.searchlight-head {
  position: absolute;
  left: calc(var(--pivot-x) * -1);
  top: calc(var(--pivot-y) * -1);
  z-index: 1;
  width: var(--can-width);
  height: var(--can-height);
  background: url("../assets/searchlight-can-clean.png") center / contain no-repeat;
  filter:
    drop-shadow(0 14px 22px rgba(0, 0, 0, 0.54))
    drop-shadow(0 0 14px rgba(255, 241, 190, 0.1));
}

.searchlight-head::before,
.searchlight-head::after {
  display: none;
}

.searchlight-stand {
  display: none;
}

.searchlight-stand::before,
.searchlight-stand::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(rgba(214, 173, 87, 0.76), rgba(77, 49, 18, 0.82));
}

.searchlight-stand::before {
  bottom: 8px;
  width: 74px;
  height: 7px;
  border-radius: 999px;
}

.searchlight-stand::after {
  bottom: 36px;
  width: 42px;
  height: 6px;
  border-radius: 999px 999px 0 0;
}

@keyframes searchlight-sweep-one {
  0% {
    transform: rotate(-14deg);
  }

  100% {
    transform: rotate(-82deg);
  }
}

@keyframes searchlight-sweep-two {
  0% {
    transform: rotate(-82deg);
  }

  100% {
    transform: rotate(-14deg);
  }
}

.deco-frame {
  position: absolute;
  inset: calc(var(--header-height) + 10px) 16px 20px;
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgba(214, 173, 87, 0.45);
}

.deco-frame span {
  position: absolute;
  width: 87px;
  height: 87px;
  background: url("../assets/art_deco_edges-tight.png") center / contain no-repeat;
}

.deco-frame span:nth-child(1) {
  top: 6px;
  left: 6px;
}

.deco-frame span:nth-child(2) {
  top: 6px;
  right: 6px;
  transform: scaleX(-1);
}

.deco-frame span:nth-child(3) {
  bottom: 6px;
  left: 6px;
  transform: scaleY(-1);
}

.deco-frame span:nth-child(4) {
  right: 6px;
  bottom: 6px;
  transform: scale(-1);
}

.hero-inner {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
  display: grid;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.deco-divider-band {
  position: relative;
  height: clamp(35px, 3vw, 45px);
  margin: 0;
  pointer-events: none;
  z-index: 4;
  overflow: hidden;
  background: #090806;
  border-top: 1px solid rgba(152, 116, 52, 0.58);
  border-bottom: 1px solid rgba(152, 116, 52, 0.52);
}

.deco-divider-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.06) 34%, rgba(0, 0, 0, 0.22)),
    linear-gradient(90deg, rgba(8, 8, 7, 0.82), rgba(8, 8, 7, 0.15) 14%, rgba(8, 8, 7, 0.15) 86%, rgba(8, 8, 7, 0.82));
  opacity: 1;
}

.deco-divider-band::after {
  content: none;
}

.deco-divider-band__ornament {
  position: absolute;
  inset: 0;
  display: block;
  background: url("../assets/art-deco-divider-m-repeat-tight.png") center center / auto 100% repeat-x;
  filter: drop-shadow(0 -1px 5px rgba(0, 0, 0, 0.18));
  opacity: 0.96;
}

.deco-divider-bridge {
  position: relative;
  height: clamp(22px, 2vw, 26px);
  margin: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
  background:
    linear-gradient(
      180deg,
      rgba(239, 225, 194, 0.9) 0%,
      rgba(244, 235, 214, 0.96) 42%,
      rgba(248, 241, 226, 0.98) 100%
    );
  border-top: 1px solid rgba(196, 165, 112, 0.32);
  border-bottom: 1px solid rgba(169, 120, 47, 0.24);
}

.deco-divider-bridge::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.12), rgba(255, 248, 236, 0.02) 18%, rgba(120, 87, 39, 0.05) 82%, rgba(248, 241, 226, 0.24));
  opacity: 0.42;
}

.deco-divider-bridge__ornament {
  position: absolute;
  inset: 2px 0 0;
  display: block;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.08), transparent 22%, transparent 78%, rgba(120, 87, 39, 0.06)),
    url("../assets/art-deco-divider-m-repeat-tight.png") center center / auto 100% repeat-x;
  filter: saturate(0.72) brightness(0.86);
  opacity: 0.84;
}

.deco-divider-paper-alt {
  position: relative;
  height: clamp(24px, 2.2vw, 29px);
  margin: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(244, 235, 214, 0.98), rgba(248, 241, 226, 0.98));
  border-top: 1px solid rgba(197, 168, 116, 0.2);
  border-bottom: 1px solid rgba(169, 120, 47, 0.18);
}

.deco-divider-paper-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 248, 236, 0.08), rgba(126, 92, 38, 0.05) 48%, rgba(255, 248, 236, 0.08));
  opacity: 0.48;
}

.deco-divider-paper-alt__ornament {
  position: absolute;
  inset: 1px 0 0;
  display: block;
  background:
    url("../assets/art-deco-divider-diamond-repeat-tight.png") center center / auto 100% repeat-x;
  filter: saturate(0.84) brightness(0.92);
  opacity: 0.96;
}

.hero-copy {
  max-width: 760px;
  padding-inline: 22px 14px;
}

.eyebrow,
.panel-topline,
.package-tier {
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

h1 {
  margin-bottom: 20px;
  font-family: "Limelight", Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  font-weight: 400;
  color: var(--ivory);
}

.hero-highlight {
  color: transparent;
  background:
    linear-gradient(180deg, #fbefc8 0%, #f0d487 34%, #e0bb58 68%, #cf9a34 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 1px 0 rgba(17, 16, 14, 0.22),
    0 0 16px rgba(255, 221, 126, 0.28),
    0 0 34px rgba(214, 173, 87, 0.34);
}

.hero-lede {
  max-width: 680px;
  color: var(--ivory-dim);
  font-size: 1.06rem;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.button {
  --btn-line: #e0c351;
  --btn-text: #e0c351;
  --btn-fill: rgba(8, 8, 7, 0.94);
  --btn-hover-fill: rgba(224, 195, 81, 0.92);
  --btn-hover-text: #080807;
  position: relative;
  isolation: isolate;
  overflow: visible;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 0;
  border: 0;
  font-family: "Poiret One", "Mulish", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    color 500ms ease,
    background-color 500ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
  background: var(--btn-fill);
  color: var(--btn-text);
  box-shadow: inset 0 0 0 1px var(--btn-line);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  color: var(--btn-hover-text);
  background: var(--btn-hover-fill);
}

.button-primary {
  color: var(--btn-text);
}

.button-ghost {
  color: var(--btn-text);
}

.evaluation-panel {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(rgba(28, 25, 20, 0.88), rgba(28, 25, 20, 0.88)),
    radial-gradient(circle at 104% 108%, transparent 0 32%, rgba(214, 173, 87, 0.2) 32.5% 33.5%, transparent 34% 43%, rgba(214, 173, 87, 0.12) 43.5% 44.5%, transparent 45%),
    radial-gradient(circle at 0 0, rgba(33, 182, 168, 0.13), transparent 34%),
    repeating-linear-gradient(90deg, rgba(214, 173, 87, 0.048) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgba(214, 173, 87, 0.035) 0 1px, transparent 1px 64px),
    rgba(28, 25, 20, 0.94);
  box-shadow: var(--shadow);
}

.evaluation-panel::before {
  content: "";
  position: absolute;
  right: -78px;
  bottom: -118px;
  z-index: -1;
  width: 310px;
  aspect-ratio: 1;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0.46;
  background:
    repeating-conic-gradient(from 204deg, transparent 0 8deg, rgba(214, 173, 87, 0.16) 8deg 9deg, transparent 9deg 18deg),
    radial-gradient(circle, transparent 0 42%, rgba(214, 173, 87, 0.18) 42.5% 43.5%, transparent 44% 53%, rgba(33, 182, 168, 0.08) 53.5% 54.5%, transparent 55%);
  -webkit-mask-image: radial-gradient(circle, transparent 0 28%, #000 29% 72%, transparent 73%);
  mask-image: radial-gradient(circle, transparent 0 28%, #000 29% 72%, transparent 73%);
}

.evaluation-panel::after,
.package-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border: 1px solid rgba(214, 173, 87, 0.34);
  background:
    linear-gradient(90deg, rgba(214, 173, 87, 0.42), rgba(214, 173, 87, 0.42)) 0 0 / 42px 1px no-repeat,
    linear-gradient(180deg, rgba(214, 173, 87, 0.42), rgba(214, 173, 87, 0.42)) 0 0 / 1px 42px no-repeat,
    linear-gradient(270deg, rgba(214, 173, 87, 0.42), rgba(214, 173, 87, 0.42)) 100% 100% / 42px 1px no-repeat,
    linear-gradient(0deg, rgba(214, 173, 87, 0.42), rgba(214, 173, 87, 0.42)) 100% 100% / 1px 42px no-repeat;
}

.evaluation-panel h2 {
  margin: 8px 0 20px;
  font-size: 1.35rem;
  line-height: 1.22;
}

form {
  display: grid;
  gap: 10px;
}

label {
  color: var(--ivory-dim);
  font-size: 0.82rem;
  font-weight: 800;
}

input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(214, 173, 87, 0.34);
  border-radius: 6px;
  background: rgba(248, 241, 226, 0.95);
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

form .button {
  margin-top: 10px;
  width: 100%;
  cursor: pointer;
}

.evaluation-panel > *,
.service-ticket > *,
.deco-card > *,
.package-card > * {
  position: relative;
  z-index: 1;
}

.proof-band,
.reviews {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(rgba(17, 16, 14, 0.84), rgba(17, 16, 14, 0.92)),
    url("../assets/art-deco-site-background.png") center / cover no-repeat,
    var(--charcoal);
}

.proof-shell,
.about-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.proof-copy {
  max-width: 62ch;
}

.proof-badges {
  display: grid;
  gap: 16px;
}

.proof-badge {
  min-height: 164px;
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(214, 173, 87, 0.34);
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  background:
    var(--card-accent,
      radial-gradient(circle at 100% 112%, transparent 0 36%, rgba(214, 173, 87, 0.16) 36.5% 37.5%, transparent 38% 48%, rgba(33, 182, 168, 0.08) 48.5% 49.5%, transparent 50%)
    ),
    repeating-linear-gradient(90deg, rgba(214, 173, 87, 0.038) 0 1px, transparent 1px 62px),
    repeating-linear-gradient(0deg, rgba(214, 173, 87, 0.026) 0 1px, transparent 1px 62px),
    var(--card-sweep, linear-gradient(145deg, rgba(248, 241, 226, 0.08), transparent 42%)),
    rgba(8, 8, 7, 0.86);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.proof-badge img {
  width: min(100%, 148px);
  height: 104px;
  object-fit: contain;
}

.proof-badge span {
  color: var(--ivory);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.proof-badge:hover,
.proof-badge:focus-visible {
  border-color: rgba(214, 173, 87, 0.72);
  transform: translateY(-2px);
}

.about-feature,
.packages {
  background:
    linear-gradient(180deg, rgba(248, 241, 226, 0.94), rgba(239, 225, 194, 0.94)),
    var(--paper);
  color: var(--ink);
}

.about-visual {
  position: relative;
  margin: 0;
  border: 1px solid rgba(169, 120, 47, 0.32);
  border-radius: 8px;
  overflow: hidden;
  background: #201a14;
  box-shadow: 0 24px 60px rgba(83, 58, 28, 0.18);
}

.about-visual img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.about-visual figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border: 1px solid rgba(214, 173, 87, 0.4);
  background: rgba(17, 16, 14, 0.84);
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-copy {
  max-width: 64ch;
}

.about-copy p + p {
  margin-top: 14px;
}

.about-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.about-points li {
  position: relative;
  padding-left: 20px;
  color: #4b3f30;
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--brass);
  transform: rotate(45deg);
}

.proof-band h2,
.about-feature h2,
.services h2,
.differentiators h2,
.packages h2,
.reviews h2,
.final-cta h2 {
  font-family: "Limelight", Georgia, serif;
  font-size: 2.1rem;
  line-height: 1.08;
  font-weight: 400;
}

.services {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  --section-bg-opacity: 0.3;
  background:
    linear-gradient(45deg, rgba(214, 173, 87, 0.08) 25%, transparent 25% 75%, rgba(214, 173, 87, 0.08) 75%),
    var(--ink);
  background-size: 32px 32px, auto;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: var(--section-bg-opacity);
  background: url("../assets/art-deco-site-background.png") center / cover no-repeat;
}

.services > .container {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.service-track {
  display: grid;
  gap: 16px;
}

.service-ticket,
.deco-card,
.package-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
}

.service-ticket {
  display: grid;
  gap: 8px;
  padding: 24px;
  background:
    var(--card-accent,
      radial-gradient(circle at 105% 110%, transparent 0 38%, rgba(214, 173, 87, 0.16) 38.5% 39.5%, transparent 40% 48%, rgba(33, 182, 168, 0.08) 48.5% 49.5%, transparent 50%)
    ),
    repeating-linear-gradient(90deg, rgba(214, 173, 87, 0.04) 0 1px, transparent 1px 58px),
    repeating-linear-gradient(0deg, rgba(214, 173, 87, 0.028) 0 1px, transparent 1px 58px),
    var(--card-sweep, linear-gradient(145deg, rgba(214, 173, 87, 0.12), transparent 42%)),
    radial-gradient(circle at 88% 15%, rgba(244, 206, 74, 0.08), transparent 35%),
    rgba(8, 8, 7, 0.88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.service-ticket::after,
.deco-card::after,
.package-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(214, 173, 87, 0.18);
  background:
    linear-gradient(90deg, rgba(214, 173, 87, 0.34), transparent 72%) 0 0 / 58px 1px no-repeat,
    linear-gradient(180deg, rgba(214, 173, 87, 0.34), transparent 72%) 0 0 / 1px 58px no-repeat,
    linear-gradient(270deg, rgba(214, 173, 87, 0.28), transparent 72%) 100% 100% / 58px 1px no-repeat,
    linear-gradient(0deg, rgba(214, 173, 87, 0.28), transparent 72%) 100% 100% / 1px 58px no-repeat;
}

.service-icon,
.deco-card-icon {
  position: relative;
  width: 58px;
  height: 58px;
  display: block;
  margin-bottom: 8px;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.14), transparent 0 42%, rgba(0, 0, 0, 0.2) 100%),
    conic-gradient(from -45deg, var(--icon-color) 0 86deg, color-mix(in srgb, var(--icon-color) 82%, #080807) 86deg 90deg, var(--icon-color) 90deg 176deg, color-mix(in srgb, var(--icon-color) 82%, #080807) 176deg 180deg, var(--icon-color) 180deg 266deg, color-mix(in srgb, var(--icon-color) 82%, #080807) 266deg 270deg, var(--icon-color) 270deg 356deg, color-mix(in srgb, var(--icon-color) 82%, #080807) 356deg 360deg);
  box-shadow:
    inset 0 0 0 2px rgba(214, 173, 87, 0.86),
    inset 0 0 0 5px rgba(8, 8, 7, 0.76),
    0 0 0 1px rgba(248, 241, 226, 0.16),
    0 12px 24px rgba(0, 0, 0, 0.38);
}

.icon-lines {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.icon-lines-one {
  background: conic-gradient(from 18deg, transparent 0 43deg, var(--brass) 43deg 49deg, #080807 49deg 56deg, transparent 56deg 133deg, var(--brass) 133deg 139deg, #080807 139deg 146deg, transparent 146deg 223deg, var(--brass) 223deg 229deg, #080807 229deg 236deg, transparent 236deg 313deg, var(--brass) 313deg 319deg, #080807 319deg 326deg, transparent 326deg 360deg);
  animation: icon-line-spin 38s linear infinite;
}

.icon-lines-two {
  inset: 4px;
  background: conic-gradient(from 72deg, transparent 0 62deg, #080807 62deg 69deg, var(--brass) 69deg 74deg, transparent 74deg 152deg, #080807 152deg 159deg, var(--brass) 159deg 164deg, transparent 164deg 242deg, #080807 242deg 249deg, var(--brass) 249deg 254deg, transparent 254deg 332deg, #080807 332deg 339deg, var(--brass) 339deg 344deg, transparent 344deg 360deg);
  animation: icon-line-spin-reverse 52s linear infinite;
}

.icon-lines-three {
  inset: 8px;
  background: conic-gradient(from 126deg, transparent 0 78deg, var(--brass) 78deg 84deg, #080807 84deg 91deg, transparent 91deg 168deg, var(--brass) 168deg 174deg, #080807 174deg 181deg, transparent 181deg 258deg, var(--brass) 258deg 264deg, #080807 264deg 271deg, transparent 271deg 348deg, var(--brass) 348deg 354deg, #080807 354deg 360deg);
  animation: icon-line-spin 66s linear infinite;
}

.icon-glyph {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 255, 255, 0.13), transparent 34%),
    #080807;
  box-shadow:
    inset 0 0 0 1px rgba(214, 173, 87, 0.82),
    0 0 0 1px rgba(8, 8, 7, 0.68),
    0 4px 10px rgba(0, 0, 0, 0.5);
  color: var(--ivory);
  font-family: "Limelight", Georgia, serif;
  font-size: 1.38rem;
  line-height: 1;
  text-align: center;
}

@keyframes icon-line-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes icon-line-spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}

.service-icon-red {
  --icon-color: var(--coral);
}

.service-icon-yellow {
  --icon-color: var(--yellow);
}

.service-icon-green {
  --icon-color: #43d05c;
}

.service-icon-cyan {
  --icon-color: var(--teal);
}

.service-icon-brass {
  --icon-color: var(--brass);
}

.ticket-number {
  color: var(--teal);
  font-family: "Limelight", Georgia, serif;
  font-size: 1.25rem;
}

.service-ticket h3,
.deco-card h3,
.package-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.service-ticket p,
.deco-card p,
.package-card li {
  color: var(--ivory-dim);
}

.logo-grid,
.deco-columns,
.package-grid {
  display: grid;
  gap: 20px;
}


.differentiators {
  background:
    linear-gradient(180deg, rgba(249, 241, 224, 0.96), rgba(236, 223, 193, 0.96)),
    var(--paper);
  color: var(--ink);
  border-top: 1px solid rgba(169, 120, 47, 0.2);
  border-bottom: 1px solid rgba(169, 120, 47, 0.2);
}

.differentiators .eyebrow,
.packages .eyebrow {
  color: var(--brass-dark);
}

.deco-card {
  padding: 24px;
  background:
    var(--card-accent,
      radial-gradient(circle at 104% 110%, transparent 0 40%, rgba(169, 120, 47, 0.12) 40.5% 41.5%, transparent 42% 50%, rgba(33, 182, 168, 0.05) 50.5% 51.5%, transparent 52%)
    ),
    repeating-linear-gradient(90deg, rgba(169, 120, 47, 0.05) 0 1px, transparent 1px 62px),
    repeating-linear-gradient(0deg, rgba(169, 120, 47, 0.032) 0 1px, transparent 1px 62px),
    var(--card-sweep, linear-gradient(180deg, rgba(255, 255, 255, 0.52), transparent 44%)),
    #fffaf0;
  color: var(--ink);
  border-color: rgba(169, 120, 47, 0.34);
  box-shadow: 0 20px 48px rgba(83, 58, 28, 0.14);
}

.deco-card p {
  color: #4b3f30;
}

.deco-card-media {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border: 1px solid rgba(169, 120, 47, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(214, 173, 87, 0.16), transparent 48%),
    rgba(255, 250, 240, 0.88);
}

.deco-card-media img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: saturate(0.9) sepia(0.14);
}

.package-card {
  padding: 26px;
  background:
    var(--card-accent,
      radial-gradient(circle at 108% 108%, transparent 0 36%, rgba(169, 120, 47, 0.18) 36.5% 37.5%, transparent 38% 48%, rgba(33, 182, 168, 0.06) 48.5% 49.5%, transparent 50%)
    ),
    repeating-linear-gradient(90deg, rgba(169, 120, 47, 0.055) 0 1px, transparent 1px 62px),
    repeating-linear-gradient(0deg, rgba(169, 120, 47, 0.038) 0 1px, transparent 1px 62px),
    var(--card-sweep, linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent 44%)),
    #fffaf0;
  color: var(--ink);
  border-color: rgba(169, 120, 47, 0.4);
  box-shadow: 0 22px 60px rgba(83, 58, 28, 0.14);
}

.package-card.featured {
  background:
    var(--card-accent,
      radial-gradient(circle at 108% 108%, transparent 0 36%, rgba(214, 173, 87, 0.18) 36.5% 37.5%, transparent 38% 48%, rgba(33, 182, 168, 0.08) 48.5% 49.5%, transparent 50%)
    ),
    repeating-linear-gradient(90deg, rgba(214, 173, 87, 0.042) 0 1px, transparent 1px 62px),
    repeating-linear-gradient(0deg, rgba(214, 173, 87, 0.03) 0 1px, transparent 1px 62px),
    var(--card-sweep, linear-gradient(145deg, rgba(214, 173, 87, 0.14), transparent 45%)),
    rgba(8, 8, 7, 0.96);
  color: var(--ivory);
  border-color: rgba(214, 173, 87, 0.72);
}

.proof-badge:nth-child(4n + 1),
.service-ticket:nth-child(4n + 1),
.deco-card:nth-child(4n + 1),
.package-card:nth-child(4n + 1) {
  --card-accent:
    radial-gradient(circle at 100% 112%, transparent 0 36%, rgba(214, 173, 87, 0.16) 36.5% 37.5%, transparent 38% 48%, rgba(33, 182, 168, 0.08) 48.5% 49.5%, transparent 50%);
  --card-sweep: linear-gradient(145deg, rgba(214, 173, 87, 0.12), transparent 42%);
}

.proof-badge:nth-child(4n + 2),
.service-ticket:nth-child(4n + 2),
.deco-card:nth-child(4n + 2),
.package-card:nth-child(4n + 2) {
  --card-accent:
    radial-gradient(circle at 0 100%, transparent 0 34%, rgba(214, 173, 87, 0.14) 34.5% 35.5%, transparent 36% 46%, rgba(33, 182, 168, 0.06) 46.5% 47.5%, transparent 48%),
    linear-gradient(315deg, transparent 0 82%, rgba(214, 173, 87, 0.08) 82% 84%, transparent 84%);
  --card-sweep: linear-gradient(215deg, rgba(248, 241, 226, 0.09), transparent 38%);
}

.proof-badge:nth-child(4n + 3),
.service-ticket:nth-child(4n + 3),
.deco-card:nth-child(4n + 3),
.package-card:nth-child(4n + 3) {
  --card-accent:
    radial-gradient(circle at 100% 0, rgba(214, 173, 87, 0.12), transparent 26%),
    linear-gradient(135deg, transparent 0 78%, rgba(214, 173, 87, 0.08) 78% 80%, transparent 80%),
    linear-gradient(0deg, transparent 0 72%, rgba(33, 182, 168, 0.05) 72% 73%, transparent 73%);
  --card-sweep: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 38%);
}

.proof-badge:nth-child(4n + 4),
.service-ticket:nth-child(4n + 4),
.deco-card:nth-child(4n + 4),
.package-card:nth-child(4n + 4) {
  --card-accent:
    linear-gradient(90deg, transparent 0 82%, rgba(214, 173, 87, 0.08) 82% 83%, transparent 83% 88%, rgba(214, 173, 87, 0.06) 88% 89%, transparent 89%),
    radial-gradient(circle at 84% 18%, rgba(214, 173, 87, 0.12), transparent 18%),
    linear-gradient(225deg, transparent 0 84%, rgba(33, 182, 168, 0.05) 84% 85%, transparent 85%);
  --card-sweep: linear-gradient(125deg, rgba(214, 173, 87, 0.08), transparent 36%);
}

.package-card img {
  width: 86px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: saturate(0.7) sepia(0.18);
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 20px;
  color: #4b3f30;
}

.package-card.featured li {
  color: var(--ivory-dim);
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  background: var(--brass);
  transform: rotate(45deg);
}

.packages-link {
  margin: 28px 0 0;
  text-align: center;
}

.packages-link a {
  color: var(--brass-dark);
  font-size: 1.12rem;
  font-weight: 800;
  text-decoration: none;
}

.review-actions {
  display: grid;
  gap: 14px;
}

.review-actions .button {
  width: 100%;
}

.industry-panel {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(214, 173, 87, 0.32);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 110%, transparent 0 40%, rgba(214, 173, 87, 0.12) 40.5% 41.5%, transparent 42%),
    rgba(8, 8, 7, 0.62);
}

.industry-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(214, 173, 87, 0.24);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ivory-dim);
  background: rgba(17, 16, 14, 0.66);
}

.industry-links a:hover,
.industry-links a:focus-visible {
  color: var(--ivory);
  border-color: rgba(214, 173, 87, 0.56);
}

.final-cta {
  position: relative;
  padding: 80px 0;
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.96), rgba(17, 16, 14, 0.74)),
    url("../assets/chattanooga-bridge.jpg") center bottom / cover no-repeat;
}

.final-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.site-footer,
.footer {
  position: relative;
  padding: calc(clamp(35px, 3vw, 45px) + 28px) 0 24px;
  background: #0d0c0b;
  color: var(--ivory-dim);
  border-top: 1px solid var(--line);
}

.site-footer::before,
.footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: clamp(35px, 3vw, 45px);
  background: #090806;
  border-top: 1px solid rgba(152, 116, 52, 0.58);
  border-bottom: 1px solid rgba(152, 116, 52, 0.52);
}

.site-footer::after,
.footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: clamp(35px, 3vw, 45px);
  background: url("../assets/art-deco-divider-m-repeat-tight.png") center center / auto 100% repeat-x;
  filter: drop-shadow(0 -1px 5px rgba(0, 0, 0, 0.18));
  opacity: 0.96;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer .footer-brand,
.footer .footer-brand {
  display: block;
  width: 100%;
  max-width: 100%;
  white-space: normal;
}

.site-footer h2,
.footer h4 {
  margin-bottom: 12px;
  color: var(--brass);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-footer a,
.footer-links a {
  min-height: 32px;
  display: block;
  color: var(--ivory-dim);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--brass);
}

.footer-brand-logo {
  margin-bottom: 16px;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  max-width: 100%;
  white-space: nowrap;
}

.footer-brand p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(214, 173, 87, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.footer-social a::before {
  content: "";
  width: 18px;
  height: 18px;
  opacity: 0.86;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.footer-social a[aria-label*="Facebook"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f8f1e2'%3E%3Cpath d='M13.5 22v-8h2.7l.4-3h-3.1V9.1c0-.9.3-1.5 1.6-1.5H17V4.9c-.4 0-1.5-.1-2.8-.1-2.8 0-4.7 1.7-4.7 4.8V11H6.8v3h2.7v8h4z'/%3E%3C/svg%3E");
}

.footer-social a[aria-label*="Instagram"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f8f1e2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'/%3E%3C/svg%3E");
}

.footer-social a[aria-label*="Email"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f8f1e2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16v16H4z'/%3E%3Cpath d='m22 6-10 7L2 6'/%3E%3C/svg%3E");
}

.footer-bottom {
  width: min(calc(100% - 32px), var(--max));
  margin: 32px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(214, 173, 87, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  color: rgba(248, 241, 226, 0.62);
  font-size: 0.9rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 699px) {
  .hero {
    padding-bottom: 56px;
  }

  .hero-inner {
    width: min(calc(100% - 44px), var(--max));
    gap: 22px;
  }

  .hero-copy {
    padding-top: 34px;
    padding-inline: 8px 4px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .deco-frame {
    inset: calc(var(--header-height) + 20px) 8px 10px;
  }

  .deco-frame span {
    width: 30px;
    height: 30px;
  }

  .deco-frame span:nth-child(1),
  .deco-frame span:nth-child(2) {
    top: 12px;
  }

  .deco-frame span:nth-child(3),
  .deco-frame span:nth-child(4) {
    bottom: 12px;
  }

  .deco-frame span:nth-child(1),
  .deco-frame span:nth-child(3) {
    left: 12px;
  }

  .deco-frame span:nth-child(2),
  .deco-frame span:nth-child(4) {
    right: 12px;
  }

  .searchlight-rig {
    left: 0;
    top: 0;
    width: 100%;
    height: 100svh;
    opacity: 0.22;
  }

  .searchlight-one {
    left: 42px;
    bottom: 6px;
  }

  .searchlight-two {
    left: 112px;
    bottom: -20px;
  }
}

@media (min-width: 700px) and (max-width: 979px) {
  .hero {
    padding-bottom: 64px;
  }

  .hero-inner {
    width: min(calc(100% - 48px), var(--max));
    gap: 26px;
  }

  .hero-copy {
    max-width: none;
    padding-top: 34px;
    padding-inline: 16px 8px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  h1 {
    font-size: clamp(3.45rem, 7.2vw, 4rem);
    line-height: 0.95;
  }

  .deco-frame {
    inset: calc(var(--header-height) + 18px) 12px 12px;
  }

  .deco-frame span {
    width: 34px;
    height: 34px;
  }

  .deco-frame span:nth-child(1),
  .deco-frame span:nth-child(2) {
    top: 10px;
  }

  .deco-frame span:nth-child(3),
  .deco-frame span:nth-child(4) {
    bottom: 10px;
  }

  .deco-frame span:nth-child(1),
  .deco-frame span:nth-child(3) {
    left: 10px;
  }

  .deco-frame span:nth-child(2),
  .deco-frame span:nth-child(4) {
    right: 10px;
  }
}

@media (min-width: 700px) {
  h1 {
    font-size: 4.3rem;
  }

  .proof-band h2,
  .about-feature h2,
  .services h2,
  .differentiators h2,
  .packages h2,
  .reviews h2,
  .final-cta h2 {
    font-size: 2.7rem;
  }

  .proof-badges {
    grid-template-columns: repeat(5, 1fr);
  }

  .proof-shell,
  .about-grid,
  .final-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .service-track {
    grid-template-columns: repeat(6, 1fr);
  }

  .service-ticket,
  .service-ticket:nth-child(1),
  .service-ticket:nth-child(2),
  .service-ticket:nth-child(3),
  .service-ticket:nth-child(4),
  .service-ticket:nth-child(5),
  .service-ticket:nth-child(6) {
    grid-column: span 2;
  }

  .deco-columns,
  .package-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .review-actions {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 700px) and (max-width: 979px) {
  h1 {
    font-size: clamp(3.45rem, 7.2vw, 4rem);
    line-height: 0.95;
  }
}

@media (min-width: 980px) {
  .site-header {
    padding-inline: 32px;
  }

  .nav-toggle {
    display: none;
  }

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

  .hero-inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
    align-items: center;
  }

  .hero-copy {
    padding-top: 36px;
    padding-inline: 28px 10px;
  }

  .evaluation-panel {
    margin-top: 36px;
  }
}
