:root {
  --ot-gradient: linear-gradient(115deg, #2C001E 0%, #5E0B3D 38%, #C34113 72%, #E95420 100%);
  --ot-ink: #111111;
  --ot-paper: #FFFFFF;
  --ot-warm-paper: #F7F3EE;
  --ot-aubergine: #2C001E;
  --ot-orange: #E95420;
  --ot-orange-deep: #C34113;
  --ot-muted: #4A4A4A;
  --ot-border: #D9D9D9;
}

body { font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }
body .wp-site-blocks, body .editor-styles-wrapper { font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }
h1, h2, h3, h4, h5, h6 { font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }

.ot-site-header {
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ot-border);
}

.ot-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.ot-mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ot-ink);
  text-decoration: none;
  font-weight: 600;
}

.ot-logo-tile {
  width: 34px;
  height: 76px;
  background: var(--ot-orange);
  color: var(--ot-paper);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8px;
  box-sizing: border-box;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.ot-hero-gradient {
  background: var(--ot-gradient);
  color: var(--ot-paper);
  padding: clamp(32px, 7vw, 96px) clamp(24px, 6vw, 96px);
}

.ot-hero-gradient a { color: inherit; }

.ot-brand-lockup {
  margin-bottom: clamp(56px, 12vw, 148px);
}

.ot-brand-name {
  color: var(--ot-paper);
  font-weight: 600;
  margin: 0;
}

.ot-hero-title {
  color: var(--ot-paper);
  max-width: 820px;
  font-size: clamp(2.65rem, 7vw, 6.8rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin-top: 0;
  margin-bottom: 28px;
}

.ot-hero-subtitle {
  color: rgba(255,255,255,0.9);
  max-width: 760px;
  font-size: clamp(1.25rem, 2.7vw, 2.05rem);
  line-height: 1.35;
  font-weight: 300;
}

.ot-button-primary .wp-block-button__link,
.wp-block-button.ot-button-primary .wp-block-button__link {
  background: var(--ot-orange);
  color: var(--ot-ink);
  border-radius: 0;
  font-weight: 700;
  display: inline-block;
  padding: 14px 20px;
  text-decoration: none;
}

.ot-button-primary .wp-block-button__link:hover,
.wp-block-button.ot-button-primary .wp-block-button__link:hover {
  background: var(--ot-orange-deep);
  color: var(--ot-paper);
}

.ot-section {
  padding: clamp(56px, 8vw, 112px) clamp(24px, 6vw, 96px);
}

.ot-kicker, .ot-card-number {
  color: var(--ot-orange);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.ot-section-title {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.03;
}

.ot-service-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--ot-border);
  border-left: 1px solid var(--ot-border);
}

.ot-service-grid > .wp-block-column {
  flex-basis: auto !important;
  min-width: 0;
}

.ot-service-card {
  border-right: 1px solid var(--ot-border);
  border-bottom: 1px solid var(--ot-border);
  padding: clamp(24px, 4vw, 42px);
}

.ot-service-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.ot-text-link a {
  color: var(--ot-orange);
  font-weight: 700;
  text-decoration: none;
}

.ot-cta-band {
  background: var(--ot-aubergine);
  color: var(--ot-paper);
  padding: clamp(48px, 8vw, 96px) clamp(24px, 6vw, 96px);
}

.ot-cta-band h2 {
  color: var(--ot-paper);
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  line-height: 1.02;
}

.ot-cta-band p {
  max-width: 760px;
  color: rgba(255,255,255,0.86);
  font-size: 1.2rem;
}

.ot-site-footer {
  background: var(--ot-ink);
  color: var(--ot-paper);
  padding-top: 48px;
  padding-bottom: 48px;
}

.ot-site-footer p { color: rgba(255,255,255,0.78); }



/* Header variants */
.ot-site-header,
.ot-site-header-transparent {
  padding: 18px clamp(20px, 4vw, 64px);
  position: relative;
  z-index: 10;
}

.ot-site-header {
  background: var(--ot-paper);
  border-bottom: 1px solid var(--ot-border);
}

.ot-site-header-transparent {
  background: transparent;
  color: var(--ot-paper);
  margin-bottom: -112px;
}

.ot-site-header-transparent + .ot-hero-gradient {
  padding-top: clamp(156px, 15vw, 220px);
}

.ot-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  max-width: var(--wp--style--global--wide-size, 1360px);
  margin: 0 auto;
}

.ot-site-header-transparent .ot-mini-brand,
.ot-site-header-transparent .ot-primary-nav a,
.ot-site-header-transparent .ot-mobile-menu summary,
.ot-site-header-transparent .ot-mobile-menu a {
  color: var(--ot-paper);
}

.ot-site-header-transparent .ot-nav-cta {
  background: rgba(255,255,255,0.16);
  color: var(--ot-paper) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
}

.ot-primary-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  align-items: center;
  font-size: 0.94rem;
}

.ot-primary-nav a,
.ot-mobile-menu a {
  color: var(--ot-ink);
  text-decoration: none;
  font-weight: 500;
}

.ot-primary-nav a:hover,
.ot-mobile-menu a:hover,
.ot-footer-nav a:hover {
  color: var(--ot-orange);
}

.ot-nav-cta,
.ot-mobile-menu .ot-nav-cta {
  background: var(--ot-ink);
  color: var(--ot-paper) !important;
  padding: 10px 14px;
}

.ot-mobile-menu {
  display: none;
  position: relative;
}

.ot-mobile-menu summary {
  list-style: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--ot-ink);
}

.ot-mobile-menu summary::-webkit-details-marker { display: none; }

.ot-hamburger,
.ot-hamburger::before,
.ot-hamburger::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.ot-hamburger::before { transform: translateY(-7px); }
.ot-hamburger::after { transform: translateY(5px); }

.ot-mobile-menu[open] .ot-hamburger { background: transparent; }
.ot-mobile-menu[open] .ot-hamburger::before { transform: translateY(2px) rotate(45deg); }
.ot-mobile-menu[open] .ot-hamburger::after { transform: translateY(0) rotate(-45deg); }

.ot-mobile-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  min-width: min(82vw, 320px);
  padding: 18px;
  display: grid;
  gap: 12px;
  background: var(--ot-paper);
  border: 1px solid var(--ot-border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.ot-site-header-transparent .ot-mobile-panel {
  background: rgba(44,0,30,0.96);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 20px 80px rgba(0,0,0,0.32);
}

.ot-hero-gradient {
  margin-top: 0;
}

@media (max-width: 780px) {
  .ot-service-grid { grid-template-columns: 1fr; }

  .ot-primary-nav { display: none; }
  .ot-mobile-menu { display: block; }
  .ot-site-header-transparent { margin-bottom: -92px; }
  .ot-site-header-transparent + .ot-hero-gradient { padding-top: 132px; }

  .ot-header-inner { align-items: flex-start; flex-direction: column; }
  .ot-logo-tile { width: 30px; height: 66px; }
  .ot-brand-lockup { margin-bottom: 72px; }
}

.ot-site-header {
  padding-left: clamp(20px, 4vw, 64px);
  padding-right: clamp(20px, 4vw, 64px);
  background: var(--ot-paper);
}

.ot-primary-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  align-items: center;
  font-size: 0.94rem;
}

.ot-primary-nav a {
  color: var(--ot-ink);
  text-decoration: none;
  font-weight: 500;
}

.ot-primary-nav a:hover, .ot-footer-nav a:hover {
  color: var(--ot-orange);
}

.ot-nav-cta {
  background: var(--ot-ink);
  color: var(--ot-paper) !important;
  padding: 10px 14px;
}

.ot-intro-section {
  padding: clamp(56px, 8vw, 104px) clamp(24px, 6vw, 96px);
  background: var(--ot-paper);
}

.ot-intro-lede {
  max-width: 980px;
  font-size: clamp(2rem, 4.8vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 28px;
}

.ot-intro-copy {
  max-width: 820px;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.5;
  color: var(--ot-muted);
}

.ot-service-grid-section { background: var(--ot-warm-paper); }

.ot-situations-section, .ot-steps-section {
  padding: clamp(56px, 8vw, 112px) clamp(24px, 6vw, 96px);
}

.ot-situations-section { background: var(--ot-paper); }
.ot-steps-section { background: var(--ot-warm-paper); }

.ot-situation-grid, .ot-steps-grid {
  display: grid !important;
  gap: 0;
  border-top: 1px solid var(--ot-border);
  border-left: 1px solid var(--ot-border);
}

.ot-situation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ot-steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.ot-situation-column, .ot-step-card {
  border-right: 1px solid var(--ot-border);
  border-bottom: 1px solid var(--ot-border);
  padding: clamp(22px, 4vw, 40px);
  min-width: 0;
}

.ot-situation-column p {
  position: relative;
  padding-left: 22px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.ot-situation-column p::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--ot-orange);
  font-weight: 700;
}

.ot-step-card h3 { margin-top: 0; }

.ot-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.ot-footer-lede {
  max-width: 420px;
  font-size: 1.15rem;
}

.ot-footer-nav {
  display: grid;
  gap: 12px;
}

.ot-footer-nav a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
}

.ot-footer-small {
  margin-top: 56px;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .ot-situation-grid, .ot-steps-grid, .ot-footer-grid { grid-template-columns: 1fr; }
  .ot-primary-nav { justify-content: flex-start; }
}


/* Final responsive header fixes: keep mobile header compact and overlay transparent hero header */
.ot-site-header-transparent {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin-bottom: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-sizing: border-box;
}

.ot-site-header-transparent + .ot-hero-gradient {
  padding-top: clamp(132px, 15vw, 190px) !important;
}

.ot-site-header .ot-header-inner,
.ot-site-header-transparent .ot-header-inner {
  flex-direction: row !important;
  align-items: center !important;
}

.ot-mobile-menu { margin-left: auto; }

@media (max-width: 780px) {
  .ot-site-header,
  .ot-site-header-transparent { padding: 18px 22px !important; }
  .ot-primary-nav { display: none !important; }
  .ot-mobile-menu { display: block !important; }
  .ot-site-header .ot-header-inner,
  .ot-site-header-transparent .ot-header-inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
  }
  .ot-site-header-transparent + .ot-hero-gradient { padding-top: 126px !important; }
  .ot-hero-title { font-size: clamp(3rem, 15vw, 4.35rem); line-height: 0.98; }
}
