*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ivory: #f5f7fa;
  --warm-white: #0b0f14;
  --charcoal: #0b0f14;
  --surface: #13161a;
  --surface2: #1a1d22;
  --mid: #8c929a;
  --muted: #52575f;
  --gold: #3da9fc;
  --gold-light: #b8d8f0;
  --gold-dark: #1a85d6;
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(61, 169, 252, 0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--charcoal);
  color: var(--ivory);
  overflow-x: hidden;
  cursor: none;
}

/* ===== Hero video with left-edge opacity fade =====
         (Can be moved into styles.css if you prefer. The old
         .hero-img-grid / .cell / .photo-* rules there are now unused.)
         Fills .hero-right the same way .hero-img-grid did. */

/* At 1024px the hero stacks (per styles.css) and the text sits above
         the video, so fade the TOP edge instead of the left. */
@media (max-width: 1024px) {
  .hero-video {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.35) 25%, #000 55%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.35) 25%, #000 55%);
  }
}
/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}

/* Custom cursor */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    transform 0.1s,
    width 0.25s,
    height 0.25s,
    background 0.25s;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.08s linear,
    width 0.25s,
    height 0.25s,
    opacity 0.25s;
  opacity: 0.6;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor {
  width: 20px;
  height: 20px;
  background: var(--gold-dark);
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 56px;
  height: 56px;
  opacity: 0.3;
}

/* Nav */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  transition:
    background 0.4s,
    backdrop-filter 0.4s,
    padding 0.4s;
}
nav.scrolled {
  background: rgba(11, 15, 20, 0.93);
  backdrop-filter: blur(12px);
  padding: 1rem 4rem;
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--ivory);
  text-decoration: none;
}
.logo span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s ease;
}
.nav-links a:hover {
  color: var(--ivory);
}
.nav-links a:hover::after {
  right: 0;
}
.nav-cta {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 0.65rem 1.5rem;
  transition:
    background 0.25s,
    color 0.25s;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--charcoal);
}

/* Hero */

.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
  position: relative;
  z-index: 2;
}
.hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 5.5vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ivory);
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
  position: relative;
  z-index: 2;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  margin-top: 2rem;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--mid);
  max-width: 38ch;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
  position: relative;
  z-index: 2;
}
.hero-actions {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
  position: relative;
  z-index: 2;
}
.btn-primary {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  border: none;
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.2s;
  display: inline-block;
  cursor: none;
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--ivory);
}
.btn-secondary {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.25s;
}
.btn-secondary:hover {
  color: var(--ivory);
}
.btn-secondary::after {
  content: "→";
  font-family: serif;
}
.btn-newpage {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.25s;
}
.btn-newpage:hover {
  color: var(--ivory);
}
.btn-newpage::after {
  content: "→";
  font-family: serif;
}

#hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--charcoal);
}

/* Full-bleed video layer behind everything */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient scrim: opaque at the left where the text sits, clear at the right.
   This darkens the video for legibility instead of clipping it. */
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      var(--charcoal) 0%,
      rgba(11, 15, 20, 0.92) 22%,
      rgba(11, 15, 20, 0.65) 45%,
      rgba(11, 15, 20, 0.25) 70%,
      rgba(11, 15, 20, 0.1) 100%
    ),
    /* soften the top and bottom edges into the page */
    linear-gradient(to bottom, rgba(11, 15, 20, 0.55) 0%, transparent 25%, transparent 70%, rgba(11, 15, 20, 0.6) 100%);
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 2;
  width: 50%;
  padding: 10rem 5rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: none;
}

.hero-img-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.06);
}
/* Subtle grid noise on hero left */
.hero-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255, 255, 255, 0.02) 80px);
  pointer-events: none;
  z-index: 1;
}
.hero-img-grid .cell {
  overflow: hidden;
  position: relative;
}
.hero-img-grid .cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 55%, rgba(11, 15, 20, 0.55));
  transition: background 0.4s;
}
.hero-img-grid .cell:hover::after {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(11, 15, 20, 0.55) 100%);
}
.hero-img-grid .cell.tall {
  grid-row: 1 / 3;
}
.hero-img-grid .cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.15) contrast(1.05);
  transition: transform 0.8s ease;
}
.hero-img-grid .cell:hover img {
  transform: scale(1.04);
}

/* Photo placeholders — neutral dark tones */
.photo-corporate {
  background: linear-gradient(145deg, #1a1a1a 0%, #2a2622 40%, #1f1c18 70%, #0b0f14 100%);
}
.photo-gala {
  background: linear-gradient(135deg, #181510 0%, #2e251a 40%, #3a2e20 70%, #1a1510 100%);
}
.photo-venue {
  background: linear-gradient(160deg, #141418 0%, #1e1e24 50%, #16161c 100%);
}
.photo-wedding {
  background: linear-gradient(140deg, #1a1612 0%, #2a2018 50%, #322618 80%, #141210 100%);
}
.photo-conference {
  background: linear-gradient(150deg, #111114 0%, #1c1c20 50%, #141418 100%);
}
.photo-awards {
  background: linear-gradient(130deg, #141210 0%, #22201a 40%, #2c2820 70%, #141210 100%);
}

/* Photo overlay text (simulates image content) */
.cell-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(168, 216, 253, 0.7);
  z-index: 2;
}

/* Scroll line */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 4.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 3rem;
  height: 1px;
  background: var(--muted);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  animation: scrollLine 2s 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Stats bar */
#stats {
  background: var(--surface);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 3rem 5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  text-align: center;
  padding: 0.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(15px);
  transition:
    opacity 0.6s,
    transform 0.6s;
}
.stat-item:last-child {
  border-right: none;
}
.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 0.5rem;
}

/* Section base */
section {
  padding: 8rem 5rem;
}
.section-eyebrow {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ivory);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* Services */
#services {
  background: var(--surface);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5rem;
}
.services-header p {
  max-width: 38ch;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--mid);
  letter-spacing: 0.03em;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.service-card {
  background: var(--surface);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: none;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--gold);
  transition: right 0.4s ease;
}
.service-card:hover::before {
  right: 0;
}
.service-card:hover {
  background: var(--surface2);
}
.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.service-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 1rem;
}
.service-desc {
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--mid);
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-features li {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.service-features li::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Portfolio */
#portfolio {
  background: var(--charcoal);
  padding-bottom: 6rem;
}
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}
.filter-tabs {
  display: flex;
  gap: 0.5rem;
}
.filter-tab {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.5rem 1.2rem;
  background: none;
  cursor: none;
  transition: all 0.2s;
}
.filter-tab.active,
.filter-tab:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 4px;
}
.port-cell {
  overflow: hidden;
  position: relative;
  cursor: none;
}
.port-cell .overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 15, 20, 0);
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.port-cell:hover .overlay {
  background: rgba(11, 15, 20, 0.72);
}
.port-cell .overlay-content {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
}
.port-cell:hover .overlay-content {
  opacity: 1;
  transform: translateY(0);
}
.port-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.2rem;
}
.port-tag {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
}
/* Grid layout positions */
.p1 {
  grid-column: 1/6;
  grid-row: 1/5;
}
.p2 {
  grid-column: 6/9;
  grid-row: 1/3;
}
.p3 {
  grid-column: 9/13;
  grid-row: 1/4;
}
.p4 {
  grid-column: 6/9;
  grid-row: 3/6;
}
.p5 {
  grid-column: 9/13;
  grid-row: 4/7;
}
.p6 {
  grid-column: 1/5;
  grid-row: 5/8;
}
.p7 {
  grid-column: 5/9;
  grid-row: 6/9;
}
.p8 {
  grid-column: 9/13;
  grid-row: 7/10;
}
.p9 {
  grid-column: 1/5;
  grid-row: 8/11;
}
.p10 {
  grid-column: 5/9;
  grid-row: 9/11;
}
.p11 {
  grid-column: 9/13;
  grid-row: 10/11;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Process */
#process {
  background: var(--surface);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
#process::before {
  content: "PROCESS";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cormorant Garamond", serif;
  font-size: 22vw;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
}
.process-header {
  margin-bottom: 5rem;
}
.process-header .section-title {
  color: var(--ivory);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.process-step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 3rem 2rem;
  position: relative;
  transition: background 0.3s;
}
.process-step:hover {
  background: rgba(255, 255, 255, 0.05);
}
.step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.step-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 1rem;
}
.step-desc {
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--mid);
  letter-spacing: 0.02em;
}

/* Testimonials */
#testimonials {
  background: var(--charcoal);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4rem;
  background: var(--border);
}
.testi-card {
  background: var(--charcoal);
  padding: 3rem 2.5rem;
  position: relative;
}
.testi-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}
.testi-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: var(--ivory);
  margin-bottom: 2rem;
}
.testi-divider {
  width: 2rem;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.testi-name {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 0.3rem;
}
.testi-role {
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* Clients */
#clients {
  background: var(--surface);
  padding: 5rem;
  text-align: center;
}
.clients-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3rem;
}
.clients-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.client-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
  cursor: none;
}
.client-logo:hover {
  color: var(--gold);
}

/* CTA / Contact */
#contact {
  background: var(--surface);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.contact-left {
  padding: 8rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}
.contact-left .section-title {
  color: var(--ivory);
  margin-bottom: 1.5rem;
}
.contact-left p {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--mid);
  max-width: 40ch;
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.contact-detail-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.detail-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  width: 5rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.detail-value {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--mid);
  letter-spacing: 0.03em;
}
.contact-right {
  padding: 8rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-group {
  margin-bottom: 2rem;
}
.form-group label {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.7rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--ivory);
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  padding: 0.9rem 1.2rem;
  outline: none;
  transition: border-color 0.25s;
  cursor: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select option {
  background: var(--surface);
  color: var(--ivory);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.btn-submit {
  width: 100%;
  background: var(--gold);
  border: none;
  color: var(--charcoal);
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.2rem;
  cursor: none;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.btn-submit:hover {
  background: var(--gold-dark);
  color: var(--ivory);
}
.btn-submit.sent::after {
  content: "MESSAGE SENT ✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a2a1e;
  color: #7ec8a0;
  letter-spacing: 0.2em;
}

/* Footer */
footer {
  background: #060810;
  padding: 3rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
}
.footer-copy {
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-social {
  display: flex;
  gap: 1.5rem;
}
.footer-social a {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: var(--gold);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gold line accent */
.gold-accent {
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 1rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ivory);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--charcoal);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem;
}
.mobile-menu.open {
  display: flex;
  animation: fadeIn 0.25s ease;
}
.mobile-menu a {
  font-size: 1.8rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  color: var(--ivory);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: var(--gold);
}
.mobile-menu .mobile-cta {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.9rem 2.5rem;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

@media (max-width: 1024px) {
  nav {
    padding: 1.2rem 2.5rem;
  }
  nav.scrolled {
    padding: 0.9rem 2.5rem;
  }
  #hero {
    min-height: 90vh;
  }
  .hero-left {
    width: 100%;
    padding: 9rem 2.5rem 4rem;
  }
  /* Text sits over the middle of the frame on narrow screens,
     so fade vertically instead of horizontally. */
  .hero-scrim {
    background: linear-gradient(
      to bottom,
      rgba(11, 15, 20, 0.75) 0%,
      rgba(11, 15, 20, 0.85) 40%,
      rgba(11, 15, 20, 0.6) 70%,
      rgba(11, 15, 20, 0.9) 100%
    );
  }

  #stats {
    padding: 2.5rem 2.5rem;
  }
  section {
    padding: 6rem 2.5rem;
  }
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  #contact {
    grid-template-columns: 1fr;
  }
  .contact-left {
    padding: 5rem 2.5rem 3rem;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .contact-right {
    padding: 3rem 2.5rem 5rem;
  }
  #clients {
    padding: 4rem 2.5rem;
  }
  .clients-logos {
    gap: 2.5rem;
  }
  footer {
    padding: 2.5rem 2.5rem;
  }
}

/* Mobile — 768px */
@media (max-width: 768px) {
  body {
    cursor: auto;
  }
  .cursor,
  .cursor-ring {
    display: none;
  }
  nav {
    padding: 1rem 1.5rem;
  }
  nav.scrolled {
    padding: 0.8rem 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .logo {
    font-size: 1.3rem;
  }
  /* Hamburger placeholder visible if needed — hidden nav collapses cleanly */

  #hero {
    grid-template-columns: 1fr;
  }
  .hero-left {
    padding: 8rem 1.5rem 3rem;
  }

  .hero-scroll {
    display: none;
  }

  #stats {
    grid-template-columns: 1fr 1fr;
    padding: 2rem 1.5rem;
    gap: 0;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 0;
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }
  .stat-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  section {
    padding: 4rem 1.5rem;
  }
  .services-header {
    flex-direction: column;
    gap: 1.5rem;
  }
  .services-header p {
    max-width: 100%;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-header {
    flex-direction: column;
    gap: 1.5rem;
  }
  .filter-tabs {
    flex-wrap: wrap;
    gap: 0.4rem;
  }
  .portfolio-masonry {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 60px;
  }
  .p1 {
    grid-column: 1/5;
    grid-row: 1/4;
  }
  .p2 {
    grid-column: 5/7;
    grid-row: 1/3;
  }
  .p3 {
    grid-column: 5/7;
    grid-row: 3/5;
  }
  .p4 {
    grid-column: 1/4;
    grid-row: 4/6;
  }
  .p5 {
    grid-column: 4/7;
    grid-row: 5/7;
  }
  .p6 {
    grid-column: 1/4;
    grid-row: 6/8;
  }
  .p7 {
    grid-column: 4/7;
    grid-row: 7/9;
  }
  .p8 {
    grid-column: 1/4;
    grid-row: 8/10;
  }
  .p9 {
    grid-column: 4/7;
    grid-row: 9/11;
  }
  .p10 {
    grid-column: 1/7;
    grid-row: 11/13;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  #contact {
    grid-template-columns: 1fr;
  }
  .contact-left {
    padding: 4rem 1.5rem 2.5rem;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .contact-right {
    padding: 2.5rem 1.5rem 4rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  #clients {
    padding: 3.5rem 1.5rem;
  }
  .clients-logos {
    gap: 1.8rem;
  }
  .client-logo {
    font-size: 0.85rem;
  }

  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 2.5rem 1.5rem;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-social {
    justify-content: center;
  }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
  .hero-h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }
  .stat-num {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }
  .portfolio-masonry {
    display: flex;
    flex-direction: column;
  }
  .port-cell {
    height: 55vw;
  }
  .p1,
  .p2,
  .p3,
  .p4,
  .p5,
  .p6,
  .p7,
  .p8,
  .p9,
  .p10 {
    grid-column: unset;
    grid-row: unset;
  }
  .filter-tabs {
    gap: 0.3rem;
  }
  .filter-tab {
    padding: 0.4rem 0.8rem;
    font-size: 0.58rem;
  }
}
