/* ==========================================================================
   GEC Swansea — site styles
   Editorial / monochrome treatment built around the GEC SWANSEA wordmark.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

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

:root {
  /* palette — monochrome to match the wordmark */
  --bg: #000;
  --bg-2: #070707;
  --surface: #0e0e0e;
  --surface-2: #161616;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f3ee;
  --muted: #9a968d;
  --muted-2: #5a5750;
  --ink: #f5f3ee;

  /* type */
  --font-display: 'Archivo Black', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Instrument Serif', 'Times New Roman', Georgia, serif;

  /* sizes */
  --container: 1320px;
  --container-narrow: 1040px;
  --radius: 4px;
  --radius-lg: 6px;
  --gap: clamp(1rem, 2vw, 1.5rem);
  --section-y: clamp(2.75rem, 8vw, 8rem);

  /* shadow / motion */
  --shadow-soft: 0 24px 60px -24px rgba(0, 0, 0, 0.7);
  --shadow-strong: 0 36px 80px -28px rgba(0, 0, 0, 0.9);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   BASE
   ========================================================================== */
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease), opacity 0.25s var(--ease); }
button { border: 0; background: none; cursor: pointer; font: inherit; color: inherit; }
ul { list-style: none; }
::selection { background: var(--ink); color: var(--bg); }

/* Typography helpers */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--muted);
  flex-shrink: 0;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 400; /* Archivo Black is single-weight already */
  letter-spacing: -0.01em;
  line-height: 1.04;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  text-transform: uppercase;
  margin-top: 0.8rem;
  text-wrap: balance;
}
.section__title em {
  font-style: normal;
  color: inherit;
}

.section__sub {
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  max-width: 64ch;
}

p { color: var(--muted); line-height: 1.75; font-size: 1rem; }

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding-block: var(--section-y);
  position: relative;
}
.section--alt { background: var(--bg-2); }

.section__head {
  max-width: 880px;
  margin-bottom: clamp(1.75rem, 4.5vw, 4rem);
}

/* ==========================================================================
   TOPBAR
   ========================================================================== */
.topbar {
  background: #000;
  color: var(--text);
  font-size: 0.78rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 60;
}
.topbar__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.75rem clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  letter-spacing: 0.04em;
}
.topbar__item:hover { opacity: 0.7; }
.topbar__item svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar__right { display: flex; align-items: center; gap: 1.5rem; }
.topbar__socials { display: flex; gap: 0.6rem; }
.topbar__socials a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--text);
  transition: opacity 0.2s var(--ease);
}
.topbar__socials a:hover { opacity: 0.7; }
.topbar__socials svg { width: 14px; height: 14px; }

@media (max-width: 820px) {
  .topbar__inner { gap: 0.75rem; flex-wrap: wrap; }
  .topbar__item span { display: none; }
  .topbar__right { gap: 0.75rem; }
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav--transparent { background: transparent; border-bottom-color: transparent; }
.nav.is-scrolled, .nav.is-open {
  background: rgba(0, 0, 0, 0.92);
  border-bottom-color: var(--line);
}

.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  z-index: 45;
}

.nav__logo { display: block; flex-shrink: 0; }
.nav__logo img {
  height: 46px;
  width: auto;
  display: block;
}
@media (max-width: 720px) {
  .nav__logo img { height: 52px; }
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.4vw, 1.25rem);
}
.nav__menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.4rem 0;
  white-space: nowrap;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__menu a:hover::after, .nav__menu a.active::after { transform: scaleX(1); }
.nav__menu a.active { color: var(--text); }
.nav__menu a:not(.active) { color: rgba(245, 243, 238, 0.7); }
.nav__menu a:not(.active):hover { color: var(--text); }
.nav__external svg { width: 10px; height: 10px; opacity: 0.6; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.4rem;
  background: var(--text);
  color: var(--bg) !important;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
  flex-shrink: 0;
  border-radius: 0;
}
.nav__cta:hover {
  background: var(--bg);
  color: var(--text) !important;
  outline: 1px solid var(--text);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line-strong);
  position: relative;
  z-index: 46;
  background: transparent;
}
.nav.is-open .nav__toggle { background: rgba(0,0,0,0.6); }
.nav__toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1180px) {
  .nav__menu { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.2rem;
  padding: 7rem clamp(1.5rem, 6vw, 3rem) 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
  z-index: 42;
  overflow-y: auto;
}
.nav.is-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4.5vw, 1.7rem);
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--text);
  transition: opacity 0.2s var(--ease), transform 0.3s var(--ease);
  line-height: 1.1;
}
.mobile-menu a:hover { transform: translateX(6px); opacity: 0.6; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -85px;
  padding-top: 85px;
}
.hero__content { padding-bottom: clamp(2rem, 4vw, 3rem); }
@media (max-width: 720px) {
  .hero {
    min-height: 88vh;
    min-height: 88dvh;
  }
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.85) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.25rem, 4vw, 3rem) clamp(3rem, 8vw, 6rem);
  max-width: var(--container);
  width: 100%;
  margin-inline: auto;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.8);
  margin-bottom: 1.6rem;
  animation: fadeUp 1s var(--ease-out) 0.1s backwards;
}
.hero__eyebrow span {
  display: inline-block;
  width: clamp(28px, 6vw, 60px);
  height: 1px;
  background: rgba(245, 243, 238, 0.5);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.2vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  text-wrap: balance;
  margin-bottom: 1.4rem;
  max-width: 16ch;
  animation: fadeUp 1s var(--ease-out) 0.25s backwards;
}
.hero__title em {
  font-style: normal;
  color: inherit;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: rgba(245, 243, 238, 0.78);
  max-width: 540px;
  margin-bottom: 2.4rem;
  animation: fadeUp 1s var(--ease-out) 0.4s backwards;
}

.hero__ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  animation: fadeUp 1s var(--ease-out) 0.55s backwards;
}

.hero__scroll {
  position: absolute;
  bottom: 1.8rem;
  right: clamp(1.25rem, 4vw, 3rem);
  z-index: 3;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.5);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: fadeUp 1s var(--ease-out) 0.8s backwards;
  writing-mode: horizontal-tb;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, rgba(245,243,238,0.5), transparent);
  animation: scrollLine 2.4s var(--ease) infinite;
}
@media (max-width: 720px) { .hero__scroll { display: none; } }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLine {
  0%   { transform: scaleY(1); transform-origin: top; opacity: 0.6; }
  50%  { transform: scaleY(0.3); transform-origin: top; opacity: 0.3; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0.6; }
}

/* ==========================================================================
   PAGE HERO (interior pages)
   ========================================================================== */
.page-hero {
  position: relative;
  min-height: 60vh;
  min-height: 60dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -85px;
  padding-top: clamp(7rem, 12vw, 10rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
@media (max-width: 720px) {
  .page-hero {
    min-height: 50vh;
    min-height: 50dvh;
    padding-top: clamp(6rem, 18vw, 8rem);
    padding-bottom: clamp(2rem, 6vw, 3rem);
  }
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(0.85);
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 30%, rgba(0,0,0,0.9) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  animation: fadeUp 0.8s var(--ease-out) 0.05s backwards;
}
.page-hero__breadcrumb a { opacity: 0.85; transition: opacity 0.2s var(--ease); }
.page-hero__breadcrumb a:hover { opacity: 1; }
.page-hero__breadcrumb svg { width: 11px; height: 11px; opacity: 0.85; }
.page-hero__breadcrumb span { opacity: 1; }

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  text-wrap: balance;
  max-width: 22ch;
  animation: fadeUp 0.9s var(--ease-out) 0.15s backwards;
}
.page-hero__title em {
  font-style: normal;
  color: inherit;
}
.page-hero__sub {
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  color: rgba(245,243,238,0.78);
  max-width: 620px;
  animation: fadeUp 1s var(--ease-out) 0.3s backwards;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  text-decoration: none;
  border-radius: 0;
}
.btn--primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn--primary:hover {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(245, 243, 238, 0.35);
}
.btn--ghost:hover {
  border-color: var(--text);
  background: rgba(245, 243, 238, 0.06);
}

/* ==========================================================================
   INTRO / ABOUT GRID
   ========================================================================== */
.intro__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}
@media (max-width: 900px) { .intro__grid { grid-template-columns: 1fr; } }

.intro__copy p { margin-bottom: 1.1rem; font-size: 1.05rem; line-height: 1.75; }
.intro__copy .btn { margin-top: 1rem; }
.intro__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  text-transform: uppercase;
  color: var(--text) !important;
  margin: 1.8rem 0 1.5rem !important;
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.intro__tagline em {
  font-style: normal;
  color: var(--text);
}

/* Intro image (replaces stats on home) */
.intro__image {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.intro__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.9);
  transition: filter 0.6s var(--ease);
}
.intro__image:hover img { filter: saturate(1); }
.intro__image figcaption {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Stats — slimmer, less template-y */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.stat {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.015em;
  color: var(--text);
  line-height: 1;
}
.stat__label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
@media (max-width: 1100px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.4s var(--ease), transform 0.5s var(--ease);
  min-height: 480px;
  text-decoration: none;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.service-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg);
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease), filter 0.5s var(--ease);
  filter: saturate(0.9);
}
.service-card:hover .service-card__media img { transform: scale(1.05); filter: saturate(1); }
.service-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

.service-card__body {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.service-card__num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.service-card__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  letter-spacing: -0.005em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.service-card__body p {
  font-size: 0.95rem;
  margin-bottom: 1.4rem;
  flex: 1;
}
.service-card__link {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s var(--ease);
}
.service-card:hover .service-card__link { gap: 0.85rem; }

.service-card--cta {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  justify-content: center;
}
.service-card--cta .service-card__body { justify-content: center; }
.service-card--cta .service-card__num,
.service-card--cta h3,
.service-card--cta .service-card__link { color: var(--bg); }
.service-card--cta p { color: rgba(0, 0, 0, 0.7); }
.service-card--cta:hover { background: var(--bg); color: var(--text); border-color: var(--text); }
.service-card--cta:hover .service-card__num,
.service-card--cta:hover h3,
.service-card--cta:hover .service-card__link { color: var(--text); }
.service-card--cta:hover p { color: var(--muted); }

/* ==========================================================================
   FEATURES GRID — pared down, type-led
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 1000px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

.feature {
  background: var(--bg);
  padding: clamp(1.6rem, 2.6vw, 2.4rem);
  transition: background 0.4s var(--ease);
}
.feature:hover { background: var(--surface); }
.feature__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--text);
  margin-bottom: 1.4rem;
  border: 1px solid var(--line-strong);
}
.feature__icon svg { width: 18px; height: 18px; stroke-width: 1.2; }
.feature h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.003em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  line-height: 1.15;
}
.feature p { font-size: 0.94rem; }

/* ==========================================================================
   SPLIT
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.split--reverse .split__media { order: 2; }
.split--reverse .split__copy { order: 1; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media,
  .split--reverse .split__copy { order: initial; }
}

.split__copy h2 { margin-bottom: 1.4rem; }
.split__copy p { margin-bottom: 1.1rem; font-size: 1.02rem; }
.split__copy .btn { margin-top: 1rem; }

.media-stack {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.media-stack img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: saturate(0.9);
  transition: filter 0.5s var(--ease), transform 0.6s var(--ease);
}
.media-stack img:nth-child(1) { transform: translateY(-22px); }
.media-stack img:nth-child(2) { transform: translateY(22px); }
.media-stack img:hover { transform: translateY(0); filter: saturate(1); }

/* ==========================================================================
   CHECKLIST
   ========================================================================== */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.6rem 0 2rem;
}
.checklist li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.55;
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 14px;
  height: 1px;
  background: var(--text);
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.5rem, 1vw, 0.8rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
  cursor: zoom-in;
  background: var(--surface);
  filter: saturate(0.9);
}
.gallery-grid img:hover {
  filter: saturate(1) brightness(1.05);
}

.gallery-masonry {
  column-count: 3;
  column-gap: clamp(0.5rem, 1vw, 0.8rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 900px) { .gallery-masonry { column-count: 2; } }
@media (max-width: 520px) { .gallery-masonry { column-count: 1; } }
.gallery-masonry img {
  width: 100%;
  margin-bottom: clamp(0.5rem, 1vw, 0.8rem);
  transition: filter 0.5s var(--ease);
  cursor: zoom-in;
  display: block;
  break-inside: avoid;
  filter: saturate(0.9);
}
.gallery-masonry img:hover { filter: saturate(1) brightness(1.05); }

/* ==========================================================================
   VENUE PANELS
   ========================================================================== */
.venue__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
}
@media (max-width: 700px) { .venue__grid { grid-template-columns: 1fr; } }
.venue__panel {
  padding: clamp(1.8rem, 3vw, 2.6rem);
  border-right: 1px solid var(--line);
}
.venue__panel:last-child { border-right: 0; }
@media (max-width: 700px) {
  .venue__panel { border-right: 0; border-bottom: 1px solid var(--line); }
  .venue__panel:last-child { border-bottom: 0; }
}
.venue__panel h3 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  letter-spacing: -0.003em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  color: var(--text);
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 7rem);
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) { .cta-band__inner { grid-template-columns: 1fr; } }
.cta-band__inner p { margin-top: 1.2rem; max-width: 56ch; }
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }

.contact__card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  background: var(--bg);
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: background 0.3s var(--ease);
}
.contact__card:last-child { border-right: 0; }
@media (max-width: 900px) {
  .contact__card { border-right: 0; border-bottom: 1px solid var(--line); }
  .contact__card:last-child { border-bottom: 0; }
}
.contact__card:hover { background: var(--surface); }
.contact__icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  color: var(--text);
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
}
.contact__icon svg { width: 18px; height: 18px; stroke-width: 1.2; }
.contact__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.contact__value {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: -0.003em;
  word-break: break-word;
}
.contact__hint {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.6rem;
}

/* Contact form */
.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 640px) { .contact-form__row { grid-template-columns: 1fr; } }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.95rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-transform: none;
  transition: border-color 0.25s var(--ease);
  border-radius: 0;
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--text);
}

.form-status {
  padding: 0.85rem 1rem;
  font-size: 0.86rem;
  line-height: 1.5;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--text);
}
.form-status[data-kind="error"] {
  border-color: rgba(255, 120, 120, 0.4);
  background: rgba(255, 120, 120, 0.06);
}
.form-status[data-kind="success"] {
  border-color: rgba(160, 220, 160, 0.4);
  background: rgba(160, 220, 160, 0.05);
}

.form-success {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: clamp(1.5rem, 3vw, 2.4rem) 0.5rem;
  text-align: left;
}
.form-success__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.05;
  color: var(--text);
}
.form-success p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 52ch;
}

.contact-form button[disabled] { opacity: 0.5; cursor: not-allowed; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #000;
  border-top: 1px solid var(--line);
  padding-top: clamp(3rem, 6vw, 5rem);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 880px) { .footer__inner { grid-template-columns: 1fr; } }

.footer__brand img { height: 80px; width: auto; margin-bottom: 1.2rem; display: block; }
.footer__brand p { max-width: 38ch; font-size: 0.92rem; }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}
@media (max-width: 760px) { .footer__cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .footer__cols { grid-template-columns: 1fr; } }

.footer__cols h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  color: var(--text);
}
.footer__cols p, .footer__cols ul { font-size: 0.88rem; color: var(--muted); }
.footer__cols ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__cols a:hover { color: var(--text); }

.footer__socials { display: flex; flex-direction: column; gap: 0.55rem; }

.footer__base {
  border-top: 1px solid var(--line);
  padding-block: 1.4rem;
}
.footer__base-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  flex-wrap: wrap;
}
.footer__tagline em {
  font-style: normal;
  color: var(--text);
}

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.service-grid > .reveal:nth-child(2),
.features-grid > .reveal:nth-child(2),
.contact__grid > .reveal:nth-child(2) { transition-delay: 0.08s; }
.service-grid > .reveal:nth-child(3),
.features-grid > .reveal:nth-child(3),
.contact__grid > .reveal:nth-child(3) { transition-delay: 0.16s; }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  transform: scale(0.97);
  transition: transform 0.4s var(--ease);
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__nav--prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--text);
}
.lightbox svg { width: 20px; height: 20px; }

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__video { display: none; }
}

:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}
