@font-face {
  font-family: 'Century Gothic Web';
  src: url('fonts/century-gothic-regular.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face { font-family: 'Poppins'; src: url('fonts/poppins-400.woff2') format('woff2'); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('fonts/poppins-500.woff2') format('woff2'); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('fonts/poppins-600.woff2') format('woff2'); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('fonts/poppins-700.woff2') format('woff2'); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('fonts/poppins-800.woff2') format('woff2'); font-style: normal; font-weight: 800; font-display: swap; }

:root {
  --red: #8e1616;
  --red-bright: #b52828;
  --ink: #0b0b0c;
  --charcoal: #161618;
  --slate: #252528;
  --warm: #f3f0eb;
  --paper: #fbfaf8;
  --muted: #696765;
  --line: rgba(11, 11, 12, 0.12);
  --white-line: rgba(255, 255, 255, 0.15);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.13);
  --page-bg: #fbfaf8;
  --page-text: #0b0b0c;
  --surface: #ffffff;
  --surface-alt: #f3f0eb;
  --field-bg: #ffffff;
  --field-border: #d7d2cc;
  --radius: 18px;
  --container: min(1180px, calc(100% - 48px));
  --font-main: 'Poppins', sans-serif;
  --font-secondary: 'Century Gothic Web', 'Century Gothic', CenturyGothic, 'Avenir Next', sans-serif;
  --ease: cubic-bezier(.2, .65, .25, 1);
}

html { color-scheme: light; }
html[data-theme='dark'] {
  color-scheme: dark;
  --page-bg: #0e0e10;
  --page-text: #f5f2ed;
  --surface: #171719;
  --surface-alt: #1c1c1f;
  --field-bg: #111113;
  --field-border: #3d3b3b;
  --muted: #b8b4ae;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--page-text);
  background: var(--page-bg);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: color .3s var(--ease), background-color .3s var(--ease);
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { color: #fff; background: var(--red); }
:focus-visible { outline: 3px solid #e45757; outline-offset: 4px; }

.skip-link {
  position: fixed; left: 20px; top: -80px; z-index: 9999;
  padding: 12px 18px; color: #fff; background: var(--red); border-radius: 8px;
}
.skip-link:focus { top: 16px; }
.container { width: var(--container); margin-inline: auto; }
#services > .container { width: calc(100% - clamp(30px, 4vw, 72px)); max-width: none; }
#cog-difference > .container { width: calc(100% - clamp(30px, 4vw, 72px)); max-width: none; }
#featured-work > .container { width: calc(100% - clamp(30px, 4vw, 72px)); max-width: none; }
#featured-work .section-heading > div:first-child { max-width: none; }
#featured-work .section-heading h2 { font-size: clamp(1.15rem, 3.6vw, 3.9rem); white-space: nowrap; }
#process > .container { width: calc(100% - clamp(30px, 4vw, 72px)); max-width: none; }
#about-company > .container { width: calc(100% - clamp(30px, 4vw, 72px)); max-width: none; }
#about-mission > .container { width: calc(100% - clamp(30px, 4vw, 72px)); max-width: none; }
#about-difference > .container { width: calc(100% - clamp(30px, 4vw, 72px)); max-width: none; }
#about-approach > .container { width: calc(100% - clamp(30px, 4vw, 72px)); max-width: none; }
#about-audience > .container { width: calc(100% - clamp(30px, 4vw, 72px)); max-width: none; }
#portfolio-gallery > .container { width: calc(100% - clamp(30px, 4vw, 72px)); max-width: none; }
#studio-location > .container { width: calc(100% - clamp(30px, 4vw, 72px)); max-width: none; }
#about-difference .section-heading > div:first-child { max-width: none; }
#about-difference .section-heading h2 { font-size: clamp(2rem, 3.7vw, 3.8rem); white-space: nowrap; }
#services .section-heading > div:first-child { max-width: none; }
#services .section-heading h2 { white-space: nowrap; }
#cog-difference .section-heading > div:first-child { max-width: none; }
#cog-difference .section-heading h2 { font-size: clamp(2.35rem, 4.1vw, 4.2rem); white-space: nowrap; }
.section { padding: 112px 0; }
.section-sm { padding: 80px 0; }
.dark { color: #fff; background: var(--ink); }
.warm { background: var(--surface-alt); }
.red-section { color: #fff; background: var(--red); }
.kicker {
  display: inline-flex; gap: 10px; align-items: center; margin: 0 0 18px;
  color: var(--red); font-size: .77rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
.kicker::before { width: 28px; height: 2px; content: ''; background: currentColor; }
.dark .kicker, .red-section .kicker { color: #f4a7a7; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-secondary); line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 7vw, 6.7rem); }
h2 { margin-bottom: 24px; font-size: clamp(2.35rem, 4.6vw, 4.6rem); }
h3 { font-size: 1.35rem; }
.lead { max-width: 720px; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.dark .lead { color: #c9c7c4; }
.section-heading { display: flex; gap: 48px; align-items: end; justify-content: space-between; margin-bottom: 52px; }
.section-heading > div:first-child { max-width: 780px; }
.section-heading > p { max-width: 450px; color: var(--muted); }
.section-heading h2 { margin-bottom: 0; }
.home-hero-lead,
.hero-copy,
.lead,
.section-heading > p,
.detail-content > p,
.form-heading p {
  font-family: var(--font-secondary);
  font-weight: 400;
}

.btn {
  display: inline-flex; min-height: 52px; padding: 0 22px; gap: 10px; align-items: center; justify-content: center;
  border: 1px solid transparent; border-radius: 7px; font-size: .88rem; font-weight: 700;
  letter-spacing: .02em; transition: transform .25s var(--ease), background .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { color: #fff; background: var(--red); }
.btn-red:hover { background: var(--red-bright); }
.btn-light { color: var(--ink); background: #fff; }
.btn-light:hover { background: var(--warm); }
.btn-outline { color: #fff; border-color: rgba(255,255,255,.45); background: transparent; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-dark { color: #fff; background: var(--ink); }
.text-link { display: inline-flex; gap: 9px; align-items: center; color: var(--red); font-size: .86rem; font-weight: 700; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000; height: 88px; color: #fff;
  border-bottom: 1px solid transparent; transition: height .25s, color .25s, background .25s, border-color .25s;
}
.site-header.scrolled, .site-header.solid { height: 76px; border-color: var(--white-line); background: rgba(8,8,9,.94); backdrop-filter: blur(18px); }
html[data-theme='light'] .site-header.scrolled,
html[data-theme='light'] .site-header.solid,
html[data-theme='light'] .site-header.menu-active { color: var(--ink); border-color: var(--line); background: rgba(251,250,248,.96); }
html[data-theme='light'] .site-header { color: var(--ink); border-color: var(--line); background: rgba(251,250,248,.96); backdrop-filter: blur(18px); }
.site-header .nav-shell { width: calc(100% - clamp(30px, 4vw, 72px)); max-width: none; }
.nav-shell { position: relative; display: flex; height: 100%; align-items: center; justify-content: space-between; }
.nav-shell > nav { position: absolute; left: 50%; transform: translateX(-50%); }
.nav-actions { display: flex; margin-left: auto; gap: 12px; align-items: center; }
.mobile-nav-action { display: none; }
.brand { display: flex; gap: 12px; align-items: center; font-weight: 800; letter-spacing: -.03em; }
.header-brand-fallback { display: flex; gap: 12px; align-items: center; }
.brand-logo { display: none; width: 103px; height: 64px; object-fit: contain; }
html[data-theme='light'] .header-brand .brand-logo-light { display: block; }
html[data-theme='light'] .header-brand-fallback { display: none; }
html[data-theme='dark'] .header-brand .brand-logo-dark { display: block; mix-blend-mode: screen; }
html[data-theme='dark'] .header-brand-fallback { display: none; }
.header-brand .brand-logo-dark { width: 90px; height: 56px; }
.brand-mark {
  display: grid; width: 42px; height: 42px; place-items: center; border: 2px solid currentColor;
  border-radius: 50%; font-family: var(--font-secondary); font-size: .95rem;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text small { margin-top: 4px; color: #bbb; font-size: .51rem; letter-spacing: .18em; text-transform: uppercase; }
html[data-theme='light'] .site-header.scrolled .brand-text small,
html[data-theme='light'] .site-header.solid .brand-text small,
html[data-theme='light'] .site-header.menu-active .brand-text small { color: #6f6b67; }
.nav-links,
.nav-links a,
.nav-links button,
.nav-actions,
.nav-actions a,
.nav-actions button { font-family: var(--font-secondary) !important; }
.nav-links { display: flex; gap: 24px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a:not(.btn) { position: relative; font-size: .83rem; font-weight: 600; }
.nav-links a:not(.btn)::after { position: absolute; right: 100%; bottom: -8px; left: 0; height: 2px; content: ''; background: #e04b4b; transition: right .25s; }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-item-has-submenu { position: relative; }
.nav-parent { display: flex; gap: 4px; align-items: center; }
.nav-submenu-toggle { display: grid; width: 25px; height: 25px; padding: 0; place-items: center; color: currentColor; border: 0; background: transparent; transition: color .2s, transform .25s; }
.nav-submenu-toggle svg { width: 16px; height: 16px; }
.nav-item-has-submenu:hover .nav-submenu-toggle,
.nav-item-has-submenu:focus-within .nav-submenu-toggle,
.nav-item-has-submenu.submenu-open .nav-submenu-toggle { color: var(--red); transform: rotate(180deg); }
.nav-submenu { position: absolute; top: calc(100% + 18px); left: 50%; width: 210px; margin: 0; padding: 10px; z-index: 20; list-style: none; color: var(--page-text); border: 1px solid var(--line); border-radius: 14px; background: var(--surface); box-shadow: var(--shadow); opacity: 0; visibility: hidden; pointer-events: none; transform: translate(-50%, -8px); transition: opacity .2s, visibility .2s, transform .25s var(--ease); }
.nav-submenu::before { position: absolute; right: 0; bottom: 100%; left: 0; height: 20px; content: ''; }
.nav-item-has-submenu:hover .nav-submenu,
.nav-item-has-submenu:focus-within .nav-submenu,
.nav-item-has-submenu.submenu-open .nav-submenu { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.nav-submenu a { display: block; padding: 10px 12px; border-radius: 8px; font-size: .8rem; font-weight: 600; transition: color .2s, background .2s; }
.nav-submenu a:hover,
.nav-submenu a:focus-visible { color: var(--red); background: var(--surface-alt); }
.nav-submenu a::after { display: none; }
.menu-toggle { display: none; width: 46px; height: 46px; color: currentColor; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 6px auto; background: currentColor; transition: .25s; }
.theme-toggle {
  position: relative; display: inline-flex; width: 42px; height: 42px; padding: 0; gap: 9px; align-items: center; justify-content: center;
  color: #fff; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(255,255,255,.06);
  transition: color .25s, border-color .25s, background .25s, transform .25s var(--ease);
}
.theme-toggle:hover { color: #ffd6a0; border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.12); transform: rotate(8deg); }
html[data-theme='light'] .site-header.scrolled .theme-toggle,
html[data-theme='light'] .site-header.solid .theme-toggle,
html[data-theme='light'] .site-header.menu-active .theme-toggle { color: var(--ink); border-color: rgba(11,11,12,.22); background: rgba(11,11,12,.04); }
html[data-theme='light'] .site-header .theme-toggle { color: var(--ink); border-color: rgba(11,11,12,.22); background: rgba(11,11,12,.04); }
html[data-theme='light'] .site-header.scrolled .theme-toggle:hover,
html[data-theme='light'] .site-header.solid .theme-toggle:hover,
html[data-theme='light'] .site-header.menu-active .theme-toggle:hover { color: var(--red); border-color: rgba(142,22,22,.45); background: rgba(142,22,22,.07); }
html[data-theme='light'] .site-header .theme-toggle:hover { color: var(--red); border-color: rgba(142,22,22,.45); background: rgba(142,22,22,.07); }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle span { line-height: 0; }
.theme-toggle .theme-label { display: none; font-size: .79rem; font-weight: 700; line-height: 1; }
.theme-toggle .sun-icon { display: none; }
html[data-theme='dark'] .theme-toggle .moon-icon { display: none; }
html[data-theme='dark'] .theme-toggle .sun-icon { display: block; }

/* Hero */
.home-hero {
  position: relative; display: flex; height: 100vh; height: 100svh; height: 100dvh; min-height: 0;
  padding-top: clamp(120px, 15vh, 168px); flex-direction: column; color: var(--page-text);
  background: radial-gradient(circle at 68% 18%, rgba(142,22,22,.07), transparent 23%), linear-gradient(180deg, #f8f4ef 0%, #fbfaf8 68%, #f2ede7 100%);
  isolation: isolate; overflow: hidden;
}
html[data-theme='dark'] .home-hero { background: radial-gradient(circle at 68% 18%, rgba(181,40,40,.15), transparent 25%), linear-gradient(180deg, #111113 0%, #0e0e10 68%, #171719 100%); }
.home-hero .container { width: min(1500px, calc(100% - clamp(40px, 7vw, 140px))); }
.home-hero-copy { position: relative; z-index: 2; flex: 0 0 auto; }
.home-eyebrow { margin-bottom: 22px; color: var(--red); font-size: clamp(.68rem, .95vw, .86rem); font-weight: 600; letter-spacing: .23em; text-transform: uppercase; }
html[data-theme='dark'] .home-eyebrow { color: #ef6969; }
.home-hero h1 { max-width: 1320px; margin-bottom: clamp(14px, 2vh, 24px); font-family: var(--font-main); font-size: clamp(2.9rem, min(5.4vw, 9.5vh), 6.1rem); font-weight: 800; line-height: .9; letter-spacing: -.07em; }
.home-hero h1 span { display: inline-block; }
.home-hero-lead { max-width: 1180px; margin-bottom: clamp(18px, 2.6vh, 28px); color: #77747a; font-size: clamp(.95rem, min(1.38vw, 2.1vh), 1.3rem); line-height: 1.55; }
html[data-theme='dark'] .home-hero-lead { color: #b8b4ae; }
.home-hero-actions { display: flex; gap: 14px; }
.home-hero-actions .btn { min-width: 190px; border-radius: 100px; }
.hero-collage-shell { width: min(1280px, calc(100% - 40px)); min-height: 0; margin: -12px auto 0; flex: 1 1 auto; overflow: visible; }
.hero-collage { display: flex; height: 100%; max-height: 500px; gap: 18px; align-items: end; justify-content: center; perspective: 1400px; transform-style: preserve-3d; }
.hero-shot { position: relative; bottom: -24px; width: 17%; height: calc(71% + 24px); margin: 0; border-radius: 20px 20px 0 0; box-shadow: none; overflow: hidden; transform-style: preserve-3d; transition: transform .5s var(--ease), translate .3s var(--ease); will-change: transform; animation: heroUp .75s var(--ease) both; }
.hero-shot:nth-child(1) { height: calc(73% + 24px); animation-delay: .08s; }
.hero-shot:nth-child(2) { height: calc(69% + 24px); animation-delay: .14s; }
.hero-shot:nth-child(3) { width: 24%; height: calc(95% + 24px); animation-delay: .2s; }
.hero-shot:nth-child(4) { height: calc(68% + 24px); animation-delay: .26s; }
.hero-shot:nth-child(5) { height: calc(72% + 24px); animation-delay: .32s; }
.hero-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.hero-shot:nth-child(1) img { object-position: center 28%; }
.hero-shot:nth-child(2) img { object-position: center 24%; }
.hero-shot:nth-child(3) img { object-position: center 38%; }
.hero-shot:hover img { transform: scale(1.035); }
@media (hover: hover) and (pointer: fine) { .hero-shot:hover { z-index: 6; translate: 0 -8px; } }
.home-hero-rail { position: relative; z-index: 20; display: flex; min-height: 0; padding: 12px clamp(20px, 3.7vw, 72px); gap: 32px; flex: 0 0 80px; align-items: center; color: var(--page-text); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.85); backdrop-filter: blur(12px); }
html[data-theme='dark'] .home-hero-rail { background: rgba(24,24,27,.72); }
.home-hero-rail p { max-width: 560px; margin: 0; flex: 0 0 auto; color: #56535a; font-family: var(--font-secondary); font-size: .74rem; font-weight: 500; letter-spacing: .24em; line-height: 1.55; text-transform: uppercase; }
html[data-theme='dark'] .home-hero-rail p { color: #d0cdd1; }
.hero-tags { min-width: 0; flex: 1 1 auto; overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%); mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%); }
.hero-tags-track { display: flex; width: max-content; animation: hero-tags-scroll 26s linear infinite; will-change: transform; }
.hero-tags ul { display: flex; margin: 0; padding: 0 9px 0 0; gap: 9px; flex: 0 0 auto; align-items: center; list-style: none; }
.hero-tags li { padding: 7px 13px; flex: 0 0 auto; color: #4e4b51; border: 1px solid rgba(0,0,0,.05); border-radius: 100px; background: rgba(0,0,0,.03); font-family: var(--font-secondary); font-size: .76rem; white-space: nowrap; }
html[data-theme='dark'] .hero-tags li { color: #e2dfe3; border-color: rgba(255,255,255,.1); background: rgba(255,255,255,.04); }
@keyframes hero-tags-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes heroUp { from { opacity: 0; } to { opacity: 1; } }

.photo-motion {
  translate: var(--scroll-x, 0px) var(--scroll-y, 0px); rotate: var(--scroll-r, 0deg);
  transition: translate .46s var(--ease), rotate .46s var(--ease); will-change: translate, rotate;
}
@media (hover: hover) and (pointer: fine) {
  .photo-motion:hover {
    z-index: 6;
    translate: calc(var(--scroll-x, 0px) + var(--photo-x, 8px)) calc(var(--scroll-y, 0px) + var(--photo-y, -6px));
    rotate: calc(var(--scroll-r, 0deg) + var(--photo-r, 1deg));
  }
}

.hero {
  position: relative; display: flex; min-height: 100svh; color: #fff; background: #111 center/cover no-repeat;
  isolation: isolate; overflow: hidden;
}
.hero::before { position: absolute; inset: 0; z-index: -1; content: ''; background: linear-gradient(90deg, rgba(4,4,5,.94) 0%, rgba(4,4,5,.72) 46%, rgba(4,4,5,.22) 100%), linear-gradient(0deg, rgba(0,0,0,.78), transparent 48%); }
.hero::after { position: absolute; inset: auto 0 0; height: 5px; content: ''; background: linear-gradient(90deg, var(--red) 0 30%, transparent 30%); }
.hero-home { background-image: url('hero/hero-event-img-1875.jpg'); }
.hero-content { width: 100%; margin: auto 0 76px; padding-top: 140px; }
.hero h1 { max-width: 1020px; margin-bottom: 25px; }
.hero h1 em { color: #e95454; font-style: normal; }
.hero-copy { max-width: 770px; margin-bottom: 34px; color: #e4e1dd; font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.trust-line { display: flex; gap: 12px; align-items: center; margin-top: 30px; color: #c9c5c0; font-size: .82rem; letter-spacing: .05em; }
.trust-line::before { width: 7px; height: 7px; content: ''; background: #e95454; border-radius: 50%; box-shadow: 0 0 0 5px rgba(233,84,84,.16); }
.hero-index { position: absolute; right: 4vw; bottom: 58px; color: rgba(255,255,255,.55); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; writing-mode: vertical-rl; }
.page-hero { min-height: 65svh; }
.page-hero .hero-content { margin-bottom: 60px; }
.page-hero h1 { max-width: 920px; font-size: clamp(3.3rem, 7vw, 6.5rem); }
.hero-about { width: 100%; max-width: none; background-image: url('about/about-hero-rice-event.jpg'); background-position: center center; }
.hero-about .hero-content { width: calc(100% - clamp(30px, 4vw, 72px)); max-width: none; margin-inline: auto; }
.hero-services { width: 100%; max-width: none; background-image: url('services/services-hero-live-production.jpg'); background-position: center center; }
.hero-services .hero-content { width: calc(100% - clamp(30px, 4vw, 72px)); max-width: none; margin-inline: auto; }
.hero-portfolio { width: 100%; max-width: none; background-image: url('portfolio/corporate/regional-learning-accountability-event-2025-panel.jpg'); }
.hero-portfolio .hero-content { width: calc(100% - clamp(30px, 4vw, 72px)); max-width: none; margin-inline: auto; }
.hero-contact { width: 100%; max-width: none; background-image: url('contact/contact-hero-img-1772.jpg'); background-position: center 55%; }
.hero-contact .hero-content { width: calc(100% - clamp(30px, 4vw, 72px)); max-width: none; margin-inline: auto; }
.hero-pricing {
  width: 100%; max-width: none;
  background-image:
    radial-gradient(circle at 82% 42%, rgba(181,40,40,.48) 0, rgba(142,22,22,.2) 17%, transparent 39%),
    linear-gradient(120deg, #070708 0%, #171113 58%, #340f12 100%);
}
.hero-pricing::before { background: linear-gradient(90deg, rgba(4,4,5,.9) 0%, rgba(4,4,5,.58) 50%, rgba(4,4,5,.08) 100%), linear-gradient(0deg, rgba(0,0,0,.64), transparent 55%); }
.hero-pricing .hero-content { width: calc(100% - clamp(30px, 4vw, 72px)); max-width: none; margin-inline: auto; }

/* Pricing */
.pricing-intro > .container,
.pricing-service > .container,
.pricing-notes > .container,
.pricing-faq > .container { width: calc(100% - clamp(30px, 4vw, 72px)); max-width: none; }
.pricing-intro { padding-bottom: 38px; border-bottom: 1px solid var(--line); }
.pricing-intro-copy { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(300px, .7fr); gap: 64px; align-items: end; }
.pricing-intro-copy h2 { max-width: 850px; margin-bottom: 0; }
.pricing-intro-copy > p { max-width: 600px; margin: 0; color: var(--muted); font-family: var(--font-secondary); }
.pricing-anchor-nav {
  display: flex; margin-top: 42px; padding: 9px; gap: 7px; overflow-x: auto; border: 1px solid var(--line); border-radius: 12px;
  background: var(--surface); scrollbar-width: thin; overscroll-behavior-inline: contain;
}
.pricing-anchor-nav a { padding: 11px 16px; flex: 1 0 auto; border-radius: 7px; font-family: var(--font-secondary); font-size: .78rem; font-weight: 700; text-align: center; white-space: nowrap; transition: color .2s, background .2s; }
.pricing-anchor-nav a:hover, .pricing-anchor-nav a:focus-visible { color: #fff; background: var(--red); }
.pricing-service { scroll-margin-top: 76px; }
.pricing-service-head { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(290px, .65fr); gap: 64px; align-items: end; margin-bottom: 54px; }
.pricing-service-head h2 { max-width: 930px; margin-bottom: 0; font-size: clamp(2.2rem, 4.1vw, 4.3rem); }
.pricing-service-head > p { max-width: 560px; margin: 0; color: var(--muted); font-family: var(--font-secondary); }
.pricing-service-head .text-link { margin-top: 16px; }
.dark .pricing-service-head > p { color: #c9c7c4; }
.dark .pricing-service-head .text-link { color: #f17171; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 1.8vw, 28px); align-items: stretch; }
.pricing-card {
  position: relative; display: flex; min-height: 610px; padding: clamp(28px, 2.5vw, 40px); flex-direction: column; justify-content: space-between;
  border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: 0 14px 45px rgba(0,0,0,.045);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.pricing-card:hover { transform: translateY(-7px); border-color: rgba(142,22,22,.4); box-shadow: var(--shadow); }
.pricing-card-featured { border: 2px solid var(--red); box-shadow: 0 22px 58px rgba(142,22,22,.14); }
.pricing-badge { position: absolute; top: 0; right: 28px; padding: 8px 13px; color: #fff; border-radius: 0 0 8px 8px; background: var(--red); font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.pricing-plan { margin-bottom: 14px; color: var(--red); font-family: var(--font-secondary); font-size: 1.45rem; font-weight: 700; letter-spacing: -.02em; }
.pricing-audience { min-height: 54px; margin: 0 0 12px; color: var(--text); font-family: var(--font-secondary); font-size: .82rem; line-height: 1.55; }
.pricing-audience strong { color: var(--red); }
.pricing-summary { min-height: 54px; margin-bottom: 28px; color: var(--muted); font-family: var(--font-secondary); font-size: .91rem; }
.pricing-price { display: flex; margin-bottom: 30px; flex-direction: column; }
.pricing-price span { color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.pricing-price strong { margin: 4px 0; font-family: var(--font-secondary); font-size: clamp(2rem, 3.1vw, 3.1rem); line-height: 1; letter-spacing: -.055em; white-space: nowrap; }
.pricing-price small { color: var(--muted); font-size: .73rem; }
.pricing-features { margin: 0 0 34px; padding: 0; list-style: none; }
.pricing-features li { position: relative; padding: 12px 0 12px 28px; border-top: 1px solid var(--line); font-size: .84rem; }
.pricing-features li::before { position: absolute; top: 13px; left: 1px; display: grid; width: 17px; height: 17px; content: '✓'; place-items: center; color: #fff; border-radius: 50%; background: var(--red); font-size: .65rem; font-weight: 800; }
.pricing-card .btn { width: 100%; }
.dark .pricing-card { border-color: rgba(255,255,255,.14); background: #171719; box-shadow: none; }
.dark .pricing-card:hover { border-color: rgba(239,105,105,.55); box-shadow: 0 24px 70px rgba(0,0,0,.4); }
.dark .pricing-card-featured { border-color: #c63e3e; }
.dark .pricing-plan { color: #f17171; }
.dark .pricing-summary, .dark .pricing-price span, .dark .pricing-price small { color: #c5c1bc; }
.dark .pricing-features li { border-color: rgba(255,255,255,.13); }
.pricing-grid-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.content-pricing-grid .pricing-card { min-height: 830px; }
.content-addons { margin-top: 72px; padding: clamp(28px, 4vw, 56px); border-radius: 24px; background: var(--charcoal); }
.content-addons-head { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .6fr); gap: 48px; align-items: end; margin-bottom: 32px; }
.content-addons-head h3 { max-width: 720px; margin: 0; color: #fff; font-size: clamp(1.7rem, 3.2vw, 3rem); }
.content-addons-head > p { max-width: 470px; margin: 0; color: #c9c7c4; font-family: var(--font-secondary); }
.content-addon-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.13); }
.content-addon-grid > div { display: flex; min-height: 170px; padding: 25px; flex-direction: column; background: #171719; }
.content-addon-grid span { color: #fff; font-family: var(--font-secondary); font-size: .83rem; font-weight: 700; }
.content-addon-grid strong { margin-top: auto; color: #f17171; font-family: var(--font-secondary); font-size: clamp(1.15rem, 1.7vw, 1.55rem); letter-spacing: -.04em; }
.content-addon-grid small { margin-top: 3px; color: #aaa6a1; font-size: .68rem; }
.content-vat-note { margin: 22px 0 0; color: #aaa6a1; font-family: var(--font-secondary); font-size: .72rem; letter-spacing: .04em; text-align: right; text-transform: uppercase; }
.wedding-pricing { overflow: hidden; }
.wedding-pricing .pricing-card { min-height: 790px; }
.wedding-addons { margin-top: 72px; padding-top: 56px; border-top: 1px solid rgba(255,255,255,.14); }
.wedding-addons-head { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .6fr); gap: 48px; align-items: end; margin-bottom: 32px; }
.wedding-addons-head h3 { max-width: 720px; margin: 0; color: #fff; font-size: clamp(1.7rem, 3.2vw, 3rem); }
.wedding-addons-head > p { max-width: 470px; margin: 0; color: #c9c7c4; font-family: var(--font-secondary); }
.wedding-addon-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.13); }
.wedding-addon-grid > div { display: flex; min-height: 160px; padding: 25px; flex-direction: column; background: #171719; }
.wedding-addon-grid span { color: #fff; font-family: var(--font-secondary); font-size: .83rem; font-weight: 700; }
.wedding-addon-grid strong { margin-top: auto; color: #f17171; font-family: var(--font-secondary); font-size: 1.55rem; letter-spacing: -.04em; }
.wedding-addon-grid small { margin-top: 3px; color: #aaa6a1; font-size: .68rem; }
.pricing-addons { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--white-line); }
.pricing-addons > div { min-height: 245px; padding: 32px 28px; background: var(--charcoal); }
.pricing-addons span { display: block; margin-bottom: 48px; color: #ef6969; font-family: var(--font-secondary); font-size: 1.7rem; }
.pricing-addons h3 { margin-bottom: 12px; color: #fff; }
.pricing-addons p { margin: 0; color: #c9c5c0; font-size: .84rem; }
.faq-list { max-width: 1050px; margin-left: auto; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 52px 24px 0; cursor: pointer; list-style: none; font-family: var(--font-secondary); font-size: clamp(1.05rem, 1.6vw, 1.3rem); font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 20px; right: 5px; display: grid; width: 34px; height: 34px; content: '+'; place-items: center; color: var(--red); border: 1px solid var(--line); border-radius: 50%; font-size: 1.25rem; transition: transform .25s, color .25s, background .25s; }
.faq-list details[open] summary::after { color: #fff; background: var(--red); transform: rotate(45deg); }
.faq-list details p { max-width: 850px; padding: 0 52px 24px 0; color: var(--muted); font-family: var(--font-secondary); }

/* Cards and content */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 350px; padding: 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; transition: color .35s; }
.service-card::before { position: absolute; inset: 100% 0 0; z-index: -1; content: ''; background: var(--ink); transition: inset .45s var(--ease); }
.service-card:hover { color: #fff; }
.service-card:hover::before { inset: 0; }
.service-card:hover p { color: #bdbab6; }
.service-card:hover .service-icon { color: #ef6969; border-color: rgba(255,255,255,.2); }
.service-card:hover .text-link { color: #ef6969; }
.service-num { position: absolute; top: 30px; right: 30px; color: #aaa7a3; font-size: .7rem; letter-spacing: .15em; }
.service-icon { display: grid; width: 58px; height: 58px; margin-bottom: 40px; place-items: center; color: var(--red); border: 1px solid var(--line); border-radius: 50%; }
.service-icon svg { width: 26px; height: 26px; stroke-width: 1.6; }
.service-card p { color: var(--muted); font-size: .91rem; transition: color .35s; }
.service-card .text-link { position: absolute; bottom: 34px; }

.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--white-line); }
.benefit { min-height: 300px; padding: 36px 30px; background: var(--charcoal); }
.benefit strong { display: block; margin-bottom: 60px; color: #ef6969; font-family: var(--font-secondary); font-size: 2rem; }
.benefit h3 { color: #fff; font-size: 1.25rem; }
.benefit p { margin-bottom: 0; color: #cbc8c4; font-size: .88rem; }

.portfolio-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.work-card { position: relative; min-height: 430px; color: #fff; border-radius: var(--radius); overflow: hidden; isolation: isolate; }
.work-card:nth-child(1), .work-card:nth-child(4) { grid-column: span 7; }
.work-card:nth-child(2), .work-card:nth-child(3) { grid-column: span 5; }
.work-card img { position: absolute; inset: 0; z-index: -2; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.work-card::after { position: absolute; inset: 0; z-index: -1; content: ''; background: linear-gradient(0deg, rgba(0,0,0,.9), transparent 65%); }
.work-card:hover img { transform: scale(1.05); }
.work-content { position: absolute; right: 30px; bottom: 28px; left: 30px; transform: translateY(12px); transition: transform .35s; }
.work-card:hover .work-content { transform: none; }
.work-category { display: inline-block; margin-bottom: 9px; color: #f17171; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.work-card h3 { margin-bottom: 6px; font-size: 1.65rem; }
.work-card p { max-width: 520px; margin: 0; color: #d0cecb; font-size: .85rem; opacity: 0; transition: opacity .35s; }
.work-card:hover p { opacity: 1; }
.featured-category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.featured-category-grid .work-card { grid-column: auto; min-height: clamp(360px, 32vw, 510px); text-decoration: none; }
.featured-category-card:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }
.featured-category-card p { font-weight: 600; letter-spacing: .02em; }
.portfolio-action { margin-top: 38px; text-align: center; }
.portfolio-full .work-card.lightbox-trigger { cursor: zoom-in; }
.portfolio-full .work-card.lightbox-trigger::before { position: absolute; top: 18px; right: 18px; z-index: 3; display: grid; width: 42px; height: 42px; content: '+'; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(0,0,0,.42); font-size: 1.35rem; line-height: 1; opacity: 0; transform: scale(.8); transition: opacity .25s, transform .25s, background .25s; backdrop-filter: blur(8px); }
.portfolio-full .work-card.lightbox-trigger:hover::before,
.portfolio-full .work-card.lightbox-trigger:focus-visible::before { opacity: 1; transform: scale(1); background: var(--red); }
.portfolio-full .work-card[data-youtube-feed]::after { display: none; }
.media-lightbox { width: min(94vw, 1600px); max-width: none; max-height: 94dvh; margin: auto; padding: 0; color: #fff; border: 0; overflow: visible; background: transparent; }
.media-lightbox::backdrop { background: rgba(3,3,4,.92); backdrop-filter: blur(12px); }
.media-lightbox-shell { position: relative; display: grid; width: 100%; max-height: 92dvh; place-items: center; }
.media-lightbox-figure { display: flex; max-width: 100%; max-height: 92dvh; margin: 0; flex-direction: column; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: #080809; box-shadow: 0 34px 100px rgba(0,0,0,.55); }
.media-lightbox-media { display: block; width: auto; max-width: 100%; height: auto; max-height: calc(92dvh - 82px); margin: auto; object-fit: contain; background: #080809; }
.media-lightbox-youtube { width: min(88vw, calc((92dvh - 82px) * 1.7778), 1400px); max-width: 100%; aspect-ratio: 16 / 9; height: auto; border: 0; }
.media-lightbox-caption { display: flex; min-height: 70px; padding: 16px 72px 16px 22px; gap: 4px; flex-direction: column; justify-content: center; border-top: 1px solid rgba(255,255,255,.12); }
.media-lightbox-caption[hidden] { display: none; }
.media-lightbox-caption strong { font-family: var(--font-secondary); font-size: 1rem; }
.media-lightbox-caption span { color: #b9b6b2; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.media-lightbox-nav { position: absolute; top: 50%; z-index: 5; display: grid; width: 56px; height: 56px; padding: 0; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; background: rgba(0,0,0,.58); font-size: 1.55rem; line-height: 1; transform: translateY(-50%); transition: background .2s, border-color .2s, transform .2s; backdrop-filter: blur(8px); }
.media-lightbox-prev { left: 14px; }
.media-lightbox-next { right: 14px; }
.media-lightbox-nav:hover,
.media-lightbox-nav:focus-visible { border-color: var(--red); background: var(--red); transform: translateY(-50%) scale(1.06); }
.media-lightbox-nav[hidden] { display: none; }
.media-lightbox-close { position: absolute; top: 14px; right: 14px; z-index: 4; display: grid; width: 46px; height: 46px; padding: 0; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(0,0,0,.58); font-size: 1.65rem; line-height: 1; transition: background .2s, transform .2s; backdrop-filter: blur(8px); }
.media-lightbox-close:hover { background: var(--red); transform: rotate(6deg); }

.process-list { border-top: 1px solid var(--line); }
.process-item { display: grid; grid-template-columns: 100px .8fr 1fr; gap: 35px; padding: 42px 0; align-items: start; border-bottom: 1px solid var(--line); transition: padding .25s; }
.process-item:hover { padding-left: 12px; }
.process-number { color: var(--red); font-size: .8rem; font-weight: 700; letter-spacing: .13em; }
.process-item h3 { margin: 0; font-size: clamp(1.4rem, 2vw, 2rem); }
.process-item p { margin: 0; color: var(--muted); }

.industries { display: flex; flex-wrap: wrap; gap: 12px; }
.industry-pill { padding: 15px 21px; color: #e3e1de; border: 1px solid var(--white-line); border-radius: 100px; font-size: .87rem; transition: background .2s, color .2s; }
.industry-pill:hover { color: var(--ink); background: #fff; }

.testimonial-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 72px; align-items: center; }
.testimonial-slider { position: relative; min-width: 0; overflow: hidden; }
.testimonial-track { display: flex; transition: transform .72s var(--ease); will-change: transform; }
.testimonial-track.no-transition { transition: none; }
.testimonial-slide { min-width: 0; padding-right: 24px; flex: 0 0 100%; }
.quote-mark { margin-bottom: 12px; color: var(--red); font-family: Georgia, serif; font-size: 6rem; line-height: .7; }
.quote { max-width: 800px; font-family: var(--font-secondary); font-size: clamp(1.7rem, 3vw, 2.8rem); line-height: 1.35; letter-spacing: -.025em; }
.testimonial-slide-long .quote { font-size: clamp(1.28rem, 1.75vw, 1.8rem); line-height: 1.45; }
.quote-author { margin-top: 30px; color: var(--muted); font-size: .83rem; }
.quote-author b { display: block; color: var(--page-text); }
.quote-author a { transition: color .2s; }
.quote-author a:hover { color: var(--red); }
.testimonial-dots { display: flex; margin-top: 34px; gap: 8px; align-items: center; }
.testimonial-dots:has(.testimonial-dot:only-child) { display: none; }
.testimonial-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: var(--line); transition: width .25s, border-radius .25s, background .25s; }
.testimonial-dot.active { width: 28px; border-radius: 100px; background: var(--red); }
.testimonial-side { position: relative; min-height: 430px; border-radius: 200px 200px 20px 20px; background: var(--charcoal); isolation: isolate; }
.testimonial-image { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: inherit; object-fit: cover; opacity: 0; transform: scale(1.04); transition: opacity .65s var(--ease), transform .8s var(--ease); }
.testimonial-image-mark { object-position: center top; }
.testimonial-image-primera { object-position: center 35%; }
.testimonial-image-annet { object-position: center 22%; }
.testimonial-image-rebecca { object-position: center 18%; }
.testimonial-image.active { opacity: 1; transform: scale(1); }
.testimonial-side::after { position: absolute; inset: 0; content: ''; border: 1px solid rgba(142,22,22,.4); border-radius: inherit; transform: translate(12px,12px); }

.clients-section { padding: 112px 0; border-top: 1px solid var(--line); background: rgba(255,255,255,.7); overflow: hidden; }
html[data-theme='dark'] .clients-section { background: rgba(24,24,27,.72); }
.clients-heading { width: calc(100% - clamp(30px, 4vw, 72px)); margin-inline: auto; }
.clients-heading > div:first-child { max-width: none; }
.clients-marquee { width: calc(100% - clamp(30px, 4vw, 72px)); margin: 46px auto 0; overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent 0, black 4%, black 96%, transparent 100%); mask-image: linear-gradient(to right, transparent 0, black 4%, black 96%, transparent 100%); }
.clients-track { display: flex; width: max-content; animation: clients-scroll 34s linear infinite; will-change: transform; }
.clients-group { display: flex; padding-right: 16px; gap: 16px; flex: 0 0 auto; }
.client-card { display: flex; width: 256px; height: 136px; padding: 12px 14px; align-items: center; justify-content: center; overflow: hidden; border: 1px solid rgba(0,0,0,.05); border-radius: 24px; background: #fff; transition: transform .3s var(--ease), border-color .3s; }
.client-card:hover { border-color: rgba(142,22,22,.25); transform: translateY(-4px); }
.client-card img { width: 100%; max-width: none; height: 100%; max-height: none; object-fit: contain; }
@keyframes clients-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.cta-band { position: relative; overflow: hidden; }
.cta-band::after { position: absolute; top: -160px; right: -100px; width: 440px; height: 440px; content: ''; border: 80px solid rgba(255,255,255,.05); border-radius: 50%; }
.cta-inner { position: relative; z-index: 1; display: flex; gap: 40px; align-items: end; justify-content: space-between; }
.cta-inner h2 { max-width: 800px; }
.cta-inner p { max-width: 700px; color: #f2cece; }
.cta-actions { display: flex; flex: 0 0 auto; gap: 12px; }

/* Interior pages */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.image-frame { position: relative; }
.image-frame img { min-height: 540px; border-radius: var(--radius); object-fit: cover; }
#about-company .image-frame img { height: auto; min-height: 0; object-fit: contain; }
#about-approach .image-frame img { height: 540px; min-height: 0; }
.image-frame::after { position: absolute; right: -16px; bottom: -16px; width: 42%; height: 42%; z-index: -1; content: ''; background: var(--red); border-radius: 0 0 var(--radius); }
.metric-grid { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 36px; border-top: 1px solid var(--line); }
.metric { padding: 28px 20px 0 0; }
.metric strong { display: block; color: var(--red); font-family: var(--font-secondary); font-size: 2.1rem; }
.metric span { color: var(--muted); font-size: .76rem; }
.mission-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; }
.mission-statement { color: #fff; font-family: var(--font-secondary); font-size: clamp(1.8rem, 3vw, 3.1rem); line-height: 1.35; }
.principles { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.principle { padding: 28px; border: 1px solid var(--white-line); }
.principle span { display: block; margin-bottom: 36px; color: #ef6969; font-size: .75rem; }
.principle p { margin: 0; color: #bbb8b4; font-size: .88rem; }
.team-marquee { width: 100%; padding-block: 8px; overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent 0, black 3%, black 97%, transparent 100%); mask-image: linear-gradient(to right, transparent 0, black 3%, black 97%, transparent 100%); }
.team-track { display: flex; width: max-content; animation: team-scroll 44s linear infinite; will-change: transform; }
.team-group { display: flex; flex: 0 0 auto; gap: 18px; padding-right: 18px; }
.team-card { width: clamp(270px, 23vw, 330px); flex: 0 0 auto; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: transform .35s var(--ease), border-color .35s var(--ease); }
.team-card:hover { border-color: rgba(142,22,22,.45); transform: translateY(-7px); }
.team-card-media { aspect-ratio: 4 / 5; overflow: hidden; background: #18181a; }
.team-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.team-card:hover .team-card-media img { transform: scale(1.035); }
.team-group .team-card:nth-child(1) .team-card-media img { object-position: 52% center; }
.team-group .team-card:nth-child(2) .team-card-media img { object-position: 48% center; }
.team-group .team-card:nth-child(3) .team-card-media img { object-position: center 42%; }
.team-group .team-card:nth-child(4) .team-card-media img { object-position: center 28%; }
.team-card-copy { padding: 25px 24px 28px; }
.team-card-copy span { display: block; margin-bottom: 10px; color: var(--red); font-size: .67rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.team-card-copy h3 { margin-bottom: 12px; font-size: clamp(1.2rem, 1.55vw, 1.55rem); }
.team-card-copy p { margin: 0; color: var(--muted); font-size: .84rem; }
.team-marquee:has(.team-card-media:hover) .team-track,
.team-marquee:focus-within .team-track { animation-play-state: paused; }
@keyframes team-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.service-detail { display: grid; grid-template-columns: .65fr 1.35fr; gap: 60px; padding: 74px 0; border-bottom: 1px solid var(--line); }
.service-detail:first-child { padding-top: 0; }
.service-detail:last-child { border: 0; }
.service-detail-title { position: sticky; top: 110px; align-self: start; }
.service-detail-title span { display: block; margin-bottom: 20px; color: var(--red); font-size: .72rem; font-weight: 700; letter-spacing: .16em; }
.service-detail-title h2 { margin: 0; font-size: clamp(2rem, 3.7vw, 3.6rem); }
.detail-content > p { max-width: 740px; color: var(--muted); font-size: 1.07rem; }
.detail-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 36px 0; }
.detail-box { padding: 26px; background: var(--surface-alt); }
.detail-box h3 { font-size: 1rem; }
.detail-box ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: .87rem; }

.filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 42px; justify-content: center; }
.filter-btn { padding: 11px 17px; color: var(--muted); border: 1px solid var(--line); border-radius: 100px; background: transparent; font-size: .8rem; font-weight: 600; }
.filter-btn:hover, .filter-btn.active { color: #fff; border-color: var(--red); background: var(--red); }
.portfolio-discipline + .portfolio-discipline { margin-top: clamp(80px, 9vw, 150px); padding-top: clamp(70px, 8vw, 120px); border-top: 1px solid var(--line); }
.portfolio-discipline-heading { display: flex; margin-bottom: 42px; gap: 48px; align-items: end; justify-content: space-between; }
.portfolio-discipline-heading > div { max-width: 820px; }
.portfolio-discipline-heading h2 { margin-bottom: 0; font-size: clamp(2.4rem, 4.5vw, 4.7rem); }
#photography-portfolio-title { font-size: clamp(1.3rem, 3.6vw, 3.7rem); white-space: nowrap; }
#videography-portfolio-title,
#livestreaming-portfolio-title { font-size: clamp(1.05rem, 5.7vw, 3.7rem); white-space: nowrap; }
.portfolio-discipline-heading > p { max-width: 480px; margin-bottom: 6px; color: var(--muted); }
.portfolio-full { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start; }
.portfolio-full .work-card { min-height: 0; grid-column: auto; aspect-ratio: 16 / 9; }
.portfolio-full .work-card:nth-child(4n+1) { grid-column: auto; }
.portfolio-full .work-card[data-youtube-feed] h3 { display: -webkit-box; overflow: hidden; font-size: clamp(1rem, 1.35vw, 1.35rem); line-height: 1.15; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.portfolio-full .work-card.is-hidden { display: none; }
.photography-photo-grid { display: block; columns: 3; column-gap: 20px; }
.photography-photo-grid .work-card { display: inline-block; width: 100%; min-height: 0; margin: 0 0 20px; aspect-ratio: auto; break-inside: avoid; vertical-align: top; }
.photography-photo-grid .work-card img { position: static; width: 100%; height: auto; object-fit: contain; }
.photography-photo-grid .work-card::after { display: none; }

.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 75px; align-items: start; }
.contact-intro { position: sticky; top: 110px; }
.contact-list { margin: 38px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.contact-list li { padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-list small { display: block; color: var(--muted); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-list a, .contact-list address { font-style: normal; font-weight: 600; }
.studio-map { position: relative; min-height: 420px; border: 1px solid var(--white-line); border-radius: var(--radius); overflow: hidden; background: #151517; }
.studio-map iframe { display: block; width: 100%; height: 100%; min-height: 420px; border: 0; filter: saturate(.82) contrast(1.04); }
.studio-map-link { position: absolute; right: 18px; bottom: 18px; padding: 13px 19px; color: #fff; border-radius: 100px; background: var(--red); font-size: .78rem; font-weight: 700; box-shadow: 0 12px 28px rgba(0,0,0,.32); }
.studio-map-link:hover { color: #fff; background: #a51b1b; transform: translateY(-2px); }
.socials { display: flex; gap: 9px; }
.socials a { display: grid; width: 42px; height: 42px; place-items: center; color: var(--page-text); border: 1px solid var(--line); border-radius: 50%; transition: color .25s var(--ease), border-color .25s var(--ease), background-color .25s var(--ease), transform .25s var(--ease); }
.socials svg { width: 19px; height: 19px; fill: currentColor; }
.socials a:hover { color: #fff; border-color: var(--red); background: var(--red); transform: translateY(-2px); }
.socials a:focus-visible { outline: 3px solid rgba(142,22,22,.28); outline-offset: 3px; }
.contact-form { padding: 44px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.eventspro-inline-form { width: 100%; min-height: 560px; }
.eventspro-inline-form iframe { display: block; width: 100% !important; max-width: 100%; border: 0; }

html[data-theme='dark'] .image-frame::after { background: #6f1111; }
html[data-theme='dark'] .kicker,
html[data-theme='dark'] .text-link,
html[data-theme='dark'] .service-icon,
html[data-theme='dark'] .metric strong,
html[data-theme='dark'] .process-number,
html[data-theme='dark'] .service-detail-title span,
html[data-theme='dark'] .quote-mark { color: #ef6969; }
html[data-theme='dark'] .btn-dark { color: #0b0b0c; background: #f5f2ed; }
html[data-theme='dark'] .btn-dark:hover { background: #fff; }
html[data-theme='dark'] .filter-btn { color: #c9c5bf; }
html[data-theme='dark'] .filter-btn:hover,
html[data-theme='dark'] .filter-btn.active { color: #fff; }
html[data-theme='dark'] .socials a:hover { color: #fff; }

/* Footer */
.site-footer { padding: 78px 0 24px; color: #bbb8b4; background: #080809; }
.site-footer > .container { width: calc(100% - clamp(30px, 4vw, 72px)); max-width: none; }
.footer-grid { display: grid; grid-template-columns: 1.7fr .7fr 1fr 1.2fr; gap: 55px; padding-bottom: 60px; }
.footer-brand p { max-width: 410px; margin-top: 25px; font-size: .87rem; }
.footer-logo-link { display: inline-block; }
.footer-logo { width: 160px; height: 112px; object-fit: contain; mix-blend-mode: screen; }
.site-footer h3 { margin-bottom: 22px; color: #fff; font-family: var(--font-main); font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: .85rem; transition: color .2s; }
.footer-links a:hover { color: #ef6969; }
.footer-bottom { display: flex; padding-top: 24px; align-items: center; justify-content: space-between; border-top: 1px solid var(--white-line); font-size: .72rem; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 900; display: grid; width: 58px; height: 58px; place-items: center; color: #fff; background: #25d366; border-radius: 50%; box-shadow: 0 12px 30px rgba(0,0,0,.24); transition: transform .2s; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.04); }
.whatsapp-float svg { width: 28px; }

/* Reveal motion */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --container: min(100% - 36px, 900px); }
  .section { padding: 88px 0; }
  .clients-section { padding: 88px 0; }
  #services .section-heading { display: block; }
  #services .section-heading > p { margin-top: 20px; }
  #cog-difference .section-heading { display: block; }
  #cog-difference .section-heading > p { margin-top: 20px; }
  #about-difference .section-heading { display: block; }
  #about-difference .section-heading > p { margin-top: 20px; }
  .site-header { height: 76px; }
  .site-header .nav-shell { justify-content: flex-start; }
  .nav-shell > nav { position: absolute; inset: 0 0 auto auto; width: 0; height: 0; transform: none; }
  .nav-actions { display: none; }
  .mobile-nav-action { display: list-item; }
  .brand-logo { width: 88px; height: 58px; }
  .header-brand .brand-logo-dark { width: 80px; height: 52px; }
  .menu-toggle { display: block; flex: 0 0 46px; margin-left: auto; }
  .nav-links {
    position: fixed; top: 76px; right: auto; bottom: auto; left: 0; display: flex;
    width: 100vw; max-width: none; height: calc(100vh - 76px); height: calc(100dvh - 76px);
    margin: 0; padding: 46px 24px; flex-direction: column; align-items: stretch; overflow-y: auto;
    color: #fff; background: #0a0a0b; overscroll-behavior: contain;
    transform: translateX(100%); transition: transform .35s var(--ease);
  }
  html[data-theme='light'] .nav-links {
    min-height: calc(100svh - 76px); color: var(--ink); border-top: 1px solid rgba(142,22,22,.14);
    background-color: #f7f3ed;
    background-image: linear-gradient(155deg, rgba(255,255,255,.96) 0%, rgba(247,243,237,.98) 58%, rgba(235,226,217,.98) 100%);
    box-shadow: -18px 30px 50px rgba(44,32,26,.18);
  }
  .nav-links.open { transform: none; }
  .nav-links a:not(.btn) { display: block; padding: 8px; font-family: var(--font-secondary); font-size: 1.45rem; }
  .nav-item-has-submenu { width: 100%; }
  .nav-parent { display: grid; grid-template-columns: 1fr 50px; }
  .nav-submenu-toggle { width: 50px; height: 50px; justify-self: end; }
  .nav-submenu { position: static; width: 100%; max-height: 0; margin: 0; padding: 0 0 0 18px; color: inherit; border: 0; border-radius: 0; overflow: hidden; background: transparent; box-shadow: none; opacity: 1; visibility: visible; pointer-events: none; transform: none; transition: max-height .3s var(--ease), padding .3s var(--ease); }
  .nav-submenu::before { display: none; }
  .nav-item-has-submenu:hover .nav-submenu,
  .nav-item-has-submenu:focus-within .nav-submenu { max-height: 0; pointer-events: none; transform: none; }
  .nav-item-has-submenu.submenu-open .nav-submenu { max-height: 210px; padding-top: 6px; padding-bottom: 8px; pointer-events: auto; transform: none; }
  .nav-submenu a { padding: 9px 14px !important; font-family: var(--font-secondary) !important; font-size: .92rem !important; }
  .nav-links .btn { width: 100%; margin-top: 16px; }
  .nav-links .theme-toggle { width: 100%; height: 50px; border-radius: 8px; }
  .nav-links .theme-toggle .theme-label { display: inline; }
  .menu-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .team-card { width: 280px; }
  .featured-category-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-full { grid-template-columns: 1fr 1fr; }
  .portfolio-full .work-card:nth-child(4n+1) { grid-column: auto; }
  .photography-photo-grid { display: block; columns: 2; }
  .split, .mission-grid { gap: 48px; }
  .contact-layout { gap: 40px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .home-hero { padding-top: clamp(105px, 13vh, 145px); }
  .home-hero h1 { font-size: clamp(2.7rem, min(7vw, 9vh), 4.5rem); }
  .hero-collage { height: 100%; gap: 12px; }
  .hero-shot { border-radius: 15px 15px 0 0; }
  .hero-shot:nth-child(1) { height: calc(73% + 24px); }
  .hero-shot:nth-child(2) { height: calc(69% + 24px); }
  .hero-shot:nth-child(3) { height: calc(95% + 24px); }
  .hero-shot:nth-child(4) { height: calc(68% + 24px); }
  .hero-shot:nth-child(5) { height: calc(72% + 24px); }
  .home-hero-rail { padding-block: 10px; gap: 9px; flex: 0 0 108px; align-items: stretch; flex-direction: column; }
  .home-hero-rail p { max-width: 620px; }
  .pricing-intro-copy, .pricing-service-head { grid-template-columns: 1fr; gap: 24px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }
  .pricing-card { min-height: 0; }
  .content-pricing-grid .pricing-card { min-height: 0; }
  .pricing-audience { min-height: 0; }
  .wedding-pricing .pricing-card { min-height: 0; }
  .pricing-summary { min-height: 0; }
  .wedding-addons-head { grid-template-columns: 1fr; gap: 20px; }
  .wedding-addon-grid { grid-template-columns: 1fr 1fr; }
  .content-addons-head { grid-template-columns: 1fr; gap: 20px; }
  .content-addon-grid { grid-template-columns: 1fr 1fr; }
  .pricing-addons { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --container: calc(100% - 30px); }
  .section { padding: 72px 0; }
  .clients-section { padding: 72px 0; }
  .section-sm { padding: 60px 0; }
  .hero { min-height: 800px; background-position: 58% center; }
  .page-hero { min-height: 570px; }
  .hero-content { margin-bottom: 55px; padding-top: 115px; }
  .hero h1 { font-size: clamp(2.65rem, 12vw, 4.3rem); }
  .hero-index { display: none; }
  .hero-actions .btn { width: 100%; }
  .section-heading, .cta-inner { display: block; }
  .section-heading > p { margin-top: 20px; }
  #services .section-heading h2 { font-size: clamp(1.75rem, 7.7vw, 2.4rem); }
  #cog-difference .section-heading h2 { font-size: clamp(1.65rem, 7vw, 2.3rem); }
  #about-difference .section-heading h2 { font-size: clamp(1.35rem, 6.8vw, 1.85rem); }
  .services-grid, .benefits-grid { grid-template-columns: 1fr; }
  .team-card { width: min(82vw, 300px); }
  .team-card-media { aspect-ratio: 4 / 5; }
  .service-card { min-height: 325px; padding: 30px; }
  .benefit { min-height: auto; }
  .benefit strong { margin-bottom: 35px; }
  .portfolio-grid, .portfolio-full { display: block; }
  .portfolio-discipline-heading { display: block; }
  .portfolio-discipline-heading > p { margin-top: 20px; }
  .work-card, .portfolio-full .work-card { min-height: 400px; margin-bottom: 16px; }
  .portfolio-full .work-card { min-height: 0; aspect-ratio: 16 / 9; }
  .photography-photo-grid { display: block; columns: 1; }
  .photography-photo-grid .work-card { min-height: 0; margin-bottom: 16px; aspect-ratio: auto; }
  .photography-photo-grid .work-card img { position: static; height: auto; }
  .work-card p { opacity: 1; }
  .portfolio-full .work-card.lightbox-trigger::before { opacity: 1; transform: scale(.9); }
  .media-lightbox { width: calc(100vw - 20px); }
  .media-lightbox-figure { border-radius: 12px; }
  .media-lightbox-caption { min-height: 64px; padding: 14px 62px 14px 16px; }
  .media-lightbox-nav { width: 44px; height: 44px; font-size: 1.25rem; }
  .media-lightbox-prev { left: 8px; }
  .media-lightbox-next { right: 8px; }
  .media-lightbox-close { top: 10px; right: 10px; width: 42px; height: 42px; }
  .process-item { grid-template-columns: 52px 1fr; gap: 18px; }
  .process-item p { grid-column: 2; }
  .testimonial-grid, .split, .mission-grid, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .testimonial-side { min-height: 340px; }
  .testimonial-slide { min-height: 400px; padding-right: 0; }
  .cta-actions { margin-top: 30px; flex-wrap: wrap; }
  .cta-actions .btn { width: 100%; }
  .split .image-frame { order: -1; }
  .image-frame img { min-height: 380px; }
  #about-approach .image-frame img { height: 380px; min-height: 0; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .principles { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 30px; padding: 54px 0; }
  .service-detail-title { position: static; }
  .detail-columns { grid-template-columns: 1fr; }
  .contact-intro { position: static; }
  .contact-form { padding: 28px 20px; }
  .studio-map, .studio-map iframe { min-height: 360px; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 42px 28px; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { gap: 12px; flex-direction: column; align-items: flex-start; }
  .clients-heading { display: block; }
  .clients-heading > p { margin-top: 20px; }
  .clients-marquee { margin-top: 34px; }
  .client-card { width: 220px; height: 118px; padding: 10px 12px; }
  .home-hero { height: 100vh; height: 100svh; height: 100dvh; min-height: 0; padding-top: 98px; }
  .home-hero .container { width: calc(100% - 30px); }
  .home-eyebrow { max-width: 310px; margin-bottom: 16px; line-height: 1.6; }
  .home-hero h1 { margin-bottom: 13px; font-size: clamp(2.15rem, min(10.2vw, 6.8vh), 3.1rem); line-height: .96; }
  .home-hero-lead { display: -webkit-box; margin-bottom: 14px; overflow: hidden; font-size: .86rem; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
  .home-hero-actions { gap: 9px; flex-direction: row; }
  .home-hero-actions .btn { width: 50%; min-width: 0; min-height: 46px; padding: 0 13px; font-size: .76rem; }
  .hero-collage-shell { width: 100%; min-height: 0; margin-top: 18px; flex: 1 1 auto; }
  .hero-collage { position: relative; left: 50%; display: flex; width: max-content; height: 100%; gap: 9px; align-items: end; transform: translateX(-50%); }
  .hero-shot, .hero-shot:nth-child(n) { bottom: -18px; width: 34vw; height: calc(72% + 18px); flex: 0 0 34vw; border-radius: 12px 12px 0 0; }
  .hero-shot:nth-child(1), .hero-shot:nth-child(5) { height: calc(67% + 18px); }
  .hero-shot:nth-child(2), .hero-shot:nth-child(4) { height: calc(76% + 18px); }
  .hero-shot:nth-child(3) { width: 42vw; height: calc(100% + 18px); flex-basis: 42vw; }
  .home-hero-rail { margin-top: 0; padding: 9px 15px; gap: 8px; flex: 0 0 104px; align-items: stretch; flex-direction: column; }
  .home-hero-rail p { display: block; max-width: 100%; font-size: .65rem; letter-spacing: .2em; line-height: 1.4; }
  .hero-tags li { padding: 6px 12px; font-size: .7rem; }
  .hero-pricing { background-position: 68% center; }
  .pricing-intro { padding-bottom: 24px; }
  .pricing-intro-copy h2, .pricing-service-head h2 { font-size: clamp(2rem, 9.8vw, 3rem); }
  .pricing-anchor-nav { margin-top: 30px; }
  .pricing-card { padding: 28px 22px; border-radius: 16px; }
  .pricing-badge { right: 20px; }
  .wedding-addons { margin-top: 54px; padding-top: 44px; }
  .wedding-addon-grid { grid-template-columns: 1fr; }
  .wedding-addon-grid > div { min-height: 136px; }
  .content-addons { margin-top: 54px; padding: 28px 20px; border-radius: 18px; }
  .content-addon-grid { grid-template-columns: 1fr; }
  .content-addon-grid > div { min-height: 140px; }
  .content-vat-note { text-align: left; }
  .pricing-addons { grid-template-columns: 1fr; }
  .pricing-addons > div { min-height: 210px; }
  .faq-list summary { padding-right: 46px; }
  .faq-list details p { padding-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .photo-motion, .photo-motion:hover { translate: none !important; rotate: none !important; }
  .hero-shot, .hero-shot:hover { translate: none !important; }
  .hero-tags-track { animation: none !important; transform: none !important; }
  .clients-track { animation: none !important; transform: none !important; }
  .team-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .team-track { animation: none !important; transform: none !important; }
  .team-group[aria-hidden='true'] { display: none; }
}
