:root {
  --dooh-green: #143f35;
  --dooh-green-deep: #092c26;
  --dooh-green-soft: #e7eee9;
  --dooh-lime: #c8ef46;
  --dooh-pink: #ed2f7b;
  --dooh-ink: #15201d;
  --dooh-cream: #f4f3ec;
  --dooh-white: #ffffff;
  --dooh-muted: #63706c;
  --dooh-line: rgba(20, 63, 53, 0.14);
  --dooh-shadow: 0 26px 80px rgba(7, 36, 30, 0.14);
  --dooh-shadow-soft: 0 16px 44px rgba(7, 36, 30, 0.09);
  --dooh-radius: 32px;
  --dooh-radius-sm: 20px;
  --dooh-container: min(1240px, calc(100vw - 56px));
  --dooh-section: clamp(88px, 9vw, 148px);
  --dooh-ease: cubic-bezier(.2,.8,.2,1);
}

.dooh-foundation-active,
.dooh-foundation-active * {
  box-sizing: border-box;
}

.dooh-foundation-active {
  color: var(--dooh-ink);
  background: var(--dooh-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.dooh-foundation-active .brx-body {
  overflow-x: clip;
}

.dooh-site {
  overflow: clip;
  background: var(--dooh-white);
}

.dooh-container {
  width: var(--dooh-container) !important;
  max-width: none !important;
  margin-inline: auto !important;
}

.dooh-section {
  position: relative;
  padding-block: var(--dooh-section);
  background: var(--dooh-white);
}

.dooh-section--cream {
  background: var(--dooh-cream);
}

.dooh-section--soft {
  background: linear-gradient(180deg, #f9faf7, var(--dooh-green-soft));
}

.dooh-section--dark {
  color: var(--dooh-white);
  background: var(--dooh-green-deep);
}

.dooh-kicker {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 20px;
  color: var(--dooh-pink);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.dooh-display,
.dooh-h2,
.dooh-h3 {
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-weight: 790;
  letter-spacing: -.046em;
  text-wrap: balance;
}

.dooh-display {
  max-width: 12.3ch;
  font-size: clamp(54px, 6.3vw, 96px);
  line-height: .94;
}

.dooh-h2 {
  max-width: 15ch;
  font-size: clamp(40px, 4.7vw, 70px);
  line-height: .99;
}

.dooh-h3 {
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.06;
  letter-spacing: -.03em;
}

.dooh-lead,
.dooh-copy {
  margin: 0;
  color: inherit;
  font-family: inherit;
}

.dooh-lead {
  max-width: 62ch;
  color: var(--dooh-muted);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.62;
}

.dooh-copy {
  color: var(--dooh-muted);
  font-size: 16px;
  line-height: 1.72;
}

.dooh-actions {
  display: flex !important;
  flex-flow: row wrap;
  gap: 12px;
  margin-top: 34px;
}

.dooh-button,
.dooh-header-cta {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  width: fit-content;
  min-height: 54px;
  padding: 15px 24px;
  border: 1px solid var(--dooh-pink);
  border-radius: 999px;
  color: var(--dooh-white) !important;
  background: var(--dooh-pink);
  box-shadow: none;
  font-size: 15px;
  font-weight: 760;
  line-height: 1;
  text-decoration: none !important;
  transition: transform .3s var(--dooh-ease), box-shadow .3s var(--dooh-ease), background .3s var(--dooh-ease), color .3s ease;
}

.dooh-button:hover,
.dooh-header-cta:hover {
  color: var(--dooh-white) !important;
  background: #d52068;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(237,47,123,.26);
}

.dooh-button--secondary {
  border-color: rgba(20,63,53,.25);
  color: var(--dooh-green) !important;
  background: transparent;
}

.dooh-button--secondary:hover {
  border-color: var(--dooh-green);
  color: var(--dooh-white) !important;
  background: var(--dooh-green);
  box-shadow: none;
}

.dooh-button--light {
  border-color: var(--dooh-lime);
  color: var(--dooh-green-deep) !important;
  background: var(--dooh-lime);
}

.dooh-button--light:hover {
  color: var(--dooh-green-deep) !important;
  background: #dcff62;
  box-shadow: 0 14px 30px rgba(200,239,70,.2);
}

/* Header */
.dooh-header {
  position: sticky !important;
  z-index: 999;
  top: 0;
  width: 100%;
  min-height: 0 !important;
  padding: 0 !important;
  border-bottom: 1px solid rgba(20,63,53,.08);
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 36px rgba(7,36,30,.055);
  backdrop-filter: blur(18px);
}

.admin-bar .dooh-header { top: 32px; }

.dooh-header-inner {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: var(--dooh-container) !important;
  max-width: none !important;
  min-height: 78px;
  margin-inline: auto !important;
  padding: 8px 0 !important;
  gap: 30px;
}

.dooh-logo {
  width: 138px !important;
  max-width: 138px !important;
  margin: 0 !important;
}

.dooh-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.dooh-desktop-nav {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-end !important;
  align-items: center !important;
  width: auto !important;
  gap: 24px;
}

.dooh-nav-link {
  min-height: auto !important;
  padding: 8px 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: var(--dooh-ink) !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 14px !important;
  font-weight: 690 !important;
  text-decoration: none !important;
  transition: color .2s ease;
}

.dooh-nav-link:hover {
  color: var(--dooh-pink) !important;
  transform: none !important;
}

.dooh-header-cta {
  min-height: 44px;
  padding: 12px 20px;
  font-size: 14px;
}

.dooh-mobile-nav { display: none !important; }

/* Hero */
.dooh-hero {
  position: relative;
  min-height: 760px;
  padding: clamp(78px, 8vw, 122px) 0 160px !important;
  overflow: hidden;
  color: var(--dooh-white);
  background:
    radial-gradient(circle at 10% 0%, rgba(200,239,70,.18), transparent 32%),
    radial-gradient(circle at 96% 78%, rgba(237,47,123,.18), transparent 28%),
    linear-gradient(135deg, var(--dooh-green-deep), var(--dooh-green));
}

.dooh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 84%);
}

.dooh-hero-grid {
  position: relative;
  z-index: 2;
  display: grid !important;
  grid-template-columns: minmax(0, 1.07fr) minmax(430px, .93fr);
  align-items: center;
  gap: clamp(54px, 7vw, 104px);
}

.dooh-hero-copy { max-width: 730px; }
.dooh-hero .dooh-kicker { color: var(--dooh-lime); }
.dooh-hero .dooh-lead { max-width: 61ch; margin-top: 30px; color: rgba(255,255,255,.8); }
.dooh-hero .dooh-button--secondary { border-color: rgba(255,255,255,.42); color: var(--dooh-white) !important; }
.dooh-hero .dooh-button--secondary:hover { border-color: var(--dooh-white); color: var(--dooh-green-deep) !important; background: var(--dooh-white); }

.dooh-hero-visual {
  --hero-x: 0px;
  --hero-y: 0px;
  position: relative;
  min-height: 600px;
  width: 100%;
  transform: translate3d(var(--hero-x), var(--hero-y), 0);
  transition: transform .25s ease-out;
}

.dooh-hero-image {
  position: absolute;
  inset: 18px 0 auto auto;
  z-index: 2;
  width: min(530px, 93%) !important;
  height: 566px;
  margin: 0 !important;
  overflow: hidden;
  border: 10px solid rgba(255,255,255,.12);
  border-radius: 190px 190px 38px 38px;
  box-shadow: 0 44px 94px rgba(0,0,0,.3);
  transform: rotate(2deg);
}

.dooh-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.14) 46%, transparent 62%);
  transform: translateX(-130%);
  animation: dooh-screen-sweep 7s ease-in-out infinite;
}

.dooh-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dooh-orb {
  position: absolute;
  z-index: 1;
  right: -74px;
  bottom: 8px;
  width: 346px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--dooh-lime);
  opacity: .92;
}

.dooh-glow {
  position: absolute;
  z-index: 0;
  left: 6%;
  top: 12%;
  width: 240px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(237,47,123,.28);
  filter: blur(70px);
}

.dooh-hero-card {
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: 44px;
  width: min(338px, 72%);
  padding: 27px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: var(--dooh-radius-sm);
  color: var(--dooh-ink);
  background: rgba(255,255,255,.95);
  box-shadow: var(--dooh-shadow);
  backdrop-filter: blur(14px);
  transform: rotate(-3deg);
  animation: dooh-card-float 6s ease-in-out infinite;
}

.dooh-hero-card .dooh-kicker { margin-bottom: 12px; color: var(--dooh-pink); }
.dooh-hero-card .dooh-h3 { font-size: 24px; }

/* Proof */
.dooh-proof-wrap {
  position: relative;
  z-index: 5;
  margin-top: -78px;
  padding: 0 !important;
  background: transparent !important;
}

.dooh-proof-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 1px;
  padding: 12px;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(20,63,53,.12);
  box-shadow: var(--dooh-shadow);
}

.dooh-proof-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  width: 100%;
  height: 100%;
  min-height: 236px;
  padding: 30px;
  border-radius: 18px;
  background: var(--dooh-white);
}

.dooh-proof-icon,
.dooh-chip,
.dooh-step-number,
.dooh-service-number,
.dooh-audience-number,
.dooh-format-tab-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  min-width: 42px;
  height: 42px;
  padding-inline: 12px;
  border-radius: 999px;
  color: var(--dooh-green-deep);
  background: var(--dooh-lime);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: .06em;
}

.dooh-proof-item .dooh-h3 { min-height: 2.16em; margin-top: 32px; font-size: 22px; }
.dooh-proof-item .dooh-copy { flex: 1 1 auto; margin-top: 12px; font-size: 15px; }

/* Moving strip */
.dooh-marquee {
  overflow: hidden;
  padding: 27px 0 !important;
  color: var(--dooh-green-deep);
  background: var(--dooh-lime);
}

.dooh-marquee-track {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  width: max-content !important;
  gap: 38px;
  animation: dooh-marquee 30s linear infinite;
}

.dooh-marquee-item {
  display: inline-flex;
  align-items: center;
  width: auto !important;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 820;
  letter-spacing: -.01em;
  text-transform: uppercase;
}

.dooh-marquee-item::after {
  content: "•";
  margin-left: 38px;
  color: var(--dooh-pink);
  font-size: 24px;
}

/* Shared section layouts */
.dooh-grid-2 {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: clamp(46px, 7vw, 112px);
}

.dooh-grid-3 {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}

.dooh-grid-4 {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}

.dooh-section-heading { max-width: 800px; }
.dooh-section-heading > .dooh-lead { margin-top: 24px; }
.dooh-section-intro { display: flex !important; flex-direction: column !important; gap: 24px; padding-top: 44px; }

/* Interactive format selector */
.dooh-format-showcase {
  display: grid !important;
  grid-template-columns: minmax(260px, .38fr) minmax(0, 1fr);
  gap: 22px;
  margin-top: 64px;
  padding: 18px;
  border: 1px solid var(--dooh-line);
  border-radius: 38px;
  background: var(--dooh-cream);
  box-shadow: var(--dooh-shadow-soft);
}

.dooh-format-nav {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px;
}

.dooh-format-tab {
  display: grid !important;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 102px;
  padding: 20px;
  border: 1px solid transparent;
  border-radius: 22px;
  color: var(--dooh-ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background .3s var(--dooh-ease), color .3s ease, transform .3s var(--dooh-ease), box-shadow .3s var(--dooh-ease);
}

.dooh-format-tab .dooh-h3 {
  font-size: 21px;
  letter-spacing: -.025em;
}

.dooh-format-tab:hover {
  transform: translateX(5px);
  background: rgba(255,255,255,.7);
}

.dooh-format-tab.is-active,
.dooh-format-tab[aria-selected="true"] {
  color: var(--dooh-white);
  background: var(--dooh-green-deep);
  box-shadow: 0 16px 34px rgba(7,36,30,.16);
}

.dooh-format-tab.is-active .dooh-format-tab-number,
.dooh-format-tab[aria-selected="true"] .dooh-format-tab-number {
  color: var(--dooh-green-deep);
  background: var(--dooh-lime);
}

.dooh-format-stage {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--dooh-green-deep);
}

.dooh-format-panel {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: inherit;
  background: var(--dooh-green-deep);
}

.dooh-motion-ready .dooh-format-panel { display: none !important; }
.dooh-motion-ready .dooh-format-panel.is-active { display: block !important; animation: dooh-panel-in .65s var(--dooh-ease) both; }

.dooh-format-panel-image {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100%;
  margin: 0 !important;
}

.dooh-format-panel-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,29,24,.96) 0%, rgba(4,29,24,.82) 36%, rgba(4,29,24,.12) 75%);
}

.dooh-format-panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--dooh-ease);
}

.dooh-format-panel.is-active .dooh-format-panel-image img { transform: scale(1.045); }

.dooh-format-panel-copy {
  position: relative;
  z-index: 2;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end;
  min-height: 650px;
  width: min(640px, 70%);
  padding: clamp(38px, 6vw, 78px);
  color: var(--dooh-white);
}

.dooh-format-panel-copy .dooh-kicker { color: var(--dooh-lime); }
.dooh-format-panel-copy .dooh-h2 { max-width: 11ch; font-size: clamp(42px, 4vw, 66px); }
.dooh-format-panel-copy .dooh-lead { margin-top: 22px; color: rgba(255,255,255,.78); }

.dooh-format-meta {
  display: flex !important;
  flex-flow: row wrap;
  gap: 10px;
  margin-top: 28px;
}

.dooh-format-meta-item {
  display: inline-flex;
  width: fit-content !important;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: var(--dooh-white);
  background: rgba(255,255,255,.08);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

/* Services */
.dooh-services-layout {
  display: grid !important;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}

.dooh-services-visual {
  position: sticky;
  top: 116px;
}

.dooh-services-visual .dooh-lead { margin-top: 24px; }

.dooh-services-image {
  width: 100% !important;
  height: 360px;
  margin: 44px 0 0 !important;
  overflow: hidden;
  border-radius: 30px 90px 30px 30px;
  box-shadow: var(--dooh-shadow-soft);
}

.dooh-services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--dooh-ease);
}

.dooh-services-image:hover img { transform: scale(1.04); }

.dooh-service-list {
  display: flex !important;
  flex-direction: column !important;
  border-top: 1px solid var(--dooh-line);
}

.dooh-service-row {
  display: grid !important;
  grid-template-columns: 58px minmax(180px, .75fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  min-height: 176px;
  padding: 28px 0;
  border-bottom: 1px solid var(--dooh-line);
  transition: transform .3s var(--dooh-ease), padding .3s var(--dooh-ease);
}

.dooh-service-row:hover {
  transform: translateX(8px);
}

.dooh-service-number {
  min-width: 44px;
  height: 44px;
  color: var(--dooh-green-deep);
  background: var(--dooh-lime);
}

.dooh-service-row .dooh-h3 { font-size: 25px; }
.dooh-service-row .dooh-copy { max-width: 48ch; }

/* Process */
.dooh-process-panel {
  position: relative;
  padding: clamp(48px, 6vw, 88px);
  overflow: hidden;
  border-radius: 46px;
  color: var(--dooh-white);
  background:
    radial-gradient(circle at 96% 3%, rgba(237,47,123,.3), transparent 31%),
    linear-gradient(135deg, var(--dooh-green-deep), var(--dooh-green));
  box-shadow: var(--dooh-shadow);
}

.dooh-process-panel::after {
  content: "";
  position: absolute;
  right: -105px;
  bottom: -195px;
  width: 400px;
  aspect-ratio: 1;
  border: 76px solid rgba(200,239,70,.1);
  border-radius: 50%;
}

.dooh-process-panel .dooh-kicker { color: var(--dooh-lime); }
.dooh-process-panel > .dooh-lead { margin-top: 24px; color: rgba(255,255,255,.74); }

.dooh-process-progress {
  position: absolute;
  z-index: 1;
  left: clamp(48px, 6vw, 88px);
  right: clamp(48px, 6vw, 88px);
  top: 54%;
  height: 2px;
  overflow: hidden;
  background: rgba(255,255,255,.16);
}

.dooh-process-progress::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--dooh-lime), var(--dooh-pink));
  transition: width 1.35s var(--dooh-ease);
}

.dooh-process-panel.is-visible .dooh-process-progress::after { width: 100%; }

.dooh-process-grid {
  position: relative;
  z-index: 2;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  margin-top: 62px;
}

.dooh-process-card {
  min-height: 292px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--dooh-radius-sm);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  transition: transform .3s var(--dooh-ease), background .3s ease;
}

.dooh-process-card:hover { background: rgba(255,255,255,.14); transform: translateY(-7px); }
.dooh-process-card .dooh-h3 { margin-top: 44px; }
.dooh-process-card .dooh-copy { margin-top: 16px; color: rgba(255,255,255,.7); }
.dooh-step-number { color: var(--dooh-white); background: var(--dooh-pink); }

/* Work gallery */
#work .dooh-section-heading {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100%;
  max-width: 940px;
  margin-inline: auto;
  text-align: center;
}

#work .dooh-section-heading .dooh-kicker,
#work .dooh-section-heading .dooh-h2,
#work .dooh-section-heading .dooh-lead {
  margin-inline: auto;
}

#work .dooh-section-heading .dooh-h2 {
  max-width: 14ch;
}

.dooh-work-gallery {
  width: 100% !important;
  max-width: 1160px;
  margin: 64px auto 0;
}

.dooh-work-stage {
  position: relative;
  width: 100% !important;
  height: clamp(540px, 48vw, 680px);
  min-height: 0;
  overflow: hidden;
  border-radius: 42px;
  background: var(--dooh-green-deep);
  box-shadow: var(--dooh-shadow);
}

.dooh-work-panel {
  position: relative;
  width: 100% !important;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.dooh-motion-ready .dooh-work-panel { display: none !important; }
.dooh-motion-ready .dooh-work-panel.is-active { display: block !important; animation: dooh-panel-in .7s var(--dooh-ease) both; }

.dooh-work-image {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100%;
  margin: 0 !important;
}

.dooh-work-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4,29,24,.96), rgba(4,29,24,.05) 68%);
}

.dooh-work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.15s var(--dooh-ease);
}

.dooh-work-panel.is-active .dooh-work-image img { transform: scale(1.045); }

.dooh-work-overlay {
  position: absolute;
  z-index: 2;
  left: clamp(30px, 5vw, 70px);
  right: clamp(30px, 5vw, 70px);
  bottom: clamp(30px, 5vw, 64px);
  color: var(--dooh-white);
}

.dooh-work-overlay .dooh-h2 { max-width: 13ch; }
.dooh-work-overlay .dooh-lead { max-width: 48ch; margin-top: 18px; color: rgba(255,255,255,.8); }

.dooh-work-thumbs {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 16px;
}

.dooh-work-thumb {
  display: grid !important;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 116px;
  padding: 20px;
  border: 1px solid var(--dooh-line);
  border-radius: 22px;
  color: var(--dooh-ink);
  background: var(--dooh-white);
  cursor: pointer;
  text-align: left;
  transition: transform .3s var(--dooh-ease), box-shadow .3s var(--dooh-ease), background .3s ease, color .3s ease;
}

.dooh-work-thumb .dooh-h3 { font-size: 22px; }
.dooh-work-thumb:hover { transform: translateY(-5px); box-shadow: var(--dooh-shadow-soft); }
.dooh-work-thumb.is-active,
.dooh-work-thumb[aria-selected="true"] { color: var(--dooh-white); background: var(--dooh-green); }

/* Audiences */
.dooh-audience-stack {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px;
  margin-top: 58px;
}

.dooh-audience-row {
  display: grid !important;
  grid-template-columns: 58px minmax(180px, .75fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 150px;
  padding: 28px 32px;
  border: 1px solid var(--dooh-line);
  border-radius: 26px;
  background: var(--dooh-cream);
  transition: transform .35s var(--dooh-ease), box-shadow .35s var(--dooh-ease), background .35s ease;
}

.dooh-audience-row:nth-child(2) { background: var(--dooh-green-soft); }
.dooh-audience-row:nth-child(3) { background: #f9ecf2; }
.dooh-audience-row:hover { transform: translateX(8px); box-shadow: var(--dooh-shadow-soft); }
.dooh-audience-row .dooh-copy { max-width: 52ch; }
.dooh-audience-row .dooh-button { white-space: nowrap; }

/* Partners */
.dooh-partner-panel {
  align-items: center;
  padding: clamp(42px, 5vw, 76px);
  border: 1px solid rgba(20,63,53,.1);
  border-radius: 40px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--dooh-shadow-soft);
  backdrop-filter: blur(12px);
}

.dooh-partner-copy .dooh-copy { margin-top: 22px; }
.dooh-partner-logos { display: grid !important; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.dooh-partner-logo { display: flex !important; justify-content: center; align-items: center; min-height: 170px; width: 100% !important; margin: 0 !important; padding: 30px; border-radius: 24px; background: var(--dooh-white); }
.dooh-partner-logo img { max-width: 180px; max-height: 76px; object-fit: contain; filter: grayscale(1); opacity: .78; transition: filter .3s ease, opacity .3s ease, transform .3s var(--dooh-ease); }
.dooh-partner-logo:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.04); }

/* FAQs */
.dooh-faq-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0,1fr));
  column-gap: 54px;
  margin-top: 56px;
  border-top: 1px solid var(--dooh-line);
}

.dooh-faq-row {
  padding: 30px 0;
  border-bottom: 1px solid var(--dooh-line);
}

.dooh-faq-row .dooh-h3 { font-size: 23px; }
.dooh-faq-row .dooh-copy { margin-top: 14px; }

/* CTA */
.dooh-cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(46px, 6vw, 88px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 46px;
  background:
    radial-gradient(circle at 4% 90%, rgba(200,239,70,.18), transparent 26%),
    radial-gradient(circle at 100% 0%, rgba(237,47,123,.2), transparent 30%),
    rgba(255,255,255,.055);
}

.dooh-cta-grid { align-items: center; }
.dooh-cta-panel .dooh-kicker { color: var(--dooh-lime); }
.dooh-cta-panel .dooh-lead { margin-top: 24px; color: rgba(255,255,255,.72); }
.dooh-contact-list { display: flex !important; flex-direction: column !important; gap: 28px; padding: 36px; border-radius: 24px; background: var(--dooh-white); color: var(--dooh-ink); box-shadow: 0 24px 60px rgba(0,0,0,.18); }
.dooh-contact-list .dooh-copy { color: var(--dooh-muted); }

/* Footer */
.dooh-footer {
  padding: 88px 0 28px !important;
  color: var(--dooh-white);
  background: #061f1a;
}

.dooh-footer-grid { display: grid !important; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 46px; }
.dooh-footer-brand { display: flex !important; flex-direction: column !important; align-items: flex-start !important; gap: 24px; max-width: 360px; }
.dooh-footer .dooh-logo { filter: brightness(0) invert(1); }
.dooh-footer .dooh-copy { color: rgba(255,255,255,.64); }
.dooh-footer-column { display: flex !important; flex-direction: column !important; align-items: flex-start !important; gap: 14px; }
.dooh-footer-column .dooh-h3 { margin-bottom: 10px; font-size: 18px; letter-spacing: -.01em; }
.dooh-footer-link { min-height: 0 !important; padding: 0 !important; border: 0 !important; color: rgba(255,255,255,.7) !important; background: transparent !important; box-shadow: none !important; font-size: 14px !important; font-weight: 560 !important; text-decoration: none !important; }
.dooh-footer-link:hover { color: var(--dooh-lime) !important; transform: none !important; }
.dooh-footer-bottom { display: flex !important; flex-direction: row !important; justify-content: space-between !important; align-items: center !important; gap: 24px; margin-top: 70px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
.dooh-footer-bottom .dooh-copy { font-size: 13px; }

/* Motion */
.dooh-motion-ready .dooh-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .78s var(--dooh-ease), transform .78s var(--dooh-ease);
}

.dooh-motion-ready .dooh-reveal.is-visible { opacity: 1; transform: none; }

@keyframes dooh-card-float {
  0%,100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

@keyframes dooh-screen-sweep {
  0%, 64%, 100% { transform: translateX(-130%); }
  78% { transform: translateX(130%); }
}

@keyframes dooh-marquee {
  to { transform: translateX(-50%); }
}

@keyframes dooh-panel-in {
  from { opacity: 0; transform: scale(.985); }
  to { opacity: 1; transform: none; }
}

/* Mobile menu */
.dooh-mobile-menu { position: relative; }
.dooh-mobile-menu summary { display: grid; gap: 5px; width: 46px; height: 46px; padding: 13px 10px; border: 1px solid var(--dooh-line); border-radius: 50%; cursor: pointer; list-style: none; }
.dooh-mobile-menu summary::-webkit-details-marker { display: none; }
.dooh-mobile-menu summary span { display: block; width: 24px; height: 2px; border-radius: 2px; background: var(--dooh-green-deep); }
.dooh-mobile-menu__panel { position: absolute; top: 58px; right: 0; display: flex; flex-direction: column; width: min(330px, calc(100vw - 32px)); padding: 18px; border: 1px solid var(--dooh-line); border-radius: 20px; background: var(--dooh-white); box-shadow: var(--dooh-shadow); }
.dooh-mobile-menu__panel a { padding: 14px 12px; color: var(--dooh-ink); font-weight: 680; text-decoration: none; }
.dooh-mobile-menu__panel .dooh-mobile-menu__cta { margin-top: 8px; border-radius: 999px; color: var(--dooh-white); background: var(--dooh-pink); text-align: center; }

@media (max-width: 1100px) {
  .dooh-desktop-nav { gap: 16px; }
  .dooh-nav-link { font-size: 13px !important; }
  .dooh-hero-grid { grid-template-columns: 1fr .82fr; }
  .dooh-hero-image { height: 510px; }
  .dooh-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .dooh-format-showcase { grid-template-columns: 1fr; }
  .dooh-format-nav { display: grid !important; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .dooh-format-tab { min-height: 88px; }
  .dooh-services-layout { grid-template-columns: 1fr; }
  .dooh-services-visual { position: static; }
  .dooh-services-image { height: 430px; }
  .dooh-process-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .dooh-process-progress { display: none; }
  .dooh-audience-row { grid-template-columns: 52px minmax(160px,.6fr) minmax(0,1fr); }
  .dooh-audience-row .dooh-button { grid-column: 2 / 4; }
  .dooh-footer-grid { grid-template-columns: 1.4fr repeat(2,1fr); }
  .dooh-footer-column:last-child { grid-column: 2 / 4; }
}

@media (max-width: 900px) {
  :root { --dooh-container: min(100% - 36px, 760px); }
  .admin-bar .dooh-header { top: 46px; }
  .dooh-desktop-nav { display: none !important; }
  .dooh-mobile-nav { display: block !important; width: auto !important; }
  .dooh-hero { min-height: 0; padding-bottom: 140px !important; }
  .dooh-hero-grid { grid-template-columns: 1fr; }
  .dooh-display { max-width: 13ch; }
  .dooh-hero-visual { min-height: 560px; }
  .dooh-hero-image { right: 4%; width: 78% !important; }
  .dooh-grid-2 { grid-template-columns: 1fr; gap: 38px; }
  .dooh-grid-3 { grid-template-columns: 1fr; }
  .dooh-format-stage,
  .dooh-format-panel,
  .dooh-format-panel-copy { min-height: 580px; }
  .dooh-format-panel-copy { width: 82%; }
  .dooh-work-stage { height: 560px; min-height: 0; }
  .dooh-work-panel { height: 100%; min-height: 0; }
  .dooh-work-thumbs { grid-template-columns: 1fr; }
  .dooh-audience-row { grid-template-columns: 52px 1fr; }
  .dooh-audience-row .dooh-copy,
  .dooh-audience-row .dooh-button { grid-column: 2; }
  .dooh-partner-panel { grid-template-columns: 1fr; }
  .dooh-faq-list { grid-template-columns: 1fr; }
  .dooh-footer-grid { grid-template-columns: repeat(2,1fr); }
  .dooh-footer-brand { grid-column: span 2; }
  .dooh-footer-column:last-child { grid-column: auto; }
}

@media (max-width: 640px) {
  :root { --dooh-container: calc(100vw - 28px); --dooh-section: 78px; --dooh-radius: 24px; }
  .dooh-header-inner { min-height: 70px; }
  .dooh-logo { width: 116px !important; max-width: 116px !important; }
  .dooh-display { font-size: clamp(43px, 13vw, 62px); }
  .dooh-h2 { font-size: clamp(36px, 10.5vw, 50px); }
  .dooh-actions { flex-direction: column; align-items: stretch; }
  .dooh-actions .dooh-button { width: 100%; }
  .dooh-hero { padding-top: 62px !important; }
  .dooh-hero-visual { min-height: 430px; }
  .dooh-hero-image { top: 10px; right: 0; width: 92% !important; height: 400px; border-width: 7px; border-radius: 120px 120px 26px 26px; }
  .dooh-hero-card { bottom: 0; width: 78%; padding: 20px; }
  .dooh-orb { right: -80px; width: 250px; }
  .dooh-proof-wrap { margin-top: -72px; }
  .dooh-proof-grid { grid-template-columns: 1fr; padding: 8px; }
  .dooh-proof-item { min-height: 0; padding: 26px; }
  .dooh-proof-item .dooh-h3 { min-height: 0; margin-top: 24px; }
  .dooh-marquee { padding-block: 20px !important; }
  .dooh-marquee-track { gap: 28px; }
  .dooh-marquee-item { font-size: 14px; }
  .dooh-marquee-item::after { margin-left: 28px; }
  .dooh-format-showcase { padding: 10px; border-radius: 28px; }
  .dooh-format-nav { grid-template-columns: 1fr; }
  .dooh-format-tab { min-height: 78px; padding: 16px; }
  .dooh-format-stage,
  .dooh-format-panel,
  .dooh-format-panel-copy { min-height: 540px; }
  .dooh-format-panel-copy { width: 100%; padding: 28px; }
  .dooh-format-panel-image::after { background: linear-gradient(0deg, rgba(4,29,24,.97), rgba(4,29,24,.2) 70%); }
  .dooh-format-panel-copy .dooh-h2 { max-width: 12ch; font-size: 39px; }
  .dooh-services-image { height: 300px; border-radius: 24px 64px 24px 24px; }
  .dooh-service-row { grid-template-columns: 48px 1fr; min-height: 0; padding: 26px 0; }
  .dooh-service-row .dooh-copy { grid-column: 2; }
  .dooh-process-panel,
  .dooh-cta-panel { padding: 36px 22px; border-radius: 28px; }
  .dooh-process-grid { grid-template-columns: 1fr; }
  .dooh-process-card { min-height: 240px; }
  #work .dooh-section-heading {
    max-width: 100%;
    padding-inline: 4px;
  }
  #work .dooh-section-heading .dooh-h2 {
    max-width: 12ch;
  }
  .dooh-work-gallery {
    width: 100% !important;
    margin-top: 42px;
  }
  .dooh-work-stage {
    width: 100% !important;
    height: 460px;
    min-height: 0;
    margin-inline: auto;
    border-radius: 28px;
  }
  .dooh-work-panel { height: 100%; min-height: 0; }
  .dooh-work-image img { object-position: center center; }
  .dooh-work-overlay { left: 22px; right: 22px; bottom: 24px; }
  .dooh-work-overlay .dooh-h2 { max-width: 13ch; font-size: 36px; }
  .dooh-work-overlay .dooh-lead { font-size: 16px; line-height: 1.5; }
  .dooh-work-thumb { width: 100% !important; min-height: 92px; padding: 16px; }
  .dooh-audience-row { padding: 24px 20px; }
  .dooh-audience-row .dooh-button { width: 100%; }
  .dooh-partner-logos { grid-template-columns: 1fr; }
  .dooh-footer-grid { grid-template-columns: 1fr; }
  .dooh-footer-brand { grid-column: auto; }
  .dooh-footer-bottom { flex-direction: column !important; align-items: flex-start !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .dooh-motion-ready .dooh-reveal { opacity: 1; transform: none; }
}

/* Bricks builder canvas
   The editing canvas does not run the public interactions in the same way as the
   frontend. Keep every editable item visible and expand interactive panels into
   a practical stacked editing view. These rules only apply to the server-side
   dooh-builder-preview class added during a Bricks builder request. */
.dooh-builder-preview .dooh-reveal,
.dooh-builder-preview .dooh-reveal.is-visible,
.dooh-builder-preview.dooh-motion-ready .dooh-reveal {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
}

.dooh-builder-preview .dooh-hero-visual,
.dooh-builder-preview .dooh-services-visual {
  transform: none !important;
}

.dooh-builder-preview .dooh-services-visual {
  position: static !important;
}

.dooh-builder-preview .dooh-format-stage,
.dooh-builder-preview .dooh-work-stage {
  display: flex !important;
  flex-direction: column !important;
  gap: 22px;
  min-height: 0 !important;
  height: auto !important;
  overflow: visible !important;
  border-radius: 28px;
  background: transparent !important;
  box-shadow: none !important;
}

.dooh-builder-preview [data-dooh-format-panel],
.dooh-builder-preview [data-dooh-work-panel],
.dooh-builder-preview [data-dooh-format-panel].is-active,
.dooh-builder-preview [data-dooh-work-panel].is-active {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  min-height: 520px !important;
  height: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  overflow: hidden !important;
  animation: none !important;
  transform: none !important;
}

.dooh-builder-preview .dooh-format-panel-copy {
  min-height: 520px !important;
}

.dooh-builder-preview .dooh-work-panel {
  min-height: 520px !important;
}

.dooh-builder-preview .dooh-format-panel-image img,
.dooh-builder-preview .dooh-work-image img,
.dooh-builder-preview .dooh-hero-image,
.dooh-builder-preview .dooh-hero-card {
  transform: none !important;
  animation: none !important;
}

.dooh-builder-preview .dooh-format-tab,
.dooh-builder-preview .dooh-work-thumb {
  pointer-events: none;
}

.dooh-builder-preview .dooh-marquee-track {
  animation: none !important;
  transform: none !important;
}

.dooh-builder-preview .dooh-process-progress::after {
  width: 100% !important;
}
