:root {
  --ink: #090b07;
  --black: #020402;
  --ivory: #fff8ec;
  --muted: #cfc4af;
  --gold: #c49a5a;
  --gold-bright: #efcf8d;
  --teal: #00c7a6;
  --teal-soft: #6ff4d8;
  --rose: #b76e79;
  --line: rgba(255, 248, 236, 0.14);
  --panel: rgba(255, 248, 236, 0.06);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --cursor-x: 50vw;
  --cursor-y: 30vh;
  --scroll-progress: 0%;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  width: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3;
  width: 1px;
  height: 1px;
  pointer-events: none;
  opacity: 0.9;
  box-shadow: 0 0 180px 90px rgba(0, 199, 166, 0.1), 0 0 240px 120px rgba(239, 207, 141, 0.06);
  transform: translate3d(var(--cursor-x), var(--cursor-y), 0);
  transition: transform 120ms linear;
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(-48%) scale(1);
  }

  50% {
    transform: translateY(-51%) scale(1.025);
  }
}

@keyframes softPulse {
  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 0.95;
  }
}

@keyframes titleRise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(239, 207, 141, 0.18);
  background: rgba(3, 5, 3, 0.78);
  backdrop-filter: blur(18px);
  max-width: 100vw;
  transition: min-height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(3, 5, 3, 0.92);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

.scroll-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: var(--scroll-progress);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold-bright));
  box-shadow: 0 0 18px rgba(0, 199, 166, 0.7);
  transition: width 90ms linear;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--teal-soft);
  transition: color 180ms ease, transform 180ms ease;
}

.brand::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(239, 207, 141, 0.26);
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

.brand img {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(239, 207, 141, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(0, 199, 166, 0.18);
}

.brand span {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand strong {
  font-size: 1.02rem;
}

.brand small {
  color: rgba(255, 248, 236, 0.62);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: rgba(255, 248, 236, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
  min-width: 0;
}

.nav-links a:hover,
.nav-links a.is-active,
.brand:hover {
  color: var(--gold-bright);
}

.nav-links a {
  position: relative;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: var(--teal-soft);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.brand:hover {
  transform: translateY(-2px);
}

.header-cta,
.primary-button,
.secondary-button,
.contact-form button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta {
  padding: 0 18px;
  border: 1px solid rgba(0, 199, 166, 0.55);
  color: var(--teal-soft);
  font-size: 0.86rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 92vh;
  padding: 124px clamp(20px, 5vw, 74px) 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(239, 207, 141, 0.08), transparent 22%),
    radial-gradient(circle at 82% 34%, rgba(0, 199, 166, 0.18), transparent 28%),
    radial-gradient(circle at 18% 22%, rgba(239, 207, 141, 0.18), transparent 30%),
    linear-gradient(135deg, #030403 0%, #0a0d08 48%, #010201 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 76px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 207, 141, 0.5), transparent);
}

.hero-glow {
  position: absolute;
  right: -18vw;
  bottom: -24vw;
  width: 56vw;
  aspect-ratio: 1;
  border: 1px solid rgba(239, 207, 141, 0.2);
  border-radius: 50%;
  background: rgba(0, 199, 166, 0.06);
  animation: softPulse 5s ease-in-out infinite;
}

.hero-media {
  position: absolute;
  right: clamp(-120px, -8vw, -40px);
  top: 50%;
  width: min(62vw, 680px);
  min-width: 280px;
  aspect-ratio: 1;
  transform: translateY(-48%);
  border: 1px solid rgba(239, 207, 141, 0.24);
  border-radius: 50%;
  opacity: 0.7;
  box-shadow: 0 0 110px rgba(0, 199, 166, 0.16);
  background: rgba(0, 0, 0, 0.35);
  animation: heroFloat 8s ease-in-out infinite;
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(0, 199, 166, 0.34);
  border-radius: 50%;
}

.hero-media::after {
  inset: 20px;
  border-color: rgba(239, 207, 141, 0.36);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 790px;
  padding-top: min(5vh, 46px);
}

.eyebrow {
  max-width: 100%;
  margin: 0 0 16px;
  color: var(--teal-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  color: var(--ivory);
  font-size: clamp(4rem, 8vw, 8.7rem);
  overflow-wrap: break-word;
}

h1 span {
  display: block;
  animation: titleRise 800ms var(--ease) both;
}

h1 span:nth-child(2) {
  animation-delay: 120ms;
}

h1 span:nth-child(3) {
  animation-delay: 240ms;
}

h2 {
  color: var(--ivory);
  font-size: clamp(2.4rem, 5vw, 5.4rem);
}

h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

.hero-copy,
.intro-band > p,
.experience-copy > p,
.contact-copy > p {
  color: rgba(255, 248, 236, 0.74);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.8;
}

.hero-copy {
  width: 100%;
  max-width: 630px;
  margin: 28px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-button,
.secondary-button {
  padding: 0 24px;
}

.primary-button,
.contact-form button {
  border: 1px solid var(--gold-bright);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #090704;
  box-shadow: 0 18px 38px rgba(196, 154, 90, 0.2);
}

.secondary-button {
  border: 1px solid rgba(255, 248, 236, 0.28);
  color: var(--ivory);
}

.primary-button:hover,
.secondary-button:hover,
.header-cta:hover,
.contact-form button:hover {
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

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

.service-card,
.story-card,
.testimonial-card,
.film-strip article,
.gallery-item,
.calculator-panel,
.film-feature,
.contact-form {
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.service-card:hover,
.story-card:hover,
.testimonial-card:hover,
.film-strip article:hover {
  transform: translateY(-8px);
  box-shadow: inset 0 0 0 1px rgba(239, 207, 141, 0.22), 0 24px 58px rgba(0, 0, 0, 0.32);
}

.hero-meta {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(920px, 100%);
  margin-top: 48px;
  border: 1px solid var(--line);
  background: var(--line);
}

.hero-meta div {
  padding: 18px;
  background: rgba(3, 5, 3, 0.88);
  transition: background 220ms ease, transform 220ms ease;
}

.hero-meta div:hover {
  background: rgba(13, 16, 11, 0.96);
  transform: translateY(-5px);
}

.hero-meta strong,
.hero-meta span {
  display: block;
}

.hero-meta strong {
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
}

.hero-meta span {
  margin-top: 6px;
  color: rgba(255, 248, 236, 0.68);
  font-size: 0.88rem;
}

.intro-band,
.services-section,
.stories-section,
.calculator-section,
.films-section,
.gallery-section,
.testimonials-section,
.contact-section {
  padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 74px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.68fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: end;
  background: #0d100b;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 950px;
}

.services-section {
  background: var(--black);
}

.calculator-section {
  background:
    radial-gradient(circle at 78% 20%, rgba(0, 199, 166, 0.16), transparent 32%),
    #0d100b;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.calculator-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.62fr);
  gap: 1px;
  margin-top: 48px;
  border: 1px solid rgba(239, 207, 141, 0.26);
  background: var(--line);
  box-shadow: var(--shadow);
}

.budget-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 42px);
  background: rgba(3, 5, 3, 0.88);
}

.budget-form label,
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.budget-form input,
.budget-form select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 248, 236, 0.2);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.25);
  color: var(--ivory);
  font: inherit;
  outline: none;
}

.budget-form input,
.budget-form select,
.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 14px;
}

.budget-form input:focus,
.budget-form select:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal-soft);
}

.budget-result {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(rgba(3, 5, 3, 0.78), rgba(3, 5, 3, 0.88)),
    url("assets/pewp-logo.png") center / 76% no-repeat,
    #050604;
}

.budget-result span {
  color: var(--teal-soft);
  font-weight: 900;
  text-transform: uppercase;
}

.budget-result strong {
  display: block;
  margin-top: 14px;
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
  transition: transform 220ms ease, color 220ms ease;
}

.budget-result strong.is-updating {
  color: var(--teal-soft);
  transform: scale(1.025);
}

.budget-result p {
  color: rgba(255, 248, 236, 0.72);
  line-height: 1.7;
}

.service-grid,
.story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-card,
.story-card {
  min-height: 270px;
  padding: 30px;
  background: #080a07;
  position: relative;
  overflow: hidden;
}

.service-card::before,
.story-card::before,
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(239, 207, 141, 0.1), transparent);
  transform: translateX(-120%);
  transition: transform 650ms var(--ease);
}

.service-card:hover::before,
.story-card:hover::before,
.testimonial-card:hover::before {
  transform: translateX(120%);
}

.service-card span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--teal-soft);
  font-weight: 900;
}

.service-card h3,
.story-card h3 {
  color: var(--gold-bright);
}

.service-card p,
.story-card p,
.process-list p {
  color: rgba(255, 248, 236, 0.7);
  line-height: 1.7;
}

.experience-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: center;
  padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 74px);
  background: #10120d;
}

.experience-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(239, 207, 141, 0.25);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.08), transparent),
    radial-gradient(circle at 50% 22%, rgba(0, 199, 166, 0.17), transparent 38%),
    #050604;
  transform-style: preserve-3d;
}

.arch {
  position: absolute;
  left: 50%;
  width: 66%;
  aspect-ratio: 0.62;
  transform: translateX(-50%);
  border: 2px solid rgba(239, 207, 141, 0.48);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  animation: softPulse 4.8s ease-in-out infinite;
}

.arch-one {
  top: 86px;
}

.arch-two {
  top: 132px;
  width: 50%;
  border-color: rgba(0, 199, 166, 0.48);
}

.arch-copy {
  position: absolute;
  inset: auto 28px 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 248, 236, 0.18);
}

.arch-copy span,
.arch-copy strong {
  display: block;
}

.arch-copy span {
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.arch-copy strong {
  margin-top: 10px;
  color: var(--ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
}

.process-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.process-list div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.process-list span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 199, 166, 0.42);
  border-radius: 50%;
  color: var(--teal-soft);
  font-weight: 900;
}

.process-list p {
  margin: 0;
}

.stories-section {
  background: #060806;
}

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

.story-card {
  min-height: 440px;
}

.story-surface {
  height: 220px;
  margin: -30px -30px 28px;
  border-bottom: 1px solid var(--line);
}

.surface-gold {
  background:
    radial-gradient(circle at 50% 0%, rgba(239, 207, 141, 0.54), transparent 42%),
    linear-gradient(145deg, rgba(239, 207, 141, 0.16), rgba(8, 10, 7, 0.1)),
    #15120a;
}

.surface-teal {
  background:
    radial-gradient(circle at 70% 20%, rgba(0, 199, 166, 0.46), transparent 38%),
    linear-gradient(145deg, rgba(0, 199, 166, 0.12), rgba(8, 10, 7, 0.1)),
    #071310;
}

.surface-rose {
  background:
    radial-gradient(circle at 24% 12%, rgba(183, 110, 121, 0.48), transparent 40%),
    linear-gradient(145deg, rgba(183, 110, 121, 0.14), rgba(8, 10, 7, 0.1)),
    #14090c;
}

.films-section {
  background:
    radial-gradient(circle at 20% 18%, rgba(239, 207, 141, 0.14), transparent 32%),
    radial-gradient(circle at 82% 34%, rgba(0, 199, 166, 0.12), transparent 34%),
    #10120d;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.film-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.65fr);
  gap: 1px;
  margin-top: 48px;
  border: 1px solid rgba(239, 207, 141, 0.26);
  background: var(--line);
  box-shadow: var(--shadow);
}

.film-player {
  position: relative;
  min-height: 360px;
  padding: clamp(16px, 2vw, 24px);
  background:
    linear-gradient(rgba(3, 5, 3, 0.72), rgba(3, 5, 3, 0.86)),
    #050604;
}

.film-player video {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 1px solid rgba(255, 248, 236, 0.16);
  border-radius: 8px;
  background: #020402;
  object-fit: contain;
}

.film-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 46px);
  background: rgba(3, 5, 3, 0.88);
}

.film-copy span,
.film-strip span {
  color: var(--teal-soft);
  font-weight: 900;
  text-transform: uppercase;
}

.film-copy h3 {
  margin-top: 16px;
  color: var(--gold-bright);
}

.film-copy p {
  color: rgba(255, 248, 236, 0.72);
  line-height: 1.75;
}

.film-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  border: 1px solid var(--line);
  background: var(--line);
}

.film-strip article {
  padding: 24px;
  background: rgba(3, 5, 3, 0.86);
}

.film-strip strong {
  display: block;
  margin-top: 10px;
  color: var(--ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
}

.gallery-section {
  background: #0d100b;
  border-top: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 236, 0.16);
  border-radius: 8px;
  background: #060806;
  cursor: pointer;
}

.gallery-item:hover,
.gallery-item:focus {
  border-color: rgba(239, 207, 141, 0.58);
  transform: translateY(-8px) scale(1.01);
  outline: none;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.gallery-item:hover .gallery-placeholder,
.gallery-item:focus .gallery-placeholder {
  transform: scale(1.08);
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 700ms var(--ease);
}

.gallery-item span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: var(--ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.85);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.72));
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 70px minmax(0, 980px) 70px;
  gap: clamp(10px, 2vw, 24px);
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(2, 4, 2, 0.86);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.gallery-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  overflow: hidden;
  border: 1px solid rgba(239, 207, 141, 0.34);
  border-radius: 8px;
  background: #050604;
  box-shadow: var(--shadow);
  transform: translateX(46px) scale(0.96);
  transition: transform 360ms var(--ease);
}

.gallery-modal.is-open .modal-card {
  transform: translateX(0) scale(1);
}

.modal-visual {
  min-height: min(58vh, 560px);
  border-bottom: 1px solid var(--line);
}

.modal-copy {
  padding: clamp(22px, 3vw, 34px);
}

.modal-copy span {
  color: var(--teal-soft);
  font-weight: 900;
}

.modal-copy h3 {
  margin-top: 10px;
  color: var(--gold-bright);
}

.modal-copy p {
  color: rgba(255, 248, 236, 0.72);
  line-height: 1.7;
}

.modal-close,
.modal-nav {
  border: 1px solid rgba(239, 207, 141, 0.36);
  border-radius: 50%;
  background: rgba(3, 5, 3, 0.82);
  color: var(--ivory);
  cursor: pointer;
  font: inherit;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.modal-close:hover,
.modal-nav:hover {
  transform: translateY(-2px);
  border-color: var(--teal-soft);
  color: var(--teal-soft);
}

.modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  font-size: 1.6rem;
}

.modal-nav {
  width: 58px;
  height: 58px;
  font-size: 2.2rem;
  line-height: 1;
}

.placeholder-mandap {
  background:
    radial-gradient(circle at 50% 22%, rgba(239, 207, 141, 0.5), transparent 30%),
    linear-gradient(140deg, rgba(0, 199, 166, 0.22), rgba(183, 110, 121, 0.18)),
    #141109;
}

.placeholder-stage {
  background:
    radial-gradient(circle at 50% 20%, rgba(239, 207, 141, 0.46), transparent 36%),
    linear-gradient(135deg, #0d0f0b, #24170d);
}

.placeholder-mehendi {
  background:
    radial-gradient(circle at 25% 20%, rgba(183, 110, 121, 0.46), transparent 36%),
    linear-gradient(135deg, #17090c, #0b1612);
}

.placeholder-entry {
  background:
    radial-gradient(circle at 76% 26%, rgba(0, 199, 166, 0.44), transparent 32%),
    linear-gradient(135deg, #071310, #111108);
}

.placeholder-table {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 248, 236, 0.26), transparent 32%),
    linear-gradient(135deg, #15120a, #070907);
}

.testimonials-section {
  background: #060806;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  border: 1px solid var(--line);
  background: var(--line);
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: clamp(24px, 3vw, 34px);
  background: #080a07;
}

.testimonial-card p {
  margin: 0 0 28px;
  color: rgba(255, 248, 236, 0.78);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 2.05rem);
  line-height: 1.18;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: var(--gold-bright);
}

.testimonial-card span {
  margin-top: 6px;
  color: var(--teal-soft);
  font-size: 0.88rem;
}

.testimonial-band {
  display: grid;
  place-items: center;
  padding: clamp(74px, 10vw, 150px) clamp(20px, 8vw, 120px);
  text-align: center;
  background:
    linear-gradient(rgba(3, 5, 3, 0.8), rgba(3, 5, 3, 0.8)),
    url("assets/pewp-logo.png") center / min(420px, 70vw) no-repeat,
    #090b07;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testimonial-band p {
  max-width: 980px;
  margin: 0;
  color: var(--ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 5rem);
  line-height: 1.05;
}

.testimonial-band span {
  margin-top: 26px;
  color: var(--teal-soft);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 520px);
  gap: clamp(34px, 7vw, 90px);
  background: #0d100b;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(239, 207, 141, 0.28);
  border-radius: 8px;
  background: rgba(255, 248, 236, 0.05);
  box-shadow: var(--shadow);
}

.contact-form textarea {
  resize: vertical;
  padding: 14px;
}

.contact-form button {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  cursor: pointer;
  font: inherit;
}

.site-footer {
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 42px 20px;
  border-top: 1px solid var(--line);
  background: #030503;
  text-align: center;
}

.site-footer img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
}

.site-footer p {
  margin: 0;
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
}

.site-footer span {
  color: rgba(255, 248, 236, 0.62);
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    flex-wrap: wrap;
    gap: 12px;
  }

  .cursor-glow {
    display: none;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 78px;
  }

  .hero-media {
    right: 50%;
    top: 116px;
    width: min(78vw, 430px);
    transform: translateX(50%);
    opacity: 0.3;
    animation: none;
  }

  .intro-band,
  .experience-section,
  .calculator-panel,
  .film-feature,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .film-strip,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .gallery-modal {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .modal-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 48px;
    height: 48px;
  }

  .modal-prev {
    left: 14px;
  }

  .modal-next {
    right: 14px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
    padding: 12px 16px;
    overflow: hidden;
  }

  .brand span,
  .header-cta {
    font-size: 0.78rem;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand::before {
    width: 62px;
    height: 62px;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .nav-links {
    gap: 16px;
    justify-content: flex-start;
    font-size: 0.82rem;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .hero {
    padding-inline: 18px;
  }

  .eyebrow {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .hero-copy {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  h1 {
    font-size: clamp(2.8rem, 12vw, 3.25rem);
  }

  .hero-actions,
  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-meta,
  .service-grid,
  .budget-form,
  .film-strip,
  .testimonial-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .story-card,
  .testimonial-card {
    min-height: auto;
    padding: 24px;
  }

  .gallery-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-grid {
    grid-auto-rows: 250px;
  }

  .story-surface {
    margin: -24px -24px 24px;
  }

  .experience-visual {
    min-height: 420px;
  }

  .film-player,
  .film-player video {
    min-height: 240px;
  }

  .contact-form {
    padding: 20px;
  }

  .modal-visual {
    min-height: 340px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
