/* ============================================================
   DEEP SOUTH WRESTLING — SITE STYLES
   Edit colors/fonts here once; every page picks them up.
   ============================================================ */

:root {
  --dsw-black: #0a0a0c;
  --dsw-charcoal: #16161a;
  --dsw-gold-dim: #b38f00;
  --dsw-gold: #ffcc00;
  --dsw-white: #f5f5f0;
  --dsw-gray: #9a9a9f;
  --dsw-red: #d81f26;
  --dsw-red-bright: #ff4d4d;
  --max-width: 1180px;
  --radius: 4px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--dsw-black);
  color: var(--dsw-white);
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Anton', 'Oswald', Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 0.5em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.6rem, 8vw, 6.2rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(2rem, 5vw, 3.4rem); color: var(--dsw-gold); }
h3 { font-size: 1.4rem; }

/* ---------- Scroll-reveal + motion ---------- */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-visible { transition-delay: 0.1s; }
.reveal-delay-2.is-visible { transition-delay: 0.2s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

p { color: var(--dsw-gray); max-width: 65ch; }

a { color: var(--dsw-white); text-decoration: none; }

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #232328;
}

.nav-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 24px;
}

.logo-badge img { height: 46px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  flex: 1;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--dsw-gold);
  border-color: var(--dsw-gold);
}

.nav-right { display: flex; align-items: center; gap: 22px; }

.socials { display: flex; gap: 14px; align-items: center; }
.socials a { color: var(--dsw-white); display: flex; }
.socials a:hover { color: var(--dsw-gold); }

.live-events {
  color: var(--dsw-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #333;
  color: var(--dsw-white);
  padding: 8px 10px;
  border-radius: var(--radius);
}

@media (max-width: 860px) {
  .nav-links { display: none; width: 100%; order: 3; flex-direction: column; gap: 4px; padding-top: 12px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-bar { flex-wrap: wrap; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 14px 30px;
  background: var(--dsw-gold-dim);
  color: var(--dsw-black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}
.btn:hover { background: var(--dsw-gold); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--dsw-white);
  color: var(--dsw-white);
}
.btn-outline:hover { background: var(--dsw-white); color: var(--dsw-black); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse 1300px 900px at 18% 12%, #1d1a08 0%, var(--dsw-black) 55%);
  border-bottom: 1px solid #232328;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  width: min(58vw, 880px);
  z-index: 1;
  pointer-events: none;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom left;
  filter: drop-shadow(0 40px 46px rgba(0,0,0,0.7));
  will-change: transform;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 40px 24px;
}

.hero-copy {
  /* Was capped at 660px, which quietly capped the wordmark image too
     (its own max-width only matters once the parent is wide enough to
     let it grow) — widened so the wordmark can actually get big. */
  max-width: clamp(560px, 60vw, 940px);
  text-align: left;
  /* Pull left so the wordmark and copy encroach on the photo's negative
     space instead of floating in their own separate column — matches
     the layered look of the original Squarespace hero. A transform is
     used (not margin) because margin on a flex-end item cancels itself
     out — the container just re-centers around it. Tuned tighter than
     the max-width clamp above so it never pushes past the left edge. */
  transform: translateX(clamp(-220px, -13vw, -60px));
}

.hero-wordmark { text-align: left; }
.hero-wordmark img {
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: 0 0 30px 0;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.6)) drop-shadow(0 28px 54px rgba(0,0,0,0.7));
}

.hero-copy p {
  color: var(--dsw-white);
  max-width: 46ch;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.55;
  text-shadow: 0 3px 16px rgba(0,0,0,0.7);
}
.hero-copy .hero-tag {
  font-family: 'Anton', Impact, sans-serif;
  text-transform: uppercase;
  color: var(--dsw-white);
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  letter-spacing: 0.005em;
  line-height: 1.08;
  margin-top: 18px;
  text-shadow: 0 3px 20px rgba(0,0,0,0.75);
}

.hero-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 44px;
  margin-top: 38px;
  max-width: 520px;
}
.hero-links a {
  position: relative;
  display: inline-block;
  color: var(--dsw-gold);
  font-family: 'Anton', 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.2;
  transition: transform 0.2s ease, color 0.2s ease;
}
.hero-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--dsw-white);
  transition: right 0.25s ease;
}
.hero-links a:hover { color: var(--dsw-white); transform: translateX(4px); }
.hero-links a:hover::after { right: 0; }

@media (max-width: 860px) {
  .hero { min-height: 0; display: block; }
  .hero-photo { position: relative; width: 100%; height: 48vh; min-height: 320px; }
  .hero-photo img { object-position: bottom center; }
  .hero-content { justify-content: center; padding: 44px 24px 54px; }
  .hero-copy { max-width: 100%; text-align: center; transform: none; }
  .hero-wordmark { text-align: center; }
  .hero-wordmark img { max-width: 420px; margin: 0 auto 22px; }
  .hero-copy p { margin: 0 auto; }
  .hero-links { margin: 32px auto 0; }
}

/* ---------- Video section ---------- */

.video-section { padding: 0; border-bottom: 1px solid #1c1c20; background: var(--dsw-charcoal); }
.video-wrap { max-width: 1080px; margin: 0 auto; padding: 90px 24px; }
.video-label {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 36px;
}
.video-embed { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; box-shadow: 0 30px 70px rgba(0,0,0,0.55); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ---------- Testimonials carousel ---------- */

.testimonials-section { position: relative; padding: 90px 0 0; border-bottom: 1px solid #1c1c20; }
.section-label {
  text-align: center;
  font-family: 'Anton', Impact, sans-serif;
  text-transform: uppercase;
  color: var(--dsw-gold);
  letter-spacing: 0.01em;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 46px;
}
.testimonial-track {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.testimonial-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.55), rgba(0,0,0,0) 55%);
}
.testimonial-card {
  position: relative;
  z-index: 1;
  background: var(--dsw-gold);
  color: var(--dsw-black);
  max-width: 540px;
  margin: 0 0 70px 40px;
  padding: 34px 38px;
}
.testimonial-card p {
  color: var(--dsw-black);
  font-family: 'Anton', Impact, sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 2.6vw, 2.1rem);
  line-height: 1.12;
  margin: 0 0 14px;
}
@media (max-width: 640px) {
  .testimonial-card { margin: 0 0 50px 20px; padding: 26px 26px; max-width: calc(100% - 40px); }
}
.testimonial-card cite { font-style: normal; font-weight: 600; }
.track-arrow {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.5);
  color: var(--dsw-white);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
}
.track-prev { left: 16px; }
.track-next { right: 16px; }

/* ---------- Events ---------- */

.events-section { padding-top: 90px; }
.events-section .section-label { margin-bottom: 30px; }
.calendar-links {
  text-align: center;
  color: var(--dsw-gold);
  margin: 0 0 50px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.calendar-links a { color: var(--dsw-gold); border-bottom: 1px solid transparent; }
.calendar-links a:hover { border-color: var(--dsw-gold); }
.calendar-links span { color: var(--dsw-gray); margin: 0 8px; }

.events-loading { text-align: center; }

.events-grid { display: flex; flex-direction: column; gap: 40px; }

.event-card {
  display: block;
  background: var(--dsw-white);
  color: var(--dsw-black);
  border-radius: 2px;
  overflow: hidden;
  max-width: 420px;
}
.event-card:hover { outline: 2px solid var(--dsw-gold); }

.event-card--featured { max-width: 480px; }

.event-photo { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.event-photo img { width: 100%; height: 100%; object-fit: cover; }
.event-date-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(10,10,12,0.85);
  color: var(--dsw-white);
  padding: 6px 12px;
  text-align: center;
  line-height: 1.1;
}
.event-date-badge small { display: block; font-size: 0.7rem; letter-spacing: 0.05em; }
.event-date-badge strong { display: block; font-size: 1.4rem; font-family: 'Anton', Impact, sans-serif; }

.event-body { padding: 18px 20px 22px; }
.event-body h3 {
  font-family: 'Oswald', sans-serif;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dsw-black);
  margin: 0 0 10px;
}
.event-pill {
  display: inline-block;
  background: #efefef;
  color: #333;
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 20px;
  margin: 0 6px 6px 0;
}
.event-desc { font-size: 0.85rem; color: #555; margin-top: 10px; max-width: none; }

.event-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.event-row .event-card { max-width: none; }

/* ---------- Section blocks ---------- */

section { padding: 70px 0; border-bottom: 1px solid #1c1c20; }
section:last-of-type { border-bottom: none; }

.section-intro { max-width: 720px; margin-bottom: 40px; }
.section-intro.centered { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-intro.centered p { color: var(--dsw-gray); }

.partner-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.partner-logo {
  background: #fff;
  border-radius: var(--radius);
  aspect-ratio: 2/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.partner-logo.dark {
  background: #0a0a0a;
  border: 1px solid #232328;
  padding: 10px;
}
@media (max-width: 860px) {
  .partner-logos { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .partner-logos { grid-template-columns: repeat(2, 1fr); }
}

.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--dsw-charcoal);
  border: 1px solid #232328;
  border-radius: var(--radius);
  padding: 24px;
  overflow: hidden;
}

.card img {
  display: block;
  width: calc(100% + 48px);
  height: 260px;
  object-fit: cover;
  object-position: top center;
  margin: -24px -24px 16px -24px;
  border-radius: 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.photo-grid figure {
  margin: 0;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dsw-charcoal);
}
.photo-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}
.photo-grid figure:hover img { transform: scale(1.05); }
.photo-grid figure { position: relative; }
.photo-grid figure::after {
  content: "⤢";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(10,10,12,0.65);
  color: var(--dsw-white);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
}
.photo-grid figure:hover::after { opacity: 1; }

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,6,7,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 40px;
}
.lightbox-overlay.open { display: flex; }
.lightbox-img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  border: none;
  color: var(--dsw-white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--dsw-white);
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
}
.lightbox-nav:hover { background: rgba(255,204,0,0.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
@media (max-width: 640px) {
  .lightbox-overlay { padding: 16px; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.3rem; }
}
.photo-credit {
  margin-top: 26px;
  color: var(--dsw-gray);
  font-size: 0.9rem;
}
.photo-credit a { color: var(--dsw-gold); }

.card h3 { color: var(--dsw-white); }
.card .tag {
  display: inline-block;
  color: var(--dsw-gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.card .handle {
  display: block;
  margin-top: 12px;
  color: var(--dsw-gray);
  font-size: 0.85rem;
  transition: color 0.15s ease;
}
.card a.handle:hover { color: var(--dsw-gold); }

/* ---------- Testimonials ---------- */

.quote-card {
  background: var(--dsw-charcoal);
  border-left: 3px solid var(--dsw-gold);
  padding: 20px 24px;
  border-radius: var(--radius);
}
.quote-card p { color: var(--dsw-white); font-style: italic; }
.quote-card cite { color: var(--dsw-gray); font-style: normal; font-size: 0.85rem; display: block; margin-top: 10px; }

/* ---------- Forms ---------- */

form { max-width: 560px; }
label { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--dsw-gray); margin: 18px 0 6px; }
input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  background: var(--dsw-charcoal);
  border: 1px solid #2c2c31;
  border-radius: var(--radius);
  color: var(--dsw-white);
  font-family: inherit;
  font-size: 1rem;
}
textarea { min-height: 140px; resize: vertical; }
form .btn { margin-top: 24px; }

/* ---------- Footer ---------- */

.site-footer {
  padding: 50px 0 40px;
  text-align: center;
  color: var(--dsw-gray);
  font-size: 0.85rem;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-wordmark { max-width: 320px; width: 100%; }
.site-footer .socials { display: flex; gap: 18px; justify-content: center; }
.site-footer a { color: var(--dsw-gray); }
.site-footer a:hover { color: var(--dsw-gold); }

/* ---------- Calendar embed wrapper ---------- */

.calendar-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #232328;
}
.calendar-embed iframe { width: 100%; height: 600px; border: none; display: block; }

/* ---------- Generic inner pages ---------- */

.page-hero {
  padding: 120px 0 50px;
  text-align: center;
  background: linear-gradient(180deg, rgba(10,10,12,0.55), rgba(10,10,12,0.95)), linear-gradient(135deg, #171404, #0a0a0c 60%);
  border-bottom: 1px solid #232328;
}
.page-hero h1 { margin: 0; }
.page-hero .tagline { max-width: 640px; margin: 18px auto 0; color: var(--dsw-gray); }

/* ---------- Inner-page hero (photo + big overlapping headline) ---------- */

.inner-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid #232328;
}
.inner-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,10,12,0.94) 0%, rgba(10,10,12,0.6) 40%, rgba(10,10,12,0.15) 68%, rgba(10,10,12,0.35) 100%);
}
.inner-hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 150px 0 56px;
}
.inner-hero .eyebrow {
  display: block;
  color: var(--dsw-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 14px;
  max-width: none;
}
.inner-hero h1 {
  color: var(--dsw-white);
  font-size: clamp(2.8rem, 7.5vw, 5.6rem);
  text-shadow: 0 6px 26px rgba(0,0,0,0.6);
  margin: 0;
  max-width: 16ch;
}
.inner-hero .tagline {
  color: #eee;
  max-width: 56ch;
  margin: 18px 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  text-shadow: 0 3px 14px rgba(0,0,0,0.6);
}
@media (max-width: 700px) {
  .inner-hero { min-height: 50vh; }
  .inner-hero-body { padding: 110px 0 40px; }
  .inner-hero h1 { max-width: 100%; }
}

.content-block { padding: 60px 0; border-bottom: 1px solid #1c1c20; }
.content-block.alt { background: var(--dsw-charcoal); }
.content-block:last-of-type { border-bottom: none; }
.wrap.narrow { max-width: 760px; }
.content-block .eyebrow {
  color: var(--dsw-gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  max-width: none;
}
.content-block p {
  color: var(--dsw-white);
  opacity: 0.9;
  max-width: none;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.7;
  margin: 0 0 20px;
}
.content-block h2 + p, .content-block .eyebrow + p { margin-top: 0; }

.content-image {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  margin-top: 28px;
}
.content-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.content-media-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
}
.content-badge {
  display: block;
  height: 40px;
  width: auto;
  margin-bottom: 18px;
}
@media (max-width: 640px) {
  .content-media-grid { grid-template-columns: 1fr; }
  .content-media-grid img { height: 240px; }
}

/* ---------- Side-by-side content (copy + photos) ---------- */
.split-block {
  display: flex;
  gap: 64px;
  align-items: center;
}
.split-block.align-top { align-items: flex-start; }
.split-block .split-text { flex: 1 1 440px; min-width: 0; }
.split-block .split-media { flex: 1 1 380px; min-width: 0; }
.split-block.reverse { flex-direction: row-reverse; }
.split-media img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}
.split-media .portrait { height: 480px; }
.split-media .stack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.split-media .stack-grid img.wide { grid-column: 1 / -1; height: 220px; }
.split-media .stack-grid img { height: 170px; }
@media (max-width: 860px) {
  .split-block, .split-block.reverse { flex-direction: column; gap: 28px; }
  .split-media .portrait { height: 360px; }
}

.testimonial-list blockquote {
  margin: 0 0 56px;
  padding: 0 0 56px;
  border-bottom: 1px solid #232328;
}
.testimonial-list blockquote:last-child { border-bottom: none; }
.testimonial-entry { display: flex; gap: 32px; align-items: flex-start; }
.testimonial-entry.no-photo { padding-left: 0; }
.testimonial-photos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 260px;
}
.testimonial-photos img {
  width: 100%;
  height: 260px;
  border-radius: var(--radius);
  object-fit: cover;
  border: none;
}
.testimonial-entry:has(.testimonial-photos img + img) .testimonial-photos img { height: 125px; }
.testimonial-text { flex: 1 1 auto; min-width: 0; padding-top: 4px; }
@media (max-width: 780px) {
  .testimonial-entry { flex-direction: column; gap: 20px; }
  .testimonial-photos { flex-direction: row; flex: 0 0 auto; width: 100%; }
  .testimonial-photos img { height: 220px; }
  .testimonial-entry:has(.testimonial-photos img + img) .testimonial-photos img { height: 220px; }
}
.testimonial-list p {
  color: var(--dsw-white);
  font-size: 1.15rem;
  line-height: 1.5;
  max-width: none;
  margin: 0 0 10px;
}
.form-card {
  background: var(--dsw-charcoal);
  border: 1px solid #232328;
  border-radius: 8px;
  padding: 8px;
  overflow: hidden;
}
.form-card iframe { display: block; border-radius: 6px; }

.testimonial-list cite {
  color: var(--dsw-gold);
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

/* ---------- Submit: choice cards ---------- */

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 10px;
}
.choice-card {
  display: block;
  background: var(--dsw-charcoal);
  border: 1px solid #232328;
  border-radius: var(--radius);
  padding: 40px 34px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.choice-card:hover { border-color: var(--dsw-gold); transform: translateY(-3px); }
.choice-card .tag {
  display: inline-block;
  color: var(--dsw-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  margin-bottom: 16px;
}
.choice-card h3 {
  color: var(--dsw-white);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  line-height: 1.15;
  margin: 0 0 14px;
}
.choice-card h3 .choice-sub {
  display: block;
  color: var(--dsw-gray);
  font-family: 'Oswald', sans-serif;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.6em;
  margin-top: 6px;
}
.choice-card p {
  color: var(--dsw-gray);
  max-width: none;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 24px;
}
.choice-card .choice-cta {
  display: inline-block;
  color: var(--dsw-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}
@media (max-width: 780px) {
  .choice-grid { grid-template-columns: 1fr; }
}

.back-link {
  display: block;
  color: var(--dsw-gray);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.back-link:hover { color: var(--dsw-gold); }

/* ---------- About Us: Poster Collage layout ---------- */

.dyn-section { position: relative; padding: 60px 0; border-bottom: 1px solid #1c1c20; }

.mega-head {
  font-family: 'Anton', Impact, sans-serif;
  text-transform: uppercase;
  color: var(--dsw-white);
  line-height: 0.88;
  letter-spacing: 0.005em;
  font-size: clamp(3.2rem, 9vw, 8.5rem);
  margin: 0;
}
.mega-head .accent { color: var(--dsw-gold); }

.eyebrow {
  color: var(--dsw-gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  max-width: none;
}

.poster-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding-top: 60px;
}
.poster-hero .copy-col { position: relative; z-index: 3; }
.poster-hero .photo-col { position: relative; display: flex; justify-content: center; }
.poster-hero .lede-tag {
  display: inline-block;
  color: var(--dsw-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  border-top: 2px solid var(--dsw-gold);
  padding-top: 10px;
  margin-bottom: 22px;
}
.poster-hero .mega-head { margin-bottom: 0.15em; }
.poster-hero .eyebrow { display: block; margin-top: 30px; }
.poster-photo-frame {
  position: relative;
  transform: rotate(-4deg);
  background: var(--dsw-white);
  padding: 14px 14px 46px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.55);
  max-width: 340px;
}
.poster-photo-frame img { display: block; width: 100%; height: 460px; object-fit: cover; object-position: top center; }
.poster-photo-frame figcaption {
  font-family: 'Oswald', sans-serif;
  color: var(--dsw-black);
  font-size: 0.85rem;
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.02em;
}
.stat-callout {
  position: absolute;
  right: 4%;
  bottom: -30px;
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(4rem, 12vw, 9rem);
  color: rgba(255,204,0,0.08);
  z-index: 1;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .poster-hero { grid-template-columns: 1fr; }
  .poster-hero .photo-col { order: -1; margin-bottom: 20px; }
  .poster-photo-frame { transform: rotate(-2deg); max-width: 260px; }
}

.diagonal-block {
  background: var(--dsw-charcoal);
  clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
  padding: 130px 0;
  margin: -60px 0;
  border-bottom: none;
}
.scatter-stack { position: relative; height: 460px; }
.scatter-stack img {
  position: absolute;
  border: 8px solid var(--dsw-white);
  box-shadow: 0 20px 45px rgba(0,0,0,0.5);
  object-fit: cover;
}
.scatter-1 { width: 62%; height: 380px; top: 0; left: 4%; transform: rotate(-5deg); z-index: 1; object-position: top center;}
.scatter-2 { width: 46%; height: 260px; bottom: 0; right: 2%; transform: rotate(6deg); z-index: 2; object-position: top center;}
.scatter-3 { width: 38%; height: 220px; bottom: -30px; left: 20%; transform: rotate(-8deg); z-index: 3; }
@media (max-width: 900px) {
  .scatter-stack { height: 620px; }
  .scatter-1 { width: 78%; left: 2%; }
  .scatter-2 { width: 55%; right: 0; bottom: 60px; }
  .scatter-3 { width: 48%; left: 12%; bottom: -20px; }
}

.legacy-split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
@media (max-width: 900px) {
  .legacy-split { grid-template-columns: 1fr; gap: 40px; }
}

.photo-bg-quote {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid #1c1c20;
}
.photo-bg-quote::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,6,7,0.92) 10%, rgba(6,6,7,0.35) 55%, rgba(6,6,7,0.55) 100%);
}
.photo-bg-quote .quote-copy {
  position: relative;
  z-index: 2;
  padding: 60px 0 70px;
  max-width: 640px;
}
.photo-bg-quote h2 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  margin-bottom: 0.3em;
}

.angled-cta {
  position: relative;
  background: var(--dsw-charcoal);
  padding: 90px 0;
  overflow: hidden;
}
.angled-cta::before {
  content: '';
  position: absolute; top: 0; bottom: 0; left: 0;
  width: 22%;
  background: var(--dsw-gold);
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
  opacity: 0.9;
}
.angled-cta .wrap { position: relative; z-index: 2; max-width: 640px; padding-left: 8%; }
.angled-cta h2, .angled-cta p, .angled-cta .btn { position: relative; z-index: 2; color: var(--dsw-white); }
.angled-cta p { opacity: 0.85; }
.angled-cta img.content-badge { height: 40px; margin-bottom: 18px; }

.poster-hero p,
.legacy-split p,
.photo-bg-quote .quote-copy p,
.angled-cta .wrap p {
  color: var(--dsw-white);
  opacity: 0.9;
  max-width: none;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.7;
  margin: 0 0 20px;
}
.photo-bg-quote .quote-copy p,
.angled-cta .wrap p { font-size: 1.1rem; }

/* ---------- Testimonials: Diagonal Spotlight layout ---------- */

.lede-tag {
  display: inline-block;
  color: var(--dsw-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}
.tt-intro .lede-tag { display: block; margin-bottom: 14px; }
.mega-head.small { font-size: clamp(2.6rem, 7vw, 5.5rem); }

.spot-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  align-items: stretch;
}
.spot-photo { position: relative; overflow: hidden; }
.spot-photo img { width: 100%; height: 100%; object-fit: cover; }
/* default row order in the HTML is photo, then copy */
.spot-row:not(.reverse) .spot-photo { clip-path: polygon(0 0, 100% 0, 86% 100%, 0% 100%); }
.spot-row:not(.reverse) .spot-copy { margin-left: -60px; padding-left: 90px; }
/* reverse rows put copy first, photo second in the HTML */
.spot-row.reverse .spot-photo { clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%); }
.spot-row.reverse .spot-copy { margin-right: -60px; padding-right: 90px; }
.spot-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 6% 60px 8%;
  background: var(--dsw-black);
  overflow: hidden;
}
.spot-mark {
  position: absolute;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 14rem;
  color: rgba(255,204,0,0.1);
  top: -50px;
  left: 20px;
  line-height: 1;
  z-index: 0;
}
.spot-copy p.quote {
  position: relative;
  z-index: 1;
  font-family: 'Anton', Impact, sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  line-height: 1.2;
  color: var(--dsw-white);
  margin: 0 0 18px;
}
.spot-copy p.body {
  position: relative;
  z-index: 1;
  color: var(--dsw-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 0 16px;
}
.spot-copy .tag {
  position: relative; z-index: 1;
  display: inline-block;
  color: var(--dsw-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  border-top: 2px solid var(--dsw-gold);
  padding-top: 8px;
  width: fit-content;
}
.spot-row.no-photo {
  grid-template-columns: 1fr;
  min-height: 0;
  padding: 20px 24px;
}
.spot-row.no-photo .spot-copy {
  margin: 0 auto;
  padding: 50px 8%;
  max-width: 760px;
  background: var(--dsw-charcoal);
  border: 1px solid #232328;
}
@media (max-width: 860px) {
  .spot-row, .spot-row.reverse { grid-template-columns: 1fr; }
  .spot-row .spot-photo, .spot-row.reverse .spot-photo { clip-path: none; height: 280px; order: 1; }
  .spot-copy, .spot-row.reverse .spot-copy { margin: 0; padding: 40px 24px; order: 2; }
  .spot-row.no-photo .spot-copy { padding: 40px 24px; }
}
