.ombe-practice *,
.ombe-practice *::before,
.ombe-practice *::after {
  box-sizing: border-box;
}

.ombe-practice {
  --om-practice-accent: #a55b46;
  --om-practice-text: #1c2828;
  --om-practice-text-muted: #4a4a4a;
  --om-practice-pad: clamp(16px, 4vw, 40px);
  --om-practice-max: min(100%, 640px);
  --om-practice-icon: #a55b46;
  --om-practice-wave: color-mix(in srgb, var(--om-practice-accent) 35%, transparent);
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--om-practice-text);
  background: transparent;
}

.ombe-practice .ombe-page {
  width: min(100%, 1200px);
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 64px) var(--om-practice-pad);
  position: relative;
}

.ombe-practice .ombe-practice__waves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.ombe-practice .ombe-practice__wave {
  position: absolute;
  stroke: var(--om-practice-wave);
  fill: none;
  stroke-width: 1;
  opacity: 0.55;
}

.ombe-practice .ombe-practice__wave--a {
  top: 8%;
  right: -4%;
  width: clamp(120px, 28vw, 220px);
  height: auto;
  animation: ombe-practice-wave-drift 14s ease-in-out infinite;
}

.ombe-practice .ombe-practice__wave--b {
  bottom: 12%;
  left: -6%;
  width: clamp(100px, 24vw, 180px);
  height: auto;
  animation: ombe-practice-wave-drift 18s ease-in-out infinite reverse;
}

.ombe-practice .ombe-practice__body {
  position: relative;
  z-index: 1;
  max-width: var(--om-practice-max);
}

.ombe-practice .ombe-practice__eyebrow {
  margin: 0 0 clamp(14px, 2.5vw, 20px);
  font-size: clamp(9px, 1vw, 11px);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--om-practice-text);
  line-height: 1.3;
}

.ombe-practice .ombe-practice__title {
  margin: 0 0 clamp(28px, 5vw, 44px);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 8vw, 54px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--om-practice-text);
}

.ombe-practice .ombe-practice__title-accent {
  color: var(--om-practice-accent);
  font-style: italic;
  font-weight: 500;
}

.ombe-practice .ombe-practice__items {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 5vw, 40px);
}

.ombe-practice .ombe-practice__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(14px, 2.5vw, 20px);
  align-items: start;
}

.ombe-practice .ombe-practice__icon {
  flex-shrink: 0;
  width: clamp(36px, 5vw, 44px);
  height: clamp(36px, 5vw, 44px);
  margin-top: 0.15em;
  color: var(--om-practice-icon);
}

.ombe-practice .ombe-practice__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.ombe-practice .ombe-practice__text {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(16px, 1.75vw, 19px);
  font-weight: 400;
  line-height: 1.62;
  color: var(--om-practice-text-muted);
  text-wrap: pretty;
}

.ombe-practice .ombe-practice__hl {
  display: inline;
  color: var(--om-practice-accent);
  font-weight: 600;
  font-style: italic;
  position: relative;
  white-space: nowrap;
}

.ombe-practice .ombe-practice__hl::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 1px;
  background: color-mix(in srgb, var(--om-practice-accent) 45%, transparent);
  border-radius: 1px;
}

.ombe-practice .ombe-practice__divider {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: clamp(36px, 5vw, 44px);
  opacity: 0.7;
}

.ombe-practice .ombe-practice__divider svg {
  width: clamp(80px, 20vw, 140px);
  height: auto;
  stroke: var(--om-practice-wave);
  fill: none;
  stroke-width: 1;
}

@keyframes ombe-practice-wave-drift {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.45;
  }
  50% {
    transform: translate(-6px, 4px) rotate(-2deg);
    opacity: 0.65;
  }
}

@media (max-width: 480px) {
  .ombe-practice .ombe-practice__item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ombe-practice .ombe-practice__icon {
    margin-top: 0;
  }

  .ombe-practice .ombe-practice__divider {
    padding-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ombe-practice .ombe-practice__wave {
    animation: none;
  }
}
