:root {
  --ink: #15110e;
  --ink-2: #211c18;
  --ink-soft: #2c2620;
  --red: #c8102e;
  --red-dark: #a00c24;
  --red-soft: rgba(200, 16, 46, .08);
  --cream: #f8f5ef;
  --cream-2: #efe9df;
  --paper: #ffffff;
  --muted: #6e665d;
  --muted-2: #918a80;
  --line: rgba(21, 17, 14, .12);
  --line-light: rgba(255, 255, 255, .18);

  --font-display: "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1580px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius: 2px;
  --shadow: 0 24px 60px -28px rgba(21, 17, 14, .35);
  --shadow-soft: 0 14px 40px -22px rgba(21, 17, 14, .45);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --section-y: clamp(2.5rem, 9vw, 4.5rem);
}

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

* {
  margin: 0;
}

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

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
  padding: 0;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--ink);
}

.display {
  font-size: clamp(2.5rem, 5.6vw, 4.7rem);
  font-weight: 600;
  line-height: 1.05;
}

h2.section-title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
}

p {
  color: var(--muted);
}

strong {
  color: var(--ink);
  font-weight: 600;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red);
  display: inline-block;
}

.eyebrow.center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red);
  display: inline-block;
}

.eyebrow.light {
  color: #e7b8bf;
}

.eyebrow.light::before,
.eyebrow.light.center::after {
  background: rgba(255, 255, 255, .5);
}

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--muted);
  line-height: 1.75;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
}

.center {
  text-align: center;
}

.section-head {
  max-width: 720px;
}

.section-head.center {
  margin-inline: auto;
}

.section-head .eyebrow {
  margin-bottom: 1.2rem;
}

.section-head p {
  margin-top: 1.2rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-sans);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 1.05rem 2rem;
  border-radius: var(--radius);
  transition: all .4s var(--ease);
  position: relative;
  white-space: nowrap;
}

.btn svg {
  width: 14px;
  height: 14px;
  transition: transform .4s var(--ease);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(200, 16, 46, .6);
}

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

.btn-dark:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, .45);
  color: #fff;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, .72);
  font-size: .72rem;
  letter-spacing: .04em;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  gap: 1rem;
}

.topbar a {
  transition: color .3s;
}

.topbar a:hover {
  color: #fff;
}

.topbar-left {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}

.topbar-left span {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.topbar-left svg {
  width: 13px;
  height: 13px;
  color: var(--red);
}

.topbar-right {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}

.topbar-right a {
  display: inline-flex;
}

.topbar-right svg {
  width: 15px;
  height: 15px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 245, 239, .0);
  transition: background .45s var(--ease), box-shadow .45s var(--ease), backdrop-filter .45s;
}

.site-header .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 2rem;
  transition: min-height .4s var(--ease);
}

.brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-shrink: 0;
}

.brand img {
  width: 68px;
  height: 68px;
  transition: width .4s var(--ease), height .4s var(--ease);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text .b1 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ink);
}

.brand-text .b2 {
  font-family: var(--font-sans);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 3px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

.main-nav a {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2);
  position: relative;
  padding-block: .4rem;
  transition: color .3s;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--red);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.main-nav .has-dropdown {
  position: relative;
}

.main-nav .has-dropdown>a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.main-nav .has-dropdown>a .caret {
  width: 11px;
  height: 11px;
  transition: transform .3s var(--ease);
}

.main-nav .has-dropdown:hover>a .caret {
  transform: rotate(180deg);
}

.main-nav .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 210px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  z-index: 60;
}

.main-nav .dropdown::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.main-nav .has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(6px);
}

.main-nav .dropdown li {
  display: block;
}

.main-nav .dropdown a {
  display: block;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2) !important;
  white-space: nowrap;
}

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

.main-nav .dropdown a:hover {
  background: var(--cream-2);
  color: var(--red) !important;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* header scrolled state */
.site-header.scrolled {
  background: rgba(248, 245, 239, .94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -24px rgba(0, 0, 0, .5);
}

.site-header.scrolled .nav-inner {
  min-height: 76px;
}

.site-header.scrolled .brand img {
  width: 56px;
  height: 56px;
}

/* header over dark hero (transparent, light text) */
.site-header.over-hero:not(.scrolled) .brand-text .b1,
.site-header.over-hero:not(.scrolled) .main-nav a {
  color: #fff;
}

.site-header.over-hero:not(.scrolled) .main-nav a:hover {
  color: #fff;
}

.site-header.over-hero:not(.scrolled) .burger span {
  background: #fff;
}

/* burger */
.burger {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
}

.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: all .35s var(--ease);
}

.burger span:nth-child(1) {
  top: 0;
}

.burger span:nth-child(2) {
  top: 10px;
}

.burger span:nth-child(3) {
  top: 20px;
}

body.nav-open .burger span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
  background: #fff;
}

body.nav-open .burger span:nth-child(2) {
  opacity: 0;
}

body.nav-open .burger span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
  background: #fff;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - 42px);
  display: flex;
  flex-direction: column;
  color: #fff;
  margin-top: -92px;
  padding-top: 92px;
  overflow: hidden;
}

.hero>.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, rgba(10, 8, 6, .82) 0%, rgba(10, 8, 6, .55) 45%, rgba(10, 8, 6, .2) 100%);
}

.hero-inner {
  max-width: 760px;
}

.hero .eyebrow {
  margin-bottom: 1.1rem;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.1rem;
}

.hero h1 .accent {
  font-style: italic;
  color: #fff;
}

.hero p {
  color: rgba(255, 255, 255, .85);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  max-width: 640px;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-meta {
  position: static;
  background: linear-gradient(0deg, rgba(10, 8, 6, .62), transparent);
}

.hero-meta .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.2rem;
}

.hero-meta .item {
  color: #fff;
}

.hero-meta .item .n {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1;
}

.hero-meta .item .l {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  margin-top: .5rem;
}

.scroll-cue {
  position: absolute;
  bottom: 9.5rem;
  right: var(--gutter);
  writing-mode: vertical-rl;
  font-size: .64rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, .5);
  animation: cue 2s var(--ease) infinite;
  transform-origin: top;
}

@keyframes cue {

  0%,
  100% {
    transform: scaleY(.4);
    opacity: .4
  }

  50% {
    transform: scaleY(1);
    opacity: 1
  }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  color: #fff;
  text-align: center;
  /* padding: clamp(7rem, 16vh, 11rem) 0 clamp(4.5rem, 9vh, 7rem); */
  padding: 100px 0 100px;
  margin-top: -92px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 800px;
}

.page-hero .hero-bg img {
  filter: brightness(.72);
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(10, 8, 6, .2), rgba(10, 8, 6, .2));
}

.page-hero .inner {
  max-width: 720px;
  margin-inline: auto;
  /* padding-top: 60px; */
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255, 255, 255, .85);
  font-size: 1.1rem;
}

.breadcrumb {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  margin-top: 1.6rem;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  color: var(--red);
}

/* ---------- Intro / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.split.reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
}

.split-media .frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-media .frame img {
  width: 100%;
  /* aspect-ratio: 6/5; */
  object-fit: cover;
}

/* 
.split-media .frame.wide img {
  aspect-ratio: 5/4;
} */

.split-media .badge-card {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--ink);
  color: #fff;
  padding: 1.6rem 1.8rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 220px;
}

.split-media .badge-card .n {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: #fff;
}

.split-media .badge-card .n .red {
  color: var(--red);
}

.split-media .badge-card .l {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  margin-top: .5rem;
}

.split-media .accent-line {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 90px;
  height: 90px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
  z-index: 2;
}

.split-body h2 {
  margin-bottom: 1.4rem;
}

.split-body p+p {
  margin-top: 1.1rem;
}

.split-body .btn {
  margin-top: 2rem;
}

.checklist {
  margin-top: 1.8rem;
  display: grid;
  gap: .9rem;
}

.checklist li {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  color: var(--ink-2);
  font-size: .98rem;
}

.checklist li svg {
  width: 20px;
  height: 20px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist li strong {
  display: block;
}

.checklist li span {
  color: var(--muted);
  font-size: .9rem;
}

/* ---------- Stats band ---------- */
.stats-band {
  background: var(--ink);
  color: #fff;
}

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

.stats-grid .stat {
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.stats-grid .stat:last-child {
  border-right: none;
}

.stats-grid .n {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  color: #fff;
}

.stats-grid .n .red {
  color: var(--red);
}

.stats-grid .l {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  margin-top: .8rem;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
  transition: background .4s, color .4s;
}

.service-card:hover .service-icon {
  background: var(--red);
  color: #fff;
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: .7rem;
}

.service-card p {
  font-size: .94rem;
}

.service-card .more {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.4rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  transition: gap .3s, color .3s;
}

.service-card:hover .more {
  color: var(--red);
  gap: .8rem;
}

.service-card .more svg {
  width: 13px;
  height: 13px;
}

/* services with image (services page) */
.service-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: none;
}

.service-row.reverse .sr-media {
  order: 2;
}

.service-row .sr-media img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  object-position: top;
}

.service-row .num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--red);
  letter-spacing: .1em;
}

.service-row h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin: .6rem 0 1rem;
}

/* ---------- Gallery / projects ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.g-item:hover img {
  transform: scale(1.07);
}

.g-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 8, 6, .7), transparent 55%);
  opacity: 0;
  transition: opacity .5s;
}

.g-item:hover::after {
  opacity: 1;
}

.g-cap {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1.6rem;
  color: #fff;
  transform: translateY(12px);
  opacity: 0;
  transition: all .5s var(--ease);
  z-index: 2;
}

.g-item:hover .g-cap {
  transform: translateY(0);
  opacity: 1;
}

.g-cap .t {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.g-cap .s {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  margin-top: .3rem;
}

.g-cap .s::before {
  content: "— ";
  color: var(--red);
}

/* preview masonry spans */
.span-6 {
  grid-column: span 6;
}

.span-4 {
  grid-column: span 4;
}

.span-8 {
  grid-column: span 8;
}

.span-3 {
  grid-column: span 3;
}

.tall {
  grid-row: span 2;
}

.g-item.tall img {
  min-height: 100%;
}

.projects-preview .g-item {
  min-height: 300px;
}

.projects-preview .tall {
  min-height: 100%;
}

/* gallery masonry */
.masonry {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}

.masonry .g-item {
    break-inside: avoid;
    margin-bottom: 0;
    display: block;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.masonry .g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* gallery captions always legible (not hover-only) */
.masonry .g-item::after {
  opacity: 1;
  background: linear-gradient(0deg, rgba(10, 8, 6, .82), transparent 48%);
}

.masonry .g-cap {
  opacity: 1;
  transform: none;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin: 0 auto 3rem;
}

.gallery-filters button {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .7rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 50px;
  color: var(--ink-2);
  transition: all .3s;
}

.gallery-filters button:hover {
  border-color: var(--ink);
}

.gallery-filters button.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.masonry .g-item.hide {
  display: none;
}

/* ---------- Feature (dark, image bg) ---------- */
.feature-band {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.feature-band .hero-bg img {
  filter: brightness(.4);
}

.feature-band::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(10, 8, 6, .4), rgba(10, 8, 6, .2));
}

.feature-band .inner {
  max-width: 620px;
}

.feature-band h2 {
  color: #fff;
  margin-bottom: 10px;
}

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

.feature-list {
  margin-top: 2rem;
  display: grid;
  gap: 1.4rem;
}

.feature-list li {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.feature-list .fi {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.feature-list .fi svg {
  width: 22px;
  height: 22px;
}

.feature-list h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: .25rem;
}

.feature-list p {
  font-size: .9rem;
  margin: 0;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--cream-2);
  position: relative;
  overflow: hidden;
}

.quote-mark {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 16rem;
  line-height: 1;
  color: var(--red);
  opacity: .08;
  pointer-events: none;
}

.tslider {
  max-width: 880px;
  margin: 2.5rem auto 0;
  position: relative;
}

.tslide {
  display: none;
  text-align: center;
}

.tslide.active {
  display: block;
  animation: fade .7s var(--ease);
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.tstars {
  color: var(--red);
  letter-spacing: .25em;
  margin-bottom: 1.6rem;
}

.tslide blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
}

.tslide .who {
  margin-top: 1.8rem;
}

.tslide .who .name {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
}

.tslide .who .loc {
  font-size: .78rem;
  color: var(--muted);
  margin-top: .25rem;
  letter-spacing: .04em;
}

.tnav {
  display: flex;
  justify-content: center;
  gap: .7rem;
  margin-top: 2.6rem;
}

.tdot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(21, 17, 14, .18);
  transition: all .35s;
}

.tdot.active {
  background: var(--red);
  width: 26px;
  border-radius: 6px;
}

.tarrows {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 38%;
  width: 100%;
  pointer-events: none;
}

.tarrow {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.tarrow:hover {
  background: var(--ink);
  color: #fff;
}

.tarrow svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 1400px) {
  .page-hero {
    height: 600px;
  }
  .main-nav a {
    font-size: .6rem;
  }
}

@media (max-width: 980px) {
  .tarrows {
    display: none;
  }
}

/* ---------- Associations strip ---------- */
.assoc {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.assoc .container {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

.assoc .lab {
  text-align: center;
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 2.2rem;
}

.assoc-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.assoc-row img {
  height: 64px;
  width: auto;
  filter: grayscale(1);
  opacity: .55;
  transition: all .4s;
}

.assoc-row img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

/* ---------- Leaders ---------- */
.leaders-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 3.5rem;
}

.leader-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 42% 1fr;
}

.leader-card .lc-photo {
  position: relative;
}

.leader-card .lc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.leader-card .lc-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leader-card .lc-body p {
  margin-bottom: 10px;
}

.leader-card .lc-body .role {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .5rem;
}

.leader-card .lc-body h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.leader-card .lc-body p {
  font-size: .92rem;
}

.leader-card .lc-socials {
  display: flex;
  gap: .8rem;
  margin-top: 1.4rem;
}

.leader-card .lc-socials a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all .3s;
}

.leader-card .lc-socials a:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.leader-card .lc-socials svg {
  width: 15px;
  height: 15px;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding: 120px 0;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(10, 8, 6, .55);
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
}

.cta-band p {
  color: rgba(255, 255, 255, .85);
  max-width: 560px;
  margin: 1.2rem auto 2.4rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-info .ci-item {
  display: flex;
  gap: 1.1rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.contact-info .ci-item:first-child {
  padding-top: 0;
}

.contact-info .ci-ico {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info .ci-ico svg {
  width: 20px;
  height: 20px;
}

.contact-info .ci-item .lab {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: .35rem;
}

.contact-info .ci-item .val {
  color: var(--ink);
  font-weight: 500;
}

.contact-info .ci-item .val a {
  transition: color .3s;
}

.contact-info .ci-item .val a:hover {
  color: var(--red);
}

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-soft);
}

.form-card h3 {
  margin-bottom: 1.6rem;
}

.field {
  margin-bottom: 1.2rem;
}

.field label {
  display: block;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 600;
  margin-bottom: .5rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--ink);
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  transition: border-color .3s, box-shadow .3s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
  background: #fff;
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-note {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 1rem;
}

.form-success {
  display: none;
  background: var(--red-soft);
  border: 1px solid rgba(200, 16, 46, .25);
  color: var(--red-dark);
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  font-size: .9rem;
  margin-bottom: 1.2rem;
}

.form-success.show {
  display: block;
}

.map-embed {
  position: relative;
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 280px;
  background: var(--cream-2);
}

.map-embed::before {
  content: "Greater Memphis & Middle Tennessee";
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  gap: .6rem;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  background:
    radial-gradient(circle at 30% 40%, rgba(200, 16, 46, .08), transparent 40%),
    repeating-linear-gradient(45deg, var(--cream-2) 0 18px, #e7e0d4 18px 19px);
}

.map-embed iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
  filter: grayscale(.3);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .62);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand img {
  width: 92px;
  margin-bottom: 1.4rem;
  background: var(--cream);
  padding: 13px;
  border-radius: 12px;
  box-shadow: 0 10px 30px -16px rgba(0, 0, 0, .6);
}

.footer-brand p {
  color: rgba(255, 255, 255, .6);
  font-size: .9rem;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: .7rem;
  margin-top: 1.6rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .3s;
}

.footer-socials a:hover {
  background: var(--red);
  border-color: var(--red);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.footer-col ul {
  display: grid;
  gap: .8rem;
}

.footer-col a,
.footer-col li {
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
  transition: color .3s;
}

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

.footer-col .ci {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
}

.footer-col .ci svg {
  width: 15px;
  height: 15px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 1.8rem;
  font-size: .8rem;
}

.footer-bottom a:hover {
  color: #fff;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 6, 5, .92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vw;
}

.lightbox.open {
  display: flex;
  animation: fade .35s;
}

.lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px -20px #000;
}

.lightbox .lb-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.lightbox .lb-close:hover {
  background: #fff;
  color: var(--ink);
}

.lightbox .lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.lightbox .lb-nav:hover {
  background: #fff;
  color: var(--ink);
}

.lightbox .lb-prev {
  left: 2vw;
}

.lightbox .lb-next {
  right: 2vw;
}

.lightbox svg {
  width: 20px;
  height: 20px;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

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

.reveal.d1 {
  transition-delay: .08s;
}

.reveal.d2 {
  transition-delay: .16s;
}

.reveal.d3 {
  transition-delay: .24s;
}

.reveal.d4 {
  transition-delay: .32s;
}

.reveal.d5 {
  transition-delay: .4s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ---------- Video Feature Section ---------- */
.video-bg-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 30%, rgba(200, 16, 46, .12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(200, 16, 46, .08) 0%, transparent 45%);
}

.video-frame-outer {
  position: relative;
  max-width: 960px;
  margin-inline: auto;
}

.vf-accent-tl {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 72px;
  height: 72px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
  z-index: 2;
  pointer-events: none;
}

.vf-accent-br {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 72px;
  height: 72px;
  border-bottom: 2px solid var(--red);
  border-right: 2px solid var(--red);
  z-index: 2;
  pointer-events: none;
}

.video-frame-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .75), 0 0 0 1px rgba(255, 255, 255, .08);
  background: #0a0806;
}

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

.vf-placeholder {
  cursor: pointer;
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a14100a 0%, #0f0c0938 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: opacity .5s;
}

.vf-placeholder.hidden {
  opacity: 0;
  pointer-events: none;
}

.vfp-inner {
  text-align: center;
  padding: 2rem;
}

.vfp-play {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  box-shadow: 0 0 0 12px rgba(200, 16, 46, .15), 0 0 0 24px rgba(200, 16, 46, .07);
}

.vfp-play svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}

.vfp-label {
  color: rgba(255, 255, 255, .72);
  font-size: .9rem;
  margin-bottom: .5rem;
}

.vfp-hint {
  color: rgba(255, 255, 255, .38);
  font-size: .75rem;
}

.vfp-hint code {
  font-family: monospace;
  color: var(--red);
  background: rgba(200, 16, 46, .12);
  padding: .1em .4em;
  border-radius: 3px;
}

.video-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem 0;
  max-width: 960px;
  margin: 2.4rem auto 0;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 1.4rem 2rem;
}

.vm-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex: 1 1 auto;
}

.vm-icon {
  color: var(--red);
  display: flex;
}

.vm-icon svg {
  width: 18px;
  height: 18px;
}

.vm-text {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .72);
}

.vm-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, .14);
  flex-shrink: 0;
}

.vm-cta {
  margin-left: auto;
  flex-shrink: 0;
}

/* ================================================================
   NEWS PAGE — SPECIFIC STYLES
   ================================================================ */

/* Featured showcase — 3 big dark-overlay cards */
.featured-showcase {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.fsc-main {
  grid-row: span 2;
}

.fsc-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.fsc-main {
  min-height: 500px;
}

.fsc-item img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.fsc-item:hover img {
  transform: scale(1.06);
}

/* .fsc-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 8, 6, .88) 0%, rgba(10, 8, 6, .4) 50%, rgba(10, 8, 6, .05) 100%);
  z-index: 1;
} */

.fsc-body {
  position: relative;
  z-index: 2;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  color: #fff;
  display: none;
}

.fsc-cat {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .55rem;
}

.fsc-cat::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--red);
}

.fsc-source {
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: .4rem;
}

.fsc-body h3 {
  color: #fff;
  line-height: 1.25;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  margin-bottom: .55rem;
}

.fsc-main .fsc-body h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.fsc-body p {
  font-size: .84rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.55;
  margin-bottom: .9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fsc-body p strong {
    color: inherit;
}

.fsc-main .fsc-body p {
  -webkit-line-clamp: 3;
}

.fsc-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  padding-bottom: 2px;
  transition: color .3s, border-color .3s;
}

.fsc-item:hover .fsc-link {
  color: var(--red);
  border-color: var(--red);
}

.fsc-link svg {
  width: 10px;
  height: 10px;
  transition: transform .3s var(--ease);
}

.fsc-item:hover .fsc-link svg {
  transform: translateX(3px);
}

/* Placeholder gradient thumb (for cards without a photo) */
.fsc-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1410 0%, #2c2218 100%);
}

.fsc-placeholder iframe {
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    max-width: 100% !important;
}

.fsc-placeholder .net-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: var(--font-sans);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: .35em .8em;
  border-radius: 1px;
}

.fsc-placeholder .play-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fsc-placeholder .play-bg svg {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, .08);
}

/* Filter bar */
.news-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2rem;
}

.news-filter-bar button {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .65rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 50px;
  color: var(--ink-2);
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.news-filter-bar button svg {
  width: 13px;
  height: 13px;
}

.news-filter-bar button:hover {
  border-color: var(--ink);
}

.news-filter-bar button.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.results-count {
  font-size: .74rem;
  color: var(--muted-2);
  letter-spacing: .06em;
  margin-bottom: 1.4rem;
}

/* News card grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

.news-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 2fr;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  position: relative;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}


.news-card.hidden {
  display: none;
}

/* Thumb */
.nc-thumb {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
  text-decoration: none;
}

.nc-thumb img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform .9s var(--ease);
  display: block;
}

.news-card:hover .nc-thumb img {
  transform: scale(1.06);
}

/* Gradient placeholder thumb */
.nc-thumb-bg {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  position: relative;
}

.nc-thumb-bg video {
  width: 100%;
  height: 100%;
}

.nc-thumb-bg iframe {
  width: 100% !important;
}

.nc-thumb-bg .net-name {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: .3em .8em;
  border-radius: 1px;
}

/* Play overlay for video cards */
.nc-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, .28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .35s;
}

.nc-play-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(200, 16, 46, .2);
  transition: transform .35s var(--ease), box-shadow .35s;
}

.nc-play-btn svg {
  width: 20px;
  height: 20px;
  margin-left: 3px;
}

.news-card:hover .nc-play-overlay {
  background: rgba(10, 8, 6, .46);
}

.news-card:hover .nc-play-btn {
  transform: scale(1.12);
  box-shadow: 0 0 0 14px rgba(200, 16, 46, .12);
}

/* Card body */
.nc-body {
  padding: 1.4rem 1.5rem;
}

.nc-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: .85rem;
}

.nc-cat {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: .2em .65em;
  border-radius: 1px;
  flex-shrink: 0;
}

.nc-source {
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.nc-date {
  margin-left: auto;
  font-size: .62rem;
  color: var(--muted-2);
  white-space: nowrap;
}

.nc-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.28;
  margin-bottom: .6rem;
  color: var(--ink);
}

.nc-body p {
  font-size: .87rem;
  line-height: 1.65;
  flex: 1;
  color: var(--muted);
}

.nc-cta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: 1.1rem;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color .3s, gap .3s;
}

.nc-cta svg {
  width: 10px;
  height: 10px;
  transition: transform .3s var(--ease);
}

.news-card:hover .nc-cta {
  color: var(--red);
  gap: .7rem;
}

.news-card:hover .nc-cta svg {
  transform: translateX(3px);
}

/* ---- Book Spotlight ---- */
.book-spotlight {
  background: var(--ink-2);
  position: relative;
  overflow: hidden;
}

.book-spotlight::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -5%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 16, 46, .1), transparent 65%);
  pointer-events: none;
}

.book-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.book-cover img {
  border-radius: 4px;
  box-shadow: 20px 30px 70px -10px rgba(0, 0, 0, .7), -6px -6px 30px -8px rgba(200, 16, 46, .12);
  transform: perspective(900px) rotateY(-8deg);
  transition: transform .6s var(--ease);
  width: 100%;
}

.book-cover:hover img {
  transform: perspective(900px) rotateY(-3deg) translateY(-6px);
}

.book-body h2 {
  color: #fff;
  margin-bottom: 1.2rem;
}

.book-body>p {
  color: rgba(255, 255, 255, .72);
  line-height: 1.8;
}

.book-body>p+p {
  margin-top: .9rem;
}

.book-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.book-praise {
  margin-top: 2rem;
  padding: 1.3rem 1.6rem;
  border-left: 3px solid var(--red);
  background: rgba(255, 255, 255, .05);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.book-praise blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .98rem;
  color: rgba(255, 255, 255, .82);
  line-height: 1.65;
}

.book-praise .attr {
  display: block;
  margin-top: .65rem;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

.field fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 10px;
}

.field fieldset label input[type="radio"],
.field fieldset label input[type="checkbox"] {
  width: 20px;
  outline: none;
  padding: 0;
}

.pre-meeting-worksheet-section button.btn.btn-primary {
  max-width: fit-content;
}

.field fieldset label {
  margin: 0;
}

.split-body .lead-p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

.topic:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.topic h3 {
  font-size: 1.25rem;
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: .55rem;
  line-height: 1.25;
}

.topic p {
  font-size: .95rem;
  line-height: 1.75;
}

.topic {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.split-media .myBuyerSwiper {
  max-width: 500px;
}

.home-gal-section {
  position: relative;
  padding: 30px;
  background: #FFF;
}

.home-gal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.home-gal-item {
  height: 260px;
  overflow: hidden;
  cursor: pointer;
}

.home-gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .4s ease;
}

.home-gal-item:hover img {
  filter: brightness(0.7);
  transform: scale(1.05);
}

.main-nav .sub-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 210px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  z-index: 60;
}

.menu-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.menu-item:hover .sub-menu li a {
  display: block;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2) !important;
  white-space: nowrap;
}

.menu-item:hover .sub-menu li a:after {
  display: none;
  content: none;
}

.main-nav .sub-menu li:hover a {
  background: var(--cream-2);
  color: var(--red) !important;
}

.menu-item {
  position: relative;
}

.location-frame {
  padding: 40px 0;
  background: #FFF;
}

.location-frame iframe {
  width: 100%;
}

.locations-section {
  padding: 80px 0;
  position: relative;
}

.location-image img {
    height: 340px;
    width: 100%;
    object-fit: cover;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.location-card {
  position: relative;
}

.location-info {
  padding: 10px;
}

.location-info h3 {
  font-size: 24px;
  margin-bottom: 4px;
  color: var(--red);
}

.location-info p {
  font-size: 16px;
}

.nc-thumb-bg img {
    width: auto !important;
}

.fifa-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.residen-logo {
    width: 200px;
    height: 230px;
    overflow: hidden;
    border-radius: 10px;
}

.residen-logo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 10% 40%;
}

.location-info .rev {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #c8102eb8;
    color: #FFF;
    border-radius: 2px;
    padding: 0 10px;
    font-size: 12px;
    font-family: 'Montserrat';
    font-weight: 500;
}

section.youtube-videos {
    padding: 60px 0;
    position: relative;
    background: #FFF;
} 

.yt-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 80%;
    width: 100%;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.yt-video iframe {
    width: 100%;
    height: 320px;
}

@media (max-width: 1399px) {
  .nc-thumb-bg {
    height: 240px;
  }
  .masonry {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .location-image img {
    height: 240px;
  }
}

@media (max-width: 1199px) {
  .topbar {
    display: none;
  }

  .hero {
    margin-top: -92px;
  }

  .burger {
    display: block;
    z-index: 110;
  }

  .main-nav {
    display: none;
    height: 100vh;
    width: 100%;
    position: fixed;
    inset: 0;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform .5s var(--ease);
    z-index: 105;
  }

  button.burger.active span {
    background: #FFF;
  }

  /* body.nav-open .main-nav { transform: translateX(0); height: 100vh; display: block;} */
  .main-nav ul {
    flex-direction: column;
    gap: 1.8rem;
    text-align: center;
  }

  .main-nav a {
    color: #fff !important;
    font-size: 1rem;
  }

  .site-header.over-hero:not(.scrolled) .main-nav a {
    color: #fff;
  }

  .main-nav .has-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
  }

  .main-nav .has-dropdown>a .caret {
    display: none;
  }

  .main-nav .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .main-nav .dropdown::before {
    display: none;
  }

  .main-nav .dropdown a {
    color: rgba(255, 255, 255, .72) !important;
    font-size: .82rem;
    padding: 0;
    letter-spacing: .14em;
  }

  .main-nav .dropdown a:hover {
    background: transparent;
    color: #fff !important;
  }

  .header-cta .btn {
    display: none;
  }

  .main-nav ul {
    position: relative;
    top: 100px;
  }

  .main-nav .sub-menu,
  .menu-item:hover .sub-menu {
    position: static;
    transform: none;
    background: transparent;
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
  }

  .menu-item:hover .sub-menu li a,
  .menu-item .sub-menu li a {
    color: rgba(255, 255, 255, .75) !important;
    padding: 10px;
    background: transparent;
  }

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

@media (max-width: 991px) {
  .news-card {
    grid-template-columns: 1fr;
  }

  .nc-thumb-bg {
    height: auto;
  }

  .location-image img {
    height: auto;
  }

  .yt-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .vm-divider {
    display: none;
  }

  .vm-item {
    flex: 1 1 100%;
  }

  .vm-cta {
    width: 100%;
  }

  .vm-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .vf-accent-tl,
  .vf-accent-br {
    width: 44px;
    height: 44px;
  }
  .masonry {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 900px) {


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

  .split.reverse .split-media {
    order: 0;
  }

  .split-media .badge-card {
    right: 1rem;
    bottom: -24px;
  }

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

  .stats-grid .stat:nth-child(2) {
    border-right: none;
  }

  .stats-grid .stat:nth-child(1),
  .stats-grid .stat:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

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

  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
  }

  .service-row .sr-media {
    order: 0 !important;
  }

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

  .feature-band::after {
    background: rgba(10, 8, 6, .7);
  }

  .hero-meta {
    position: static;
    background: var(--ink);
  }

  .hero-meta .container {
    flex-wrap: wrap;
  }

  .hero-meta .item {
    flex: 1 1 40%;
  }

  .hero>.container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .featured-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .fsc-main {
    min-height: 320px;
    grid-row: auto;
  }

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

  .book-cover {
    max-width: 210px;
    margin-inline: auto;
  }

  .book-cover img {
    transform: none;
  }

  .home-gal-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .leader-card .lc-photo img {
    min-height: 340px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .gallery-grid .g-item {
    grid-column: span 12 !important;
    grid-row: auto !important;
  }

  .brand-text .b1 {
    font-size: 1rem;
  }

  .hero-meta .item {
    flex: 1 1 100%;
    text-align: center;
  }

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

  .field label {
    width: 100%;
  }

  .page-hero p {
    font-size: 0.9rem;
  }

  .split-media .myBuyerSwiper {
    max-width: 300px;
  }

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

  .masonry .g-item {
    height: auto;
  }
}