:root {
  --color-bg: #fff8ed;
  --color-bg-soft: #fffdf8;
  --color-surface: #ffffff;
  --color-surface-warm: #fff4df;
  --color-ink: #15110d;
  --color-muted: #5f554b;
  --color-soft-text: #776a5c;
  --color-line: rgba(29, 22, 15, 0.12);
  --color-gold: #d49324;
  --color-orange: #f26a2e;
  --color-amber: #ffbe57;
  --color-teal: #286d66;
  --color-night: #201813;
  --shadow-soft: 0 24px 76px rgba(62, 41, 21, 0.15);
  --shadow-card: 0 18px 50px rgba(48, 31, 14, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-pill: 999px;
  --container: 1180px;
  --section-space: clamp(4.5rem, 8vw, 8rem);
  --gutter: clamp(1rem, 4vw, 2rem);
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--color-ink);
  background:
    linear-gradient(180deg, rgba(255, 244, 223, 0.88), rgba(255, 248, 237, 0) 560px),
    repeating-linear-gradient(90deg, rgba(32, 24, 19, 0.025) 0 1px, transparent 1px 86px),
    var(--color-bg);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

.inline-link {
  color: var(--color-ink);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(242, 106, 46, 0.38);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.2em;
  transition:
    color var(--transition),
    text-decoration-color var(--transition);
}

.inline-link:hover,
.inline-link:focus-visible {
  color: #9f4b12;
  text-decoration-color: rgba(242, 106, 46, 0.82);
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(242, 106, 46, 0.55);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  inset: 1rem auto auto 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  color: var(--color-surface);
  background: var(--color-night);
  border-radius: var(--radius-pill);
  transform: translateY(-160%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.narrow-container {
  --container: 860px;
}

.section {
  padding-block: var(--section-space);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(255, 248, 237, 0.78);
  backdrop-filter: blur(18px);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background-color var(--transition);
}

.site-header.is-scrolled {
  border-color: var(--color-line);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 8px 36px rgba(44, 28, 12, 0.08);
}

.header-inner {
  width: min(100% - (var(--gutter) * 2), var(--container));
  min-height: 78px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, var(--color-orange), var(--color-gold));
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(242, 106, 46, 0.22);
  font-size: 0.78rem;
}

.brand-text {
  font-size: 1rem;
  white-space: nowrap;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem;
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill);
}

.site-nav a {
  padding: 0.58rem 0.88rem;
  border-radius: var(--radius-pill);
  font-size: 0.94rem;
  font-weight: 700;
  transition:
    color var(--transition),
    background-color var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-ink);
  background: #ffffff;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background-color var(--transition);
}

.header-cta {
  padding: 0.82rem 1.15rem;
  color: var(--color-night);
  background: linear-gradient(135deg, var(--color-orange), var(--color-gold));
  box-shadow: 0 16px 34px rgba(242, 106, 46, 0.28);
  font-size: 0.92rem;
  font-weight: 900;
}

.button {
  min-height: 54px;
  padding: 1rem 1.45rem;
}

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

.button-primary {
  color: var(--color-night);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 35%),
    linear-gradient(135deg, var(--color-orange), var(--color-gold));
  box-shadow: 0 20px 44px rgba(242, 106, 46, 0.3);
}

.button-secondary {
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 25, 18, 0.16);
  box-shadow: 0 14px 32px rgba(48, 34, 18, 0.08);
}

.button-secondary:hover {
  border-color: rgba(242, 106, 46, 0.42);
  box-shadow: 0 18px 36px rgba(48, 34, 18, 0.12);
}

.nav-mobile-cta {
  display: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  color: var(--color-ink);
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  border-radius: 10px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

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

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

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

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  padding-block: clamp(3.75rem, 7vw, 7.25rem) clamp(4.5rem, 8vw, 7.5rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 154, 43, 0.36), transparent);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(118deg, transparent 0 52%, rgba(255, 190, 87, 0.11) 52% 61%, transparent 61%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.45), transparent 38%, rgba(255, 255, 255, 0.28));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 1.02fr);
  align-items: center;
  gap: clamp(2.75rem, 5vw, 5rem);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.15rem;
  padding: 0.5rem 0.78rem;
  color: #744112;
  background: rgba(255, 190, 87, 0.18);
  border: 1px solid rgba(217, 154, 43, 0.22);
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.35;
}

.eyebrow::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  background: var(--color-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(242, 106, 46, 0.14);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-ink);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  font-size: 5.7rem;
  line-height: 0.98;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.page-hero h1 {
  max-width: 100%;
  font-size: clamp(3.35rem, 5.1vw, 4.55rem);
  overflow-wrap: anywhere;
  hyphens: auto;
}

h2 {
  max-width: 810px;
  font-size: 4.2rem;
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0;
}

.hero-text,
.section-heading p,
.section-copy p,
.batch-panel p,
.final-cta-panel p {
  color: var(--color-muted);
  font-size: 1.18rem;
}

.hero-text {
  max-width: 720px;
  margin-top: 1.35rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.15rem;
}

.cta-note {
  max-width: 620px;
  margin-top: 0.9rem;
  color: var(--color-soft-text);
  font-size: 0.92rem;
  font-weight: 720;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.45rem;
}

.hero-meta a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0.48rem 0.72rem 0.48rem 1.65rem;
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(31, 25, 18, 0.1);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 28px rgba(48, 31, 14, 0.06);
  font-size: 0.86rem;
  font-weight: 820;
  cursor: pointer;
  transition:
    color var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.hero-meta a::before {
  content: "";
  position: absolute;
  left: 0.72rem;
  top: 50%;
  width: 0.46rem;
  height: 0.46rem;
  background: linear-gradient(135deg, var(--color-orange), var(--color-gold));
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-meta a:hover,
.hero-meta a:focus-visible {
  color: var(--color-ink);
  background: #ffffff;
  border-color: rgba(242, 106, 46, 0.35);
  box-shadow: 0 14px 34px rgba(48, 31, 14, 0.1);
  transform: translateY(-2px);
}

.hero-visual {
  min-width: 0;
}

.hero-stage {
  position: relative;
  min-height: clamp(470px, 52vw, 650px);
  isolation: isolate;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 6% 6% 7% 0;
  z-index: -1;
  background:
    linear-gradient(122deg, rgba(44, 119, 112, 0.14), transparent 33%),
    linear-gradient(135deg, rgba(242, 106, 46, 0.12), rgba(217, 154, 43, 0.24));
  border-radius: 46px;
  transform: rotate(-2deg);
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 19% 9% 25% 4%;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 190, 87, 0.24), rgba(255, 255, 255, 0.06) 54%, transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent);
  clip-path: polygon(0 20%, 100% 0, 100% 74%, 0 100%);
}

.light-stand {
  position: absolute;
  top: 3%;
  left: 5%;
  z-index: 2;
  width: 118px;
  height: 210px;
  pointer-events: none;
}

.light-stand::before {
  content: "";
  position: absolute;
  left: 44px;
  top: 56px;
  width: 4px;
  height: 140px;
  background: rgba(32, 24, 19, 0.72);
  border-radius: var(--radius-pill);
}

.light-stand::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 184px;
  width: 44px;
  height: 3px;
  background: rgba(32, 24, 19, 0.62);
  border-radius: var(--radius-pill);
  box-shadow:
    -26px 24px 0 rgba(32, 24, 19, 0.36),
    28px 24px 0 rgba(32, 24, 19, 0.36);
}

.light-stand span {
  position: absolute;
  left: 0;
  top: 0;
  width: 96px;
  height: 72px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent 38%),
    linear-gradient(135deg, #2b211a, #4a3526);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 22px;
  box-shadow: 0 20px 44px rgba(32, 24, 19, 0.18);
}

.camera-frame {
  position: absolute;
  inset: 9% 12% 20% 6%;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 244, 223, 0.9)),
    linear-gradient(135deg, rgba(32, 24, 19, 0.09), rgba(217, 154, 43, 0.1));
  border: 1px solid rgba(29, 22, 15, 0.15);
  border-radius: 36px;
  box-shadow:
    0 32px 90px rgba(45, 29, 13, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.camera-frame::before {
  content: "";
  position: absolute;
  inset: 13% 11%;
  border: 1px solid rgba(32, 24, 19, 0.15);
  border-radius: 26px;
}

.camera-frame::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 10%;
  width: 30%;
  height: 15%;
  background:
    linear-gradient(90deg, rgba(217, 154, 43, 0.28) 0 18%, transparent 18% 28%, rgba(44, 119, 112, 0.28) 28% 54%, transparent 54% 64%, rgba(242, 106, 46, 0.28) 64% 100%),
    rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(32, 24, 19, 0.08);
  border-radius: 16px;
}

.rec-indicator {
  position: absolute;
  top: 1.35rem;
  left: 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.36rem 0.58rem;
  color: #ffffff;
  background: rgba(34, 26, 20, 0.86);
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 900;
}

.frame-label {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  padding: 0.36rem 0.58rem;
  color: rgba(32, 24, 19, 0.75);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(32, 24, 19, 0.1);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 900;
}

.rec-indicator span {
  width: 0.48rem;
  height: 0.48rem;
  background: #ff4c2b;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 76, 43, 0.18);
}

.lens-mark {
  position: absolute;
  left: 50%;
  top: 47%;
  width: min(168px, 34%);
  aspect-ratio: 1;
  border: 1px solid rgba(32, 24, 19, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle at 44% 44%, rgba(255, 255, 255, 0.72) 0 10%, rgba(255, 190, 87, 0.25) 11% 21%, rgba(32, 24, 19, 0.1) 22% 36%, transparent 37%),
    radial-gradient(circle, transparent 0 62%, rgba(32, 24, 19, 0.08) 63% 64%, transparent 65%);
  transform: translate(-50%, -50%);
}

.focus-corner {
  position: absolute;
  width: 42px;
  height: 42px;
  border-color: rgba(34, 26, 20, 0.36);
}

.corner-a {
  top: 20%;
  left: 12%;
  border-top: 2px solid;
  border-left: 2px solid;
}

.corner-b {
  top: 20%;
  right: 12%;
  border-top: 2px solid;
  border-right: 2px solid;
}

.corner-c {
  right: 12%;
  bottom: 20%;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.corner-d {
  bottom: 20%;
  left: 12%;
  border-bottom: 2px solid;
  border-left: 2px solid;
}

.frame-grid {
  position: absolute;
  inset: 27% 16%;
  background:
    linear-gradient(rgba(34, 26, 20, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 26, 20, 0.09) 1px, transparent 1px);
  background-size: 33.33% 50%;
  border-radius: 22px;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.frame-copy {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.22rem;
  text-align: center;
}

.frame-copy span {
  display: block;
  color: rgba(32, 24, 19, 0.88);
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 0.98;
}

.phone-card {
  position: absolute;
  top: 21%;
  right: 1%;
  width: clamp(132px, 15vw, 176px);
  aspect-ratio: 9 / 16;
  padding: 0.75rem;
  background: var(--color-night);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px;
  box-shadow: 0 30px 76px rgba(34, 26, 20, 0.25);
}

.phone-notch {
  position: absolute;
  top: 0.55rem;
  left: 50%;
  width: 42%;
  height: 0.4rem;
  background: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.55rem;
  padding: 1rem;
  color: #ffffff;
  background:
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(255, 255, 255, 0.08) 18px 19px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(155deg, rgba(44, 119, 112, 0.55), rgba(242, 106, 46, 0.72));
  border-radius: 20px;
}

.phone-label {
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.05;
}

.phone-line {
  display: block;
  width: 100%;
  height: 0.45rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-pill);
}

.phone-line.short {
  width: 62%;
}

.production-card {
  position: absolute;
  right: 4%;
  bottom: 2%;
  width: min(240px, 42%);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(31, 25, 18, 0.12);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
}

.timeline-card {
  position: absolute;
  left: 4%;
  bottom: 8%;
  width: min(300px, 56%);
  padding: 1rem;
  background: rgba(32, 24, 19, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(32, 24, 19, 0.2);
}

.timeline-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
}

.timeline-head strong {
  color: #ffffff;
}

.timeline-track {
  display: flex;
  gap: 0.38rem;
  height: 0.58rem;
  margin-top: 0.42rem;
}

.timeline-track span {
  display: block;
  border-radius: var(--radius-pill);
}

.track-one span:first-child {
  width: 34%;
  background: var(--color-orange);
}

.track-one span:last-child {
  width: 48%;
  background: rgba(255, 190, 87, 0.9);
}

.track-two span:nth-child(1) {
  width: 22%;
  background: rgba(44, 119, 112, 0.95);
}

.track-two span:nth-child(2) {
  width: 31%;
  background: rgba(255, 255, 255, 0.42);
}

.track-two span:nth-child(3) {
  width: 28%;
  background: rgba(242, 106, 46, 0.72);
}

.track-three span {
  width: 72%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.32), rgba(255, 190, 87, 0.84));
}

.small-label {
  display: block;
  color: var(--color-soft-text);
  font-size: 0.78rem;
  font-weight: 800;
}

.production-card strong {
  display: block;
  margin-top: 0.14rem;
  font-size: 1rem;
}

.progress-track {
  height: 0.58rem;
  margin-top: 0.9rem;
  overflow: hidden;
  background: rgba(31, 25, 18, 0.1);
  border-radius: var(--radius-pill);
}

.progress-track span {
  display: block;
  width: 76%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-teal), var(--color-gold), var(--color-orange));
  border-radius: inherit;
}

.trust-band {
  padding-block: 1.25rem;
  background: rgba(255, 255, 255, 0.45);
  border-block: 1px solid var(--color-line);
}

.batch-cta {
  padding-block: clamp(1.25rem, 3vw, 2.25rem) 0;
}

.batch-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 244, 223, 0.82)),
    linear-gradient(90deg, rgba(242, 106, 46, 0.09), rgba(44, 119, 112, 0.08));
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.batch-panel .eyebrow {
  margin-bottom: 0.8rem;
}

.batch-panel h2 {
  max-width: 540px;
  font-size: 2.55rem;
  line-height: 1.05;
}

.batch-panel p:not(.eyebrow) {
  max-width: 520px;
  font-size: 1rem;
}

.trust-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 1.25rem;
}

.trust-inner p {
  color: var(--color-muted);
  font-size: 0.96rem;
  font-weight: 750;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.trust-badges a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0.5rem 0.72rem;
  color: var(--color-ink);
  background: var(--color-surface);
  border: 1px solid rgba(31, 25, 18, 0.1);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(54, 37, 20, 0.06);
  font-size: 0.84rem;
  font-weight: 800;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.trust-badges a:hover,
.trust-badges a:focus-visible {
  background: #fff7ea;
  border-color: rgba(242, 106, 46, 0.36);
  box-shadow: 0 12px 30px rgba(54, 37, 20, 0.1);
  transform: translateY(-2px);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 116px;
}

.section-copy h2,
.section-heading h2,
.final-cta-panel h2 {
  margin-bottom: 1.1rem;
}

.section-copy p:not(.eyebrow),
.section-heading p {
  max-width: 710px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card,
.offer-card,
.feature-card,
.process-step,
.testimonial-card,
.faq-item {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
}

.stat-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.1rem, 2vw, 1.45rem);
  border-radius: var(--radius-md);
}

.stat-card strong {
  color: var(--color-orange);
  font-size: 4.1rem;
  line-height: 0.95;
}

.stat-card p {
  color: var(--color-muted);
  font-weight: 750;
}

.offer {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
    var(--color-bg-soft);
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1rem 1.1rem 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 40px rgba(48, 31, 14, 0.08);
}

.section-cta p {
  color: var(--color-muted);
  font-weight: 820;
}

.offer-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.15rem, 2vw, 1.45rem);
  border-radius: var(--radius-lg);
}

.offer-card h3 {
  margin-top: auto;
  margin-bottom: 0.85rem;
}

.offer-card p,
.feature-card p,
.process-step p,
.testimonial-card blockquote,
.faq-answer p {
  color: var(--color-muted);
}

.offer-visual {
  position: relative;
  min-height: 220px;
  margin-bottom: 2rem;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 244, 223, 0.8), rgba(255, 255, 255, 0.7)),
    linear-gradient(135deg, rgba(242, 106, 46, 0.08), rgba(44, 119, 112, 0.1));
  border: 1px solid rgba(31, 25, 18, 0.09);
  border-radius: 24px;
}

.visual-clips span,
.visual-film span,
.visual-live span {
  position: absolute;
  display: block;
}

.visual-clips span:nth-child(1) {
  left: 50%;
  top: 18%;
  width: 28%;
  aspect-ratio: 9 / 16;
  background: var(--color-night);
  border-radius: 18px;
  transform: translateX(-50%);
}

.visual-clips span:nth-child(2) {
  left: 17%;
  top: 29%;
  width: 28%;
  aspect-ratio: 9 / 16;
  background: rgba(44, 119, 112, 0.88);
  border-radius: 18px;
  transform: rotate(-8deg);
}

.visual-clips span:nth-child(3) {
  right: 17%;
  top: 29%;
  width: 28%;
  aspect-ratio: 9 / 16;
  background: linear-gradient(145deg, var(--color-gold), var(--color-orange));
  border-radius: 18px;
  transform: rotate(8deg);
}

.visual-film span:nth-child(1) {
  inset: 23% 12%;
  background: rgba(34, 26, 20, 0.86);
  border-radius: 20px;
}

.visual-film span:nth-child(2) {
  left: 18%;
  right: 18%;
  top: 48%;
  height: 2px;
  background: rgba(255, 255, 255, 0.55);
}

.visual-film span:nth-child(3) {
  left: 24%;
  bottom: 24%;
  width: 52%;
  height: 16px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 190, 87, 0.95) 0 18px,
      rgba(255, 255, 255, 0.55) 18px 25px
    );
  border-radius: var(--radius-pill);
}

.visual-live span:nth-child(1),
.visual-live span:nth-child(2) {
  top: 23%;
  width: 32%;
  aspect-ratio: 1;
  background: rgba(34, 26, 20, 0.86);
  border-radius: 18px;
}

.visual-live span:nth-child(1) {
  left: 17%;
}

.visual-live span:nth-child(2) {
  right: 17%;
  background: rgba(44, 119, 112, 0.92);
}

.visual-live span:nth-child(3) {
  left: 15%;
  right: 15%;
  bottom: 22%;
  height: 54px;
  background:
    linear-gradient(90deg, rgba(242, 106, 46, 0.95) 0 24%, transparent 24% 28%, rgba(217, 154, 43, 0.95) 28% 62%, transparent 62% 68%, rgba(44, 119, 112, 0.95) 68% 100%);
  border-radius: 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  min-height: 330px;
  padding: clamp(1.1rem, 2vw, 1.45rem);
  border-radius: var(--radius-md);
}

.feature-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #ffffff;
  background: var(--color-night);
  border-radius: 15px;
  font-size: 0.86rem;
  font-weight: 900;
}

.feature-card h3 {
  margin-bottom: 0.8rem;
}

.process {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.54) 48%, rgba(255, 255, 255, 0));
}

.process-list {
  display: grid;
  gap: 1rem;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.25rem);
  border-radius: var(--radius-md);
}

.step-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-orange), var(--color-gold));
  border-radius: 16px;
  font-weight: 900;
}

.step-tag {
  display: inline-flex;
  margin-bottom: 0.5rem;
  padding: 0.28rem 0.54rem;
  color: #7c480f;
  background: rgba(255, 190, 87, 0.18);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 850;
}

.process-step h3 {
  margin-bottom: 0.4rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  margin: 0;
  padding: clamp(1.2rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
}

.testimonial-card::before {
  content: "“";
  display: block;
  height: 42px;
  color: var(--color-orange);
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.9;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 1.03rem;
}

.testimonial-card figcaption {
  margin-top: 1.4rem;
  color: var(--color-ink);
  font-weight: 850;
}

.faq {
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
  border-radius: 18px;
}

.faq-item h3 {
  font-size: 1rem;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  color: var(--color-ink);
  background: transparent;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(31, 25, 18, 0.18);
  border-radius: 50%;
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 10px;
  height: 2px;
  background: var(--color-orange);
  border-radius: var(--radius-pill);
  transform: translate(-50%, -50%);
}

.faq-question span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 1.2rem 1.15rem;
}

.final-cta {
  padding-top: 0;
}

.final-cta-panel {
  overflow: hidden;
  position: relative;
  padding: clamp(2rem, 6vw, 4.5rem);
  background:
    linear-gradient(135deg, rgba(255, 244, 223, 0.92), rgba(255, 255, 255, 0.88)),
    linear-gradient(120deg, rgba(242, 106, 46, 0.15), rgba(44, 119, 112, 0.13));
  border: 1px solid var(--color-line);
  border-radius: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow-soft);
}

.final-cta-panel::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: 12%;
  width: min(260px, 26vw);
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(90deg, rgba(34, 26, 20, 0.76) 0 8px, transparent 8px calc(100% - 8px), rgba(34, 26, 20, 0.76) calc(100% - 8px)),
    linear-gradient(180deg, rgba(34, 26, 20, 0.76) 0 8px, transparent 8px calc(100% - 8px), rgba(34, 26, 20, 0.76) calc(100% - 8px)),
    rgba(255, 255, 255, 0.35);
  border-radius: 22px;
  opacity: 0.45;
  pointer-events: none;
}

.final-cta-panel p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 1.8rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(3.75rem, 7vw, 7rem);
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

.page-grid > * {
  min-width: 0;
}

.breadcrumb-link {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(242, 106, 46, 0.35);
  text-underline-offset: 0.22rem;
}

.breadcrumb-link:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--color-orange);
}

.subpage-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  padding: 0.58rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-pill);
  box-shadow:
    0 18px 55px rgba(30, 35, 40, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  backdrop-filter: blur(22px) saturate(130%);
}

.subpage-nav__back,
.subpage-nav__current {
  display: inline-flex;
  min-width: 0;
  min-height: 2.25rem;
  align-items: center;
  border-radius: var(--radius-pill);
  line-height: 1.1;
  white-space: nowrap;
}

.subpage-nav__back {
  gap: 0.38rem;
  padding: 0.5rem 0.8rem;
  color: var(--color-brand-blue);
  font-size: 0.92rem;
  font-weight: 780;
  text-decoration: none;
  transition:
    color var(--transition),
    background-color var(--transition),
    transform var(--transition);
}

.subpage-nav__back:hover,
.subpage-nav__back:focus-visible {
  color: var(--color-brand-blue-dark);
  background: rgba(6, 72, 90, 0.08);
  transform: translateY(-1px);
}

.subpage-nav__back:focus-visible {
  outline: 3px solid rgba(6, 72, 90, 0.28);
  outline-offset: 3px;
}

.subpage-nav__back-icon {
  font-size: 1.05em;
  line-height: 1;
}

.subpage-nav__current {
  padding: 0.55rem 0.95rem;
  color: var(--color-brand-blue);
  background: rgba(243, 162, 148, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  font-weight: 860;
}

.page-visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 244, 223, 0.88)),
    linear-gradient(135deg, rgba(242, 106, 46, 0.11), rgba(40, 109, 102, 0.1));
  border: 1px solid var(--color-line);
  border-radius: 38px;
  box-shadow: var(--shadow-soft);
}

.page-visual::before {
  content: "";
  position: absolute;
  inset: 12% 10%;
  border: 1px solid rgba(32, 24, 19, 0.13);
  border-radius: 28px;
}

.page-visual span {
  position: absolute;
  display: block;
  border-radius: 18px;
}

.page-visual-clips span:nth-child(1),
.service-visual-clips::before {
  width: 30%;
  aspect-ratio: 9 / 16;
  background: var(--color-night);
}

.page-visual-clips span:nth-child(1) {
  left: 36%;
  top: 18%;
}

.page-visual-clips span:nth-child(2) {
  left: 17%;
  top: 30%;
  width: 26%;
  aspect-ratio: 9 / 16;
  background: rgba(40, 109, 102, 0.9);
  transform: rotate(-7deg);
}

.page-visual-clips span:nth-child(3) {
  right: 17%;
  top: 30%;
  width: 26%;
  aspect-ratio: 9 / 16;
  background: linear-gradient(145deg, var(--color-gold), var(--color-orange));
  transform: rotate(7deg);
}

.page-visual-clips span:nth-child(4) {
  left: 20%;
  right: 20%;
  bottom: 17%;
  height: 18px;
  background: repeating-linear-gradient(90deg, var(--color-orange) 0 30px, rgba(32, 24, 19, 0.16) 30px 42px);
  border-radius: var(--radius-pill);
}

.page-visual-wedding span:nth-child(1),
.service-visual-wedding::before {
  width: 58%;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 38%),
    linear-gradient(145deg, #4a3526, #201813);
}

.page-visual-wedding span:nth-child(1) {
  left: 20%;
  top: 20%;
}

.page-visual-wedding span:nth-child(2),
.page-visual-wedding span:nth-child(3) {
  bottom: 18%;
  width: 24%;
  aspect-ratio: 1;
  background: rgba(255, 190, 87, 0.34);
  border-radius: 50%;
}

.page-visual-wedding span:nth-child(2) {
  left: 22%;
}

.page-visual-wedding span:nth-child(3) {
  right: 22%;
  background: rgba(242, 106, 46, 0.22);
}

.page-visual-wedding span:nth-child(4) {
  left: 28%;
  right: 28%;
  bottom: 29%;
  height: 2px;
  background: rgba(32, 24, 19, 0.28);
}

.page-visual-event span:nth-child(1),
.service-visual-event::before {
  width: 62%;
  height: 38%;
  background: rgba(32, 24, 19, 0.9);
}

.page-visual-event span:nth-child(1) {
  left: 19%;
  top: 20%;
}

.page-visual-event span:nth-child(2) {
  left: 17%;
  right: 17%;
  bottom: 20%;
  height: 56px;
  background:
    linear-gradient(90deg, var(--color-orange) 0 22%, transparent 22% 28%, var(--color-gold) 28% 58%, transparent 58% 64%, var(--color-teal) 64% 100%);
}

.page-visual-event span:nth-child(3),
.page-visual-event span:nth-child(4) {
  top: 28%;
  width: 10%;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.62);
  border-radius: 50%;
}

.page-visual-event span:nth-child(3) {
  left: 26%;
}

.page-visual-event span:nth-child(4) {
  right: 26%;
}

.page-visual-image span:nth-child(1),
.service-visual-image::before {
  width: 60%;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0 8px, transparent 8px calc(100% - 8px), rgba(255, 255, 255, 0.2) calc(100% - 8px)),
    rgba(32, 24, 19, 0.9);
}

.page-visual-image span:nth-child(1) {
  left: 20%;
  top: 18%;
}

.page-visual-image span:nth-child(2) {
  left: 18%;
  bottom: 22%;
  width: 28%;
  height: 72px;
  background: rgba(40, 109, 102, 0.84);
}

.page-visual-image span:nth-child(3) {
  right: 18%;
  bottom: 22%;
  width: 28%;
  height: 72px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-orange));
}

.page-visual-image span:nth-child(4) {
  left: 31%;
  right: 31%;
  top: 36%;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
}

.page-visual-live span:nth-child(1),
.service-visual-live::before {
  left: 17%;
  top: 22%;
  width: 26%;
  aspect-ratio: 1;
  background: rgba(32, 24, 19, 0.9);
}

.page-visual-live span:nth-child(2) {
  right: 17%;
  top: 22%;
  width: 26%;
  aspect-ratio: 1;
  background: rgba(40, 109, 102, 0.9);
}

.page-visual-live span:nth-child(3) {
  left: 26%;
  right: 26%;
  bottom: 22%;
  height: 70px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.38) 0 8px, transparent 8px 18px),
    linear-gradient(135deg, var(--color-orange), var(--color-gold));
}

.page-visual-live span:nth-child(4) {
  left: 50%;
  top: 32%;
  width: 2px;
  height: 36%;
  background: rgba(32, 24, 19, 0.24);
}

.page-visual-workshop span:nth-child(1),
.service-visual-workshop::before {
  width: 42%;
  aspect-ratio: 9 / 16;
  background: var(--color-night);
}

.page-visual-workshop span:nth-child(1) {
  left: 29%;
  top: 15%;
}

.page-visual-workshop span:nth-child(2) {
  left: 16%;
  bottom: 21%;
  width: 68%;
  height: 74px;
  background:
    linear-gradient(90deg, var(--color-teal) 0 28%, transparent 28% 34%, var(--color-gold) 34% 66%, transparent 66% 72%, var(--color-orange) 72% 100%);
}

.page-visual-workshop span:nth-child(3) {
  right: 18%;
  top: 20%;
  width: 16%;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.64);
  border-radius: 50%;
}

.page-visual-workshop span:nth-child(4) {
  left: 25%;
  right: 25%;
  top: 44%;
  height: 8px;
  background: rgba(255, 255, 255, 0.46);
  border-radius: var(--radius-pill);
}

.format-card {
  position: absolute;
  left: 4%;
  bottom: 28%;
  z-index: 3;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-line);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.format-card span {
  display: block;
  color: var(--color-soft-text);
  font-size: 0.78rem;
  font-weight: 850;
}

.format-card strong {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.95rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.service-card,
.value-card,
.solution-card,
.proof-card,
.project-card,
.condition-card,
.deliverable-grid article {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
}

.service-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 1.15rem;
  color: inherit;
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background-color var(--transition);
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(242, 106, 46, 0.38);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 62px rgba(48, 31, 14, 0.16);
  transform: translateY(-4px);
}

.service-visual {
  position: relative;
  min-height: 170px;
  margin-bottom: 1.4rem;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 244, 223, 0.86), rgba(255, 255, 255, 0.75)),
    linear-gradient(135deg, rgba(242, 106, 46, 0.08), rgba(40, 109, 102, 0.09));
  border: 1px solid rgba(29, 22, 15, 0.09);
  border-radius: 24px;
}

.service-visual::before,
.service-visual::after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 18px;
}

.service-visual::before {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.service-visual::after {
  left: 18%;
  right: 18%;
  bottom: 18%;
  height: 12px;
  background: repeating-linear-gradient(90deg, var(--color-orange) 0 20px, rgba(32, 24, 19, 0.12) 20px 30px);
  border-radius: var(--radius-pill);
}

.service-visual-wedding::after {
  background: linear-gradient(90deg, rgba(255, 190, 87, 0.9), rgba(242, 106, 46, 0.42));
}

.service-visual-workshop::after,
.service-visual-live::after,
.service-visual-event::after,
.service-visual-image::after {
  background: linear-gradient(90deg, var(--color-teal), var(--color-gold), var(--color-orange));
}

.service-visual-live::before {
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
}

.service-kicker {
  margin-bottom: 0.5rem;
  color: #7a4514;
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p:not(.service-kicker) {
  color: var(--color-muted);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 1.2rem;
  color: var(--color-ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(242, 106, 46, 0.35);
  text-underline-offset: 0.25rem;
}

.service-card:hover .text-link,
.service-card:focus-visible .text-link {
  color: #9f4b12;
  text-decoration-color: rgba(242, 106, 46, 0.82);
}

.value-grid,
.proof-grid,
.project-grid,
.condition-grid,
.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.value-card,
.proof-card,
.project-card,
.condition-card,
.deliverable-grid article,
.solution-card {
  padding: clamp(1.15rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
}

.value-card span,
.proof-card span,
.condition-card span {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  padding-inline: 0.7rem;
  color: var(--color-night);
  background: linear-gradient(135deg, var(--color-orange), var(--color-gold));
  border-radius: 14px;
  font-size: 0.78rem;
  font-weight: 950;
}

.value-card h3,
.proof-card h3,
.project-card h3,
.condition-card h3,
.deliverable-grid h3,
.solution-card h3 {
  margin-bottom: 0.75rem;
}

.value-card p,
.proof-card p,
.project-card p,
.condition-card p,
.deliverable-grid p,
.solution-card p {
  color: var(--color-muted);
}

.solution-card {
  align-self: stretch;
}

.support-section__intro {
  max-width: 920px;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.4rem, 3vw, 2.25rem);
  background: var(--color-glass-strong);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: var(--color-brand-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-section__intro h2 {
  max-width: 820px;
  margin-bottom: 1rem;
}

.support-section__intro p {
  max-width: 820px;
  color: var(--color-text-soft);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
}

.support-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.45rem);
  align-items: stretch;
}

.support-card {
  padding: clamp(1.2rem, 2.4vw, 1.85rem);
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
}

.support-card__number {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--color-brand-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  opacity: 0.78;
}

.support-card h3 {
  margin-bottom: 0.75rem;
}

.support-card p {
  color: var(--color-muted);
}

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

.proof-card {
  min-height: 260px;
}

.project-showcase {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0)),
    var(--color-bg-soft);
}

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

.featured-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.featured-video-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.featured-video-card__content {
  display: flex;
  flex-direction: column;
  padding: clamp(1.05rem, 2vw, 1.35rem);
}

.featured-video-card__content h3 {
  margin-bottom: 0.65rem;
}

.featured-video-card__content p {
  color: var(--color-muted);
}

.featured-video-card__content .text-link {
  margin-top: auto;
}

.project-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 1.35rem;
  color: inherit;
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background-color var(--transition);
}

.project-card::before {
  content: "";
  display: block;
  height: 88px;
  margin: -1.35rem -1.35rem 1.2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 42%),
    linear-gradient(120deg, rgba(32, 24, 19, 0.92), rgba(40, 109, 102, 0.74) 42%, rgba(242, 106, 46, 0.62));
  border-bottom: 1px solid rgba(29, 22, 15, 0.12);
}

.project-card:nth-child(3n + 2)::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 42%),
    linear-gradient(120deg, rgba(32, 24, 19, 0.92), rgba(212, 147, 36, 0.74) 48%, rgba(255, 244, 223, 0.72));
}

.project-card:nth-child(3n)::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 42%),
    linear-gradient(120deg, rgba(32, 24, 19, 0.92), rgba(242, 106, 46, 0.7) 46%, rgba(255, 190, 87, 0.7));
}

.project-card:hover,
.project-card:focus-visible {
  border-color: rgba(242, 106, 46, 0.38);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 62px rgba(48, 31, 14, 0.16);
  transform: translateY(-4px);
}

.project-card:hover .text-link,
.project-card:focus-visible .text-link {
  color: #9f4b12;
  text-decoration-color: rgba(242, 106, 46, 0.82);
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  margin-top: auto;
  padding-top: 1.2rem;
}

.project-actions .text-link {
  margin-top: 0;
  padding-top: 0;
}

.project-list-grid .project-card {
  min-height: 250px;
}

.project-kicker {
  width: fit-content;
  margin-bottom: 0.85rem;
  padding: 0.34rem 0.6rem;
  color: #7a4514;
  background: rgba(255, 190, 87, 0.18);
  border: 1px solid rgba(217, 154, 43, 0.24);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 900;
}

.conditions {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.48) 52%, rgba(255, 255, 255, 0));
}

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

.condition-card {
  min-height: 310px;
}

.portfolio-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)),
    var(--color-bg-soft);
}

.trust-line {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 34px rgba(48, 31, 14, 0.08);
  font-weight: 760;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.portfolio-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-night);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.portfolio-thumb {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 35%),
    linear-gradient(145deg, rgba(32, 24, 19, 0.92), rgba(74, 53, 38, 0.9));
}

.portfolio-thumb::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
}

.portfolio-thumb::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 12%;
  height: 16px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.66) 0 34px, transparent 34px 48px);
  border-radius: var(--radius-pill);
}

.thumb-gold {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 36%),
    linear-gradient(145deg, #241a12, #93601f 56%, #f26a2e);
}

.thumb-green {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 36%),
    linear-gradient(145deg, #201813, #286d66 58%, #d49324);
}

.thumb-warm {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 36%),
    linear-gradient(145deg, #2b211a, #7b4a24 54%, #ffbe57);
}

.thumb-lake {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 36%),
    linear-gradient(145deg, #201813, #286d66 48%, #fff4df);
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 18px 46px rgba(32, 24, 19, 0.22);
  transform: translate(-50%, -50%);
}

.play-mark::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 24px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 18px solid var(--color-orange);
}

.portfolio-content {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: clamp(1.15rem, 2vw, 1.45rem);
}

.portfolio-badge {
  width: fit-content;
  margin-bottom: 0.85rem;
  padding: 0.34rem 0.6rem;
  color: #7a4514;
  background: rgba(255, 190, 87, 0.18);
  border: 1px solid rgba(217, 154, 43, 0.24);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 900;
}

.portfolio-card h3 {
  margin-bottom: 0.55rem;
}

.portfolio-card p {
  color: var(--color-muted);
}

.portfolio-meta {
  margin-bottom: 0.8rem;
  color: var(--color-ink);
  font-size: 0.94rem;
  font-weight: 900;
}

.portfolio-button {
  width: fit-content;
  margin-top: auto;
}

.portfolio-link {
  margin-top: auto;
}

.portfolio-cta {
  padding-top: 0;
}

.portfolio-cta .section-cta {
  align-items: center;
}

.portfolio-cta h2 {
  max-width: 720px;
  margin-bottom: 0.55rem;
  font-size: 2.45rem;
}

.portfolio-cta p {
  max-width: 760px;
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(1.4rem, 4vw, 3rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 244, 223, 0.86)),
    linear-gradient(135deg, rgba(242, 106, 46, 0.1), rgba(40, 109, 102, 0.09));
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.about-panel p:not(.eyebrow) {
  max-width: 760px;
  color: var(--color-muted);
  font-size: 1.12rem;
}

.about-panel p + p {
  margin-top: 0.95rem;
}

.about-media {
  margin: 0;
}

.about-photo {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center 28%;
  border: 1px solid var(--color-line);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.about-caption {
  margin-top: 0.75rem;
  color: var(--color-soft-text);
  font-size: 0.9rem;
  font-weight: 850;
}

.about-visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--color-line);
  border-radius: 28px;
}

.about-visual span {
  position: absolute;
  display: block;
  border-radius: 18px;
}

.about-visual span:nth-child(1) {
  left: 18%;
  top: 17%;
  width: 64%;
  height: 34%;
  background: rgba(32, 24, 19, 0.9);
}

.about-visual span:nth-child(2) {
  left: 20%;
  bottom: 20%;
  width: 28%;
  height: 20%;
  background: var(--color-teal);
}

.about-visual span:nth-child(3) {
  right: 20%;
  bottom: 20%;
  width: 28%;
  height: 20%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-orange));
}

.related {
  padding-top: 0;
}

.related h2 {
  margin-bottom: 1.2rem;
  font-size: 2.35rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 0.75rem;
}

.related-grid a {
  display: flex;
  min-height: 116px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.55rem;
  padding: 1rem;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--color-line);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(48, 31, 14, 0.08);
  font-weight: 850;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background-color var(--transition);
}

.related-grid a:hover,
.related-grid a:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(242, 106, 46, 0.42);
  box-shadow: 0 18px 42px rgba(48, 31, 14, 0.12);
  transform: translateY(-3px);
}

.related-grid strong {
  font-size: 1rem;
  line-height: 1.25;
}

.related-grid span {
  color: var(--color-soft-text);
  font-size: 0.9rem;
  font-weight: 720;
}

.legal-hero {
  min-height: auto;
}

.legal-section {
  padding-top: 0;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.legal-content {
  display: grid;
  gap: 1rem;
}

.legal-card {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.legal-card h2 {
  margin-bottom: 1rem;
  font-size: 1.85rem;
}

.legal-card p,
.legal-card li,
.legal-card dd,
.legal-address {
  color: var(--color-muted);
}

.legal-card p + p {
  margin-top: 0.85rem;
}

.legal-card a {
  color: var(--color-ink);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(242, 106, 46, 0.35);
  text-underline-offset: 0.22rem;
}

.legal-card a:hover {
  color: var(--color-orange);
}

.legal-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
}

.legal-list div {
  display: grid;
  gap: 0.15rem;
}

.legal-list dt {
  color: var(--color-ink);
  font-weight: 900;
}

.legal-list dd {
  margin: 0;
}

.legal-address {
  margin-bottom: 1rem;
  font-style: normal;
}

.legal-bullets {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0;
  padding-left: 1.25rem;
}

.legal-note {
  padding: 1rem;
  background: rgba(255, 190, 87, 0.14);
  border: 1px solid rgba(217, 154, 43, 0.22);
  border-radius: var(--radius-sm);
}

.legal-download {
  width: fit-content;
  margin-top: 1rem;
  text-decoration: none;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.guide-grid a {
  display: flex;
  min-height: 96px;
  align-items: center;
  padding: 1rem 1.15rem;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px rgba(48, 31, 14, 0.08);
  font-weight: 850;
}

.guide-grid a:hover {
  color: var(--color-orange);
  border-color: rgba(242, 106, 46, 0.42);
}

.site-footer {
  padding-block: 2rem;
  color: var(--color-muted);
  border-top: 1px solid var(--color-line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner-stacked {
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-inner p {
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-services,
.footer-legal {
  line-height: 1.8;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

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

.service-card.reveal.is-visible {
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background-color var(--transition);
}

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

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

@media (max-width: 1100px) {
  h1 {
    font-size: 4.85rem;
  }

  .page-hero h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3.55rem;
  }

  .frame-copy span {
    font-size: 2.35rem;
  }

  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .site-nav {
    order: 4;
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: center;
  }

  .header-cta {
    justify-self: end;
  }

  .hero-grid,
  .split-layout,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 840px;
  }

  .hero-stage {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .section-copy {
    position: static;
  }

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

  .service-grid,
  .featured-video-grid,
  .value-grid,
  .proof-grid,
  .project-grid,
  .condition-grid,
  .portfolio-grid,
  .deliverable-grid,
  .related-grid,
  .compact-list,
  .legal-grid,
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-visual {
    width: min(100%, 680px);
  }

  .about-panel {
    grid-template-columns: 1fr;
  }

  .about-photo {
    height: 420px;
    object-position: center 22%;
  }
}

@media (max-width: 860px) {
  :root {
    --section-space: clamp(3.8rem, 12vw, 5.5rem);
  }

  h1 {
    font-size: 3.95rem;
  }

  .page-hero h1 {
    font-size: clamp(2.4rem, 10.5vw, 3.25rem);
    line-height: 0.98;
  }

  h2 {
    font-size: 3rem;
  }

  h3 {
    font-size: 1.32rem;
  }

  .header-inner {
    min-height: 70px;
    grid-template-columns: 1fr auto;
  }

  .brand-text {
    font-size: 0.96rem;
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 70px var(--gutter) auto;
    z-index: 120;
    display: grid;
    gap: 0.2rem;
    padding: 0.65rem;
    background: rgba(255, 253, 248, 0.98);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity var(--transition),
      transform var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.9rem 1rem;
  }

  .nav-mobile-cta {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
    color: var(--color-night);
    background: linear-gradient(135deg, var(--color-orange), var(--color-gold));
    border-radius: var(--radius-pill);
    box-shadow: 0 16px 34px rgba(242, 106, 46, 0.24);
    font-weight: 900;
  }

  .site-nav .nav-mobile-cta:hover,
  .site-nav .nav-mobile-cta:focus-visible {
    color: var(--color-night);
    background: linear-gradient(135deg, var(--color-orange), var(--color-gold));
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 2.6rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 470px;
  }

  .camera-frame {
    inset: 6% 4% 24% 4%;
  }

  .phone-card {
    top: 27%;
    right: 2%;
  }

  .timeline-card {
    left: 3%;
    bottom: 16%;
    width: min(310px, 62%);
  }

  .production-card {
    right: 4%;
    bottom: 3%;
  }

  .trust-inner {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    justify-content: flex-start;
  }

  .offer-grid,
  .testimonial-grid,
  .service-grid,
  .featured-video-grid,
  .value-grid,
  .proof-grid,
  .project-grid,
  .condition-grid,
  .portfolio-grid,
  .deliverable-grid,
  .related-grid,
  .compact-list,
  .legal-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .batch-panel {
    grid-template-columns: 1fr;
  }

  .batch-panel h2 {
    font-size: 2.35rem;
  }

  .section-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .offer-card {
    min-height: 0;
  }

  .offer-visual {
    min-height: 210px;
  }

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

  .page-visual {
    min-height: 380px;
  }

  .service-card {
    min-height: auto;
  }

  .service-visual {
    min-height: 190px;
  }

  .related h2 {
    font-size: 2rem;
  }

  .portfolio-content {
    min-height: auto;
  }

  .portfolio-cta h2 {
    font-size: 2rem;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 2.65rem;
  }

  .page-hero h1 {
    font-size: clamp(2.15rem, 10vw, 2.75rem);
    line-height: 1;
  }

  h2 {
    font-size: 2.35rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero-text,
  .section-heading p,
  .section-copy p,
  .batch-panel p,
  .about-panel p:not(.eyebrow),
  .final-cta-panel p {
    font-size: 1.04rem;
  }

  .eyebrow {
    font-size: 0.78rem;
  }

  .stats-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .stat-card,
  .feature-card {
    min-height: auto;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 360px;
  }

  .camera-frame {
    inset: 5% 0 29% 0;
    border-radius: 28px;
  }

  .light-stand {
    display: none;
  }

  .frame-label {
    display: none;
  }

  .phone-card {
    top: 27%;
    width: 100px;
  }

  .timeline-card {
    left: 0;
    bottom: 14%;
    width: 72%;
  }

  .production-card {
    width: 82%;
    left: 7%;
    right: auto;
    bottom: 1%;
  }

  .frame-copy span {
    font-size: 1.7rem;
  }

  .phone-label {
    font-size: 0.88rem;
  }

  .stat-card strong {
    font-size: 3rem;
  }

  .final-cta-panel::after {
    display: none;
  }

  .page-visual {
    min-height: 320px;
    border-radius: 28px;
  }

  .service-visual {
    min-height: 148px;
    margin-bottom: 1rem;
  }

  .project-card {
    min-height: 0;
  }

  .project-card::before {
    height: 64px;
  }

  .portfolio-thumb {
    min-height: 190px;
  }

  .play-mark {
    width: 62px;
    height: 62px;
  }

  .play-mark::before {
    left: 26px;
    top: 20px;
  }

  .about-visual {
    min-height: 240px;
  }

  .about-photo {
    height: 420px;
    object-position: center 14%;
    border-radius: 22px;
  }

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

  .related-grid a {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .about-photo {
    height: 390px;
    object-position: center 12%;
  }

  h1 {
    font-size: 2.35rem;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 2.35rem);
    line-height: 1;
  }

  h2 {
    font-size: 2.05rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text {
    font-size: 0.9rem;
  }
}

/* Soft Cinematic Glass Design */
:root {
  --color-bg: #f7f4ee;
  --color-bg-soft: #fbfaf7;
  --color-bg-warm: #f4f0e8;
  --color-bg-deep: #efe8dd;
  --color-surface: rgba(255, 255, 255, 0.56);
  --color-surface-warm: rgba(239, 225, 199, 0.42);
  --color-ink: #15181a;
  --color-muted: #6f716f;
  --color-soft-text: #30363a;
  --color-line: rgba(21, 24, 26, 0.1);
  --color-line-strong: rgba(21, 24, 26, 0.18);
  --color-gold: #b9a57e;
  --color-orange: #8ea4a8;
  --color-amber: #b9a57e;
  --color-teal: #8ea4a8;
  --color-night: #1e2528;
  --color-text: #15181a;
  --color-text-soft: #30363a;
  --color-glass: rgba(255, 255, 255, 0.56);
  --color-glass-strong: rgba(255, 255, 255, 0.72);
  --color-glass-solid: rgba(255, 255, 255, 0.82);
  --color-glass-border: rgba(255, 255, 255, 0.72);
  --color-accent: #8ea4a8;
  --color-accent-soft: rgba(142, 164, 168, 0.16);
  --color-accent-2: #b9a57e;
  --color-accent-2-soft: rgba(185, 165, 126, 0.16);
  --color-accent-muted: #7d755f;
  --color-slate: #8ea4a8;
  --color-slate-soft: rgba(142, 164, 168, 0.16);
  --color-cta: #1e2528;
  --color-cta-text: #ffffff;
  --color-cta-hover: #344044;
  --glass-blur: blur(28px) saturate(130%);
  --glass-blur-soft: blur(20px) saturate(122%);
  --shadow-soft: 0 34px 100px rgba(30, 35, 40, 0.12);
  --shadow-card:
    0 28px 80px rgba(30, 35, 40, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  --shadow-card-hover:
    0 34px 95px rgba(30, 35, 40, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  --focus-ring: rgba(54, 78, 84, 0.48);
}

html {
  background: var(--color-bg);
}

body {
  color: var(--color-text);
  background:
    radial-gradient(circle at 18% 12%, rgba(220, 232, 234, 0.75), transparent 34%),
    radial-gradient(circle at 82% 8%, rgba(239, 225, 199, 0.72), transparent 32%),
    radial-gradient(circle at 52% 92%, rgba(220, 232, 234, 0.38), transparent 36%),
    repeating-linear-gradient(90deg, rgba(21, 24, 26, 0.018) 0 1px, transparent 1px 112px),
    linear-gradient(180deg, #fbfaf7 0%, #f7f4ee 48%, #f4f0e8 100%);
}

h1,
h2,
h3,
.brand,
.faq-question,
.legal-card h2,
.legal-list dt,
.legal-card a,
.guide-grid a,
.related-grid strong {
  color: var(--color-text);
}

p,
.hero-text,
.section-heading p,
.section-copy p,
.batch-panel p,
.about-panel p:not(.eyebrow),
.final-cta-panel p,
.offer-card p,
.feature-card p,
.process-step p,
.testimonial-card blockquote,
.faq-answer p,
.value-card p,
.proof-card p,
.project-card p,
.condition-card p,
.deliverable-grid p,
.solution-card p,
.portfolio-card p,
.related-grid span,
.legal-card p,
.legal-card li,
.legal-card dd,
.legal-address {
  color: var(--color-muted);
}

.hero-text,
.about-panel p:not(.eyebrow),
.final-cta-panel p,
.section-heading p,
.section-copy p {
  color: var(--color-text-soft);
}

.inline-link,
.breadcrumb-link,
.text-link,
.legal-card a {
  color: var(--color-text);
  text-decoration-color: rgba(142, 164, 168, 0.45);
}

.inline-link:hover,
.inline-link:focus-visible,
.breadcrumb-link:hover,
.text-link:hover,
.site-footer a:hover,
.legal-card a:hover,
.guide-grid a:hover {
  color: #52676b;
  text-decoration-color: rgba(142, 164, 168, 0.9);
}

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 4px;
}

.skip-link {
  color: var(--color-cta-text);
  background: var(--color-cta);
  box-shadow: 0 18px 45px rgba(30, 37, 40, 0.18);
}

.site-header {
  border-bottom-color: rgba(255, 255, 255, 0.48);
  background: rgba(251, 250, 247, 0.68);
  box-shadow: 0 14px 52px rgba(30, 35, 40, 0.07);
  -webkit-backdrop-filter: var(--glass-blur-soft);
  backdrop-filter: var(--glass-blur-soft);
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(251, 250, 247, 0.78);
  box-shadow: 0 18px 64px rgba(30, 35, 40, 0.11);
}

.brand-mark {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 40%),
    linear-gradient(135deg, #1e2528, #344044);
  box-shadow:
    0 16px 36px rgba(30, 37, 40, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.site-nav,
.nav-toggle,
.hero-meta a,
.trust-badges a,
.eyebrow,
.step-tag,
.portfolio-badge,
.project-kicker,
.format-card,
.production-card,
.timeline-card {
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  box-shadow:
    0 18px 54px rgba(30, 35, 40, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: var(--glass-blur-soft);
  backdrop-filter: var(--glass-blur-soft);
}

.site-nav,
.nav-toggle,
.site-nav a,
.hero-meta a,
.trust-badges a {
  color: var(--color-text-soft);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.62);
}

.header-cta,
.button-primary,
.nav-mobile-cta {
  color: var(--color-cta-text);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 38%),
    linear-gradient(135deg, var(--color-cta), var(--color-cta-hover));
  box-shadow:
    0 18px 45px rgba(30, 37, 40, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.header-cta:hover,
.button-primary:hover,
.nav-mobile-cta:hover,
.header-cta:focus-visible,
.button-primary:focus-visible,
.nav-mobile-cta:focus-visible {
  color: var(--color-cta-text);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 38%),
    linear-gradient(135deg, var(--color-cta-hover), #47565b);
  box-shadow:
    0 22px 56px rgba(30, 37, 40, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button-secondary {
  color: var(--color-text);
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-card);
  -webkit-backdrop-filter: var(--glass-blur-soft);
  backdrop-filter: var(--glass-blur-soft);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--color-text);
  background: var(--color-glass-strong);
  border-color: rgba(142, 164, 168, 0.42);
  box-shadow: var(--shadow-card-hover);
}

.hero {
  background:
    radial-gradient(circle at 22% 12%, rgba(220, 232, 234, 0.48), transparent 32%),
    radial-gradient(circle at 82% 16%, rgba(239, 225, 199, 0.5), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
}

.hero::before {
  background: linear-gradient(90deg, transparent, rgba(142, 164, 168, 0.38), transparent);
}

.hero::after {
  background:
    linear-gradient(116deg, transparent 0 52%, rgba(255, 255, 255, 0.28) 52% 61%, transparent 61%),
    radial-gradient(circle at 72% 20%, rgba(239, 225, 199, 0.32), transparent 34%);
}

.eyebrow {
  color: #52676b;
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(255, 255, 255, 0.72);
}

.eyebrow::before,
.hero-meta a::before {
  background: var(--color-accent);
  box-shadow: 0 0 0 5px rgba(142, 164, 168, 0.16);
}

.hero-meta a:hover,
.hero-meta a:focus-visible,
.trust-badges a:hover,
.trust-badges a:focus-visible {
  color: var(--color-text);
  background: var(--color-glass-strong);
  border-color: rgba(142, 164, 168, 0.42);
  box-shadow: var(--shadow-card-hover);
}

.hero-stage::before {
  background:
    radial-gradient(circle at 22% 14%, rgba(220, 232, 234, 0.62), transparent 34%),
    radial-gradient(circle at 80% 28%, rgba(239, 225, 199, 0.5), transparent 30%),
    rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.hero-stage::after {
  background:
    linear-gradient(90deg, rgba(239, 225, 199, 0.36), rgba(255, 255, 255, 0.34) 54%, transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), transparent);
}

.camera-frame,
.page-visual,
.service-visual,
.about-visual {
  background:
    radial-gradient(circle at 24% 20%, rgba(220, 232, 234, 0.55), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(239, 225, 199, 0.5), transparent 30%),
    var(--color-glass);
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-card);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
}

.camera-frame::before,
.page-visual::before {
  border-color: rgba(21, 24, 26, 0.12);
}

.camera-frame::after {
  background:
    linear-gradient(90deg, rgba(142, 164, 168, 0.34) 0 18%, transparent 18% 28%, rgba(185, 165, 126, 0.28) 28% 54%, transparent 54% 64%, rgba(255, 255, 255, 0.68) 64% 100%),
    rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.76);
}

.rec-indicator,
.frame-label {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 38px rgba(30, 35, 40, 0.1);
}

.rec-indicator span {
  background: var(--color-accent-2);
  box-shadow: 0 0 0 4px rgba(185, 165, 126, 0.16);
}

.frame-copy span {
  color: rgba(21, 24, 26, 0.88);
  text-shadow: 0 16px 42px rgba(255, 255, 255, 0.76);
}

.frame-grid {
  background:
    linear-gradient(rgba(21, 24, 26, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 24, 26, 0.07) 1px, transparent 1px);
}

.focus-corner {
  border-color: rgba(30, 37, 40, 0.24);
}

.lens-mark {
  border-color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 44% 44%, rgba(255, 255, 255, 0.88) 0 10%, rgba(220, 232, 234, 0.48) 11% 21%, rgba(239, 225, 199, 0.5) 22% 36%, transparent 37%),
    radial-gradient(circle, transparent 0 62%, rgba(21, 24, 26, 0.09) 63% 64%, transparent 65%);
}

.light-stand::before,
.light-stand::after {
  background: rgba(30, 37, 40, 0.24);
}

.light-stand::after {
  box-shadow:
    -26px 24px 0 rgba(30, 37, 40, 0.12),
    28px 24px 0 rgba(30, 37, 40, 0.12);
}

.light-stand span {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 40%),
    linear-gradient(135deg, rgba(239, 225, 199, 0.6), rgba(220, 232, 234, 0.44));
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 58px rgba(30, 35, 40, 0.12);
}

.phone-card {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 90px rgba(30, 35, 40, 0.12);
}

.phone-screen {
  background:
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(21, 24, 26, 0.045) 18px 19px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 38%),
    linear-gradient(155deg, rgba(220, 232, 234, 0.7), rgba(239, 225, 199, 0.56));
}

.phone-line {
  background: rgba(21, 24, 26, 0.32);
}

.format-card,
.timeline-card,
.production-card {
  color: var(--color-text);
}

.format-card span,
.small-label,
.timeline-head {
  color: var(--color-muted);
}

.timeline-card {
  background: rgba(255, 255, 255, 0.64);
}

.track-one span:first-child,
.track-one span:last-child,
.track-two span:nth-child(1),
.track-two span:nth-child(2),
.track-two span:nth-child(3),
.track-three span,
.progress-track span,
.service-visual::after,
.service-visual-wedding::after,
.service-visual-workshop::after,
.service-visual-live::after,
.service-visual-event::after,
.service-visual-image::after {
  background: linear-gradient(90deg, rgba(142, 164, 168, 0.68), rgba(185, 165, 126, 0.56));
}

.trust-band {
  background: rgba(255, 255, 255, 0.28);
  border-block: 1px solid rgba(255, 255, 255, 0.62);
}

.trust-inner p,
.service-kicker,
.portfolio-meta,
.step-tag {
  color: #52676b;
}

.service-card,
.value-card,
.solution-card,
.proof-card,
.project-card,
.condition-card,
.deliverable-grid article,
.process-step,
.testimonial-card,
.faq-item,
.portfolio-card,
.about-panel,
.final-cta-panel,
.section-cta,
.batch-panel,
.offer-card,
.feature-card,
.stat-card,
.related-grid a,
.guide-grid a,
.legal-card,
.trust-line,
.support-section__intro,
.support-card {
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-card);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
}

.about-panel,
.final-cta-panel,
.legal-card,
.portfolio-card,
.faq-item {
  background: var(--color-glass-strong);
}

.service-card:hover,
.service-card:focus-visible,
.project-card:hover,
.project-card:focus-visible,
.related-grid a:hover,
.related-grid a:focus-visible,
.guide-grid a:hover,
.guide-grid a:focus-visible {
  background: var(--color-glass-strong);
  border-color: rgba(142, 164, 168, 0.42);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-5px);
}

.service-card:hover .text-link,
.service-card:focus-visible .text-link,
.project-card:hover .text-link,
.project-card:focus-visible .text-link {
  color: #52676b;
  text-decoration-color: rgba(142, 164, 168, 0.9);
}

.service-visual::before,
.page-visual span,
.about-visual span {
  box-shadow:
    0 18px 48px rgba(30, 35, 40, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.page-visual-clips span:nth-child(1),
.service-visual-clips::before,
.page-visual-workshop span:nth-child(1),
.service-visual-workshop::before,
.visual-clips span:nth-child(1) {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.page-visual-clips span:nth-child(2),
.page-visual-live span:nth-child(2),
.page-visual-image span:nth-child(2),
.page-visual-event span:nth-child(2),
.page-visual-workshop span:nth-child(2),
.visual-clips span:nth-child(2),
.visual-live span:nth-child(2),
.about-visual span:nth-child(2) {
  background: rgba(142, 164, 168, 0.38);
}

.page-visual-clips span:nth-child(3),
.page-visual-image span:nth-child(3),
.page-visual-live span:nth-child(3),
.visual-clips span:nth-child(3),
.visual-live span:nth-child(3),
.about-visual span:nth-child(3) {
  background: linear-gradient(135deg, rgba(185, 165, 126, 0.44), rgba(255, 255, 255, 0.48));
}

.page-visual-wedding span:nth-child(1),
.service-visual-wedding::before,
.page-visual-event span:nth-child(1),
.service-visual-event::before,
.page-visual-image span:nth-child(1),
.service-visual-image::before,
.page-visual-live span:nth-child(1),
.service-visual-live::before,
.visual-film span:nth-child(1),
.visual-live span:nth-child(1),
.about-visual span:nth-child(1) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), transparent 40%),
    linear-gradient(145deg, rgba(220, 232, 234, 0.72), rgba(239, 225, 199, 0.48));
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.page-visual-event span:nth-child(3),
.page-visual-event span:nth-child(4),
.page-visual-workshop span:nth-child(3),
.page-visual-workshop span:nth-child(4),
.page-visual-image span:nth-child(4),
.page-visual-wedding span:nth-child(2),
.page-visual-wedding span:nth-child(3),
.page-visual-wedding span:nth-child(4),
.page-visual-clips span:nth-child(4) {
  background: rgba(21, 24, 26, 0.12);
}

.value-card span,
.proof-card span,
.condition-card span,
.step-number {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 40%),
    linear-gradient(135deg, #1e2528, #344044);
  box-shadow:
    0 14px 32px rgba(30, 37, 40, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.project-showcase,
.portfolio-section,
.offer,
.process,
.conditions {
  background:
    radial-gradient(circle at 18% 0%, rgba(220, 232, 234, 0.34), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(239, 225, 199, 0.32), transparent 30%);
}

.project-card::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.64), transparent 46%),
    radial-gradient(circle at 24% 18%, rgba(220, 232, 234, 0.82), transparent 36%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.7), rgba(220, 232, 234, 0.52) 48%, rgba(239, 225, 199, 0.42));
  border-bottom-color: rgba(21, 24, 26, 0.08);
}

.project-card:nth-child(3n + 2)::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), transparent 46%),
    radial-gradient(circle at 70% 18%, rgba(239, 225, 199, 0.76), transparent 36%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.72), rgba(239, 225, 199, 0.52) 48%, rgba(220, 232, 234, 0.34));
}

.project-card:nth-child(3n)::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.64), transparent 46%),
    radial-gradient(circle at 68% 24%, rgba(220, 232, 234, 0.72), transparent 38%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.72), rgba(220, 232, 234, 0.48) 48%, rgba(239, 225, 199, 0.38));
}

.project-kicker,
.portfolio-badge {
  color: #52676b;
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(255, 255, 255, 0.72);
}

.video-embed {
  background: rgba(255, 255, 255, 0.66);
  border-bottom: 1px solid rgba(21, 24, 26, 0.08);
}

.portfolio-thumb {
  background:
    radial-gradient(circle at 24% 18%, rgba(220, 232, 234, 0.78), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(239, 225, 199, 0.46));
}

.thumb-gold,
.thumb-green,
.thumb-warm,
.thumb-lake {
  background:
    radial-gradient(circle at 72% 18%, rgba(239, 225, 199, 0.64), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(220, 232, 234, 0.46));
}

.play-mark {
  background: #1e2528;
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(30, 37, 40, 0.18);
}

.play-mark::before {
  border-left-color: #ffffff;
}

.about-panel {
  background:
    radial-gradient(circle at 14% 18%, rgba(220, 232, 234, 0.42), transparent 32%),
    radial-gradient(circle at 82% 14%, rgba(239, 225, 199, 0.38), transparent 32%),
    var(--color-glass-strong);
}

.about-photo {
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 30px 90px rgba(30, 35, 40, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.68);
}

.about-caption {
  color: var(--color-muted);
}

.faq-question span {
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.62);
}

.faq-question span::before,
.faq-question span::after {
  background: #52676b;
}

.final-cta-panel {
  background:
    radial-gradient(circle at 16% 12%, rgba(239, 225, 199, 0.46), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(220, 232, 234, 0.44), transparent 32%),
    var(--color-glass-strong);
}

.final-cta-panel::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.76) 0 8px, transparent 8px calc(100% - 8px), rgba(255, 255, 255, 0.76) calc(100% - 8px)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0 8px, transparent 8px calc(100% - 8px), rgba(255, 255, 255, 0.76) calc(100% - 8px)),
    rgba(255, 255, 255, 0.18);
  opacity: 0.24;
}

.section-cta p {
  color: var(--color-text-soft);
}

.legal-note {
  background: rgba(239, 225, 199, 0.4);
  border-color: rgba(185, 165, 126, 0.22);
}

.legal-download {
  color: var(--color-cta-text);
}

.site-footer {
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.28);
  border-top-color: rgba(255, 255, 255, 0.68);
}

.site-footer a {
  color: var(--color-text-soft);
}

@media (max-width: 860px) {
  .site-nav {
    background: rgba(251, 250, 247, 0.9);
    border-color: rgba(255, 255, 255, 0.78);
    -webkit-backdrop-filter: blur(20px) saturate(122%);
    backdrop-filter: blur(20px) saturate(122%);
  }

  .site-nav .nav-mobile-cta:hover,
  .site-nav .nav-mobile-cta:focus-visible {
    color: var(--color-cta-text);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 38%),
      linear-gradient(135deg, var(--color-cta-hover), #47565b);
  }
}

@media (max-width: 768px) {
  .site-header,
  .site-nav,
  .hero-meta a,
  .trust-badges a,
  .service-card,
  .value-card,
  .solution-card,
  .proof-card,
  .project-card,
  .condition-card,
  .deliverable-grid article,
  .process-step,
  .testimonial-card,
  .faq-item,
  .portfolio-card,
  .about-panel,
  .final-cta-panel,
  .section-cta,
  .related-grid a,
  .guide-grid a,
  .legal-card,
  .camera-frame,
  .page-visual,
  .service-visual {
    background-color: rgba(255, 255, 255, 0.72);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    backdrop-filter: blur(16px) saturate(120%);
  }
}

.hero-copy.reveal,
.hero-visual.reveal {
  opacity: 1;
  transform: none;
}

.hero-video-stage {
  position: relative;
  isolation: isolate;
  min-height: clamp(480px, 43vw, 560px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 14%, rgba(220, 232, 234, 0.54), transparent 36%),
    radial-gradient(circle at 82% 12%, rgba(239, 225, 199, 0.5), transparent 34%),
    var(--color-glass);
  border: 1px solid var(--color-glass-border);
  border-radius: 36px;
  box-shadow:
    0 30px 90px rgba(30, 35, 40, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
}

.hero-video-stage::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 35px;
  pointer-events: none;
}

.hero-video-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(112deg, transparent 0 48%, rgba(255, 255, 255, 0.22) 48% 59%, transparent 59%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 42%);
  opacity: 0.62;
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  opacity: 0.9;
  object-fit: cover;
  filter: saturate(0.95) contrast(0.94) brightness(1.06);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(244, 240, 232, 0.2)),
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.36), transparent 38%),
    radial-gradient(circle at 78% 78%, rgba(239, 225, 199, 0.22), transparent 36%);
  pointer-events: none;
}

.hero-video-badge,
.hero-video-card {
  position: absolute;
  z-index: 4;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow:
    0 18px 54px rgba(30, 35, 40, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(20px) saturate(124%);
  backdrop-filter: blur(20px) saturate(124%);
}

.hero-video-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.68rem;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
}

.hero-video-badge--rec {
  top: 1.35rem;
  left: 1.35rem;
}

.hero-video-badge--rec span {
  width: 0.52rem;
  height: 0.52rem;
  background: #b98676;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(185, 134, 118, 0.14);
}

.hero-video-badge--quality {
  top: 1.35rem;
  right: 1.35rem;
}

.hero-video-card {
  left: 1.35rem;
  bottom: 1.35rem;
  width: min(74%, 360px);
  padding: 1rem 1.1rem;
  border-radius: 22px;
}

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

.hero-video-card strong {
  font-size: 1.06rem;
  line-height: 1.15;
}

.hero-video-card span {
  margin-top: 0.28rem;
  color: var(--color-text-soft);
  font-size: 0.88rem;
  font-weight: 760;
}

@media (max-width: 1020px) {
  .hero-video-stage {
    width: min(100%, 680px);
    min-height: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .hero-video-stage {
    min-height: clamp(320px, 74vw, 360px);
    border-radius: 28px;
  }

  .hero-video {
    opacity: 0.82;
  }

  .hero-video-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(244, 240, 232, 0.3)),
      radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.42), transparent 38%),
      radial-gradient(circle at 78% 78%, rgba(239, 225, 199, 0.26), transparent 36%);
  }

  .hero-video-stage::before {
    border-radius: 27px;
  }

  .hero-video-badge {
    padding: 0.42rem 0.58rem;
    font-size: 0.7rem;
  }

  .hero-video-badge--rec {
    top: 1rem;
    left: 1rem;
  }

  .hero-video-badge--quality {
    top: 1rem;
    right: 1rem;
  }

  .hero-video-card {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: auto;
    padding: 0.86rem 0.95rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
  }
}

@media (max-width: 430px) {
  .hero-video-badge--quality {
    display: none;
  }

  .hero-video-card span {
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    opacity: 0.42;
  }

  .hero-video-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(244, 240, 232, 0.62)),
      radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.5), transparent 38%);
  }
}

/* Petrol + Coral Brand Layer */
:root {
  --color-brand-blue: #06485a;
  --color-brand-blue-dark: #043747;
  --color-brand-blue-deep: #032d3a;
  --color-brand-blue-soft: #0b5a6c;
  --color-brand-coral: #f3a294;
  --color-brand-coral-hover: #ee8f80;
  --color-brand-coral-light: #ffcabe;
  --color-brand-coral-glass: rgba(243, 162, 148, 0.72);
  --color-gold: var(--color-brand-coral-light);
  --color-orange: var(--color-brand-coral);
  --color-amber: var(--color-brand-coral-light);
  --color-teal: var(--color-brand-blue);
  --color-night: var(--color-brand-blue-deep);
  --color-accent: var(--color-brand-blue);
  --color-accent-soft: rgba(6, 72, 90, 0.12);
  --color-accent-2: var(--color-brand-coral);
  --color-accent-2-soft: rgba(243, 162, 148, 0.16);
  --color-accent-muted: #496d75;
  --color-slate: var(--color-brand-blue-soft);
  --color-slate-soft: rgba(6, 72, 90, 0.1);
  --color-cta: var(--color-brand-coral);
  --color-cta-hover: var(--color-brand-coral-hover);
  --color-cta-text: var(--color-brand-blue-deep);
  --focus-ring: rgba(6, 72, 90, 0.38);
  --shadow-soft: 0 34px 100px rgba(6, 72, 90, 0.1);
  --shadow-card:
    0 28px 80px rgba(6, 72, 90, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  --shadow-card-hover:
    0 34px 95px rgba(6, 72, 90, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

body {
  background:
    radial-gradient(circle at 18% 12%, rgba(6, 72, 90, 0.1), transparent 34%),
    radial-gradient(circle at 82% 8%, rgba(243, 162, 148, 0.18), transparent 32%),
    radial-gradient(circle at 52% 92%, rgba(6, 72, 90, 0.06), transparent 36%),
    repeating-linear-gradient(90deg, rgba(6, 72, 90, 0.014) 0 1px, transparent 1px 112px),
    linear-gradient(180deg, #fbfaf7 0%, #f7f4ee 48%, #f4f0e8 100%);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.site-logo-img {
  display: block;
  width: clamp(150px, 14vw, 188px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.footer-logo {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-bottom: 0.35rem;
}

.footer-logo-img {
  display: block;
  width: clamp(180px, 18vw, 238px);
  height: auto;
  max-height: 82px;
  object-fit: contain;
}

.site-header {
  box-shadow: 0 14px 52px rgba(6, 72, 90, 0.06);
}

.site-header.is-scrolled {
  box-shadow: 0 18px 64px rgba(6, 72, 90, 0.1);
}

.site-nav,
.nav-toggle,
.site-nav a,
.hero-meta a,
.trust-badges a,
.footer-services a,
.footer-legal a {
  color: var(--color-brand-blue);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible,
.inline-link:hover,
.inline-link:focus-visible,
.breadcrumb-link:hover,
.text-link:hover,
.text-link:focus-visible,
.legal-card a:hover,
.legal-card a:focus-visible,
.guide-grid a:hover,
.guide-grid a:focus-visible {
  color: var(--color-brand-blue-dark);
  text-decoration-color: var(--color-brand-coral);
}

.inline-link,
.breadcrumb-link,
.text-link,
.legal-card a,
.guide-grid a {
  color: var(--color-brand-blue);
  text-decoration-color: rgba(243, 162, 148, 0.58);
}

.header-cta,
.button-primary,
.nav-mobile-cta {
  color: var(--color-brand-blue-deep);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, rgba(243, 162, 148, 0.9), rgba(255, 202, 190, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 18px 45px rgba(243, 162, 148, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  backdrop-filter: blur(20px) saturate(130%);
}

.header-cta:hover,
.button-primary:hover,
.nav-mobile-cta:hover,
.header-cta:focus-visible,
.button-primary:focus-visible,
.nav-mobile-cta:focus-visible {
  color: var(--color-brand-blue-dark);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, rgba(238, 143, 128, 0.94), rgba(255, 202, 190, 0.84));
  box-shadow:
    0 24px 60px rgba(243, 162, 148, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.button-secondary {
  color: var(--color-brand-blue);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--color-brand-blue-dark);
  border-color: rgba(6, 72, 90, 0.24);
  box-shadow:
    0 28px 70px rgba(6, 72, 90, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.eyebrow,
.step-tag,
.portfolio-badge,
.project-kicker,
.trust-inner p,
.service-kicker,
.portfolio-meta {
  color: var(--color-brand-blue);
}

.eyebrow::before,
.hero-meta a::before {
  background: var(--color-brand-coral);
  box-shadow: 0 0 0 5px rgba(243, 162, 148, 0.16);
}

.hero-meta a:hover,
.hero-meta a:focus-visible,
.trust-badges a:hover,
.trust-badges a:focus-visible {
  color: var(--color-brand-blue-dark);
  border-color: rgba(6, 72, 90, 0.24);
}

.service-card:hover,
.service-card:focus-visible,
.project-card:hover,
.project-card:focus-visible,
.related-grid a:hover,
.related-grid a:focus-visible,
.guide-grid a:hover,
.guide-grid a:focus-visible {
  border-color: rgba(6, 72, 90, 0.22);
  box-shadow:
    0 34px 95px rgba(6, 72, 90, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.service-card:hover .text-link,
.service-card:focus-visible .text-link,
.project-card:hover .text-link,
.project-card:focus-visible .text-link {
  color: var(--color-brand-blue-dark);
  text-decoration-color: var(--color-brand-coral);
}

.value-card span,
.proof-card span,
.condition-card span,
.step-number {
  color: var(--color-brand-blue-deep);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, rgba(243, 162, 148, 0.88), rgba(255, 202, 190, 0.74));
  box-shadow:
    0 14px 32px rgba(243, 162, 148, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.track-one span:first-child,
.track-one span:last-child,
.track-two span:nth-child(1),
.track-two span:nth-child(2),
.track-two span:nth-child(3),
.track-three span,
.progress-track span,
.service-visual::after,
.service-visual-wedding::after,
.service-visual-workshop::after,
.service-visual-live::after,
.service-visual-event::after,
.service-visual-image::after {
  background: linear-gradient(90deg, rgba(6, 72, 90, 0.56), rgba(243, 162, 148, 0.58));
}

.page-visual-clips span:nth-child(2),
.page-visual-live span:nth-child(2),
.page-visual-image span:nth-child(2),
.page-visual-event span:nth-child(2),
.page-visual-workshop span:nth-child(2),
.visual-clips span:nth-child(2),
.visual-live span:nth-child(2),
.about-visual span:nth-child(2) {
  background: rgba(6, 72, 90, 0.28);
}

.page-visual-clips span:nth-child(3),
.page-visual-image span:nth-child(3),
.page-visual-live span:nth-child(3),
.visual-clips span:nth-child(3),
.visual-live span:nth-child(3),
.about-visual span:nth-child(3) {
  background: linear-gradient(135deg, rgba(243, 162, 148, 0.42), rgba(255, 255, 255, 0.5));
}

.rec-indicator span,
.hero-video-badge--rec span {
  background: var(--color-brand-coral);
  box-shadow: 0 0 0 5px rgba(243, 162, 148, 0.16);
}

.hero-video-badge,
.hero-video-card {
  color: var(--color-brand-blue-deep);
}

.hero-video-card span {
  color: var(--color-brand-blue);
}

.project-showcase,
.portfolio-section,
.offer,
.process,
.conditions {
  background:
    radial-gradient(circle at 18% 0%, rgba(6, 72, 90, 0.08), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(243, 162, 148, 0.12), transparent 30%);
}

.about-panel,
.final-cta-panel {
  background:
    radial-gradient(circle at 14% 18%, rgba(6, 72, 90, 0.08), transparent 32%),
    radial-gradient(circle at 82% 14%, rgba(243, 162, 148, 0.14), transparent 32%),
    var(--color-glass-strong);
}

.faq-question span::before,
.faq-question span::after {
  background: var(--color-brand-blue);
}

.legal-note {
  background: rgba(243, 162, 148, 0.12);
  border-color: rgba(243, 162, 148, 0.24);
}

.site-footer {
  background:
    radial-gradient(circle at 10% 0%, rgba(6, 72, 90, 0.06), transparent 34%),
    radial-gradient(circle at 90% 0%, rgba(243, 162, 148, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.3);
}

@media (max-width: 1020px) {
  .site-logo-img {
    width: clamp(140px, 18vw, 170px);
  }
}

@media (max-width: 860px) {
  .site-logo-img {
    width: clamp(126px, 34vw, 150px);
    max-height: 50px;
  }

  .site-nav {
    background: rgba(251, 250, 247, 0.94);
  }

  .site-nav .nav-mobile-cta:hover,
  .site-nav .nav-mobile-cta:focus-visible {
    color: var(--color-brand-blue-dark);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 42%),
      linear-gradient(135deg, rgba(238, 143, 128, 0.94), rgba(255, 202, 190, 0.84));
  }

  .footer-logo-img {
    width: clamp(150px, 48vw, 180px);
    max-height: 64px;
  }
}

@media (max-width: 380px) {
  .site-logo-img {
    width: 120px;
  }
}

/* Unified Hero Media Cards */
.hero-copy {
  position: relative;
  min-width: 0;
  max-width: 100%;
  z-index: 2;
}

.hero-media-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: clamp(420px, 38vw, 560px);
  margin: 0;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.42), transparent 34%),
    var(--color-glass);
  border: 1px solid var(--color-glass-border);
  border-radius: clamp(28px, 4vw, 44px);
  box-shadow:
    0 30px 88px rgba(6, 72, 90, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: var(--glass-blur-soft);
  backdrop-filter: var(--glass-blur-soft);
}

.hero-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 44%),
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.22), transparent 36%),
    linear-gradient(180deg, transparent 62%, rgba(6, 72, 90, 0.16));
  pointer-events: none;
}

.hero-media-card--video {
  filter: saturate(0.92) contrast(0.96) brightness(1.04);
}

.hero-media,
.hero-media-card img,
.hero-media-card video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.hero-media-card--video .hero-media {
  object-position: center;
}

.hero-media-card--image .hero-media {
  object-position: center;
}

.hero-media-card--portrait {
  width: min(100%, 460px);
  height: auto;
  max-height: 640px;
  aspect-ratio: 4 / 5;
  justify-self: center;
}

.hero-media-card--portrait .hero-media {
  min-height: 0;
  object-position: center 18%;
}

/* Wedding Image Integration */
.soft-image-frame,
.project-image {
  position: relative;
  overflow: hidden;
  display: block;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.42), transparent 34%),
    var(--color-glass);
  border: 1px solid var(--color-glass-border);
  box-shadow:
    0 28px 80px rgba(6, 72, 90, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: var(--glass-blur-soft);
  backdrop-filter: var(--glass-blur-soft);
}

.soft-image-frame {
  margin: 0;
  border-radius: clamp(26px, 4vw, 42px);
}

.soft-image-frame::after,
.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 44%),
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.2), transparent 36%);
  pointer-events: none;
}

.soft-image-frame img,
.project-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.project-card--with-image::before {
  display: none;
}

.project-card--with-image {
  padding-top: 1rem;
}

.project-image {
  aspect-ratio: 16 / 9;
  margin: -0.15rem -0.15rem 1.15rem;
  border-radius: 22px;
}

.service-visual-image-card {
  display: block;
  min-height: 190px;
  background: var(--color-glass);
}

.service-visual-image-card::before,
.service-visual-image-card::after {
  display: none;
}

.service-visual-image-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center 45%;
}

.service-card--eventfilm .service-visual-image-card img,
.service-card--imagefilm .service-visual-image-card img,
.service-card--social-clips .service-visual-image-card img,
.eventfilm-hero-media {
  object-position: center center;
}

.wedding-hero-image {
  height: clamp(420px, 38vw, 560px);
  isolation: isolate;
}

.wedding-hero-image .hero-media {
  object-position: center;
}

.wedding-style-stack {
  display: grid;
  gap: 1.1rem;
}

.wedding-style-stack .value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wedding-style-image {
  aspect-ratio: 16 / 9;
}

.wedding-style-image img {
  object-position: center 46%;
}

.wedding-atmosphere-image {
  width: min(100%, 980px);
  aspect-ratio: 16 / 9;
  margin: -1.1rem auto 2rem;
  border-radius: 34px;
}

.wedding-atmosphere-image img {
  object-position: center;
}

@media (max-width: 1020px) {
  .hero-media-card {
    width: min(100%, 680px);
    height: 390px;
  }

  .hero-media-card--portrait {
    width: min(100%, 420px);
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .wedding-hero-image {
    width: min(100%, 680px);
    height: 390px;
  }

  .wedding-style-stack .value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .subpage-nav {
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.75rem;
    overflow: hidden;
    border-radius: 24px;
  }

  .subpage-nav__back,
  .subpage-nav__current {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: flex-start;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .subpage-nav__back {
    font-size: 0.95rem;
  }

  .subpage-nav__current {
    font-size: 1rem;
  }

  .hero-media-card {
    width: 100%;
    height: 320px;
    border-radius: 30px;
  }

  .support-card-grid {
    grid-template-columns: 1fr;
  }

  .support-section__intro,
  .support-card {
    padding: clamp(1.25rem, 5vw, 1.75rem);
  }

  .hero-media-card--portrait {
    width: min(100%, 390px);
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 5;
    margin-inline: auto;
  }

  .hero-media-card--portrait .hero-media {
    object-position: center 14%;
  }

  .project-image {
    margin-bottom: 1rem;
    border-radius: 18px;
  }

  .wedding-hero-image {
    height: 320px;
  }

  .wedding-style-stack .value-grid {
    grid-template-columns: 1fr;
  }

  .wedding-atmosphere-image {
    margin: -0.4rem auto 1.35rem;
    border-radius: 24px;
  }
}

@media (max-width: 420px) {
  .hero-media-card {
    height: 280px;
    border-radius: 26px;
  }

  .hero-media-card--portrait {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .wedding-hero-image {
    height: 280px;
  }
}
