@font-face {
  font-family: "Cormorant SC Brand";
  src: url("assets/fonts/CORMORANTSC-BOLD.OTF") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Bell MT Brand";
  src: url("assets/fonts/BELLB.TTF") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #030303;
  --bg-soft: #090706;
  --panel: rgba(14, 11, 10, 0.82);
  --panel-strong: rgba(20, 15, 14, 0.95);
  --text: #fff8f2;
  --muted: rgba(255, 248, 242, 0.72);
  --rose: #e8a69a;
  --rose-soft: #ffd4ca;
  --rose-deep: #a85e56;
  --white-line: rgba(255, 255, 255, 0.08);
  --rose-line: rgba(232, 166, 154, 0.24);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --container: min(1280px, calc(100vw - 44px));
  --nav-height: 88px;
  --cursor-x: 50vw;
  --cursor-y: 20vh;
  --progress: 0%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Bell MT Brand", Georgia, serif;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 8%, rgba(232, 166, 154, 0.18), transparent 24%),
    radial-gradient(circle at 86% 12%, rgba(255, 212, 202, 0.1), transparent 22%),
    linear-gradient(180deg, #030303 0%, #090605 42%, #030303 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-loader,
.cursor-glow,
.grain-layer,
.grid-layer,
.transition-curtain,
.glitter-field,
.salt-canvas {
  position: fixed;
  inset: 0;
}

.page-loader {
  z-index: 120;
  display: grid;
  place-items: center;
  gap: 18px;
  background:
    radial-gradient(circle at 50% 44%, rgba(232, 166, 154, 0.18), transparent 24%),
    #030303;
  transition: opacity 650ms ease, visibility 650ms ease;
}

body.is-loaded .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader p {
  margin: 0;
  color: var(--rose-soft);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.cursor-glow {
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle 240px at var(--cursor-x) var(--cursor-y), rgba(232, 166, 154, 0.16), transparent 68%),
    radial-gradient(circle 560px at var(--cursor-x) var(--cursor-y), rgba(255, 248, 242, 0.04), transparent 74%);
}

.grain-layer {
  z-index: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.8) 0 0.6px, transparent 0.8px);
  background-size: 18px 18px;
}

.grid-layer {
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

.transition-curtain {
  z-index: 110;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-100%);
  background: linear-gradient(180deg, rgba(232, 166, 154, 0.2), rgba(3, 3, 3, 0));
  transition: transform 480ms ease, opacity 480ms ease;
}

.transition-curtain.is-active {
  opacity: 1;
  transform: translateY(0);
}

.salt-canvas {
  z-index: 100;
  pointer-events: none;
}

.glitter-field {
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
}

.glitter-flow {
  position: absolute;
  inset: -28vh -12vw;
  opacity: 0.5;
  transform: rotate(-10deg);
  background-image:
    radial-gradient(circle, rgba(255, 230, 222, 0.95) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(232, 166, 154, 0.9) 0 1.4px, transparent 2px),
    radial-gradient(circle, rgba(255, 212, 202, 0.55) 0 2px, transparent 3px);
  background-size: 46px 46px, 86px 86px, 140px 140px;
  animation: glitter-stream 18s linear infinite;
}

.glitter-flow--far {
  opacity: 0.26;
  filter: blur(1px);
  background-size: 70px 70px, 124px 124px, 190px 190px;
  animation-duration: 30s;
  animation-direction: reverse;
}

.glitter-field span {
  position: absolute;
  top: calc(-18vh - (var(--i) % 17) * 1vh);
  left: calc((var(--i) * 19) % 100 * 1%);
  width: calc(2px + (var(--i) % 4) * 1px);
  height: calc(2px + (var(--i) % 4) * 1px);
  border-radius: 50%;
  background: radial-gradient(circle, #fff8f2 0 18%, var(--rose-soft) 45%, rgba(232, 166, 154, 0.05) 72%);
  box-shadow:
    0 0 12px rgba(232, 166, 154, 0.9),
    0 0 24px rgba(232, 166, 154, 0.45);
  opacity: 0.7;
  animation: glitter-fall calc(10s + (var(--i) % 10) * 0.8s) linear infinite;
  animation-delay: calc((var(--i) % 24) * -0.52s);
}

.site-shell {
  position: relative;
  z-index: 2;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section--first {
  padding-top: calc(var(--nav-height) + 62px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  backdrop-filter: blur(24px);
  background: rgba(3, 3, 3, 0.58);
  border-bottom: 1px solid rgba(232, 166, 154, 0.14);
}

.nav-row {
  min-height: var(--nav-height);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 22px;
}

.brand-lockup,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-lockup {
  grid-column: 2;
  justify-self: center;
}

.brand-logo {
  display: block;
  width: clamp(280px, 35vw, 520px);
  height: auto;
  max-height: 76px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 20px rgba(232, 166, 154, 0.16))
    drop-shadow(0 10px 28px rgba(0, 0, 0, 0.32));
}

.brand-icon {
  display: block;
  width: 76px;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(232, 166, 154, 0.18))
    drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
}

.page-loader__icon .brand-icon {
  width: 118px;
}

.site-nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav {
  grid-column: 3;
  justify-self: end;
}

.site-nav a,
.footer-links a {
  position: relative;
  color: var(--muted);
  font-size: 0.96rem;
  transition: color 200ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-soft), transparent);
  transform: scaleX(0);
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.footer-links a:hover {
  color: var(--text);
}

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

.nav-toggle {
  display: none;
  grid-column: 3;
  justify-self: end;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--rose-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  border-radius: 999px;
  background: var(--rose-soft);
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.scroll-progress {
  height: 2px;
  width: var(--progress);
  background: linear-gradient(90deg, var(--rose-deep), var(--rose-soft));
  box-shadow: 0 0 22px rgba(232, 166, 154, 0.4);
}

.eyebrow,
.service-card span,
.gallery-slide span,
.timeline-card__number,
.hero-frame__meta span,
.hero-core__copy span {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--rose-soft);
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-title,
.section-title,
.feature-card h3,
.service-card h3,
.timeline-card h3,
.gallery-slide h3,
.hero-frame__meta strong,
.hero-core__copy strong,
.metric-card strong {
  margin: 0;
  font-family: "Cormorant SC Brand", Georgia, serif;
  color: var(--rose-soft);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.hero-title {
  max-width: 18ch;
  font-size: clamp(2.05rem, 4.2vw, 4.5rem);
  line-height: 1.02;
}

.section-title {
  max-width: 12ch;
  font-size: clamp(2.55rem, 5vw, 5.1rem);
}

.lead,
.section-copy,
.feature-card p,
.service-card p,
.timeline-card p,
.metric-card p,
.contact-copy p,
.contact-list a,
.contact-list span,
.footer-brand p {
  color: var(--muted);
  line-height: 1.82;
  font-size: 1.04rem;
}

.split-head,
.hero-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.hero-grid {
  grid-template-columns: 1fr;
  min-height: calc(100vh - var(--nav-height) - 86px);
  align-items: center;
  justify-items: center;
}

.hero-copy {
  width: 100%;
  max-width: 1180px;
  display: grid;
  justify-items: center;
  padding: 8vh 0 5vh;
  text-align: center;
}

.hero-section {
  min-height: 100vh;
  overflow: hidden;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-section::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.92), rgba(3, 3, 3, 0.52) 48%, rgba(3, 3, 3, 0.92)),
    linear-gradient(180deg, rgba(3, 3, 3, 0.62), rgba(3, 3, 3, 0.16) 48%, rgba(3, 3, 3, 0.78)),
    url("/assets/images/projects/hero-event.jpg") center / cover no-repeat;
  opacity: 0.68;
  filter: saturate(0.76) sepia(0.15) hue-rotate(318deg) brightness(0.64);
}

.hero-section::after {
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 16%, rgba(255, 212, 202, 0.2), transparent 36%),
    radial-gradient(ellipse at 12% 52%, rgba(232, 166, 154, 0.16), transparent 30%),
    radial-gradient(ellipse at 88% 52%, rgba(232, 166, 154, 0.15), transparent 31%);
}

.hero-copy .lead {
  max-width: 760px;
  margin: 24px auto 0;
}

.hero-actions,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin: 34px 0 26px;
  justify-content: center;
}

.chip-row {
  justify-content: center;
  max-width: 980px;
}

.button {
  position: relative;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid rgba(255, 212, 202, 0.32);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose-soft), var(--rose), var(--rose-deep));
  color: #160b0a;
  font-weight: 700;
  box-shadow: 0 18px 48px rgba(232, 166, 154, 0.2);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 62px rgba(232, 166, 154, 0.3);
  filter: brightness(1.04);
}

.button--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
}

.chip-row span,
.contact-list a,
.contact-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--rose-line);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 248, 242, 0.86);
}

.chip-row span::before,
.contact-list a::before,
.contact-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose-soft);
  box-shadow: 0 0 0 6px rgba(232, 166, 154, 0.1);
}

.ui-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rose-line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(22, 16, 15, 0.86), rgba(6, 5, 5, 0.94)),
    radial-gradient(circle at top right, rgba(232, 166, 154, 0.1), transparent 34%);
  box-shadow: var(--shadow);
}

.ui-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid var(--white-line);
  border-radius: inherit;
  pointer-events: none;
}

.ui-panel::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 166, 154, 0.2), transparent 70%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.ui-panel:hover::after,
.ui-panel:focus-within::after {
  opacity: 1;
}

.hero-visual {
  position: relative;
  min-height: 700px;
  padding: 24px;
}

.hero-gridlines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
}

.hero-halo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232, 166, 154, 0.28), rgba(232, 166, 154, 0.08) 42%, transparent 70%);
  filter: blur(12px);
}

.hero-orb {
  position: absolute;
  left: calc(50% - 310px);
  top: calc(50% - 310px);
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 212, 202, 0.12);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}

.hero-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(520px, calc(100% - 72px));
  min-height: 330px;
  display: grid;
  place-items: center;
  gap: 18px;
  padding: 42px;
  border: 1px solid rgba(255, 212, 202, 0.16);
  border-radius: 34px;
  background: rgba(10, 8, 8, 0.58);
  backdrop-filter: blur(12px);
  transform: translate(-50%, -50%);
}

.hero-core__copy {
  max-width: 330px;
  text-align: center;
}

.hero-core__copy strong {
  font-size: 2rem;
}

.hero-frame {
  position: absolute;
  inset: 26px;
  display: grid;
  align-content: end;
  padding: 26px;
  border: 1px solid rgba(255, 212, 202, 0.09);
  border-radius: 28px;
}

.hero-frame__meta {
  max-width: 320px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 212, 202, 0.12);
  border-radius: 22px;
  background: rgba(3, 3, 3, 0.44);
  backdrop-filter: blur(14px);
}

.hero-frame__meta strong {
  font-size: 1.5rem;
  line-height: 1.04;
}

.metrics-grid,
.card-grid,
.timeline-grid,
.section-photo-grid {
  display: grid;
  gap: 18px;
}

.metrics-grid,
.timeline-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-photo-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: end;
  margin-top: 38px;
  margin-bottom: 26px;
}

.section-photo {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 212, 202, 0.18);
  border-radius: 4px;
  background: rgba(3, 3, 3, 0.36);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.section-photo:nth-child(2) {
  min-height: 300px;
}

.section-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.82) sepia(0.14) hue-rotate(318deg) brightness(0.76);
  transform: scale(1.02);
}

.section-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.04), rgba(3, 3, 3, 0.7)),
    radial-gradient(circle at 72% 18%, rgba(255, 212, 202, 0.2), transparent 28%);
}

.section-photo figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
}

.section-photo figcaption span {
  display: block;
  margin-bottom: 8px;
  color: var(--rose-soft);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-photo figcaption strong {
  display: block;
  max-width: 520px;
  color: rgba(255, 248, 242, 0.94);
  font-family: "Cormorant SC Brand", Georgia, serif;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.03;
}

.metric-card,
.feature-card,
.service-card,
.timeline-card,
.contact-copy,
.contact-form-shell {
  padding: 26px;
}

.services-showcase {
  isolation: isolate;
  overflow: hidden;
  padding-bottom: 68px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 212, 202, 0.18), transparent 38%),
    radial-gradient(ellipse at 18% 62%, rgba(232, 166, 154, 0.11), transparent 31%),
    radial-gradient(ellipse at 82% 58%, rgba(255, 212, 202, 0.12), transparent 32%);
}

.services-showcase::before,
.services-showcase::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  width: min(34vw, 390px);
  height: min(22vw, 250px);
  opacity: 0.42;
  background-position: center;
  background-size: cover;
  filter: saturate(0.78) sepia(0.18) hue-rotate(318deg) brightness(0.7);
  mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 70%, transparent 100%);
}

.services-showcase::before {
  left: 7vw;
  background-image: linear-gradient(rgba(3, 3, 3, 0.18), rgba(3, 3, 3, 0.62)), url("/assets/images/projects/outdoor-banquet.jpg");
}

.services-showcase::after {
  right: 7vw;
  background-image: linear-gradient(rgba(3, 3, 3, 0.18), rgba(3, 3, 3, 0.62)), url("/assets/images/projects/hero-event.jpg");
}

.services-head {
  display: grid;
  justify-items: center;
  max-width: 780px;
  text-align: center;
}

.services-head .section-title {
  max-width: none;
  font-size: clamp(2.35rem, 4.3vw, 4.4rem);
  line-height: 1;
}

.services-head .section-copy {
  max-width: 620px;
  margin: 6px 0 0;
}

.eyebrow--ruled {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  margin-bottom: 10px;
}

.eyebrow--ruled::before,
.eyebrow--ruled::after {
  content: "";
  width: 76px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 212, 202, 0.72));
}

.eyebrow--ruled::after {
  background: linear-gradient(90deg, rgba(255, 212, 202, 0.72), transparent);
}

.services-showcase .card-grid {
  max-width: 980px;
  margin-top: 64px;
  gap: 20px;
}

.services-showcase .service-card {
  min-height: 240px;
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 24px 26px 20px;
  text-align: center;
  border-color: rgba(255, 212, 202, 0.34);
  border-radius: 4px;
  background: rgba(3, 3, 3, 0.36);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.32);
}

.services-showcase .service-card::before {
  border-color: rgba(255, 212, 202, 0.08);
}

.service-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  stroke: var(--rose-soft);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 14px rgba(232, 166, 154, 0.3));
}

.services-showcase .service-card span {
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  text-transform: none;
}

.services-showcase .service-card h3 {
  margin-bottom: 10px;
  color: rgba(255, 248, 242, 0.93);
  font-size: 1.5rem;
  letter-spacing: 0;
}

.services-showcase .service-card p {
  max-width: 240px;
  margin: 0 auto 16px;
  font-size: 0.98rem;
  line-height: 1.62;
}

.service-link {
  align-self: end;
  min-width: 128px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid rgba(255, 212, 202, 0.42);
  border-radius: 4px;
  color: rgba(255, 248, 242, 0.86);
  background: rgba(3, 3, 3, 0.24);
  font-size: 0.9rem;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.service-link:hover,
.service-link:focus-visible {
  color: #160b0a;
  border-color: rgba(255, 212, 202, 0.72);
  background: linear-gradient(135deg, var(--rose-soft), var(--rose));
}

.services-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(260px, 420px) minmax(120px, 1fr);
  gap: 22px;
  align-items: end;
  max-width: 980px;
  margin-top: 22px;
}

.services-cta__copy {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.services-cta__copy h3 {
  margin: 0;
  color: rgba(255, 248, 242, 0.92);
  font-family: "Bell MT Brand", Georgia, serif;
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
  font-weight: 700;
}

.services-cta__copy p {
  margin: 0 0 8px;
  color: rgba(255, 248, 242, 0.8);
  font-size: 1.18rem;
}

.services-cta .button {
  min-height: 42px;
  min-width: 170px;
  border-radius: 4px;
}

.services-cta__image {
  min-height: 116px;
  border: 1px solid rgba(255, 212, 202, 0.12);
  opacity: 0.64;
  background-position: center;
  background-size: cover;
  filter: saturate(0.8) sepia(0.15) hue-rotate(318deg) brightness(0.68);
}

.services-cta__image--left {
  background-image: linear-gradient(rgba(3, 3, 3, 0.1), rgba(3, 3, 3, 0.42)), url("/assets/images/projects/outdoor-banquet.jpg");
}

.services-cta__image--right {
  background-image: linear-gradient(rgba(3, 3, 3, 0.1), rgba(3, 3, 3, 0.42)), url("/assets/images/projects/hero-event.jpg");
}

.metric-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.feature-card h3,
.service-card h3,
.timeline-card h3 {
  margin-bottom: 14px;
  font-size: 1.8rem;
}

.marquee-band {
  margin-top: 34px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 212, 202, 0.1);
  border-bottom: 1px solid rgba(255, 212, 202, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  white-space: nowrap;
  color: rgba(255, 248, 242, 0.84);
}

.gallery-carousel {
  overflow: hidden;
  width: min(1080px, calc(100vw - 44px));
  margin: 42px auto 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: gallery-flow 40s linear infinite;
}

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

.gallery-slide {
  position: relative;
  width: min(78vw, 520px);
  min-height: 390px;
  flex: 0 0 auto;
  border: 1px solid var(--rose-line);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(3, 3, 3, 0.42);
  box-shadow: var(--shadow);
}

.gallery-slide::before,
.gallery-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gallery-slide::before {
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  inset: 14px;
}

.gallery-slide::after {
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 18%, rgba(3, 3, 3, 0.74)),
    radial-gradient(circle at 72% 18%, rgba(255, 212, 202, 0.18), transparent 28%);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.82) sepia(0.12) hue-rotate(318deg) brightness(0.76);
  transform: scale(1.02);
}

.gallery-slide__copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 3;
}

.gallery-slide h3 {
  font-size: 2.25rem;
}

.gallery-slide span {
  margin-bottom: 10px;
}

.gallery-slide--2 {
  min-height: 360px;
}

.gallery-slide--3 {
  min-height: 420px;
}

.gallery-slide--4 {
  min-height: 380px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

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

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form span {
  color: var(--rose-soft);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--rose-line);
  border-radius: 18px;
  outline: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 212, 202, 0.45);
  box-shadow: 0 0 0 4px rgba(232, 166, 154, 0.1);
  transform: translateY(-1px);
}

.contact-form__full {
  grid-column: 1 / -1;
}

.site-footer {
  padding: 12px 0 44px;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 26px 30px;
}

.footer-brand p {
  max-width: 460px;
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  transition:
    opacity 760ms cubic-bezier(0.2, 0.9, 0.25, 1),
    transform 760ms cubic-bezier(0.2, 0.9, 0.25, 1);
  transition-delay: var(--delay, 0ms);
}

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

[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
}

@keyframes glitter-fall {
  0% {
    transform: translate3d(-10vw, -14vh, 0) scale(0.7);
    opacity: 0;
  }

  12% {
    opacity: 0.78;
  }

  66% {
    opacity: 0.62;
  }

  100% {
    transform: translate3d(calc(10vw + (var(--i) % 7 - 3) * 24px), 118vh, 0) scale(1.25);
    opacity: 0;
  }
}

@keyframes glitter-stream {
  from {
    background-position: 0 0, 18px 24px, 36px 42px;
  }

  to {
    background-position: 220px 460px, 340px 620px, 440px 760px;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

@keyframes gallery-flow {
  from {
    transform: translateX(0);
  }

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

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-head,
  .contact-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .metrics-grid,
  .timeline-grid--four,
  .card-grid--three,
  .section-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-showcase .card-grid {
    max-width: 760px;
  }

  .services-cta {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .services-cta__image {
    min-height: 150px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-row {
    grid-template-columns: 54px minmax(0, 1fr) 54px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 22px;
    right: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--rose-line);
    border-radius: 24px;
    background: rgba(6, 5, 5, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-visual {
    min-height: 620px;
  }
}

@media (max-width: 700px) {
  :root {
    --container: min(100vw - 24px, 100%);
  }

  .section {
    padding: 86px 0;
  }

  .section--first {
    padding-top: calc(var(--nav-height) + 36px);
  }

  .brand-logo {
    width: min(58vw, 320px);
    max-height: 58px;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-grid {
    min-height: calc(100vh - var(--nav-height) - 42px);
  }

  .hero-copy {
    padding: 5vh 0 3vh;
  }

  .button {
    width: 100%;
  }

  .metrics-grid,
  .timeline-grid--four,
  .card-grid--three,
  .contact-form,
  .section-photo-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .metric-card,
  .feature-card,
  .service-card,
  .timeline-card,
  .contact-copy,
  .contact-form-shell,
  .footer-shell {
    padding: 22px;
    border-radius: 24px;
  }

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

  .hero-core {
    width: calc(100% - 42px);
    min-height: 300px;
    padding: 28px;
  }

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

  .footer-brand .brand-logo {
    width: min(72vw, 340px);
  }

  .hero-frame {
    inset: 16px;
    padding: 18px;
  }

  .hero-frame__meta {
    max-width: none;
  }

  .hero-orb {
    width: 380px;
    height: 380px;
    left: calc(50% - 190px);
    top: calc(50% - 190px);
  }

  .gallery-slide {
    width: 82vw;
    min-height: 360px;
  }

  .section-photo,
  .section-photo:nth-child(2) {
    min-height: 280px;
  }

  .contact-form__full {
    grid-column: auto;
  }

  .cursor-glow {
    display: none;
  }

  .glitter-flow {
    opacity: 0.36;
  }

  .eyebrow--ruled {
    gap: 8px;
  }

  .eyebrow--ruled::before,
  .eyebrow--ruled::after {
    width: 34px;
  }

  .services-showcase {
    padding-bottom: 52px;
  }

  .services-showcase::before,
  .services-showcase::after {
    width: 48vw;
    height: 150px;
    opacity: 0.3;
  }

  .services-showcase .card-grid {
    margin-top: 38px;
  }

  .services-showcase .service-card {
    min-height: 0;
    padding: 22px;
  }

  .services-cta {
    margin-top: 28px;
  }

  .services-cta__image {
    min-height: 120px;
  }
}
