@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

:root {
  --gold: #F5C518;
  --charcoal: #2A2A2A;
  --deepblack: #0F0F0F;
  --offwhite: #FAFAF7;
  --purewhite: #FFFFFF;
  --muted: #8A8A8A;
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  background: var(--offwhite);
  color: var(--charcoal);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--gold);
  color: var(--deepblack);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.02em;
}

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

img,
video {
  max-width: 100%;
}

.font-serif {
  font-family: 'Playfair Display', serif;
}

/* Exact brand color fallbacks for the static build. */
.bg-gold { background-color: var(--gold) !important; }
.bg-charcoal { background-color: var(--charcoal) !important; }
.bg-deepblack { background-color: var(--deepblack) !important; }
.bg-offwhite { background-color: var(--offwhite) !important; }
.bg-purewhite { background-color: var(--purewhite) !important; }
.text-gold { color: var(--gold) !important; }
.text-charcoal { color: var(--charcoal) !important; }
.text-deepblack { color: var(--deepblack) !important; }
.text-offwhite { color: var(--offwhite) !important; }
.text-purewhite { color: var(--purewhite) !important; }
.text-muted { color: var(--muted) !important; }
.border-gold { border-color: var(--gold) !important; }
.border-charcoal { border-color: var(--charcoal) !important; }

/* React-like default transitions and hover behavior. */
a,
button {
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s var(--ease-expo),
    box-shadow 0.3s var(--ease-expo);
}

button {
  cursor: pointer;
}

header nav a:not(:first-child)::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0.35rem;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 999px;
  background: var(--gold);
  transform: translateX(-50%) scale(0);
  transition: transform 0.3s ease;
}

header nav a:not(:first-child):hover::after {
  transform: translateX(-50%) scale(1);
}

header img[alt="Sanvi Kreations"] {
  transition: transform 0.45s var(--ease-expo), filter 0.3s ease;
}

header a:hover img[alt="Sanvi Kreations"] {
  transform: rotate(-6deg) scale(1.03);
}

.group:hover .group-hover\:rotate-45,
a:hover .group-hover\:rotate-45,
button:hover .group-hover\:rotate-45 {
  transform: rotate(45deg);
}

.group:hover .group-hover\:translate-x-1,
a:hover .group-hover\:translate-x-1,
button:hover .group-hover\:translate-x-1 {
  transform: translateX(0.25rem);
}

.group:hover .group-hover\:-translate-y-1 {
  transform: translateY(-0.25rem);
}

.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}

.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.group:hover .group-hover\:bg-gold {
  background-color: var(--gold) !important;
}

.group:hover .group-hover\:text-deepblack {
  color: var(--deepblack) !important;
}

.group:hover .group-hover\:text-gold {
  color: var(--gold) !important;
}

.group:hover .group-hover\:border-gold {
  border-color: var(--gold) !important;
}

.group:hover .group-hover\:border-gold\/40 {
  border-color: rgba(245, 197, 24, 0.4) !important;
}

.group:hover .group-hover\:bg-deepblack\/20 {
  background-color: rgba(15, 15, 15, 0.2) !important;
}

.group:hover .group-hover\:w-16 {
  width: 4rem;
}

a:hover .hover\:text-gold,
button:hover .hover\:text-gold,
.hover\:text-gold:hover {
  color: var(--gold) !important;
}

a:hover .hover\:text-deepblack,
button:hover .hover\:text-deepblack,
.hover\:text-deepblack:hover {
  color: var(--deepblack) !important;
}

a:hover .hover\:bg-gold,
button:hover .hover\:bg-gold,
.hover\:bg-gold:hover {
  background-color: var(--gold) !important;
}

a:hover .hover\:bg-deepblack,
button:hover .hover\:bg-deepblack,
.hover\:bg-deepblack:hover {
  background-color: var(--deepblack) !important;
}

a:hover .hover\:bg-purewhite,
button:hover .hover\:bg-purewhite,
.hover\:bg-purewhite:hover {
  background-color: var(--purewhite) !important;
}

a:hover .hover\:border-gold,
button:hover .hover\:border-gold,
.hover\:border-gold:hover {
  border-color: var(--gold) !important;
}

a:hover .hover\:scale-105,
button:hover .hover\:scale-105,
.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--gold);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-expo);
}

.hero-cta:hover::before {
  transform: translateY(0);
}

.hero-cta > span:first-child {
  transition: opacity 0.45s ease;
}

.hero-cta-hover {
  transition: opacity 0.45s ease 0.08s;
}

.hero-cta:hover > span:first-child {
  opacity: 0;
}

.hero-cta:hover .hero-cta-hover {
  opacity: 1;
}

.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item[data-direction="left"] {
  transform: translateX(40px);
}

.reveal-item[data-direction="right"] {
  transform: translateX(-40px);
}

.reveal-item[data-direction="none"] {
  transform: none;
}

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

.whatsapp-button {
  opacity: 0;
  transform: translateY(60px) scale(0.8);
  animation: whatsapp-in 0.5s var(--ease-expo) 0.6s forwards;
}

.whatsapp-shell {
  width: 60px;
  background: #25D366;
  transition: width 0.45s var(--ease-expo), background-color 0.3s ease;
}

.whatsapp-button:hover .whatsapp-shell {
  width: 232px;
  background: #1DA851;
}

.whatsapp-icon {
  color: #25D366;
}

.whatsapp-label {
  opacity: 0;
  transition: opacity 0.25s ease;
}

.whatsapp-button:hover .whatsapp-label {
  opacity: 1;
  transition-delay: 0.15s;
}

.whatsapp-pulse {
  background: #25D366;
  opacity: 0.35;
  animation: whatsapp-ping 2.4s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.whatsapp-badge {
  border-color: #25D366;
}

.contact-footer-dots {
  opacity: 0.04;
  background-image: radial-gradient(var(--gold) 1px, transparent 1px);
  background-size: 36px 36px;
}

.contact-footer-ticker {
  width: max-content;
  animation: marquee 30s linear infinite;
}

.contact-footer-ticker:hover {
  animation-play-state: paused;
}

@keyframes whatsapp-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes whatsapp-ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.hero-word {
  display: inline-block;
  margin-right: 0.25em;
  opacity: 0;
  transform: translateY(40px);
  animation: word-rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-word svg path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: draw-line 1.2s ease forwards;
  animation-delay: 1.4s;
}

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes word-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.entrance {
  opacity: 0;
  transform: translateY(20px);
  animation: entrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes entrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Home hero image composition entrance animations. */
main > section:first-child .lg\:col-span-5 > div:nth-child(1) {
  opacity: 0;
  transform: translateY(20px) scale(0.92);
  animation: hero-image-in 1.2s var(--ease-expo) 0.5s forwards;
}

main > section:first-child .lg\:col-span-5 > div:nth-child(2) {
  opacity: 0;
  transform: translateX(-40px) translateY(20px);
  animation: hero-float-in 1s var(--ease-expo) 0.9s forwards;
}

main > section:first-child .lg\:col-span-5 > div:nth-child(3) {
  opacity: 0;
  transform: rotate(-8deg) scale(0.8);
  animation: hero-stat-in 0.8s var(--ease-expo) 1.3s forwards;
  transition: transform 0.35s var(--ease-expo);
}

main > section:first-child .lg\:col-span-5 > div:nth-child(3):hover {
  transform: rotate(0deg) scale(1.04);
}

main > section:first-child .lg\:col-span-5 > div:nth-child(4) {
  opacity: 0;
  transform: scale(0);
  animation: hero-ring-in 0.8s var(--ease-expo) 1.5s forwards, spin-slow 20s linear 2.3s infinite;
}

main > section:first-child > .absolute.bottom-8 .w-px {
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes hero-image-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes hero-float-in {
  to { opacity: 1; transform: translateX(0) translateY(0); }
}

@keyframes hero-stat-in {
  to { opacity: 1; transform: rotate(-4deg) scale(1); }
}

@keyframes hero-ring-in {
  to { opacity: 1; transform: scale(1); }
}

@keyframes scroll-line {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.marquee-track {
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-track:hover,
.footer-ticker:hover {
  animation-play-state: paused;
}

.marquee-track .flex-shrink-0 > div {
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.5s ease,
    transform 0.5s var(--ease-expo),
    box-shadow 0.5s var(--ease-expo);
}

.marquee-track .flex-shrink-0 > div::before,
.marquee-track .flex-shrink-0 > div::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transform: scale(0);
  transition: transform 0.5s ease;
}

.marquee-track .flex-shrink-0 > div::before {
  top: 0;
  left: 0;
  width: 0.75rem;
  height: 1px;
  transform-origin: left;
}

.marquee-track .flex-shrink-0 > div::after {
  right: 0;
  bottom: 0;
  width: 0.75rem;
  height: 1px;
  transform-origin: right;
}

.marquee-track .flex-shrink-0 > div:hover {
  border-color: var(--gold) !important;
  transform: translateY(-0.25rem);
  box-shadow: 0 10px 40px -15px rgba(245, 197, 24, 0.4);
}

.marquee-track .flex-shrink-0 > div:hover::before,
.marquee-track .flex-shrink-0 > div:hover::after {
  transform: scale(1);
}

.marquee-track img {
  transition: transform 0.5s var(--ease-expo), filter 0.5s ease, opacity 0.5s ease;
}

.marquee-track .flex-shrink-0 > div:hover img {
  transform: scale(1.05);
}

.footer-ticker {
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.spin-slow {
  animation: spin-slow 25s linear infinite;
}

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

.pulse-ring {
  animation: pulse-ring 2.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pulse-ring {
  75%,
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

.active-filter {
  background: #2a2a2a;
  color: #fff;
}

.testimonial-panel {
  transition: opacity 0.45s ease, transform 0.45s ease;
}

[data-testimonial-quote],
[data-testimonial-author],
[data-testimonial-role] {
  transition: opacity 0.35s ease, transform 0.35s var(--ease-expo);
}

.testimonial-changing [data-testimonial-quote],
.testimonial-changing [data-testimonial-author],
.testimonial-changing [data-testimonial-role] {
  opacity: 0;
  transform: translateY(12px);
}

.mobile-menu {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.show {
  opacity: 1;
  pointer-events: auto;
}

.mobile-link {
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.3s ease;
}

.mobile-menu.show .mobile-link {
  animation: mobile-link-in 0.55s var(--ease-expo) forwards;
}

.mobile-menu.show .mobile-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.show .mobile-link:nth-child(2) { animation-delay: 0.17s; }
.mobile-menu.show .mobile-link:nth-child(3) { animation-delay: 0.24s; }
.mobile-menu.show .mobile-link:nth-child(4) { animation-delay: 0.31s; }
.mobile-menu.show .mobile-link:nth-child(5) { animation-delay: 0.38s; }

@keyframes mobile-link-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-scrolled {
  background: rgba(250, 250, 247, 0.85);
  border-bottom: 1px solid rgba(42, 42, 42, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(24px);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.nav-top {
  background: transparent;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.portfolio-header.nav-top {
  background: var(--purewhite);
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.portfolio-header.nav-scrolled {
  background: var(--purewhite);
}

.video-playing .video-pause-overlay,
.video-playing .video-tag {
  opacity: 0;
}

.video-playing .video-play-button {
  opacity: 0;
}

.video-shell:hover .video-play-button {
  opacity: 1;
}

.video-shell .absolute.-top-4,
.video-shell .absolute.-bottom-4 {
  transition: transform 0.45s var(--ease-expo), opacity 0.45s ease;
}

.video-shell:hover .absolute.-top-4 {
  transform: translateY(-0.25rem);
}

.video-shell:hover .absolute.-bottom-4 {
  transform: translateY(0.25rem);
}

.video-shell {
  transition: transform 0.45s var(--ease-expo);
}

.video-shell:hover {
  transform: translateY(-0.25rem);
}

.video-play-button:hover {
  transform: scale(1.05);
}

[data-video-mute]:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--deepblack) !important;
}

.spotlight-row .spotlight-title {
  transition: color 0.5s ease, font-size 0.5s ease, font-style 0.5s ease;
}

.spotlight-row {
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s var(--ease-expo);
}

.spotlight-row:hover {
  background-color: rgba(245, 197, 24, 0.04);
  border-color: var(--gold);
  transform: translateY(-0.125rem);
}

[data-spotlight-image] {
  opacity: 1;
  transition: opacity 0.35s ease, transform 0.5s var(--ease-expo);
}

[data-spotlight-image].is-swapping {
  opacity: 0;
  transform: scale(1.04);
}

.spotlight-row.is-active .spotlight-title {
  color: #f5c518;
  font-style: italic;
}

@media (min-width: 768px) {
  .spotlight-row.is-active .spotlight-title {
    font-size: 3rem;
  }
}

.spotlight-row.is-active .spotlight-number,
.spotlight-row.is-active .spotlight-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.spotlight-row.is-active .spotlight-arrow {
  background: #f5c518;
  border-color: #f5c518;
  color: #0f0f0f;
  transform: rotate(45deg) scale(1.1);
}

.spotlight-subitems {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, margin-top 0.35s ease;
}

.spotlight-row.is-active .spotlight-subitems {
  max-height: 180px;
  opacity: 1;
  margin-top: 1.5rem;
}

.process-line-fill {
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-process-section] .group > .relative {
  transition: transform 0.35s var(--ease-expo);
}

[data-process-section] .group:hover > .relative {
  transform: scale(1.08) rotate(4deg);
}

[data-process-section] .group h4 {
  transition: color 0.3s ease;
}

[data-process-section] .group:hover h4 {
  color: var(--gold);
}

/* Home portfolio tiles and reusable image-card polish. */
a.relative.overflow-hidden.bg-charcoal {
  transition: transform 0.4s var(--ease-expo), box-shadow 0.4s var(--ease-expo);
}

a.relative.overflow-hidden.bg-charcoal:hover {
  transform: translateY(-0.35rem);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

a.relative.overflow-hidden.bg-charcoal img {
  transition: transform 1s var(--ease-expo), opacity 0.5s ease;
}

/* Industry grid hover mirrors the React gold fill. */
.grid > .group.bg-purewhite {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.5s ease, transform 0.3s var(--ease-expo);
}

.grid > .group.bg-purewhite::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease-expo);
}

.grid > .group.bg-purewhite:hover {
  color: var(--deepblack);
}

.grid > .group.bg-purewhite:hover::before {
  transform: scaleY(1);
}

.grid > .group.bg-purewhite svg,
.grid > .group.bg-purewhite p {
  transition: transform 0.5s var(--ease-expo), color 0.5s ease;
}

.grid > .group.bg-purewhite:hover svg {
  transform: translateY(-0.25rem) scale(1.1);
}

/* CTA and footer hovers. */
section.bg-gold a,
footer a {
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s var(--ease-expo), border-color 0.3s ease;
}

section.bg-gold a:hover {
  transform: scale(1.05);
}

.services-page,
.services-page p,
.services-page li,
.services-page a,
.services-page span {
  font-family: 'Inter', sans-serif;
}

.services-page h1,
.services-page h2,
.services-page h3,
.services-page h4,
.services-page h5,
.services-page h6,
.services-page .font-serif {
  font-family: 'Playfair Display', serif !important;
  letter-spacing: -0.025em;
}

.services-page h1 {
  font-size: clamp(4rem, 6.5vw, 7rem) !important;
  line-height: 0.96 !important;
  margin-bottom: 2rem !important;
}

.services-page article h2 {
  font-size: clamp(2.9rem, 3.5vw, 3.75rem) !important;
  line-height: 1.05 !important;
}

.services-page article h4 {
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
}

.services-page .text-xl {
  font-size: clamp(1.5rem, 1.45vw, 1.75rem) !important;
  line-height: 1.22 !important;
}

.services-page .text-lg {
  font-size: clamp(1.35rem, 1.35vw, 1.625rem) !important;
  line-height: 1.48 !important;
}

.services-page .text-sm {
  font-size: 1rem !important;
  line-height: 1.45 !important;
}

.services-page .text-xs {
  font-size: 0.78rem !important;
  line-height: 1rem !important;
}

.services-page .font-medium {
  font-weight: 500 !important;
}

.services-page .leading-relaxed {
  line-height: 1.625 !important;
}

.services-page .leading-tight {
  line-height: 1.25 !important;
}

.services-page section.bg-gold h2 {
  font-size: clamp(3.5rem, 5vw, 5.75rem) !important;
  line-height: 1.25 !important;
}

@media (min-width: 768px) {
  .services-page h1 {
    font-size: clamp(5.5rem, 6.5vw, 7rem) !important;
    line-height: 0.96 !important;
  }

  .services-page article h2 {
    font-size: clamp(3.25rem, 3.5vw, 3.75rem) !important;
    line-height: 1.05 !important;
  }

  .services-page section.bg-gold h2 {
    font-size: clamp(4.5rem, 5vw, 5.75rem) !important;
    line-height: 1 !important;
  }
}

@media (min-width: 1280px) {
  .services-page h1 {
    font-size: 7rem !important;
  }

  .services-page article h2 {
    font-size: 3.75rem !important;
  }

  .services-page article .lg\:col-span-7 > p {
    font-size: 1.45rem !important;
    line-height: 1.48 !important;
  }

  .services-page article .lg\:col-span-7 > ul > li {
    font-size: 1.2rem !important;
    line-height: 1.35 !important;
  }
}

.final-cta-section a,
.final-cta-section a:hover {
  transform: none !important;
}

.final-cta-section a:hover {
  background: var(--deepblack) !important;
  color: var(--purewhite) !important;
}

footer a:hover {
  color: var(--gold);
}

footer .rounded-full:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deepblack);
  transform: translateY(-0.125rem);
}

.footer-nav-link:hover span {
  width: 0.75rem;
}

/* Keep the portfolio grid stable: React zooms the image/overlay, not the whole tile. */
.portfolio-grid-section a.relative.overflow-hidden.bg-charcoal,
.portfolio-grid-section a.relative.overflow-hidden.bg-charcoal:hover {
  transform: none !important;
  box-shadow: none !important;
}

.portfolio-grid-section a.relative.overflow-hidden.bg-charcoal {
  display: block;
  min-height: 0;
}

.portfolio-grid-section a.relative.overflow-hidden.bg-charcoal img {
  transform-origin: center;
}

.portfolio-grid-section a.relative.overflow-hidden.bg-charcoal > div:last-child {
  transition: transform 0.5s var(--ease-expo);
}

.portfolio-grid-section a.relative.overflow-hidden.bg-charcoal:hover > div:last-child {
  transform: translateY(-0.125rem);
}

.final-cta-section::before,
.final-cta-section::after {
  content: '';
  position: absolute;
  pointer-events: none;
  animation: cta-band-float 8s ease-in-out infinite;
}

.final-cta-section > .absolute {
  display: none;
}

.final-cta-section::before {
  top: -20%;
  right: -10%;
  width: 50%;
  height: 150%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(12deg);
}

.final-cta-section::after {
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 150%;
  background: rgba(15, 15, 15, 0.05);
  transform: rotate(-12deg);
  animation-delay: -4s;
}

@keyframes cta-band-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 1rem -0.75rem; }
}

.reveal-visible .process-line-fill,
.process-visible .process-line-fill {
  transform: scaleX(1);
}

@media (max-width: 1023px) {
  .desktop-only {
    display: none !important;
  }
}

/* Bootstrap politics detail page, ported from the React design. */
.politics-detail {
  background: var(--purewhite);
  color: var(--charcoal);
}

.site-header {
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.site-header .brand-mark img {
  width: auto;
  height: 3rem;
}

.site-nav {
  gap: 0.25rem;
  padding: 0.5rem;
  border: 1px solid rgba(42, 42, 42, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(18px);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.site-nav a.active {
  background: var(--charcoal);
  color: var(--gold);
}

.menu-button,
.mobile-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  color: currentColor;
}

.menu-button svg,
.mobile-close svg {
  width: 1.75rem;
  height: 1.75rem;
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  color: var(--purewhite);
}

.politics-detail .mobile-menu {
  width: 100%;
  height: 100vh;
  background: var(--deepblack);
}

.politics-detail .mobile-link {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 9vw, 4rem);
  line-height: 1;
  color: var(--purewhite);
}

.politics-hero {
  position: relative;
  min-height: 600px;
  height: 80vh;
  overflow: hidden;
  background: var(--deepblack);
}

.politics-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.politics-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--deepblack) 0%, rgba(15, 15, 15, 0.62) 48%, rgba(15, 15, 15, 0.28) 100%);
}

.politics-hero__content {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: clamp(4rem, 9vw, 6rem);
  max-width: 65rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: var(--purewhite);
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.back-link:hover {
  color: var(--gold);
}

.back-link svg,
.politics-icon svg,
.capability-card svg,
.service-nav-card svg,
.politics-cta svg {
  width: 1rem;
  height: 1rem;
}

.politics-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--deepblack);
}

.eyebrow {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.politics-hero h1 {
  max-width: 58rem;
  margin: 0 0 1.5rem;
  color: var(--purewhite);
  font-size: clamp(3.75rem, 8vw, 8rem);
  line-height: 1.03;
}

.hero-tagline {
  margin: 0;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-style: italic;
}

.service-showcase {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: var(--charcoal);
  color: var(--purewhite);
}

.showcase-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(245, 197, 24, 0.08);
  animation: spin-slow 60s linear infinite;
  pointer-events: none;
}

.showcase-ring-one {
  top: -10rem;
  right: -10rem;
  width: 31.25rem;
  height: 31.25rem;
}

.showcase-ring-two {
  bottom: -15rem;
  left: -15rem;
  width: 37.5rem;
  height: 37.5rem;
  animation-direction: reverse;
  animation-duration: 80s;
}

.showcase-dots {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(var(--gold) 1px, transparent 1px);
  background-size: 32px 32px;
}

.pulse-icon-stack {
  position: relative;
  width: 14rem;
  height: 14rem;
  margin: 0 auto 2.5rem;
}

.pulse-ring,
.pulse-core,
.spark {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ring-outer {
  inset: 0;
  border: 2px solid var(--gold);
  border-radius: 999px;
  animation: politics-pulse 3.5s ease-out infinite;
}

.ring-mid {
  inset: 1rem;
  border: 1px solid rgba(245, 197, 24, 0.6);
  border-radius: 999px;
  animation: politics-pulse 3.5s ease-out 0.7s infinite;
}

.pulse-core {
  inset: 2.5rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--deepblack);
}

.pulse-core svg {
  width: 3.25rem;
  height: 3.25rem;
  stroke-width: 1.5;
}

.spark {
  color: var(--gold);
  animation: sparkle-float 4s ease-in-out infinite;
}

.spark svg {
  width: 1.25rem;
  height: 1.25rem;
}

.spark-one {
  top: -0.5rem;
  right: 1.5rem;
}

.spark-two {
  bottom: 0;
  left: -0.5rem;
  opacity: 0.7;
  animation-duration: 5s;
  animation-delay: 0.5s;
}

.showcase-quote {
  max-width: 41rem;
  margin-bottom: 2rem;
  color: var(--purewhite);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-style: italic;
  line-height: 1.15;
}

.outcome-block {
  max-width: 35rem;
  padding: 0.5rem 0 0.5rem 1.25rem;
  border-left: 2px solid var(--gold);
}

.outcome-block p {
  margin: 0 0 0.5rem;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.outcome-block span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.125rem;
  line-height: 1.7;
}

.capability-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.capability-label span {
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.capability-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  height: 100%;
  min-height: 7rem;
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s var(--ease-expo), border-color 0.45s ease;
}

.capability-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 197, 24, 0.05);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-expo);
}

.capability-card:hover {
  border-color: var(--gold);
  transform: translateY(-0.25rem);
}

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

.capability-card b {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 999px;
  background: var(--deepblack);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  font-weight: 400;
  transition: background 0.45s ease, color 0.45s ease, border-color 0.45s ease;
}

.capability-card:hover b {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--deepblack);
}

.capability-card div {
  position: relative;
  z-index: 1;
}

.capability-card p {
  margin: 0;
  color: var(--purewhite);
  font-weight: 500;
  line-height: 1.35;
  transition: color 0.45s ease;
}

.capability-card small {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.375rem;
  color: rgba(245, 197, 24, 0);
  font-size: 0.625rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: color 0.45s ease;
}

.capability-card:hover p,
.capability-card:hover small {
  color: var(--gold);
}

.overview-section,
.gallery-section {
  padding: 6rem 0;
  background: var(--purewhite);
}

.overview-section .container {
  max-width: 67rem;
}

.overview-lead {
  margin-bottom: 2.5rem;
  color: var(--charcoal);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.45;
}

.section-rule-title {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gold);
  color: var(--charcoal);
  font-size: 1.75rem;
}

.body-muted {
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.75;
}

.stats-band {
  padding: 5rem 0;
  border-top: 1px solid rgba(42, 42, 42, 0.1);
  border-bottom: 1px solid rgba(42, 42, 42, 0.1);
  background: var(--offwhite);
}

.stats-band p {
  margin: 0 0 0.5rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
}

.stats-band span {
  color: var(--charcoal);
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 55rem;
  margin: 0 auto 4rem;
}

.section-heading h2 {
  color: var(--charcoal);
  font-size: clamp(2.75rem, 5vw, 4rem);
  line-height: 1.12;
}

.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
  transition: transform 0.4s var(--ease-expo);
}

.gallery-card:hover {
  transform: translateY(-0.375rem);
}

.gallery-card img {
  width: 100%;
  height: 25rem;
  object-fit: cover;
  transition: transform 1.2s var(--ease-expo);
}

.gallery-card-large img {
  height: 31.25rem;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.5rem;
  color: var(--purewhite);
  font-weight: 500;
  background: linear-gradient(to top, rgba(15, 15, 15, 0.92), rgba(15, 15, 15, 0.35), transparent);
}

.deliverables-section {
  padding: 6rem 0;
  background: var(--deepblack);
  color: var(--purewhite);
}

.section-heading-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.deliverables-section .section-heading h2 {
  color: var(--purewhite);
}

.deliverables-section .section-heading span {
  color: var(--gold);
  font-style: italic;
}

.deliverable-card {
  height: 100%;
  padding: 2rem;
  border: 1px solid var(--charcoal);
  transition: border-color 0.3s ease;
}

.deliverable-card:hover {
  border-color: var(--gold);
}

.deliverable-card h3 {
  margin-bottom: 1.5rem;
  color: var(--purewhite);
  font-size: 1.6rem;
  transition: color 0.3s ease;
}

.deliverable-card:hover h3 {
  color: var(--gold);
}

.deliverable-card ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.deliverable-card li {
  display: flex;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.deliverable-card li::before {
  content: '';
  flex: 0 0 auto;
  width: 0.375rem;
  height: 0.375rem;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: var(--gold);
}

.service-nav-section {
  padding: 4rem 0;
  border-top: 1px solid rgba(42, 42, 42, 0.1);
  background: var(--purewhite);
}

.service-nav-card {
  display: block;
  height: 100%;
  padding: 2rem;
  border: 1px solid rgba(42, 42, 42, 0.1);
}

.service-nav-card:hover {
  border-color: var(--gold);
}

.service-nav-card small {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.625rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.service-nav-card.text-md-end small {
  justify-content: flex-end;
}

.service-nav-card strong {
  display: block;
  color: var(--charcoal);
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.1;
  transition: color 0.3s ease;
}

.service-nav-card:hover strong {
  color: var(--gold);
}

.service-nav-card span {
  display: block;
  margin-top: 0.5rem;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.politics-cta {
  padding: 8rem 0;
  background: var(--gold);
}

.politics-cta h2 {
  max-width: 68rem;
  margin: 0 auto 2rem;
  color: var(--deepblack);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
}

.politics-cta p {
  max-width: 43rem;
  margin: 0 auto 3rem;
  color: rgba(15, 15, 15, 0.8);
  font-size: 1.25rem;
  line-height: 1.6;
}

.politics-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 2.5rem;
  background: var(--deepblack);
  color: var(--purewhite);
  font-weight: 500;
}

.politics-cta a:hover {
  transform: scale(1.05);
}

.politics-footer {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 2.5rem;
  border-top: 0.25rem solid var(--gold);
  background: var(--deepblack);
  color: var(--offwhite);
}

.footer-brand-bg {
  position: absolute;
  right: -2.5rem;
  bottom: -4rem;
  color: rgba(255, 255, 255, 0.04);
  font-family: 'Playfair Display', serif;
  font-size: clamp(10rem, 22vw, 18rem);
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
}

.footer-dots {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(var(--gold) 1px, transparent 1px);
  background-size: 36px 36px;
}

.footer-top {
  margin-bottom: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--charcoal);
}

.footer-top h2 {
  margin: 0;
  color: var(--purewhite);
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  line-height: 1.08;
}

.footer-top h2 span {
  color: var(--gold);
  font-style: italic;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--deepblack);
  font-weight: 600;
}

.footer-cta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--deepblack);
  color: var(--gold);
  transition: transform 0.3s var(--ease-expo);
}

.footer-cta:hover span {
  transform: rotate(45deg);
}

.footer-main {
  margin-bottom: 4rem;
}

.footer-logo {
  width: auto;
  height: 3.5rem;
  margin-bottom: 2rem;
  filter: brightness(0) invert(1);
}

.footer-copy {
  max-width: 28rem;
  margin-bottom: 2rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--charcoal);
  border-radius: 999px;
  color: var(--muted);
}

.footer-socials svg,
.social-icon-svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

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

.politics-footer h3 {
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.politics-footer .footer-main a {
  display: table;
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.politics-footer .footer-main a:hover {
  color: var(--gold);
}

.politics-footer .footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  color: var(--muted);
}

.politics-footer .footer-socials svg {
  display: block;
  margin: 0;
  color: currentColor;
}

.politics-footer .footer-main p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.politics-footer svg {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
}

.politics-footer .footer-main p svg {
  margin-top: 0.25rem;
  color: var(--gold);
}

.footer-ticker-shell {
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  overflow: hidden;
  border-top: 1px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
}

.footer-ticker {
  display: flex;
  width: max-content;
  align-items: center;
  color: var(--muted);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-style: italic;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.footer-ticker span,
.footer-ticker b {
  margin: 0 1.5rem;
}

.footer-ticker b {
  color: var(--gold);
  font-weight: 400;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-bottom div {
  display: flex;
  gap: 2rem;
}

.footer-bottom a {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.politics-list-hero {
  position: relative;
  margin-top: 1.5rem;
  height: 62vh;
  min-height: 500px;
  overflow: hidden;
  background: var(--deepblack);
}

.politics-list-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.politics-list-hero__shade {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.55);
}

.politics-list-hero__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 4rem 0 3rem;
}

.politics-list-hero h1 {
  max-width: 58rem;
  margin-bottom: 1.5rem;
  color: var(--purewhite);
  font-size: clamp(3.25rem, 6.5vw, 5.5rem);
  line-height: 1;
}

.politics-list-hero p:not(.eyebrow) {
  max-width: 48rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.65;
}

.politics-services {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: var(--offwhite);
}

.politics-services__dots {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(var(--charcoal) 1px, transparent 1px);
  background-size: 36px 36px;
}

.politics-services-heading {
  max-width: 52rem;
  margin: 0 auto 6rem;
}

.heading-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.heading-kicker span {
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.heading-kicker p {
  margin: 0;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.politics-services-heading h2 {
  margin-bottom: 1.5rem;
  color: var(--charcoal);
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  line-height: 1.07;
}

.politics-services-heading h2 span {
  color: var(--gold);
  font-style: italic;
}

.politics-services-heading > p {
  margin: 0 auto;
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.75;
}

.politics-service-stack {
  display: grid;
  gap: clamp(6rem, 10vw, 8rem);
}

.politics-service-row.is-reverse .row {
  direction: rtl;
}

.politics-service-row.is-reverse .row > * {
  direction: ltr;
}

.service-image-frame {
  position: relative;
  transition: transform 0.45s var(--ease-expo);
}

.service-image-frame:hover {
  transform: translateY(-0.375rem);
}

.corner {
  position: absolute;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  pointer-events: none;
}

.corner-one {
  top: -0.75rem;
  left: -0.75rem;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.corner-two {
  right: -0.75rem;
  bottom: -0.75rem;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.service-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--charcoal);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-expo);
}

.service-image--poster {
  aspect-ratio: 4 / 5;
  background: #f8a33b;
}

.service-image--poster img {
  object-fit: contain;
}

.service-image--health {
  background: #f7f4eb;
}

.service-image--health img {
  object-fit: contain;
  object-position: center;
  padding: 0.5rem;
}

.service-image--real-estate-creative {
  aspect-ratio: 1 / 1;
  background: #f4f4ef;
}

.service-image--real-estate-creative img {
  object-fit: contain;
}

.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.15);
  transition: background 0.5s ease;
}

.service-image-frame:hover .service-image img {
  transform: scale(1.05);
}

.service-image-frame:hover .service-image::after {
  background: rgba(15, 15, 15, 0.05);
}

.service-badge,
.service-icon {
  position: absolute;
  z-index: 3;
}

.service-badge {
  top: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(245, 197, 24, 0.5);
  background: rgba(15, 15, 15, 0.7);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.service-badge b {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0;
}

.service-badge i {
  width: 1px;
  height: 0.75rem;
  background: rgba(245, 197, 24, 0.4);
}

.service-icon {
  top: 1.25rem;
  right: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--deepblack);
}

.service-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 1.5;
}

.service-copy .eyebrow {
  margin-bottom: 1rem;
}

.service-copy h3 {
  margin-bottom: 1.5rem;
  color: var(--charcoal);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
}

.service-brief {
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.75;
}

.service-list {
  margin-bottom: 2rem;
}

.service-list > p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.service-list > p span {
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
}

.service-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--charcoal);
  font-size: 0.92rem;
  line-height: 1.5;
}

.service-list li::before {
  content: '';
  flex: 0 0 auto;
  width: 0.375rem;
  height: 0.375rem;
  margin-top: 0.5rem;
  border-radius: 999px;
  background: var(--gold);
}

.impact-card {
  position: relative;
  margin-bottom: 2rem;
  padding: 1.5rem;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--purewhite);
}

.impact-card::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.25rem;
  background: var(--gold);
}

.impact-card p {
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.impact-card h4 {
  margin-bottom: 0.75rem;
  color: var(--purewhite);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: italic;
  line-height: 1.35;
}

.impact-card small {
  color: var(--muted);
  font-size: 0.8rem;
}

.view-case-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--purewhite);
  font-size: 0.9rem;
  font-weight: 600;
}

.view-case-button:hover {
  background: var(--deepblack);
  color: var(--purewhite);
}

.view-case-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--deepblack);
  transition: transform 0.3s var(--ease-expo);
}

.view-case-button:hover span {
  transform: rotate(45deg);
}

.real-estate-campaign-gallery {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 7rem;
  background: var(--purewhite);
}

.real-estate-campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.real-estate-campaign-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(42, 42, 42, 0.08);
  background: #f4f4ef;
}

.real-estate-campaign-card--wide {
  grid-column: span 2;
}

.real-estate-campaign-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  transition: transform 0.8s var(--ease-expo);
}

.real-estate-campaign-card:hover img {
  transform: scale(1.03);
}

.header-project-link {
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--purewhite);
  font-size: 0.875rem;
  font-weight: 600;
}

.header-project-link:hover {
  color: var(--purewhite);
  background: var(--deepblack);
}

.header-project-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--deepblack);
  transition: transform 0.3s var(--ease-expo);
}

.header-project-link:hover span {
  transform: rotate(45deg);
}

.header-project-link svg {
  width: 1rem;
  height: 1rem;
}

.portfolio-page {
  background: var(--purewhite);
}

.portfolio-hero {
  position: relative;
  overflow: hidden;
  padding: 9rem 0 5rem;
  background: var(--deepblack);
  color: var(--purewhite);
}

.portfolio-hero-orb {
  position: absolute;
  top: 50%;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  background: rgba(245, 197, 24, 0.08);
  filter: blur(48px);
  pointer-events: none;
}

.portfolio-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(to right, rgba(245, 197, 24, 0.55) 0.5px, transparent 0.5px),
    linear-gradient(to bottom, rgba(245, 197, 24, 0.55) 0.5px, transparent 0.5px);
  background-size: 48px 48px;
}

.portfolio-hero-content {
  max-width: 55rem;
}

.portfolio-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.portfolio-kicker span {
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.portfolio-kicker p {
  margin: 0;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.portfolio-hero h1 {
  margin: 0 0 2rem;
  color: var(--purewhite);
  font-size: clamp(4.5rem, 10vw, 9rem);
  line-height: 0.95;
}

.portfolio-hero-content > p {
  max-width: 43rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  line-height: 1.75;
}

.portfolio-showcase {
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  background: var(--purewhite);
}

.portfolio-page .container-xxl {
  max-width: 100rem;
}

.portfolio-accent {
  position: absolute;
  width: 1px;
  height: 8rem;
  background: rgba(245, 197, 24, 0.3);
  pointer-events: none;
}

.portfolio-accent-top {
  top: 8rem;
  right: 0;
  transform: rotate(12deg);
}

.portfolio-accent-bottom {
  bottom: 8rem;
  left: 0;
  transform: rotate(-12deg);
}

.portfolio-showcase-head {
  margin-bottom: 5rem;
}

.portfolio-showcase-head .row {
  align-items: flex-end !important;
  justify-content: space-between !important;
}

.portfolio-showcase-head .col-lg-7 {
  flex: 0 0 auto;
  width: 58.333333%;
}

.portfolio-showcase-head .col-lg-4 {
  flex: 0 0 auto;
  width: 33.333333%;
  text-align: right;
}

.portfolio-showcase-head h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.95;
}

.portfolio-showcase-head h2 em {
  color: var(--gold);
  font-style: italic;
}

.portfolio-showcase-head .col-lg-4 > p {
  margin-bottom: 1.5rem;
  max-width: 31rem;
  margin-left: auto;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.75;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--charcoal);
  color: var(--charcoal);
  font-size: 0.875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.view-all-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.view-all-link svg {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.3s var(--ease-expo);
}

.view-all-link:hover svg {
  transform: rotate(45deg);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
}

.portfolio-card {
  display: block;
  min-width: 0;
}

.portfolio-card-large {
  grid-column: span 7;
  grid-row: span 2;
}

.portfolio-card-medium {
  grid-column: span 5;
}

.portfolio-card-small {
  grid-column: span 4;
}

.portfolio-card-wide {
  grid-column: span 6;
}

.portfolio-card-media {
  position: relative;
  overflow: hidden;
  height: 25rem;
  background: var(--charcoal);
  isolation: isolate;
}

.portfolio-card-large .portfolio-card-media {
  height: 51.25rem;
}

.portfolio-card-small .portfolio-card-media {
  height: 21.25rem;
}

.portfolio-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.9s var(--ease-expo);
}

.portfolio-card:hover img {
  transform: scale(1.06);
}

.portfolio-card-media::before,
.portfolio-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.portfolio-card-media::before {
  background: linear-gradient(to top, rgba(15, 15, 15, 0.95), rgba(15, 15, 15, 0.3), transparent);
}

.portfolio-card-media::after {
  background: rgba(15, 15, 15, 0);
  transition: background 0.5s ease;
}

.portfolio-card:hover .portfolio-card-media::after {
  background: rgba(15, 15, 15, 0.1);
}

.featured-label {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 3;
  padding: 0.45rem 0.75rem;
  background: var(--gold);
  color: var(--deepblack);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hover-corner {
  position: absolute;
  z-index: 3;
  width: 2.5rem;
  height: 2.5rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hover-corner-top {
  top: 1.5rem;
  right: 1.5rem;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

.hover-corner-bottom {
  bottom: 1.5rem;
  left: 1.5rem;
  border-bottom: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.portfolio-card:hover .hover-corner {
  opacity: 1;
}

.portfolio-card-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.portfolio-card-content p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-size: 0.625rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.portfolio-card-content p span {
  width: 0.75rem;
  height: 1px;
  background: var(--gold);
}

.portfolio-card-content h3 {
  margin-bottom: 0.75rem;
  color: var(--purewhite);
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.05;
}

.portfolio-card-large .portfolio-card-content h3 {
  font-size: clamp(3rem, 5vw, 5rem);
}

.portfolio-card-small .portfolio-card-content h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
}

.portfolio-card-content small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.portfolio-card-content b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  color: var(--purewhite);
  font-weight: 400;
  transition:
    transform 0.4s var(--ease-expo),
    background-color 0.4s ease,
    border-color 0.4s ease,
    color 0.4s ease;
}

.portfolio-card-large .portfolio-card-content b {
  width: 3.5rem;
  height: 3.5rem;
}

.portfolio-card-content b svg {
  width: 1.125rem;
  height: 1.125rem;
}

.portfolio-card:hover .portfolio-card-content b {
  transform: rotate(45deg) scale(1.1);
  border-color: var(--gold);
  background: var(--gold);
  color: var(--deepblack);
}

.portfolio-underline {
  position: absolute;
  right: clamp(1.75rem, 3vw, 2.5rem);
  bottom: clamp(1.25rem, 2vw, 1.5rem);
  left: clamp(1.75rem, 3vw, 2.5rem);
  z-index: 4;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-expo);
}

.portfolio-card:hover .portfolio-underline {
  transform: scaleX(1);
}

.portfolio-signature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 6rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(42, 42, 42, 0.1);
}

.portfolio-signature p {
  max-width: 45rem;
  margin: 0;
  color: var(--charcoal);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-style: italic;
  line-height: 1.35;
}

.portfolio-signature span {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

@keyframes politics-pulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0;
    transform: scale(1.15);
  }
}

@keyframes sparkle-float {
  0%, 100% {
    transform: translateY(-0.25rem) rotate(0deg);
  }
  50% {
    transform: translateY(0.25rem) rotate(12deg);
  }
}

@media (min-width: 992px) {
  .pulse-icon-stack {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .site-header .brand-mark img {
    height: 2.5rem;
  }

  .politics-hero {
    min-height: 560px;
  }

  .politics-hero__content {
    bottom: 3.5rem;
  }

  .overview-section,
  .gallery-section,
  .deliverables-section,
  .service-showcase {
    padding: 4.5rem 0;
  }

  .gallery-card img,
  .gallery-card-large img {
    height: 22rem;
  }

  .service-nav-card.text-md-end small {
    justify-content: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }

  .politics-list-hero {
    margin-top: 1rem;
    min-height: 620px;
  }

  .politics-list-hero__content {
    padding: 2rem 0;
  }

  .politics-services {
    padding: 4.5rem 0;
  }

  .politics-services-heading {
    margin-bottom: 4rem;
  }

  .politics-service-stack {
    gap: 5rem;
  }

  .politics-service-row.is-reverse .row {
    direction: ltr;
  }

  .service-list ul {
    grid-template-columns: 1fr;
  }

  .real-estate-campaign-gallery {
    padding: 4.5rem 0;
  }

  .real-estate-campaign-grid {
    grid-template-columns: 1fr;
  }

  .real-estate-campaign-card--wide {
    grid-column: span 1;
  }

  .portfolio-hero {
    padding: 8rem 0 4rem;
  }

  .portfolio-showcase {
    padding: 5rem 0;
  }

  .portfolio-showcase-head .col-lg-7,
  .portfolio-showcase-head .col-lg-4 {
    width: 100%;
  }

  .portfolio-showcase-head .col-lg-4 {
    text-align: left;
  }

  .portfolio-showcase-head .col-lg-4 > p {
    margin-left: 0;
  }

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

  .portfolio-card-large,
  .portfolio-card-medium,
  .portfolio-card-small,
  .portfolio-card-wide {
    grid-column: span 1;
  }

  .portfolio-card-large .portfolio-card-media,
  .portfolio-card-medium .portfolio-card-media,
  .portfolio-card-small .portfolio-card-media,
  .portfolio-card-wide .portfolio-card-media {
    height: 26rem;
  }

  .portfolio-card-content {
    align-items: flex-start;
  }

  .portfolio-card-content b {
    width: 3rem;
    height: 3rem;
  }

  .portfolio-signature {
    align-items: flex-start;
    flex-direction: column;
  }
}
