:root {
  --purple: #0f6f7f;
  --purple-deep: #06242e;
  --gold: #2fbf71;
  --gold-light: #b8f7d1;
  --white: #ffffff;
  --blush: #d9f6ff;
  --maroon: #125e45;
  --ink: #161117;
  --muted: #756b78;
  --surface: #f4fbfb;
  --line: rgba(74, 23, 79, .14);
  --shadow: 0 26px 80px rgba(26, 8, 32, .18);
  --gold-ring: rgba(255, 227, 155, .45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,249,242,.96), rgba(255,250,246,1)),
    var(--surface);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(6, 36, 46, .98), rgba(8, 54, 65, .96));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(184, 247, 209, .28);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled {
  box-shadow: 0 12px 34px rgba(6, 36, 46, .26);
  background: linear-gradient(135deg, rgba(4, 26, 34, .99), rgba(9, 63, 73, .98));
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 120px;
}
.brand img {
  width: clamp(86px, 9vw, 138px);
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.28));
}
.brand span {
  font-family: "Cinzel", serif;
  font-weight: 800;
  font-size: 1.24rem;
  color: var(--purple);
  text-shadow: 0 1px 0 rgba(255,255,255,.8);
}
.brand small { color: var(--maroon); font-size: .76rem; font-weight: 700; margin-top: 4px; }
.site-nav { display: flex; justify-content: center; align-items: center; gap: clamp(14px, 2vw, 30px); font-weight: 800; color: rgba(255,255,255,.9); }
.site-nav a { position: relative; padding: 8px 0; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.header-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #06242e;
  color: var(--white);
  padding: 11px 16px;
  border-radius: 6px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(74, 23, 79, .25), inset 0 0 0 1px rgba(255,227,155,.18);
}
.nav-toggle { display: none; border: 0; background: var(--purple); color: var(--white); width: 42px; height: 42px; border-radius: 6px; font-size: 1.05rem; }

.hero, .page-hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(96px, 12vw, 160px) clamp(18px, 6vw, 90px);
}
.page-hero { min-height: 62vh; }
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 227, 155, .46), transparent 29%),
    radial-gradient(circle at 82% 72%, rgba(247, 215, 221, .20), transparent 24%),
    linear-gradient(105deg, rgba(26, 6, 31, .94), rgba(87, 19, 95, .72) 48%, rgba(123, 31, 58, .48));
}
.home-hero::after, .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(255,227,155,.10) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.9), transparent 72%);
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 790px;
  color: var(--white);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: .82rem;
}
h1, h2, h3 { margin: 0; line-height: 1.08; }
h1, h2 { font-family: "Cinzel", serif; }
h1 { font-size: clamp(2.55rem, 6vw, 5.8rem); max-width: 980px; }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); color: var(--purple-deep); }
h3 { font-size: 1.16rem; }
.hero-content p:not(.eyebrow) { max-width: 720px; font-size: clamp(1rem, 1.6vw, 1.22rem); color: rgba(255,255,255,.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-gold {
  background: linear-gradient(135deg, #b97918, var(--gold-light), var(--gold));
  color: #27190a;
  box-shadow: 0 16px 40px rgba(217, 164, 65, .38), 0 0 0 1px rgba(255,255,255,.28) inset;
}
.btn-white { background: var(--white); color: var(--purple); }
.btn-outline { border-color: rgba(255,227,155,.7); color: var(--white); background: rgba(255,255,255,.08); }
.hero-stats {
  position: absolute;
  right: clamp(18px, 5vw, 80px);
  bottom: 46px;
  z-index: 3;
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px 16px;
  color: var(--white);
  padding: 18px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.hero-stats strong { color: var(--gold-light); font-size: 1.6rem; line-height: 1; }
.hero-stats span { align-self: center; color: rgba(255,255,255,.82); font-weight: 800; }

.sparkle, .flower, .petal {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.sparkle {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 18px 8px rgba(245,216,137,.45);
  animation: sparkle 2.6s ease-in-out infinite;
}
.sparkle-one { top: 22%; right: 28%; }
.sparkle-two { bottom: 28%; left: 42%; animation-delay: 1.1s; }
.sparkle-three { top: 62%; right: 16%; animation-delay: .45s; }
.sparkle-four { top: 34%; left: 22%; animation-delay: 1.8s; }
.flower {
  width: 86px;
  height: 86px;
  border: 1px solid rgba(255, 227, 155, .58);
  border-radius: 46% 54% 49% 51%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,227,155,.22), transparent 26%),
    conic-gradient(from 10deg, transparent 0 14%, rgba(247,215,221,.22) 14% 22%, transparent 22% 36%, rgba(255,227,155,.24) 36% 44%, transparent 44% 100%);
  filter: drop-shadow(0 0 18px rgba(255,227,155,.25));
  animation: float 7s ease-in-out infinite;
}
.flower-one { top: 16%; left: 8%; }
.flower-two { right: 10%; top: 40%; animation-delay: 1.4s; }
.petal {
  width: 14px;
  height: 24px;
  border-radius: 60% 10% 60% 10%;
  background: linear-gradient(135deg, rgba(247,215,221,.92), rgba(255,227,155,.72));
  opacity: .8;
  animation: petalDrift 10s linear infinite;
}
.petal-one { left: 18%; top: -30px; }
.petal-two { left: 48%; top: -50px; animation-delay: 2.8s; }
.petal-three { left: 76%; top: -40px; animation-delay: 5.2s; }

.section-pad { padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 76px); }
.section-head { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.section-head.light h2, .section-head.light p:not(.eyebrow) { color: var(--white); }
.strip-grid, .service-grid, .testimonial-grid, .contact-cards, .why-section, .process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.strip-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.media-card, .why-card, .testimonial, .contact-card, .process-card, .service-card, .film-feature {
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.media-card { position: relative; min-height: 285px; }
.media-card img { width: 100%; height: 100%; min-height: 285px; object-fit: cover; transition: transform .45s ease; }
.media-card:hover img, figure:hover img, .detail-card:hover img { transform: scale(1.045); }
.media-card span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border-radius: 6px;
  color: var(--white);
  font-weight: 900;
  background: rgba(33, 10, 39, .78);
  backdrop-filter: blur(10px);
}

.film-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,227,155,.30), transparent 26%),
    radial-gradient(circle at 90% 22%, rgba(247,215,221,.36), transparent 27%),
    linear-gradient(180deg, #fff, #fff3ea);
}
.film-showcase::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(215,164,55,.24);
  border-radius: 8px;
  pointer-events: none;
}
.film-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .78fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}
.film-feature {
  min-height: 520px;
  display: grid;
  grid-template-rows: 1fr auto;
  border: 1px solid rgba(215,164,55,.24);
  background: #120616;
  color: var(--white);
}
.film-feature img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform .55s ease;
}
.film-feature.portrait img {
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,227,155,.18), transparent 40%),
    #18081d;
}
.film-feature:hover img { transform: scale(1.035); }
.film-feature div {
  padding: 22px;
  background: linear-gradient(180deg, rgba(26,6,31,.94), rgba(87,19,95,.98));
  border-top: 1px solid rgba(255,227,155,.25);
}
.film-feature span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .76rem;
}
.film-feature p { color: rgba(255,255,255,.76); margin-bottom: 0; }

.about-split, .video-feature, .contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}
.about-copy p { color: var(--muted); font-size: 1.04rem; }
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 26px; }
.feature-grid span { padding: 13px; background: var(--white); border: 1px solid var(--line); border-radius: 6px; font-weight: 900; color: var(--purple); }
.feature-grid i { color: var(--gold); margin-right: 7px; }
.seo-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(47,191,113,.16), transparent 30%),
    radial-gradient(circle at 86% 28%, rgba(15,111,127,.12), transparent 28%),
    linear-gradient(180deg, #ffffff, #f4fbfb);
}
.seo-panel .section-head p:not(.eyebrow) {
  color: var(--muted);
}
.keyword-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 20px;
  align-items: start;
}
.keyword-box {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,111,127,.14);
  box-shadow: var(--shadow);
}
.keyword-box h3 {
  margin-bottom: 18px;
  color: var(--purple-deep);
}
.keyword-list,
.seo-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.keyword-list span,
.seo-keywords span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--purple-deep);
  border: 1px solid rgba(15,111,127,.18);
  font-size: .92rem;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(6,36,46,.07);
}
.area-list span {
  background: linear-gradient(135deg, rgba(184,247,209,.62), #ffffff);
}
.seo-keywords {
  justify-content: center;
  max-width: 1040px;
  margin: 24px auto 0;
}
.seo-keywords span {
  color: #125e45;
  border-color: rgba(47,191,113,.26);
}
.stacked-photos, .portrait-grid {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 18px;
  align-items: end;
}
.stacked-photos img, .portrait-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}
.stacked-photos img:first-child { height: 410px; }
.stacked-photos img:last-child { height: 520px; }
.portrait-grid img { height: 460px; }

.services-band {
  background:
    radial-gradient(circle at 8% 12%, rgba(255,227,155,.30), transparent 28%),
    radial-gradient(circle at 90% 76%, rgba(247,215,221,.18), transparent 24%),
    linear-gradient(135deg, var(--purple-deep), var(--purple) 52%, var(--maroon));
}
.service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-card {
  padding: 26px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: none;
  transition: transform .25s ease, background .25s ease;
}
.service-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.14); box-shadow: 0 20px 55px rgba(0,0,0,.18); }
.service-card i { color: var(--gold-light); font-size: 1.8rem; margin-bottom: 18px; }
.service-card p { color: rgba(255,255,255,.76); margin-bottom: 0; }

.masonry-gallery, .showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}
figure {
  margin: 0;
  position: relative;
  min-height: 290px;
  border-radius: 8px;
  overflow: hidden;
  background: #211126;
  box-shadow: var(--shadow);
  border: 1px solid rgba(215,164,55,.18);
}
figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
figure.tall { grid-row: span 2; min-height: 610px; }
figure.wide { grid-column: span 2; }
figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  right: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(26, 6, 31, .86), rgba(87, 19, 95, .78));
  color: var(--white);
  font-weight: 900;
  border: 1px solid rgba(255,227,155,.18);
}

.video-feature { background: #fff; }
.video-copy p:not(.eyebrow) { color: var(--muted); }
.video-frame {
  border-radius: 8px;
  padding: 10px;
  background: linear-gradient(135deg, var(--gold), var(--purple));
  box-shadow: var(--shadow);
}
.video-frame video { width: 100%; max-height: 620px; border-radius: 5px; background: #100613; }

.ugc-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 18%, rgba(184,247,209,.22), transparent 25%),
    radial-gradient(circle at 88% 10%, rgba(217,246,255,.30), transparent 28%),
    linear-gradient(135deg, #061f28, #083c45 54%, #0f6f7f);
  color: var(--white);
}
.ugc-section::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(184,247,209,.24);
  border-radius: 8px;
  pointer-events: none;
}
.ugc-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}
.ugc-copy h2 { color: var(--white); }
.ugc-copy p:not(.eyebrow) { color: rgba(255,255,255,.74); }
.ugc-video-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.ugc-card {
  position: relative;
  min-height: 440px;
  border-radius: 8px;
  overflow: hidden;
  background: #041a20;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
  border: 1px solid rgba(184,247,209,.20);
}
.ugc-card:nth-child(2),
.ugc-card:nth-child(4) {
  transform: translateY(24px);
}
.ugc-card video {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}
.ugc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(4,26,32,.88));
}
.ugc-card span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  color: #06242e;
  background: linear-gradient(135deg, var(--gold-light), #ffffff);
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}

.why-section { background: #fff; }
.why-card, .testimonial, .contact-card, .process-card {
  padding: 28px;
  border: 1px solid var(--line);
}
.why-card i, .contact-card i { color: var(--gold); font-size: 2rem; margin-bottom: 18px; }
.why-card p, .testimonial p, .process-card p { color: var(--muted); margin-bottom: 0; }
.counter-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,227,155,.18), transparent 30%),
    var(--purple-deep);
  color: var(--white);
}
.counter { text-align: center; padding: 28px; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; }
.counter strong { display: block; font-size: clamp(2rem, 5vw, 4rem); color: var(--gold-light); line-height: 1; }
.counter span { font-weight: 900; }
.stars { color: var(--gold); letter-spacing: 0; font-size: 1.1rem; }
.contact-cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.contact-card { display: grid; color: var(--purple); min-height: 190px; }
.contact-card strong { overflow-wrap: anywhere; color: var(--ink); }

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--gold-light);
  font-weight: 900;
  margin-bottom: 18px;
}
.media-showcase .showcase-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.detail-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 22px;
  padding: 18px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.detail-card img { height: 330px; width: 100%; object-fit: cover; border-radius: 6px; transition: transform .45s ease; }
.detail-card p { color: var(--muted); }

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #fff4df, #fff, #fde7ec);
}
.contact-info, .booking-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 38px);
}
.contact-info a, .contact-info p {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--purple);
  font-weight: 900;
  margin: 16px 0;
}
.contact-info i { color: var(--gold); margin-top: 4px; }
.booking-form { display: grid; gap: 14px; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(74,23,79,.2);
  border-radius: 6px;
  padding: 14px 15px;
  font: inherit;
  background: #fffdfb;
  color: var(--ink);
}
textarea { min-height: 128px; resize: vertical; }

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr .8fr .9fr 1.25fr;
  gap: 34px;
  padding: 56px clamp(18px, 5vw, 76px);
  background:
    linear-gradient(135deg, rgba(87,19,95,.35), transparent),
    #160719;
  color: rgba(255,255,255,.78);
}
.site-footer h3, .site-footer h4 { color: var(--white); margin: 0 0 14px; }
.site-footer h3 { font-family: "Cinzel", serif; font-size: 1.7rem; }
.site-footer a { display: block; margin: 8px 0; color: rgba(255,255,255,.82); }
.footer-logo {
  width: clamp(130px, 15vw, 190px);
  height: auto;
  margin: -18px 0 12px;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.36));
}
.copyright { padding: 16px; text-align: center; background: #0f0511; color: rgba(255,255,255,.66); }
.float-btn {
  position: fixed;
  bottom: 20px;
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.25rem;
  box-shadow: 0 15px 34px rgba(0,0,0,.24);
}
.call-float { left: 20px; background: var(--purple); }
.whatsapp-float { right: 20px; background: #18a84a; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes sparkle {
  0%,100% { transform: scale(.55) rotate(0deg); opacity: .35; }
  50% { transform: scale(1.55) rotate(45deg); opacity: 1; }
}
@keyframes float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-24px) rotate(14deg); } }
@keyframes petalDrift {
  0% { transform: translate3d(0, -20px, 0) rotate(0deg); opacity: 0; }
  12% { opacity: .85; }
  100% { transform: translate3d(64px, 760px, 0) rotate(250deg); opacity: 0; }
}

@media (max-width: 1100px) {
  .site-header { grid-template-columns: auto auto; }
  .nav-toggle { display: inline-grid; place-items: center; justify-self: end; }
  .site-nav {
    position: fixed;
    top: 74px;
    left: 14px;
    right: 14px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 8px;
    background: #06242e;
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .site-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .site-nav a { padding: 14px; border-bottom: 1px solid rgba(184,247,209,.18); }
  .header-call { display: none; }
  .strip-grid, .service-grid, .masonry-gallery, .showcase-grid, .media-showcase .showcase-grid, .contact-cards, .film-grid, .ugc-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .film-feature.portrait { grid-column: span 2; }
  .about-split, .video-feature, .contact-layout { grid-template-columns: 1fr; }
  .counter-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .site-header { padding: 12px 14px; }
  .brand { min-width: 0; }
  .brand img { width: 82px; height: 50px; }
  .brand span { font-size: 1rem; }
  .brand small { font-size: .66rem; }
  .hero, .page-hero { min-height: 78vh; padding: 92px 18px 58px; }
  .page-hero { min-height: 56vh; }
  h1 { font-size: clamp(2.02rem, 11.4vw, 3rem); }
  h2 { font-size: clamp(1.68rem, 8.8vw, 2.32rem); }
  .hero-content p:not(.eyebrow) { font-size: .98rem; }
  .hero-actions { gap: 10px; margin-top: 22px; }
  .hero-stats { position: relative; right: auto; bottom: auto; margin-top: 30px; width: 100%; }
  .section-pad { padding: 52px 16px; }
  .strip-grid, .service-grid, .masonry-gallery, .showcase-grid, .media-showcase .showcase-grid, .contact-cards, .why-section, .process-grid, .testimonial-grid, .counter-band, .film-grid, .ugc-video-grid { grid-template-columns: 1fr; }
  .film-showcase::before { inset: 14px; }
  .keyword-columns { grid-template-columns: 1fr; }
  .keyword-box { padding: 20px; }
  .keyword-list, .seo-keywords { gap: 8px; }
  .keyword-list span, .seo-keywords span { width: 100%; justify-content: center; text-align: center; border-radius: 6px; }
  .film-feature, .film-feature.portrait { grid-column: auto; min-height: 0; }
  .film-feature img, .film-feature.portrait img { min-height: 290px; height: 330px; object-fit: contain; background: #18081d; }
  .ugc-section::before { inset: 12px; }
  .ugc-card, .ugc-card video { min-height: 420px; }
  .ugc-card:nth-child(2), .ugc-card:nth-child(4) { transform: none; }
  figure, figure.tall, figure.wide { grid-column: auto; grid-row: auto; min-height: 360px; }
  .masonry-gallery figure img, .showcase-grid figure img { object-fit: contain; background: #211126; }
  .detail-card { grid-template-columns: 1fr; }
  .detail-card img { height: 300px; object-fit: contain; background: #f1ebe8; }
  .feature-grid, .stacked-photos, .portrait-grid { grid-template-columns: 1fr; }
  .stacked-photos img:first-child, .stacked-photos img:last-child, .portrait-grid img { height: auto; max-height: 620px; object-fit: contain; background: #f1ebe8; }
  .cta-panel { display: grid; }
  .site-footer { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .float-btn { width: 48px; height: 48px; bottom: 14px; }
}
