/* =========================
   Brand palette (exact)
   ========================= */
:root {
  --sand-100: #f7f4ef;
  --sand-200: #efe9e1;
  --white: #ffffff;

  --text-primary: #2e2e2e;
  --text-secondary: #6b6b6b;

  --aqua: #6eced1;
  --aqua-deep: #3fa6a3;
  --coral: #f28c85;

  --border-soft: rgba(0, 0, 0, 0.12);

  --border: var(--border-soft);
  --card: var(--white);
  --soft: var(--sand-200);
  --brand: var(--aqua-deep);
  --danger: var(--coral);

  /* Studio extensions */
  --radius: 22px;
  --radius-lg: 28px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
  --glowAqua: 0 30px 90px rgba(63, 166, 163, 0.2);
  --glowCoral: 0 30px 90px rgba(242, 140, 133, 0.2);
  --glass: rgba(255, 255, 255, 0.66);
  --glass2: rgba(255, 255, 255, 0.42);
  --ring: 0 0 0 4px rgba(110, 206, 209, 0.26);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text-primary);
  background:
    radial-gradient(
      1000px 700px at 15% 10%,
      rgba(110, 206, 209, 0.25),
      transparent 60%
    ),
    radial-gradient(
      900px 620px at 85% 20%,
      rgba(242, 140, 133, 0.2),
      transparent 62%
    ),
    radial-gradient(
      900px 620px at 55% 100%,
      rgba(63, 166, 163, 0.16),
      transparent 60%
    ),
    linear-gradient(180deg, var(--sand-100), #fff);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
.shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Skip */
.skip {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #111;
  color: #fff;
  z-index: 9999;
}
.skip:focus {
  left: 12px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
  background: rgba(247, 244, 239, 0.8);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brandMark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: Fraunces, serif;
  letter-spacing: 0.1em;
  background: linear-gradient(
    135deg,
    rgba(110, 206, 209, 0.35),
    rgba(255, 255, 255, 0.95)
  );
  border: 1px solid rgba(63, 166, 163, 0.22);
  box-shadow: var(--shadow);
}
.brandText {
  font-weight: 900;
  letter-spacing: 0.02em;
}

.links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.links a {
  color: var(--text-secondary);
  font-weight: 900;
  font-size: 0.95rem;
  padding: 10px 12px;
  border-radius: 999px;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}
.links a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}
.links a.cta {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--aqua));
  box-shadow: var(--glowAqua);
}

.menuBtn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.66);
}
.menuBtn span {
  display: block;
  height: 2px;
  background: #222;
  margin: 7px 12px;
  opacity: 0.9;
}

/* Hero */
.hero {
  position: relative;
  padding: 86px 0 18px;
}
@media (max-width: 880px) {
  .heroGrid {
    display: grid;
    grid-template-columns: 1.1fr;
    gap: 26px;
    align-items: start;
  }
}

.heroLights {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  max-width: 120vw;
  height: 560px;
  border-radius: 50%;
  filter: blur(26px);
  opacity: 0.8;
  mix-blend-mode: multiply;
  animation: float 10s ease-in-out infinite;
}
.orbA {
  left: -220px;
  top: -220px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(110, 206, 209, 0.95),
    transparent 60%
  );
}
.orbB {
  right: -240px;
  top: 40px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(242, 140, 133, 0.85),
    transparent 62%
  );
  animation-delay: -2.5s;
}
.orbC {
  left: 40%;
  bottom: -320px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(63, 166, 163, 0.7),
    transparent 60%
  );
  animation-delay: -5s;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -16px, 0) scale(1.03);
  }
}

.scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  opacity: 0.25;
  transform: translateY(-40%);
  animation: scan 6.5s ease-in-out infinite;
}
@keyframes scan {
  0%,
  100% {
    transform: translateY(-40%);
  }
  50% {
    transform: translateY(40%);
  }
}

.grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  opacity: 0.08;
  mix-blend-mode: multiply;
}

.kicker {
  margin: 0 0 12px;
  color: var(--text-secondary);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.78rem;
}
.display {
  margin: 0 0 12px;
  font-family: Fraunces, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.06;
  font-size: clamp(2.2rem, 3.4vw, 3.3rem);
  max-width: 14ch;
}
.accent {
  color: var(--brand);
}
.accent2 {
  color: var(--danger);
}

.lead {
  margin: 0 0 18px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 62ch;
}

.heroActions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 950;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
  position: relative;
}
.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--aqua));
  box-shadow: var(--glowAqua);
  border-color: rgba(63, 166, 163, 0.2);
}
.btn.ghost:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn.primary:hover {
  transform: translateY(-2px);
  filter: saturate(1.06);
}

.stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stat {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--glass);
  box-shadow: var(--shadow);
  padding: 12px 14px;
}
.statTop {
  font-weight: 950;
}
.statBottom {
  color: var(--text-secondary);
  font-weight: 800;
  font-size: 0.92rem;
}

.heroPanel {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(63, 166, 163, 0.22);
  background: linear-gradient(180deg, var(--glass), var(--glass2));
  box-shadow: var(--shadow);
  overflow: hidden;
  transform-style: preserve-3d;
}
.panelSheen {
  position: absolute;
  inset: -60%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.8) 50%,
    transparent 70%
  );
  transform: translateX(-45%) rotate(10deg);
  opacity: 0.45;
  animation: sheen 4.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sheen {
  0%,
  100% {
    transform: translateX(-45%) rotate(10deg);
    opacity: 0.3;
  }
  50% {
    transform: translateX(45%) rotate(10deg);
    opacity: 0.55;
  }
}
.panelInner {
  position: relative;
  padding: 20px;
}
.panelKicker {
  margin: 0 0 8px;
  color: var(--text-secondary);
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.74rem;
}
.panelTitle {
  margin: 0 0 8px;
  font-family: Fraunces, serif;
  font-weight: 400;
}
.panelSub {
  margin: 0 0 14px;
  color: var(--text-secondary);
}

.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.chip {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.75);
  font-weight: 950;
  font-size: 0.86rem;
}
.chip.aqua {
  border-color: rgba(63, 166, 163, 0.22);
  background: rgba(110, 206, 209, 0.16);
}
.chip.coral {
  border-color: rgba(242, 140, 133, 0.22);
  background: rgba(242, 140, 133, 0.14);
}

.miniGrid {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.miniCard {
  display: flex;
  gap: 10px;
  align-items: center;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.65);
  padding: 10px 12px;
}
.miniIcon {
  width: 28px;
  height: 28px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(110, 206, 209, 0.2);
  font-weight: 950;
}
.miniText {
  font-weight: 900;
  color: var(--text-primary);
}

/* Trust line */
.trustLine {
  margin-top: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
  padding: 14px 16px;
}
.trustLine p {
  margin: 0;
  font-weight: 950;
  letter-spacing: 0.02em;
  color: rgba(46, 46, 46, 0.78);
}

/* Sections */
.section {
  padding: 86px 0;
}
.section.alt {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.25),
    rgba(239, 233, 225, 0.7),
    rgba(255, 255, 255, 0.25)
  );
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.sectionHead {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 18px;
}
.h2 {
  margin: 0;
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.3vw, 2.05rem);
}
.subhead {
  margin: 0;
  color: var(--text-secondary);
  font-weight: 800;
  max-width: 60ch;
}

.grid {
  display: grid;
  gap: 16px;
}
.workGrid {
  grid-template-columns: repeat(3, 1fr);
}
.serviceGrid {
  grid-template-columns: repeat(2, 1fr);
}
.aboutGrid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}
.contactGrid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

/* Cards */
.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: pointer;
  outline: none;
  transform-style: preserve-3d;
  transition:
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}
.card:hover,
.card:focus {
  border-color: rgba(63, 166, 163, 0.26);
  box-shadow: var(--glowAqua);
}
.media {
  position: relative;
  height: 160px;
  background:
    radial-gradient(
      600px 260px at 20% 20%,
      rgba(110, 206, 209, 0.22),
      transparent 60%
    ),
    radial-gradient(
      600px 260px at 80% 70%,
      rgba(242, 140, 133, 0.18),
      transparent 62%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(255, 255, 255, 0.4));
  display: flex;
  align-items: flex-end;
  padding: 14px;
  color: rgba(46, 46, 46, 0.72);
  overflow: hidden;
}
.mediaLabel {
  font-weight: 950;
}
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 0.76rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--aqua));
}
.badge.aqua {
  background: linear-gradient(135deg, var(--aqua-deep), var(--aqua));
}
.badge.coral {
  background: linear-gradient(135deg, var(--coral), #ffb2ac);
}

.sheen {
  position: absolute;
  inset: -60%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.85) 50%,
    transparent 70%
  );
  transform: translateX(-45%) rotate(10deg);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}
.card:hover .sheen {
  opacity: 0.7;
}

.cardBody {
  padding: 16px 16px 18px;
}
.cardBody h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}
.cardBody p {
  margin: 0 0 10px;
  color: var(--text-secondary);
  font-weight: 700;
}
.meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(46, 46, 46, 0.7);
  font-weight: 950;
  font-size: 0.9rem;
}

.note {
  margin-top: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
  padding: 12px 14px;
  color: var(--text-secondary);
  font-weight: 800;
}
.note code {
  color: var(--brand);
  font-weight: 950;
}

/* Services */
.service {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  padding: 18px;
}
.service h3 {
  margin: 0 0 6px;
}
.service p {
  margin: 0;
  color: var(--text-secondary);
  font-weight: 750;
}

/* About */
.body {
  color: var(--text-secondary);
  font-weight: 700;
  margin: 0 0 12px;
}
.pillRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.pill {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(63, 166, 163, 0.22);
  background: rgba(110, 206, 209, 0.16);
  color: var(--brand);
  font-weight: 950;
  font-size: 0.86rem;
}

.panel {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(242, 140, 133, 0.22);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.74),
    rgba(242, 140, 133, 0.1)
  );
  box-shadow: var(--glowCoral);
  padding: 18px;
  overflow: hidden;
  transform-style: preserve-3d;
}
.twoCol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.h3 {
  font-family: Fraunces, serif;
  font-weight: 400;
  margin: 0 0 10px;
  font-size: 1.35rem;
}
.panel h4 {
  margin: 0 0 8px;
}
.panel ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-secondary);
  font-weight: 800;
}
.sig {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.line {
  height: 1px;
  flex: 1;
  background: rgba(0, 0, 0, 0.1);
}
.name {
  font-family: Fraunces, serif;
}

/* Contact */
.form {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  padding: 18px;
}
label {
  display: block;
  margin-bottom: 12px;
}
label span {
  display: block;
  font-weight: 950;
  margin-bottom: 6px;
}
input,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.78);
  outline: none;
}
input:focus,
textarea:focus {
  box-shadow: var(--ring);
  border-color: rgba(63, 166, 163, 0.25);
}
.formNote {
  margin: 10px 0 0;
  color: var(--text-secondary);
  font-weight: 800;
  min-height: 1.2em;
}

.sideCard {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(63, 166, 163, 0.2);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.74),
    rgba(110, 206, 209, 0.12)
  );
  box-shadow: var(--glowAqua);
  padding: 18px;
  overflow: hidden;
  transform-style: preserve-3d;
}
.muted {
  color: var(--text-secondary);
  font-weight: 700;
}
.linkList {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 16px;
}
.linkList a {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.72);
  padding: 10px 12px;
  font-weight: 950;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.linkList a:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.caps {
  margin: 0 0 6px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 950;
  font-size: 0.78rem;
}
.mini {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Footer */
.footer {
  padding: 26px 0 34px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.footRow {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--text-secondary);
  font-weight: 900;
}
.topLink {
  color: var(--brand);
  font-weight: 950;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  z-index: 200;
}
.modal[aria-hidden="false"] {
  display: grid;
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(46, 46, 46, 0.55);
  backdrop-filter: blur(10px);
}
.modalPanel {
  position: relative;
  width: min(900px, calc(100% - 28px));
  border-radius: 28px;
  border: 1px solid rgba(63, 166, 163, 0.22);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}
.close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  font-size: 22px;
}
.modalBody {
  padding: 22px;
}
.modalBody p {
  color: var(--text-secondary);
  font-weight: 750;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.tag {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(63, 166, 163, 0.22);
  background: rgba(110, 206, 209, 0.16);
  color: var(--brand);
  font-weight: 950;
  font-size: 0.86rem;
}

/* Spotlight */
.spotlight {
  position: fixed;
  inset: -200px;
  pointer-events: none;
  background: radial-gradient(
    280px 280px at var(--mx, 50%) var(--my, 50%),
    rgba(110, 206, 209, 0.18),
    transparent 60%
  );
  opacity: 0.85;
  mix-blend-mode: multiply;
  transition: opacity 0.25s ease;
  z-index: 1;
}

/* =========================
   SHOWREEL (TEXT‑LED, NO SCREENSHOTS)
   ========================= */
.showreel .sectionHead {
  margin-bottom: 14px;
}

.reelWrap {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  padding: 14px 52px;
  overflow: hidden;
}

/* Edge fades */
.reelWrap::before,
.reelWrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  pointer-events: none;
  z-index: 2;
}
.reelWrap::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(247, 244, 239, 0.95),
    rgba(247, 244, 239, 0)
  );
}
.reelWrap::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(247, 244, 239, 0.95),
    rgba(247, 244, 239, 0)
  );
}

.reel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 10px 6px;
  scroll-snap-type: x mandatory;
  scroll-padding: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reel::-webkit-scrollbar {
  display: none;
}

.reel:focus {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 18px;
}

.reelItem {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: min(380px, 85vw);
  text-decoration: none;
  transform-style: preserve-3d;
}

/* The card container (kept even with no screenshots) */
.reelMedia {
  position: relative;
  height: 180px;
  border-radius: 26px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;

  background:
    radial-gradient(
      420px 200px at 18% 20%,
      rgba(110, 206, 209, 0.18),
      transparent 60%
    ),
    radial-gradient(
      420px 200px at 82% 70%,
      rgba(242, 140, 133, 0.16),
      transparent 62%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.85),
      rgba(239, 233, 225, 0.65)
    );

  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  color: rgba(46, 46, 46, 0.85);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

/* Subtle sheen */
.reelMedia::after {
  content: "";
  position: absolute;
  inset: -60%;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255, 255, 255, 0.85) 50%,
    transparent 65%
  );
  transform: translateX(-45%) rotate(10deg);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.reelItem:hover .reelMedia {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--glowAqua);
}
.reelItem:hover .reelMedia::after {
  opacity: 0.7;
}

/* Tags */
.reelTag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 0.76rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--aqua));
}
.reelTag.aqua {
  background: linear-gradient(135deg, var(--aqua-deep), var(--aqua));
}
.reelTag.coral {
  background: linear-gradient(135deg, var(--coral), #ffb2ac);
}

.reelTitle {
  font-weight: 950;
  font-size: 1.15rem;
  display: block;
}
.reelMeta {
  display: block;
  margin-top: 6px;
  font-weight: 850;
  color: rgba(46, 46, 46, 0.7);
  font-size: 0.85rem;
}

/* Buttons */
.reelBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  font-size: 26px;
  font-weight: 950;
  color: rgba(46, 46, 46, 0.85);
  cursor: pointer;
  z-index: 3;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.reelBtn:hover {
  transform: translateY(-50%) scale(1.04);
  box-shadow: var(--glowAqua);
}
.reelBtn.prev {
  left: 10px;
}
.reelBtn.next {
  right: 10px;
}

/* Drag hint */
.reelHint {
  position: absolute;
  right: 16px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 950;
  color: rgba(46, 46, 46, 0.65);
  z-index: 3;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(63, 166, 163, 0.55);
}
.hintText {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 980px) {
  .reelWrap {
    padding: 14px 14px;
  }
  .reelWrap::before,
  .reelWrap::after {
    width: 36px;
  }
  .reelBtn {
    display: none;
  }
  .reelItem {
    width: min(84vw, 420px);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reelMedia,
  .reelBtn {
    transition: none;
  }
  .reelMedia::after {
    display: none;
  }
}

/* =========================
   CASE STUDY PAGE
   ========================= */
.case .section {
  padding: 78px 0;
}

.caseHero {
  position: relative;
  padding: 86px 0 18px;
}

.caseHeroGrid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.caseMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
}

.casePill {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(63, 166, 163, 0.22);
  background: rgba(110, 206, 209, 0.16);
  color: var(--brand);
  font-weight: 950;
  font-size: 0.86rem;
}

.caseActions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.caseHeroMedia {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(63, 166, 163, 0.22);
  background: linear-gradient(180deg, var(--glass), var(--glass2));
  box-shadow: var(--shadow);
  overflow: hidden;
  transform-style: preserve-3d;
}

.caseHeroImage {
  height: 300px;
  border-radius: 24px;
  margin: 16px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      700px 340px at 20% 20%,
      rgba(110, 206, 209, 0.22),
      transparent 60%
    ),
    radial-gradient(
      700px 340px at 80% 70%,
      rgba(242, 140, 133, 0.18),
      transparent 62%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(255, 255, 255, 0.4));
  color: rgba(46, 46, 46, 0.7);
  font-weight: 950;
  overflow: hidden;
}
.caseHeroImage.hasImage {
  background-size: cover;
  background-position: center;
  color: transparent;
}

.caseGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.caseCard {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  padding: 18px;
}
.caseCard h3 {
  margin: 0 0 8px;
}
.caseCard p {
  margin: 0;
  color: var(--text-secondary);
  font-weight: 750;
}
.caseCard ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-secondary);
  font-weight: 800;
}
.caseCard li {
  margin: 6px 0;
}

.caseSteps {
  display: grid;
  gap: 12px;
}
.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
  padding: 16px;
}
.stepNum {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(110, 206, 209, 0.18);
  border: 1px solid rgba(63, 166, 163, 0.18);
  font-weight: 950;
}
.stepBody h3 {
  margin: 0 0 6px;
}
.stepBody p {
  margin: 0;
  color: var(--text-secondary);
  font-weight: 750;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.shot {
  margin: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.shotMedia {
  height: 220px;
  background:
    radial-gradient(
      700px 340px at 20% 20%,
      rgba(110, 206, 209, 0.22),
      transparent 60%
    ),
    radial-gradient(
      700px 340px at 80% 70%,
      rgba(242, 140, 133, 0.18),
      transparent 62%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(255, 255, 255, 0.4));
}
.shotMedia.hasImage {
  background-size: cover;
  background-position: center;
}
.shot figcaption {
  padding: 12px 14px 14px;
  color: var(--text-secondary);
  font-weight: 750;
}

.closing {
  text-align: left;
}

@media (max-width: 980px) {
  .caseHeroGrid {
    grid-template-columns: 1fr;
  }
  .caseGrid {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .caseHeroImage {
    height: 300px;
  }
}
.miniLink {
  display: inline-block;
  margin-top: 6px;
  font-weight: 950;
  color: var(--brand);
}
.miniLink:hover {
  text-decoration: underline;
}
/* Selected work */
.media {
  height: 160px;
}
.media.hasImage {
  filter: saturate(0.92) contrast(0.94);
}
.cardBody {
  padding-top: 18px;
}

/* Showreel */
.reelMedia.hasImage {
  filter: saturate(0.9) contrast(0.95);
}

/* Case study hero */
.caseHeroImage {
  height: 300px;
}
.caseHeroMedia {
  margin-top: 10px;
}
.caseHeroImage.hasImage {
  filter: saturate(0.95) contrast(0.97);
}

/* Selected Work — no screenshots */
.card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.78),
    rgba(239, 233, 225, 0.55)
  );
}

.card::before {
  content: "";
  display: block;
  height: 32px;
}

.cardBody h3 {
  font-size: 1.15rem;
}

.cardBody p {
  font-size: 0.95rem;
}
.caseHero::after {
  content: "";
  display: block;
  width: 64px;
  height: 6px;
  margin-top: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--aqua));
}

/* =========================
   CASE STUDY HERO DETAILS
   ========================= */

.caseHeroDetails {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  max-width: 420px;
}

/* Individual rows */
.caseHeroDetails .detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Label (quiet, editorial) */
.caseHeroDetails .detailLabel {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--text-secondary);
}

/* Value (clear, readable, confident) */
.caseHeroDetails .detailValue {
  font-weight: 900;
  color: var(--text-primary);
  font-size: 0.95rem;
}

/* =========================
   HERO PANEL TONE DOWN
   ========================= */

/* Make panel supportive, not competing */
.heroPanel {
  transform: translateY(6px);
  opacity: 0.95;
}

/* Slightly reduce visual weight */
.panelInner {
  padding: 18px;
}

/* Keep copy clearly dominant */
.heroCopy {
  max-width: 640px;
}
@media (max-width: 980px) {
  .caseHeroDetails {
    max-width: 100%;
    padding: 18px 20px;
  }
}
/* ===============================
   Contact Form — Final Netlify Styles
   =============================== */

/* Hide honeypot + utility hidden class */
.hidden {
  display: none !important;
}

/* Form wrapper safety */
form[name="contact"] {
  width: 100%;
}

/* Input groups */
.input-field,
.message-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Labels */
form label {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}

/* Inputs + textarea */
form input,
form textarea {
  width: 100%;
  padding: 12px 14px;

  font-family: inherit;
  font-size: 0.95rem;

  color: #f3f5f7;
  background: rgba(255, 255, 255, 0.06);

  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);

  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

/* Focus state */
form input:focus,
form textarea:focus {
  outline: none;
  border-color: rgba(110, 206, 209, 0.55);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(110, 206, 209, 0.25);
}

/* Read‑only field (Selected Pricing Option) */
form input[readonly] {
  opacity: 0.9;
  cursor: default;
}

/* ===============================
   Submit button (matches pricing buttons)
   =============================== */

form button[type="submit"],
form .pricing-btn {
  margin-top: 6px;

  width: 100%;
  padding: 14px 16px;

  font-family: inherit;
  font-size: 1rem;
  font-weight: 900;

  border-radius: 16px;
  border: 1px solid rgba(110, 206, 209, 0.28);

  background: linear-gradient(135deg, #3fa6a3, #6eced1);
  color: #0b0d10;

  cursor: pointer;
  text-align: center;

  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);

  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    filter 0.16s ease;
}

form button[type="submit"]:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.42);
}

form button[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
}

/* Keyboard accessibility */
form button[type="submit"]:focus-visible {
  outline: none;
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.42),
    0 0 0 3px rgba(110, 206, 209, 0.38);
}

/* ===============================
   Success message
   =============================== */

.form-success {
  margin-top: 16px;
  padding: 14px 18px;

  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;

  color: #0b0d10;
  background: linear-gradient(
    135deg,
    rgba(110, 206, 209, 0.9),
    rgba(63, 166, 163, 0.9)
  );

  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}
/* ===============================
   FIX: Remove blur from contact form
   =============================== */

/* Target the contact section safely */
#contact,
#contact * {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Ensure form fields are fully opaque */
#contact input,
#contact textarea {
  background: rgba(21, 26, 32, 0.96);
}
/* ===============================
   FIX: Contact form clarity
   =============================== */

/* Lift contact section above spotlight */
#contact,
#contact * {
  position: relative;
  z-index: 2;
}

/* Make form container fully solid */
#contact .form {
  background: #ffffff;
}

/* Make inputs fully opaque (no glass) */
#contact input,
#contact textarea {
  background: #ffffff;
  color: var(--text-primary);
}

/* Optional: slightly soften borders now that blur is gone */
#contact input,
#contact textarea {
  border-color: rgba(0, 0, 0, 0.12);
}
/* ===============================
   FIX: Contact form label visibility
   =============================== */

/* Main page contact form labels */
#contact label,
#contact label span {
  color: var(--text-primary);
}

/* Optional: slightly mute sub‑labels if you want hierarchy */
#contact label {
  opacity: 0.95;
}
/* ===============================
   Netlify fallback success page
   =============================== */

body.netlify {
  background: linear-gradient(135deg, #f7f4ef, #ffffff);
  font-family: Inter, system-ui, sans-serif;
}

body.netlify h1 {
  font-family: Fraunces, serif;
  color: #2e2e2e;
}

body.netlify p {
  color: #6b6b6b;
  font-weight: 700;
}
/* ===============================
   Select (dropdown) styling
   =============================== */

select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #ffffff;

  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);

  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #666 50%),
    linear-gradient(135deg, #666 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

select:focus {
  outline: none;
  border-color: rgba(63, 166, 163, 0.35);
  box-shadow: var(--ring);
}
/* ===============================
   Select dropdown icon animation
   =============================== */

/* Position context */
.input-field {
  position: relative;
}

/* Remove native arrow (we replace it) */
.input-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px; /* space for icon */
}

/* Custom arrow */
.input-field::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;

  width: 8px;
  height: 8px;

  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;

  transform: translateY(-55%) rotate(45deg);
  transform-origin: center;

  opacity: 0.65;
  pointer-events: none;

  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
}

/* Animate on focus / open */
.input-field:focus-within::after {
  transform: translateY(-35%) rotate(-135deg);
  opacity: 1;
}
/* =================================================
   Select option highlight — Brand Aqua (Unified)
   Works for main contact + contact form demo
   ================================================= */

/* Selected / highlighted option */
select option:checked {
  background-color: rgba(110, 206, 209, 0.25); /* brand aqua */
  color: #0b0d10;
}

/* Hover (where supported) */
select option:hover {
  background-color: rgba(110, 206, 209, 0.35);
  color: #0b0d10;
}

/* -------------------------------------------------
   Demo (dark UI) fallback safety
   Ensures options remain readable in all browsers
   ------------------------------------------------- */

.demo select option,
.form-container select option {
  background: #ffffff;
  color: var(--text-primary);
}
.pricing .pricingGrid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);

  /* Automatically fits 2 or 3 nicely */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.pricingCard .cardBody {
  display: grid;
  gap: 14px;
}

.pricingTop {
  display: grid;
  gap: 8px;
}

.pricingTag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricingTitle {
  margin: 0;
}

.pricingDesc {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.55;
}

.pricingPrice {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.priceFrom {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.priceValue {
  font-size: 28px;
  font-weight: 600;
}

.pricingList {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--text-secondary);
}

.pricingActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.pricingNote {
  margin: 0;
}

.pricingFoot {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

/* Featured package: subtle premium emphasis */
.pricingCard.featured {
  position: relative;
  overflow: hidden;
}

.pricingCard.featured::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: radial-gradient(
    600px 200px at 20% 0%,
    rgba(120, 255, 255, 0.18),
    rgba(255, 255, 255, 0.02) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}
.pricingCard.featured {
  transform: scale(1.02);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 2;
}
.pricingCard {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pricingCard.premium {
  border: 1px solid rgba(63, 166, 163, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.pricingActions {
  margin-top: auto;
}
.pricingCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--glowAqua);
}
.cardBody {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pricingPrice {
  margin: 10px 0;
}
/* Responsive */
@media (max-width: 860px) {
  .pricingGrid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   PRICING — CONTRAST FIX
   ========================= */

.pricing,
.pricing .pricingTitle,
.pricing .pricingDesc,
.pricing .pricingList,
.pricing .pricingList li,
.pricing .pricingNote,
.pricing .priceFrom {
  color: var(--text, #1b1b1b);
}

/* Price should stand out */
.pricing .priceValue {
  color: var(--heading, #111);
}

/* Muted helper text */
.pricing .muted,
.pricing .pricingDesc,
.pricing .pricingNote {
  opacity: 0.85;
}

/* Pills / tags */
.pricing .pricingTag {
  color: var(--text, #1b1b1b);
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}

/* Featured card stays premium, readable */
.pricing .featured {
  background: rgba(255, 255, 255, 0.75);
}

/* Ensure cards always inherit readable color */
.pricing .cardBody {
  color: inherit;
}
.pricingCard {
  display: flex;
  flex-direction: column;
}

.pricingCard .cardBody {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricingActions {
  margin-top: auto;
}
.pricingPrice {
  margin: 10px 0;
}
/* =========================
   MOBILE RESPONSIVE BASE
   ========================= */
@media (max-width: 880px) {
  /* Shell padding */
  .shell {
    padding-inline: 16px;
  }

  /* Stack all grids naturally */
  .grid {
    grid-template-columns: 1fr !important;
  }

  /* Headings scale down */
  .display {
    font-size: clamp(32px, 7vw, 40px);
    line-height: 1.15;
  }

  .h2 {
    font-size: 26px;
  }

  .h3 {
    font-size: 20px;
  }

  /* Body text comfort */
  .lead,
  .body,
  p {
    font-size: 16px;
  }

  /* Buttons: easier taps */
  .btn {
    padding: 14px 18px;
    font-size: 15px;
  }
}
@media (max-width: 880px) {
  .heroGrid {
    display: grid;
    gap: 28px;
  }

  .heroPanel {
    order: -1; /* panel appears first */
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 880px) {
  .reelWrap {
    padding-bottom: 12px;
  }

  .reelBtn {
    display: none; /* drag-only on mobile */
  }

  .reelItem {
    min-width: 80vw;
  }
}
/* FAQ Card Accordion */

.faq-card {
  cursor: pointer;
}

.faq-toggle {
  all: unset;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
}

.faq-question {
  margin: 0;
}

.faq-icon {
  font-size: 1.25rem;
  font-weight: 600;
  transition: transform 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease;
  opacity: 0;
}

.faq-card[data-open] .faq-answer {
  max-height: 500px;
  opacity: 1;
  margin-top: 0.75rem;
}

.faq-card[data-open] .faq-icon {
  transform: rotate(45deg);
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Question */
.faq-item summary {
  font-weight: 600;
  list-style: none;
  position: relative;
}

/* Remove arrow */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Custom + symbol */
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.4rem;
  color: #ff4da6;
}

/* Open state */
.faq-item[open] summary::after {
  content: "–";
}

/* Answer text */
.faq-item p {
  margin-top: 0.5rem;
  color: #555;
}

/* Rating container */
.rating {
  display: inline-flex;
  flex-direction: row-reverse; /* THIS makes it work properly */
  gap: 0.25rem;
}

/* Hide radio inputs */
.rating__input {
  display: none;
}

/* Crown icons */
.rating__svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: #f2c4d8; /* soft pink = "empty" state */
  cursor: pointer;
  transition:
    transform 0.15s ease,
    fill 0.15s ease;
}

/* Hover effect */
.rating__star:hover .rating__svg,
.rating__star:hover ~ .rating__star .rating__svg {
  fill: #ff4da6; /* bright pink */
  transform: translateY(-2px);
}

/* Selected state */
.rating__input:checked ~ .rating__star .rating__svg {
  fill: #ff4da6;
}
.rating__svg:hover {
  filter: drop-shadow(0 0 6px rgba(255, 77, 166, 0.4));
}
/* Testimonials container */
.testimonials-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  padding: 20px;
  border-radius: 20px;

  display: flex;
  flex-direction: column;
  gap: 12px;

  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);

  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);

  transition: all 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Pink crowns */
.crown {
  width: 1.2rem;
  height: 1.2rem;
  fill: #ff4da6;
  opacity: 0.85;
}

/* Rating row */
.testimonial-rating {
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  padding-left: 10px;
}

.testimonial-text::before {
  content: "“";
  position: absolute;
  left: -6px;
  top: -10px;
  font-size: 2.4rem;
  color: rgba(0, 0, 0, 0.08);
}

/* Name */
.testimonial-name {
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--text-primary);
}
/* Selected state (this was missing properly) */
.rating__input:checked ~ .rating__star .rating__svg {
  fill: #ff4da6;
}

/* Hover glow */
.rating__svg:hover {
  filter: drop-shadow(0 0 6px rgba(255, 77, 166, 0.4));
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1.5rem 0;
  font-weight: 900;
}

.rating-summary p {
  margin: 0;
  color: var(--text-secondary);
}
/* Form layout wrapper */
.review-form {
  display: grid;
  gap: 1.2rem;
  max-width: 600px;
}

/* Each row clean alignment */
.review-form__row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Inputs + textarea match your system */
.review-form__input,
.review-form__textarea {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  font-family: inherit;
}

/* Label styling */
.review-form__label {
  font-weight: 800;
  color: var(--text-primary);
}
/* Submit button */
.review-form__submit {
  background: var(--color-pink);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 16px;
  font-weight: 800;
  cursor: pointer;
}
.review-form__submit:hover {
  background: #ff4da6;
  box-shadow: 0 8px 20px rgba(255, 77, 166, 0.3);
}
.review-form__submit:active {
  background: #e0438c;
  box-shadow: 0 4px 12px rgba(255, 77, 166, 0.2);
}
.review-form__submit:focus-visible {
  outline: none;
  box-shadow:
    0 8px 20px rgba(255, 77, 166, 0.3),
    0 0 0 3px rgba(255, 77, 166, 0.4);
}
.section .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
/* ✅ FIX: Review form text visibility */
.review-form__input,
.review-form__textarea {
  background: #ffffff;
  color: var(--text-primary); /* dark readable text */
}

/* Fix placeholder text too */
.review-form__input::placeholder,
.review-form__textarea::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

/* Fix focus state */
.review-form__input:focus,
.review-form__textarea:focus {
  background: #ffffff;
  color: var(--text-primary);
}
.review-form__input:focus::placeholder,
.review-form__textarea:focus::placeholder {
  color: rgba(0, 0, 0, 0.45);
}
/* Layout container */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Left side (form) */
.review-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Right side (reviews) */
.reviews-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Layout container */
.review-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Left side (form) */
.review-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Right side (testimonials) */
.review-right {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

/* Make responsive for mobile */
@media (max-width: 900px) {
  .review-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
@media (max-width: 900px) {
  .review-right {
    grid-template-columns: 1fr;
  }
}

/* ✅ Fix typing visibility */
.review-form__input,
.review-form__textarea {
  background: #ffffff !important;
  color: #2e2e2e !important;
}

.review-form__input::placeholder,
.review-form__textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.review-form__input:focus,
.review-form__textarea:focus {
  background: #ffffff !important;
  color: #2e2e2e !important;
}
.review-form__input:focus::placeholder,
.review-form__textarea:focus::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.rating {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 6px;
}

.rating__input {
  display: none;
}

.rating__svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: #f2c4d8;
  transition: 0.2s ease;
}

/* Hover */
.rating__star:hover .rating__svg,
.rating__star:hover ~ .rating__star .rating__svg {
  fill: #ff4da6;
}

/* Selected */
.rating__input:checked ~ .rating__star .rating__svg {
  fill: #ff4da6;
}
.rating__svg:hover {
  filter: drop-shadow(0 0 6px rgba(255, 77, 166, 0.4));
}
.testimonial-card {
  color: var(--text-primary); /* ensures all text inside is readable */
}

.testimonial-text {
  color: var(--text-primary);
}

.testimonial-name {
  color: var(--text-secondary);
}
input,
textarea {
  color: var(--text-primary);
  background: #ffffff;
}
.testimonials input,
.testimonials textarea,
.testimonials label {
  color: var(--text-primary);
}

.testimonials ::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.testimonials input:focus,
.testimonials textarea:focus {
  color: var(--text-primary);
  background: #ffffff;
}
.testimonials input:focus::placeholder,
.testimonials textarea:focus::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
/* ===============================
TESTIMONIAL FORM — FIX COLORS
=============================== */

/* Labels */
.testimonials label,
.review-form__label {
  color: var(--text-primary) !important;
  opacity: 1;
}

/* Inputs + textarea */
.testimonials input,
.testimonials textarea,
.review-form__input,
.review-form__textarea {
  background: #ffffff !important;
  color: var(--text-primary) !important;
  border-color: rgba(0, 0, 0, 0.12);
}

/* Placeholder text */
.testimonials ::placeholder,
.review-form__input::placeholder,
.review-form__textarea::placeholder {
  color: rgba(0, 0, 0, 0.5) !important;
}

/* Focus state (keeps it readable when typing) */
.testimonials input:focus,
.testimonials textarea:focus,
.review-form__input:focus,
.review-form__textarea:focus {
  background: #ffffff !important;
  color: var(--text-primary) !important;
}
.testimonials input:focus::placeholder,
.testimonials textarea:focus::placeholder,
.review-form__input:focus::placeholder,
.review-form__textarea:focus::placeholder {
  color: rgba(0, 0, 0, 0.5) !important;
}
/* ===============================
TESTIMONIAL FORM — COLOR FIX
=============================== */

/* ✅ Labels */
.review-form__label {
  color: var(--text-primary); /* dark readable */
  font-weight: 800;
  opacity: 1;
}

/* ✅ Inputs + textarea */
.review-form__input,
.review-form__textarea {
  background: #ffffff;
  color: var(--text-primary); /* dark text */
  border: 1px solid rgba(0, 0, 0, 0.12);
}

/* ✅ Placeholder text (this was the missing piece) */
.review-form__input::placeholder,
.review-form__textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

/* ✅ Keep text readable on focus */
.review-form__input:focus,
.review-form__textarea:focus {
  background: #ffffff;
  color: var(--text-primary);
  border-color: rgba(63, 166, 163, 0.35);
  box-shadow: var(--ring);
}

/* ✅ Optional: smoother placeholder on focus */
.review-form__input:focus::placeholder,
.review-form__textarea:focus::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
/* 1) Mobile-first baseline */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}
body {
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  line-height: 1.5;
}

/* 2) Make media responsive */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 3) Container that never breaks mobile */
.container {
  width: min(1100px, 100%);
  margin-inline: auto;
  padding-inline: 16px;
}

/* 4) Tap-friendly buttons/links */
button,
.btn,
a.btn {
  min-height: 48px;
  padding: 12px 16px;
}

/* 5) Responsive type + hero spacing */
h1 {
  font-size: clamp(28px, 6vw, 48px);
  line-height: 1.1;
  margin: 0 0 12px;
}
h2 {
  font-size: clamp(20px, 3.8vw, 32px);
  margin: 0 0 10px;
}
.section {
  padding: clamp(24px, 5vw, 72px) 0;
}
@media (max-width: 880px) {
  .workGrid,
  .serviceGrid,
  .aboutGrid,
  .contactGrid {
    grid-template-columns: 1fr;
  }
}
/* ✅ MOBILE FIX PATCH */

@media (max-width: 880px) {
  .heroGrid {
    grid-template-columns: 1fr;
  }

  .reelItem {
    width: min(380px, 85vw);
  }

  .orb {
    display: none;
  }

  .workGrid,
  .serviceGrid,
  .aboutGrid,
  .contactGrid {
    grid-template-columns: 1fr;
  }
}

/* Fix broken pseudo elements */
.reelWrap::before,
.reelWrap::after {
  content: "";
}

/* Fix section padding bug */
.section {
  padding: clamp(24px, 5vw, 72px) 0;
}
/* SEO-friendly kicker (keeps design intact) */
.seoKicker {
  max-width: 60ch;
}
/* Fix broken clamp */
.section {
  padding: clamp(24px, 5vw, 72px) 0;
}

/* Keep SEO phrase tidy */
.seoKicker {
  max-width: 60ch;
}

/* Mobile: force hero to single column */
@media (max-width: 880px) {
  .heroGrid {
    grid-template-columns: 1fr;
  }
}
.heroGrid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: start; /* ✅ THIS FIXES YOUR ISSUE */
}

.heroPanel {
  transform: translateY(10px); /* optional polish */
}
/* ============================
   MOBILE FIXES — ADD AT END
   ============================ */
@media (max-width: 880px) {
  /* HERO: force single column */
  .heroGrid {
    grid-template-columns: 1fr !important;
    gap: 26px;
  }

  /* HERO TEXT: reduce padding + spacing */
  .hero {
    padding: 56px 0 18px;
  }

  .display {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    line-height: 1.15;
    max-width: 100%;
  }

  .lead {
    font-size: 1rem;
    max-width: 100%;
  }

  /* TAGS: prevent overflow */
  .chips,
  .tags {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* STATS: stack instead of 3‑column */
  .stats {
    grid-template-columns: 1fr;
  }

  /* SECTION HEADERS: stack title + subhead */
  .sectionHead {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  /* GRIDS: collapse to single column */
  .workGrid,
  .serviceGrid,
  .aboutGrid,
  .contactGrid {
    grid-template-columns: 1fr !important;
  }

  /* TWO‑COLUMN PANELS */
  .twoCol {
    grid-template-columns: 1fr;
  }

  /* FOOTER: stack */
  .footRow {
    flex-direction: column;
    gap: 14px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .hero {
    padding-top: 46px;
  }

  .display {
    font-size: clamp(1.6rem, 8vw, 2.1rem);
  }
}
