:root {
  --bg: #101010;
  --bg-soft: #131313;
  --panel: #141414;
  --line: #3a3a3a;
  --muted: #a8a8a8;
  --text: #ffffff;
  --lime: #c9a37a;
  --lime-dark: #9c7a52;
  --green: #d9b88e;
  --max: 1400px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

.container {
  width: min(var(--max), 90%);
  margin: 0 auto;
}

.market-bar {
  height: 32px;
  background: #262626;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  font-size: 12px;
  color: #d8d8d8;
}

.market-logo {
  font-weight: 500;
}

.market-logo span {
  color: #c9a37a;
  font-weight: 700;
}

.buy-btn {
  background: #c9a37a;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  padding: 7px 13px;
  border-radius: 999px;
  font-weight: 600;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 120px;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.86), rgba(8, 8, 8, 0.38) 70%, transparent);
  border-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(5%, calc((100% - var(--max)) / 2));
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: clamp(200px, 19vw, 300px);
  height: auto;
  max-height: 115px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.main-nav a:not(.nav-cta) {
  color: #f2f2f2;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

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

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

.main-nav .nav-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--lime);
  background: var(--lime);
  color: #0c0c0c;
  padding: 0 26px;
  margin-left: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.main-nav .nav-cta:hover {
  background: transparent;
  color: var(--lime);
  border-color: var(--lime);
}

.main-nav .nav-cta::after {
  display: none;
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  background:
    linear-gradient(rgba(16, 16, 16, 0.45), rgba(16, 16, 16, 0.3) 38%, rgba(16, 16, 16, 0.75) 85%),
    url("assets/klassic-hero-banner.webp") center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(transparent, var(--bg));
}

.hero-glow {
  position: absolute;
  left: 50%;
  top: 16px;
  width: 430px;
  height: 220px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(217, 184, 142, 0.45), rgba(217, 184, 142, 0.05) 58%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-inner > * {
  opacity: 0;
  transform: translateY(16px);
  animation: hero-rise 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-inner > .eyebrow { animation-delay: 0.05s; }
.hero-inner > h1 { animation-delay: 0.2s; }
.hero-inner > .lead { animation-delay: 0.4s; }
.hero-inner > .hero-actions { animation-delay: 0.55s; }

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

@media (prefers-reduced-motion: reduce) {
  .hero-inner > * {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--lime);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(62px, 5.6vw, 80px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero h1 span {
  display: inline;
}

.lead,
.section-title p,
.copy p,
.testimonial-copy > p,
.blog-copy p,
.cta p:not(.section-kicker) {
  color: #e4e4e4;
  font-size: 18px;
  line-height: 1.6;
}

.hero .lead {
  max-width: 780px;
  margin: 24px 0 32px;
  font-size: 20px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 50px;
}

.btn,
.outline-btn {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--lime);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 16px 32px;
  color: #fff;
  border-radius: 999px;
}

.outline-btn {
  background: transparent;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.outline-btn:hover {
  background: var(--lime);
  color: #0c0c0c;
  border-color: var(--lime);
}


.btn.video {
  border-radius: 0;
}

.btn.primary {
  background: var(--lime);
  color: #0c0c0c;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn.primary:hover {
  background: transparent;
  color: var(--lime);
  border-color: var(--lime);
}

.btn.video {
  border-color: transparent;
  padding: 0;
  gap: 16px;
}

.btn.video span {
  width: 50px;
  height: 50px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  position: relative;
}

.btn.video span::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 16px;
  border-left: 14px solid var(--lime);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.btn.secondary {
  background: transparent;
  color: #fff;
  border-color: var(--lime);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn.secondary:hover {
  background: var(--lime);
  color: #0c0c0c;
  border-color: var(--lime);
}

.trust-carousel {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: #101010;
  overflow: hidden;
  padding: 32px 0;
}

.trust-carousel::before,
.trust-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(14vw, 180px);
  pointer-events: none;
}

.trust-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #101010, rgba(16, 16, 16, 0));
}

.trust-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #101010, rgba(16, 16, 16, 0));
}

.trust-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 48px;
  white-space: nowrap;
  animation: trust-scroll 42s linear infinite;
}

.trust-carousel:hover .trust-track {
  animation-play-state: paused;
}

.trust-text {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  font-style: italic;
  color: rgba(255, 255, 255, 0.94);
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
}

.trust-diamond {
  color: var(--lime);
  font-size: clamp(12px, 1.2vw, 16px);
  line-height: 1;
  transform: translateY(-2px);
}

@keyframes trust-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 24px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery img {
    opacity: 1;
    filter: none;
    transform: none !important;
    transition: none;
  }
}

.feature-strip {
  margin-top: -115px;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--line);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: rgba(18, 18, 18, 0.96);
  border: 1px solid #4a4a4a;
  min-height: 185px;
  text-align: center;
  padding: 40px;
  border-radius: 10px;
}

.icon,
.mini-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  color: var(--lime);
  position: relative;
}

.icon::before,
.icon::after,
.mini-icon::before,
.mini-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.diamond::before {
  width: 25px;
  height: 25px;
  border: 3px solid currentColor;
  transform: rotate(45deg);
  left: 1px;
  top: 1px;
}

.calendar::before {
  width: 31px;
  height: 27px;
  border: 2px solid currentColor;
  left: -2px;
  top: 2px;
}

.calendar::after {
  width: 31px;
  height: 2px;
  background: currentColor;
  left: -2px;
  top: 12px;
}

.ticket::before {
  width: 32px;
  height: 25px;
  border: 2px solid currentColor;
  left: -2px;
  top: 2px;
  transform: skew(-8deg);
}

.route::before {
  width: 19px;
  height: 19px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  left: 6px;
  top: 3px;
}

.route::after {
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 50%;
  left: 15px;
  top: 13px;
}

.feature-card h3,
.service-card h3,
.reason-grid h3,
.price-card h3,
.post-card h3 {
  margin: 15px 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.feature-card p,
.service-card p,
.reason-grid p,
.post-card p,
.price-card li,
.price-card p,
.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

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

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.copy h2,
.section-title h2,
.testimonial-copy h2,
.blog-copy h2,
.cta h2 {
  margin: 0 0 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(46px, 4.2vw, 68px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 50px;
  margin: 32px 0 40px;
}

.check-grid span {
  color: #ededed;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.check-grid span::before,
.price-card li::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--lime);
  left: 0;
  top: 6px;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.image-stack {
  position: relative;
  border: 7px solid #1a1a1a;
  outline: 1px solid var(--lime-dark);
  border-radius: 18px;
  overflow: hidden;
}

.image-stack img {
  width: 100%;
  height: 670px;
  border-radius: 11px;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.event-done {
  position: absolute;
  background: #151515;
  border: 1px solid #484848;
  width: 180px;
  padding: 22px 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 4px;
  border-radius: 10px;
}

.event-done strong {
  display: block;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 56px;
  line-height: 1;
  font-weight: 700;
}

.event-done span {
  color: #d6d6d6;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.about h2,
.services h2,
.why h2,
.portfolio h2,
.testimonial h2,
.cta h2 {
  color: var(--lime);
}

.stats-band {
  position: relative;
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(16, 16, 16, 0.3), rgba(16, 16, 16, 0.5)),
    url("assets/parallax-section.webp") center center / cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 112px 0;
}


.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stats-grid strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 69px;
  line-height: 1;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.stats-grid span {
  display: block;
  margin-top: 8px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.section-title {
  text-align: center;
  max-width: 690px;
  margin: 0 auto 50px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.services-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 72px;
  text-align: center;
}

.services-cta .section-kicker {
  margin: 0;
}

.services-cta-lead {
  max-width: 540px;
  margin: 0 0 8px;
  color: #e4e4e4;
  font-size: 18px;
  line-height: 1.6;
}

.service-card,
.price-card,
.post-card,
.quote-card {
  border: 1px solid #464646;
  border-radius: 10px;
  overflow: hidden;
}

.price-card,
.post-card,
.quote-card {
  background: var(--panel);
}

.service-card {
  position: relative;
  min-height: 600px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  opacity: 0;
  transform: translateY(28px);
  transition: border-color 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
}

.service-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-grid .service-card:nth-child(2):not(.entrance-done) {
  transition-delay: 0.12s;
}

.service-grid .service-card:nth-child(3):not(.entrance-done) {
  transition-delay: 0.24s;
}

.service-marker {
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 163, 122, 0.55);
  border-radius: 50%;
  background: rgba(16, 16, 16, 0.45);
  color: var(--lime);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.service-card:hover .service-marker {
  background: var(--lime);
  border-color: var(--lime);
  color: #0c0c0c;
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .service-card {
    opacity: 1;
    transform: none;
    transition: border-color 0.35s ease;
  }
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--service-image) center / cover no-repeat;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.05) 0%, rgba(16, 16, 16, 0.32) 40%, rgba(16, 16, 16, 0.94) 100%);
  transition: background 0.4s ease;
}

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

.service-card:hover::before {
  transform: scale(1.05);
}

.service-card:hover::after {
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.18) 0%, rgba(16, 16, 16, 0.55) 35%, rgba(16, 16, 16, 0.96) 100%);
}

.service-content {
  position: relative;
  z-index: 1;
}

.service-content .section-kicker {
  margin: 0 0 12px;
  color: var(--lime);
}

.service-content h3 {
  margin: 0;
  min-height: 98px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
}

.service-reveal {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-reveal {
  grid-template-rows: 1fr;
}

.service-reveal-inner {
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease 0.05s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}

.service-card:hover .service-reveal-inner {
  opacity: 1;
  transform: translateY(0);
}

.service-reveal-inner p {
  margin: 16px 0 0;
  color: #e4e4e4;
  font-size: 16px;
  line-height: 1.6;
}

.service-content > .outline-btn {
  margin-top: 22px;
}

.service-weddings {
  --service-image: url("assets/wedding-service-card.webp");
}

.service-private {
  --service-image: url("assets/private-events-service-card.webp");
}

.service-corporate {
  --service-image: url("assets/corporate-events-service-card.webp");
}

@media (hover: none) {
  .service-reveal {
    grid-template-rows: 1fr;
  }

  .service-reveal-inner {
    opacity: 1;
    transform: none;
  }
}

.service-card:hover::after {
  background: linear-gradient(180deg, rgba(228, 228, 228, 0.15), rgba(16, 16, 16, 0.34) 42%, rgba(16, 16, 16, 0.94));
}


.mini-icon.cake::before {
  width: 37px;
  height: 24px;
  border: 2px solid currentColor;
  border-top: 0;
  left: 6px;
  top: 18px;
}

.mini-icon.cake::after {
  width: 30px;
  height: 13px;
  border: 2px solid currentColor;
  left: 10px;
  top: 6px;
}

.mini-icon.briefcase::before {
  width: 39px;
  height: 30px;
  border: 2px solid currentColor;
  left: 5px;
  top: 14px;
}

.mini-icon.briefcase::after {
  width: 16px;
  height: 9px;
  border: 2px solid currentColor;
  border-bottom: 0;
  left: 17px;
  top: 6px;
}

.mini-icon.rings::before,
.mini-icon.rings::after {
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
  top: 17px;
}

.mini-icon.rings::before {
  left: 9px;
}

.mini-icon.rings::after {
  left: 22px;
}

.mini-icon.toast::before {
  width: 18px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 0 0 6px 6px;
  left: 8px;
  top: 8px;
  transform: rotate(-13deg);
}

.mini-icon.toast::after {
  width: 18px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 0 0 6px 6px;
  left: 25px;
  top: 9px;
  transform: rotate(13deg);
}

.mini-icon.music::before {
  width: 2px;
  height: 35px;
  background: currentColor;
  left: 30px;
  top: 4px;
}

.mini-icon.music::after {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  left: 9px;
  top: 27px;
}

.mini-icon.mask::before {
  width: 40px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 3px 3px 12px 12px;
  left: 5px;
  top: 13px;
}

.mini-icon.mask::after {
  width: 8px;
  height: 8px;
  background: currentColor;
  left: 16px;
  top: 22px;
  box-shadow: 14px 0 0 currentColor;
}

.post-card a {
  color: #fff;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
  display: inline-block;
  margin-top: 26px;
}

.why {
  border-top: 1px solid var(--line);
}

.why-grid {
  gap: 74px;
}

.collage {
  min-height: 700px;
  position: relative;
}

.collage img {
  border: 7px solid #151515;
  outline: 1px solid var(--lime-dark);
  border-radius: 18px;
}

.collage .large {
  width: 540px;
  height: 315px;
  position: absolute;
  left: 24px;
  top: 0;
}

.collage .small {
  width: 400px;
  height: 225px;
  position: absolute;
  right: 0;
}

.collage .top {
  top: 55px;
}

.collage .bottom {
  bottom: 0;
}

.event-done {
  left: -28px;
  top: 300px;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
  margin-top: 36px;
}

.reason-grid > div {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 20px;
}

.reason-grid .icon {
  grid-row: span 2;
}

.reason-grid h3 {
  margin: 0 0 4px;
}

.logos {
  border-top: 1px solid #3b3b3b;
  border-bottom: 1px solid #3b3b3b;
  padding: 0;
  margin-top: -75px;
  position: relative;
  z-index: 2;
}

.logo-row {
  min-height: 110px;
  border: 1px solid #484848;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  text-align: center;
  border-radius: 10px;
}

.logo-row span {
  color: #dcdcdc;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 800;
  position: relative;
}

.logo-row span::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 4px solid currentColor;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}

.logo-row .active {
  color: var(--lime);
}

.socials-row {
  min-height: 110px;
  border: 1px solid #484848;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  border-radius: 10px;
  background: #101010;
  overflow: hidden;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 16px;
  color: #dcdcdc;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: color 0.25s ease, background 0.25s ease;
}

.social-link + .social-link {
  border-left: 1px solid #2a2a2a;
}

.social-link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.social-link:hover {
  color: var(--lime);
  background: rgba(201, 163, 122, 0.06);
}

.social-link:hover svg {
  transform: translateY(-2px);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
}

.gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  border: 20px solid #101010;
  outline: 1px solid #f4f4f4;
  border-radius: 32px;
  opacity: 0;
  filter: blur(10px);
  will-change: transform, opacity, filter;
  transition:
    opacity 1.25s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.25s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery img:nth-child(1),
.gallery img:nth-child(2),
.gallery img:nth-child(3) {
  grid-column: span 4;
}

.gallery img:nth-child(1) {
  transform: translate3d(-90px, 34px, 0) scale(0.96);
}

.gallery img:nth-child(2) {
  transform: translate3d(-46px, -38px, 0) scale(0.96);
  transition-delay: 0.12s;
}

.gallery img:nth-child(3) {
  transform: translate3d(90px, 34px, 0) scale(0.96);
  transition-delay: 0.24s;
}

.gallery img:nth-child(4),
.gallery img:nth-child(5) {
  grid-column: span 6;
  aspect-ratio: 16 / 9;
}

.gallery img:nth-child(4) {
  transform: translate3d(-92px, -28px, 0) scale(0.97);
  transition-delay: 0.36s;
}

.gallery img:nth-child(5) {
  transform: translate3d(92px, -28px, 0) scale(0.97);
  transition-delay: 0.48s;
}

.gallery img:nth-child(6),
.gallery img:nth-child(7),
.gallery img:nth-child(8) {
  grid-column: span 4;
}

.gallery img:nth-child(6) {
  transform: translate3d(-90px, 34px, 0) scale(0.96);
  transition-delay: 0.6s;
}

.gallery img:nth-child(7) {
  transform: translate3d(-46px, -38px, 0) scale(0.96);
  transition-delay: 0.72s;
}

.gallery img:nth-child(8) {
  transform: translate3d(90px, 34px, 0) scale(0.96);
  transition-delay: 0.84s;
}

.gallery img.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.cta {
  position: relative;
  min-height: 520px;
  padding: 118px 0;
  display: flex;
  align-items: center;
  text-align: left;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.82) 43%, rgba(8, 8, 8, 0.46) 100%),
    linear-gradient(180deg, rgba(16, 16, 16, 0.2), rgba(16, 16, 16, 0.92)),
    url("assets/cta-banner.webp") center 52% / cover no-repeat;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 38%, rgba(201, 163, 122, 0.18), transparent 34%),
    linear-gradient(180deg, transparent 0%, rgba(16, 16, 16, 0.62) 100%);
  pointer-events: none;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-top: 1px solid rgba(201, 163, 122, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.cta-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.6fr);
  gap: 78px;
  align-items: center;
}

.cta-copy {
  max-width: 780px;
}

.cta h2 {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--lime);
  font-size: clamp(54px, 5vw, 82px);
  line-height: 1.03;
}

.cta .section-kicker {
  color: #e4e4e4;
  font-size: 18px;
  line-height: 1.6;
}

.cta p:not(.section-kicker) {
  max-width: 700px;
  margin: 0 0 36px;
  color: #ededed;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.cta-meta {
  border-left: 1px solid rgba(201, 163, 122, 0.5);
  padding-left: 42px;
  display: grid;
  gap: 30px;
}

.cta-meta-item {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-meta-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.cta-meta span {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.cta-meta strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.08;
  font-weight: 700;
}

.cta-meta p {
  margin: 0;
  color: #d8d8d8;
  font-size: 16px;
  line-height: 1.6;
}

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

.testimonial-rotator {
  display: grid;
  margin-top: 34px;
  position: relative;
}

.testimonial-rotator > .quote-card {
  grid-column: 1;
  grid-row: 1;
  margin-top: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.testimonial-rotator > .quote-card.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.testimonial-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--lime);
  background: transparent;
  color: var(--lime);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.testimonial-arrow svg {
  width: 18px;
  height: 18px;
}

.testimonial-arrow:hover {
  background: var(--lime);
  color: #0c0c0c;
}

.testimonial-arrow:active {
  transform: scale(0.95);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(201, 163, 122, 0.3);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, width 0.3s ease, transform 0.25s ease;
}

.testimonial-dot:hover {
  background: rgba(201, 163, 122, 0.65);
}

.testimonial-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--lime);
}

.quote-card {
  padding: 40px;
  margin-top: 34px;
  min-height: 255px;
}

.quote-mark {
  color: var(--lime);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 88px;
  line-height: 0.8;
  font-weight: 700;
  font-style: italic;
}

.quote-card strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  margin-top: 22px;
}

.quote-card span {
  color: var(--lime);
  font-size: 16px;
}

.testimonial-img {
  width: 100%;
  height: 790px;
  border: 7px solid #151515;
  outline: 1px solid var(--lime-dark);
  border-radius: 18px;
}

.pricing {
  padding-top: 0;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.price-card {
  min-height: 515px;
  padding: 35px;
  text-align: center;
}

.price-card.featured {
  border-color: var(--lime);
}

.price-card h3 {
  margin-bottom: 8px;
}

.price-card strong {
  display: block;
  color: var(--lime);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 61px;
  line-height: 1;
  font-weight: 700;
  margin: 8px 0 20px;
}

.price-card ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.price-card li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}

.price-card li::before {
  top: 7px;
  width: 5px;
  height: 5px;
}

.price-card a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--lime);
  padding: 0 25px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 800;
  border-radius: 999px;
}

.blog {
  border-top: 1px solid #383838;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 70px;
  align-items: center;
}

.post-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
}

.post-card div {
  padding: 30px;
}

.post-card > div > p:first-child {
  color: var(--lime);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 7px;
}

.post-card h3 {
  font-size: 21px;
}

.blog-grid .post-card {
  min-width: 0;
}

.blog-grid .post-card:nth-child(1),
.blog-grid .post-card:nth-child(2) {
  grid-column: auto;
}

.blog-copy {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.footer {
  border-top: 1px solid #2a2a2a;
  background: #0b0b0b;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 60px;
  padding: 80px 0 60px;
}

.footer-col h4 {
  margin: 0 0 22px;
  color: #fff;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 14px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--lime);
}

.footer-brand-col .footer-brand {
  display: inline-flex;
  margin-bottom: 22px;
}

.footer-brand-col .footer-brand .brand-logo {
  width: 220px;
  max-height: none;
}

.footer-brand-col p {
  max-width: 360px;
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 1.65;
}

.socials {
  display: flex;
  gap: 10px;
  margin: 0;
}

.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid #3a3a3a;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d8d8d8;
  font-size: 12px;
  font-weight: 700;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.socials a:hover {
  border-color: var(--lime);
  background: var(--lime);
  color: #0c0c0c;
}

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

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

.footer-links a {
  color: #c4c4c4;
  font-size: 15px;
  position: relative;
  padding-left: 16px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translateY(-50%);
  background: var(--lime);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  opacity: 0.7;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 20px;
}

.footer-contact li {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  color: #d8d8d8;
  font-size: 15px;
  line-height: 1.5;
}

.footer-contact a {
  color: #d8d8d8;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--lime);
}

.contact-label {
  color: var(--lime);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-newsletter {
  display: flex;
  margin-top: 22px;
  border: 1px solid #3a3a3a;
  background: #141414;
  border-radius: 999px;
  overflow: hidden;
}

.footer-newsletter input {
  flex: 1;
  min-width: 0;
  height: 48px;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 0 22px;
  font-family: inherit;
  font-size: 14px;
}

.footer-newsletter input::placeholder {
  color: #7d7d7d;
}

.footer-newsletter input:focus {
  outline: none;
}

.footer-newsletter button {
  width: 52px;
  height: 48px;
  border: 0;
  background: var(--lime);
  color: #0c0c0c;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease;
}

.footer-newsletter button:hover {
  background: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid #2a2a2a;
}

.copyright {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.footer-legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 26px;
}

.footer-legal a {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--lime);
}

.page-hero {
  min-height: 50vh;
  min-height: 50svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  background:
    linear-gradient(180deg, rgba(16, 16, 16, 0.18), rgba(16, 16, 16, 0.86) 78%),
    url("assets/about-banner.jpg") center center / cover no-repeat;
}

.about-page-hero,
.services-page-hero,
.events-page-hero,
.contact-page-hero {
  background:
    linear-gradient(180deg, rgba(16, 16, 16, 0.18), rgba(16, 16, 16, 0.86) 78%),
    url("assets/about-hero.webp") center center / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(transparent, var(--bg));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 5vw, 70px);
  line-height: 1.1;
  font-weight: 700;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.page-hero a {
  color: var(--lime);
}

.about-layout-section {
  padding: 112px 0;
}

.about-main .copy p {
  max-width: 640px;
}

.about-main .copy h2,
.movement .copy h2 {
  color: var(--lime);
}

.about-quote {
  margin: 0 0 24px;
  border-left: 1px solid var(--lime);
  padding-left: 30px;
  color: #d8d8d8;
  font-size: 17px;
  font-style: italic;
  line-height: 1.65;
}

.signature {
  display: grid;
  gap: 3px;
}

.signature strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1.2;
}

.signature span {
  color: var(--lime);
  font-size: 14px;
  font-weight: 700;
}

.about-main-image {
  align-self: end;
}

.about-logo-strip {
  margin-top: -75px;
}

.about-why {
  border-top: 0;
}

.about-services {
  border-top: 1px solid var(--line);
}

.about-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.outline-service-card {
  min-height: 305px;
  border: 1px solid #464646;
  border-radius: 10px;
  padding: 36px;
  background: #121212;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.outline-service-card:first-child,
.outline-service-card:hover {
  border-color: var(--lime);
  background: #151515;
  transform: translateY(-6px);
}

.outline-service-card .mini-icon {
  width: 50px;
  height: 50px;
  color: var(--lime);
}

.outline-service-card h3 {
  margin: 18px 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  line-height: 1.2;
}

.outline-service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.outline-service-card a {
  display: inline-block;
  margin-top: 24px;
  color: var(--lime);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
}

.services-page-main {
  padding-top: 7em;
  padding-bottom: 7em;
}

.service-jump-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  border: 1px solid #464646;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
}

.service-jump-nav a {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  color: #f4f4f4;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.service-jump-nav a + a {
  border-left: 1px solid #464646;
}

.service-jump-nav span {
  color: var(--lime);
  font-size: 12px;
  letter-spacing: 2px;
}

.service-jump-nav a:hover {
  background: rgba(201, 163, 122, 0.12);
  color: #fff;
}

.core-service-stack {
  display: grid;
  gap: 110px;
  margin-top: 96px;
}

.core-service-detail {
  scroll-margin-top: 130px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 76px;
  align-items: center;
  padding-bottom: 110px;
  border-bottom: 1px solid var(--line);
}

.core-service-detail:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.core-service-detail.reverse .core-service-media {
  order: 2;
}

.core-service-media {
  position: relative;
  min-height: 640px;
  border: 1px solid var(--lime-dark);
  border-radius: 12px;
  padding: 16px;
}

.core-service-media::before {
  display: none;
}

.core-service-media img {
  position: relative;
  width: 100%;
  height: 606px;
  border: 7px solid #151515;
  outline: 1px solid #4a4a4a;
  border-radius: 8px;
}

.core-service-copy h2 {
  margin: 0 0 24px;
  color: var(--lime);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(58px, 5.5vw, 92px);
  line-height: 1.05;
}

.core-service-copy > p:not(.section-kicker) {
  max-width: 720px;
  margin: 0;
  color: #e4e4e4;
  font-size: 18px;
  line-height: 1.7;
}

.core-service-copy .section-kicker {
  color: #ffffff;
}

.service-includes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 34px;
  margin: 36px 0 42px;
  padding: 0;
  list-style: none;
}

.service-includes li {
  position: relative;
  color: #f2f2f2;
  font-size: 16px;
  line-height: 1.5;
  padding-left: 20px;
}

.service-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background: var(--lime);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.service-detail-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.service-detail-panels div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  min-height: 0;
  padding: 22px 0;
}

.service-detail-panels div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.service-detail-panels span {
  display: block;
  margin-bottom: 0;
  color: var(--lime);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.service-detail-panels p {
  margin: 0;
  color: #d7d7d7;
  font-size: 15px;
  line-height: 1.6;
}

.services-stats {
  padding: 7em 0;
}

.other-services {
  border-bottom: 1px solid var(--line);
}

.other-services-grid {
  gap: 70px;
  align-items: center;
}

.other-services .copy p {
  max-width: 650px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 42px;
  margin-top: 36px;
}

.support-grid > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 18px;
  align-items: start;
}

.support-grid .mini-icon {
  width: 44px;
  height: 44px;
  color: var(--lime);
  grid-row: span 2;
}

.support-grid h3 {
  margin: 0 0 5px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  line-height: 1.2;
  grid-column: 2;
}

.support-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  grid-column: 2;
}

.other-image-frame {
  position: relative;
  min-height: 625px;
}

.other-image-frame::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 95%;
  height: 625px;
  border: 1px solid var(--lime-dark);
  border-radius: 10px;
}

.other-image-frame img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 95%;
  height: 595px;
  border: 7px solid #151515;
  outline: 1px solid #4a4a4a;
  border-radius: 14px;
}

.services-portfolio {
  border-bottom: 0;
}

.service-areas {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.82) 43%, rgba(8, 8, 8, 0.46) 100%),
    linear-gradient(180deg, rgba(16, 16, 16, 0.2), rgba(16, 16, 16, 0.92)),
    url("assets/private-events-service-card.webp") center 52% / cover no-repeat;
}

.service-areas::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 38%, rgba(201, 163, 122, 0.18), transparent 34%),
    linear-gradient(180deg, transparent 0%, rgba(16, 16, 16, 0.62) 100%);
  pointer-events: none;
}

.service-areas::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-top: 1px solid rgba(201, 163, 122, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.service-area-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.area-card {
  min-height: 245px;
  padding: 32px;
  border: 1px solid #464646;
  border-radius: 10px;
  background: #121212;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.area-card:hover {
  border-color: var(--lime);
  background: #151515;
  transform: translateY(-5px);
}

.area-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid rgba(201, 163, 122, 0.6);
  border-radius: 50%;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.area-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  line-height: 1.15;
}

.area-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.add-on-services .section-title {
  margin-bottom: 64px;
}

.add-on-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.add-on-card {
  min-height: 300px;
  padding: 36px;
  border: 1px solid #464646;
  border-radius: 10px;
  background: #121212;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.add-on-card:hover {
  border-color: var(--lime);
  background: #151515;
  transform: translateY(-6px);
}

.add-on-card .mini-icon {
  margin-bottom: 22px;
}

.add-on-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  line-height: 1.2;
}

.add-on-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.events-gallery {
  padding-top: 7em;
  padding-bottom: 7em;
  border-bottom: 1px solid var(--line);
}

.events-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.event-tile {
  display: block;
  padding: 20px;
  overflow: hidden;
  position: relative;
}

.event-tile.bordered {
  border: 1px solid #555;
}

.event-tile.no-left {
  border-left-width: 0;
}

.event-tile img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.event-tile:hover img {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.035);
}

.event-small {
  grid-column: span 2;
}

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

.event-small img {
  aspect-ratio: 5 / 4;
}

.event-wide img {
  aspect-ratio: 16 / 9;
}

.contact-main {
  padding: 112px 0;
  border-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.contact-copy h2 {
  margin: 0 0 26px;
  color: var(--lime);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(46px, 4.2vw, 68px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.contact-copy .section-kicker {
  color: #fff;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 700px;
  margin: 0;
  color: #d0d0d0;
  font-size: 17px;
  line-height: 1.75;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 46px;
  margin: 42px 0 48px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-width: 0;
}

.contact-info-item h3 {
  margin: 0 0 4px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
}

.contact-info-item a,
.contact-info-item p {
  margin: 0;
  color: #d2d2d2;
  font-size: 16px;
  line-height: 1.45;
  overflow-wrap: anywhere;
  transition: color 0.2s ease;
}

.contact-info-item a:hover {
  color: var(--lime);
}

.contact-icon {
  width: 42px;
  height: 42px;
  color: var(--lime);
  position: relative;
  display: block;
  flex: 0 0 auto;
}

.contact-icon::before,
.contact-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.contact-icon.phone {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a37a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 28px;
}

.contact-icon.phone::before,
.contact-icon.phone::after {
  display: none;
}

.contact-icon.email::before {
  width: 36px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 3px;
  left: 3px;
  top: 9px;
}

.contact-icon.email::after {
  width: 23px;
  height: 23px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  left: 9px;
  top: 4px;
  transform: rotate(-45deg);
}

.contact-icon.website::before {
  width: 34px;
  height: 34px;
  border: 2px solid currentColor;
  border-radius: 50%;
  left: 4px;
  top: 4px;
}

.contact-icon.website::after {
  width: 34px;
  height: 2px;
  background: currentColor;
  left: 4px;
  top: 20px;
  box-shadow: 0 -10px 0 -1px currentColor, 0 10px 0 -1px currentColor;
}

.contact-icon.address::before {
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  left: 7px;
  top: 2px;
  transform: rotate(-45deg);
}

.contact-icon.address::after {
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  left: 17px;
  top: 12px;
}

.contact-icon.hours::before {
  width: 32px;
  height: 32px;
  border: 2px solid currentColor;
  border-radius: 50%;
  left: 5px;
  top: 5px;
}

.contact-icon.hours::after {
  width: 10px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  left: 21px;
  top: 13px;
}

.contact-follow h3 {
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

.contact-divider {
  width: 100%;
  height: 1px;
  margin: 0 0 22px;
  background: var(--lime);
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-social {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #dcdcdc;
  background: transparent;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.contact-social svg {
  width: 18px;
  height: 18px;
}

.contact-social:hover {
  color: #0c0c0c;
  background: var(--lime);
  border-color: var(--lime);
  transform: translateY(-2px);
}

.contact-form-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px;
  background: var(--bg-soft);
}

.contact-form-card h2 {
  margin: 0 0 28px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  font: inherit;
  font-size: 15px;
  padding: 0 22px;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form input,
.contact-form select {
  height: 56px;
}

.contact-form textarea {
  height: 200px;
  padding-top: 18px;
  padding-bottom: 18px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a7a7a7;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 7'><path fill='none' stroke='%23c9a37a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 22px center;
  background-size: 12px 7px;
  padding-right: 48px;
  color: #a7a7a7;
  cursor: pointer;
}

.contact-form select:valid {
  color: #fff;
}

.contact-form select option {
  background: #1a1a1a;
  color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--lime);
  background: rgba(255, 255, 255, 0.04);
}

.contact-disclaimer {
  margin: 6px 0 0;
  color: #9a9a9a;
  font-size: 12.5px;
  line-height: 1.55;
}

.contact-form button {
  height: 56px;
  border: 1px solid var(--lime);
  background: var(--lime);
  color: #0c0c0c;
  border-radius: 999px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.contact-form button:hover {
  background: transparent;
  color: var(--lime);
}

.map-section {
  padding: 0 0 112px;
}

.map-frame {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(1);
  transition: filter 0.5s ease;
}

.map-frame:hover iframe {
  filter: grayscale(0);
}

.mini-icon.calendar-mini::before {
  width: 34px;
  height: 29px;
  border: 2px solid currentColor;
  left: 5px;
  top: 10px;
}

.mini-icon.calendar-mini::after {
  width: 34px;
  height: 2px;
  background: currentColor;
  left: 5px;
  top: 20px;
}

.mini-icon.ticket-mini::before {
  width: 38px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 4px;
  left: 4px;
  top: 12px;
  transform: rotate(-4deg);
}

.mini-icon.ticket-mini::after {
  width: 2px;
  height: 18px;
  background: currentColor;
  left: 22px;
  top: 16px;
}

.mini-icon.decor-mini::before {
  width: 38px;
  height: 22px;
  border: 2px solid currentColor;
  left: 4px;
  top: 18px;
}

.mini-icon.decor-mini::after {
  width: 9px;
  height: 9px;
  border: 2px solid currentColor;
  border-radius: 50%;
  left: 9px;
  top: 7px;
  box-shadow: 15px 0 0 -2px transparent, 15px 0 0 0 currentColor;
}

.mini-icon.camera-mini::before {
  width: 40px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 4px;
  left: 5px;
  top: 15px;
}

.mini-icon.camera-mini::after {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
  left: 18px;
  top: 21px;
  box-shadow: -12px -10px 0 -4px currentColor;
}

.mini-icon.bulb-mini::before {
  width: 22px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 40% 40%;
  left: 14px;
  top: 5px;
}

.mini-icon.bulb-mini::after {
  width: 12px;
  height: 8px;
  border: 2px solid currentColor;
  border-top: 0;
  left: 19px;
  top: 33px;
}

.mini-icon.mic-mini::before {
  width: 14px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 7px;
  left: 18px;
  top: 4px;
}

.mini-icon.mic-mini::after {
  width: 22px;
  height: 12px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 22px 22px;
  left: 14px;
  top: 22px;
}

.movement-grid {
  align-items: center;
}

.movement-steps {
  display: grid;
  gap: 28px;
  margin-top: 36px;
}

.movement-steps > div {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  align-items: start;
}

.movement-steps strong {
  color: var(--lime);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 52px;
  line-height: 1;
  font-weight: 700;
}

.movement-steps span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.movement-steps b {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
  line-height: 1.2;
}

.movement-image {
  outline-color: var(--lime-dark);
}

.movement-image img {
  width: 100%;
  height: 650px;
  border-radius: 11px;
}

.vendor-card {
  right: 18px;
  top: 36px;
}

.team {
  border-bottom: 1px solid var(--line);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
}

.team-card {
  position: relative;
  text-align: center;
}

.team-card::before {
  content: "";
  position: absolute;
  left: 22px;
  top: -18px;
  right: -22px;
  bottom: 78px;
  border: 1px solid var(--lime-dark);
  border-radius: 10px;
  z-index: 0;
}

.team-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 7px solid #151515;
  outline: 1px solid #4a4a4a;
  border-radius: 14px;
}

.team-card h3 {
  margin: 22px 0 4px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  line-height: 1.2;
}

.team-card p {
  margin: 0;
  color: var(--lime);
  font-size: 14px;
  font-weight: 700;
}

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

@media (max-width: 920px) {
  .site-header {
    height: 92px;
    padding: 0 22px;
    align-items: center;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.58) 74%, transparent);
  }

  .site-header .brand-logo {
    width: clamp(158px, 36vw, 230px);
    max-height: 82px;
  }

  .nav-toggle {
    position: relative;
    z-index: 12;
    display: inline-flex;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(201, 163, 122, 0.72);
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.76);
    color: #fff;
    padding: 0;
    cursor: pointer;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: calc(100% - 8px);
    left: 22px;
    right: 22px;
    z-index: 11;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(201, 163, 122, 0.42);
    border-radius: 18px;
    background: rgba(12, 12, 12, 0.97);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .site-header.nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .main-nav a:not(.nav-cta) {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 13px;
    letter-spacing: 1px;
  }

  .main-nav a:not(.nav-cta)::after {
    display: none;
  }

  .main-nav .nav-cta {
    min-height: 48px;
    width: 100%;
    margin: 14px 0 0;
    padding: 0 18px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(48px, 8vw, 62px);
  }

  .two-col,
  .blog-grid,
  .contact-grid,
  .core-service-detail,
  .service-area-layout,
  .service-jump-nav {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    gap: 70px;
  }

  .service-grid,
  .feature-grid,
  .about-service-grid,
  .team-grid,
  .events-gallery-grid,
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stats-band {
    background-attachment: scroll;
  }

  .collage {
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px 40px;
    padding: 60px 0 50px;
  }

  .footer-brand-col,
  .footer-contact-col {
    grid-column: span 2;
  }

  .footer-brand-col p {
    max-width: 540px;
  }

  .about-layout-section {
    padding: 90px 0;
  }

  .about-logo-strip {
    margin-top: 0;
  }

  .movement-image img {
    height: 520px;
  }

  .other-services-grid {
    gap: 54px;
  }

  .other-image-frame {
    min-height: 520px;
  }

  .other-image-frame::before {
    height: 520px;
  }

  .other-image-frame img {
    height: 490px;
  }

  .event-small,
  .event-wide {
    grid-column: span 1;
  }

  .cta {
    min-height: auto;
    padding: 92px 0;
    background:
      linear-gradient(180deg, rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.78)),
      url("assets/cta-banner.webp") center center / cover no-repeat;
  }

  .cta-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-meta {
    border-left: 0;
    border-top: 1px solid rgba(201, 163, 122, 0.5);
    padding-left: 0;
    padding-top: 34px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-copy > p:not(.section-kicker) {
    max-width: 100%;
  }

  .core-service-detail.reverse .core-service-media {
    order: 0;
  }

  .service-jump-nav a + a {
    border-left: 0;
    border-top: 1px solid #464646;
  }

  .core-service-detail {
    gap: 54px;
    padding-bottom: 78px;
  }

  .core-service-media,
  .core-service-media img {
    min-height: 540px;
    height: 540px;
  }

  .core-service-media img {
    height: 506px;
  }

  .add-on-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 921px) and (max-width: 1200px) {
  .site-header .brand-logo {
    width: 240px;
  }

  .main-nav {
    gap: 18px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .feature-card,
  .service-card {
    padding: 34px;
  }

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

  .two-col {
    gap: 54px;
  }
}

@media (max-width: 640px) {
  .market-bar {
    display: none;
  }

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

  .site-header {
    height: 82px;
    width: 100vw;
    max-width: 100vw;
    padding: 0 18px;
  }

  .site-header .brand-logo {
    width: clamp(132px, 42vw, 166px);
    max-height: 74px;
  }

  .nav-toggle {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .main-nav {
    left: 18px;
    right: 18px;
    top: calc(100% - 6px);
    padding: 12px;
    border-radius: 16px;
  }

  .hero,
  .hero-inner {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-inner {
    width: min(calc(100% - 36px), 340px);
    padding: 112px 0 70px;
    min-width: 0;
  }

  .hero .eyebrow {
    max-width: 320px;
    margin-bottom: 18px;
    font-size: 11px;
    line-height: 1.45;
    letter-spacing: 4px;
  }

  .hero h1 {
    width: 100%;
    max-width: 292px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(40px, 10.8vw, 44px);
    line-height: 1.03;
    text-align: center;
    overflow-wrap: break-word;
  }

  .hero h1 span {
    display: block;
  }

  .hero .lead {
    width: 100%;
    max-width: 282px;
    margin: 22px auto 30px;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    text-wrap: pretty;
    overflow-wrap: break-word;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .services-cta .btn {
    width: min(100%, 340px);
  }

  .btn,
  .outline-btn {
    min-height: 48px;
    padding: 15px 24px;
    font-size: 13px;
    letter-spacing: 1.6px;
    text-align: center;
  }

  .trust-carousel {
    padding: 22px 0;
  }

  .trust-track {
    gap: 32px;
    animation-duration: 30s;
  }

  @keyframes trust-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 16px)); }
  }

  .feature-grid,
  .service-grid,
  .about-service-grid,
  .add-on-grid,
  .area-grid,
  .team-grid,
  .events-gallery-grid,
  .price-grid,
  .stats-grid,
  .check-grid,
  .reason-grid,
  .logo-row,
  .socials-row {
    grid-template-columns: 1fr;
  }

  .social-link + .social-link {
    border-left: 1px solid #2a2a2a;
    border-top: 0;
  }

  .logos {
    margin-top: -24px;
    padding: 0;
  }

  .socials-row {
    width: min(100% - 36px, var(--max));
    min-height: 74px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-radius: 18px;
  }

  .social-link {
    gap: 0;
    padding: 0;
    min-width: 0;
  }

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

  .social-link svg {
    width: 25px;
    height: 25px;
  }

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

  .section-title {
    margin-bottom: 42px;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: 3.2px;
    line-height: 1.35;
  }

  .lead,
  .section-title p,
  .copy p,
  .testimonial-copy > p,
  .blog-copy p,
  .cta p:not(.section-kicker) {
    font-size: 16px;
    line-height: 1.65;
  }

  .page-hero {
    min-height: 360px;
    padding-top: 96px;
  }

  .page-hero h1 {
    font-size: clamp(46px, 13vw, 58px);
    line-height: 1;
  }

  .about-layout-section {
    padding: 68px 0;
  }

  .copy h2,
  .section-title h2,
  .testimonial-copy h2,
  .blog-copy h2,
  .cta h2 {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.08;
  }

  .cta {
    padding: 78px 0;
  }

  .cta h2 {
    font-size: clamp(42px, 11vw, 54px);
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .cta-meta {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .gallery img:nth-child(n) {
    grid-column: auto;
    height: 210px;
  }

  .events-gallery {
    padding: 68px 0;
  }

  .event-small,
  .event-wide {
    grid-column: auto;
  }

  .event-tile {
    padding: 12px;
    border: 1px solid #555;
  }

  .event-tile.no-left {
    border-left-width: 1px;
  }

  .contact-main {
    padding: 68px 0;
  }

  .contact-copy h2 {
    font-size: 38px;
  }

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

  .contact-form .full {
    grid-column: auto;
  }

  .core-service-stack {
    gap: 64px;
    margin-top: 56px;
  }

  .core-service-detail {
    padding: 0 0 58px;
    gap: 34px;
  }

  .core-service-copy h2 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .core-service-copy > p:not(.section-kicker) {
    font-size: 16px;
  }

  .core-service-media,
  .core-service-media img {
    min-height: 0;
    height: auto;
  }

  .core-service-media {
    padding: 12px;
  }

  .core-service-media img {
    height: 300px;
  }

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

  .service-detail-panels div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-detail-panels div,
  .add-on-card,
  .area-card {
    min-height: 0;
  }

  .contact-form-card {
    padding: 2em;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-form select {
    padding-right: 44px;
    background-position: right 18px center;
  }

  .map-section {
    padding-bottom: 68px;
  }

  .collage {
    min-height: 650px;
  }

  .collage .large,
  .collage .small {
    position: relative;
    width: 100%;
    height: 210px;
    inset: auto;
    margin-bottom: 12px;
  }

  .event-done {
    left: 18px;
    top: 152px;
  }

  .about-quote {
    padding-left: 20px;
  }

  .movement-steps > div {
    grid-template-columns: 54px 1fr;
    gap: 16px;
  }

  .movement-steps strong {
    font-size: 38px;
  }

  .movement-image img {
    height: 360px;
  }

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

  .other-image-frame {
    min-height: 360px;
  }

  .other-image-frame::before {
    width: 95%;
    height: 350px;
  }

  .other-image-frame img {
    height: 330px;
  }

  .team-card::before {
    inset: -14px -12px 70px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 0 40px;
  }

  .footer-brand-col,
  .footer-contact-col {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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