/* =====================================================================
   OASIS — Shared Stylesheet (ow-styles.css)
   Single source of truth for brand tokens, base styles, header & footer.
   Convention: prefixed class names (ow-), no inline styles, mobile-first.
   Pair with OASIS_BRAND_GUIDE.md.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. Brand tokens  (from OASIS_BRAND_GUIDE.md §4)
   --------------------------------------------------------------------- */
:root {
  /* Primary — authority */
  --oasis-royal:        #1B3A6B;
  --oasis-navy:         #122849;
  --oasis-royal-light:  #2E5A9E;

  /* Accent — prosperity (use sparingly) */
  --oasis-gold:         #C9A24B;
  --oasis-gold-light:   #E5C474;
  --oasis-gold-deep:    #9A7A2E;

  /* Secondary — the oasis water / tech */
  --oasis-teal:         #2C9C8F;
  --oasis-teal-light:   #46C0B0;

  /* Neutrals — earth / comfort */
  --oasis-sand:         #E8DCC0;
  --oasis-cream:        #F8F4EA;
  --oasis-ink:          #0E1626;
  --oasis-muted:        #6B7585;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Layout helpers */
  --ow-radius:      14px;
  --ow-radius-sm:   8px;
  --ow-shadow:      0 10px 30px rgba(18, 40, 73, 0.10);
  --ow-shadow-lg:   0 20px 50px rgba(18, 40, 73, 0.16);
  --ow-transition:  0.25s ease;
  --ow-nav-h:       72px;
  --ow-maxw:        1200px;
}

/* ---------------------------------------------------------------------
   2. Base / reset  (mobile-first)
   --------------------------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--oasis-ink);
  background-color: var(--oasis-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--oasis-royal);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 5.5vw, 3.4rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }

p { margin: 0 0 1rem; }

a {
  color: var(--oasis-teal);
  text-decoration: none;
  transition: color var(--ow-transition);
}
a:hover { color: var(--oasis-royal); }

img { max-width: 100%; height: auto; display: block; }

/* ---------------------------------------------------------------------
   3. Layout utilities (prefixed)
   --------------------------------------------------------------------- */
.ow-container {
  width: 100%;
  max-width: var(--ow-maxw);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.ow-section { padding-block: clamp(3rem, 8vw, 6rem); }

.ow-section--sand  { background-color: var(--oasis-sand); }
.ow-section--navy  { background-color: var(--oasis-navy); color: var(--oasis-cream); }
.ow-section--navy h1, .ow-section--navy h2, .ow-section--navy h3 { color: #fff; }

.ow-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oasis-gold-deep);
  margin: 0 0 0.75rem;
}

.ow-lead { font-size: 1.12rem; color: var(--oasis-muted); }

/* Visually-hidden (a11y / skip link) */
.ow-visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------------------------------------------------------------------
   4. Buttons / CTAs (ow-cta-)
   --------------------------------------------------------------------- */
.ow-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ow-transition);
}

.ow-cta--gold {
  background-color: var(--oasis-gold);
  color: var(--oasis-navy);
}
.ow-cta--gold:hover {
  background-color: var(--oasis-gold-light);
  color: var(--oasis-navy);
  transform: translateY(-2px);
  box-shadow: var(--ow-shadow);
}

.ow-cta--royal {
  background-color: var(--oasis-royal);
  color: #fff;
}
.ow-cta--royal:hover { background-color: var(--oasis-royal-light); color: #fff; }

.ow-cta--ghost {
  background-color: transparent;
  border-color: currentColor;
  color: var(--oasis-royal);
}
.ow-cta--ghost:hover { background-color: var(--oasis-royal); color: #fff; }

/* ---------------------------------------------------------------------
   5. Header / Navigation (ow-nav-)
   --------------------------------------------------------------------- */
.ow-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(248, 244, 234, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(27, 58, 107, 0.08);
}

.ow-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--ow-nav-h);
}

.ow-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--oasis-royal);
  letter-spacing: 0.02em;
}
.ow-nav__brand:hover { color: var(--oasis-royal); }

.ow-nav__mark {
  width: 34px; height: 34px;
  flex: 0 0 auto;
  display: inline-block;
}

.ow-nav__toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.ow-nav__toggle span {
  width: 24px; height: 2px;
  background-color: var(--oasis-royal);
  transition: transform var(--ow-transition), opacity var(--ow-transition);
}

.ow-nav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;             /* mobile: hidden until toggled */
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
  padding-block: 0.75rem;
}
.ow-nav__menu.is-open { display: flex; }

.ow-nav__link {
  display: block;
  font-weight: 500;
  color: var(--oasis-ink);
  padding: 0.6rem 0.25rem;
  border-radius: var(--ow-radius-sm);
}
.ow-nav__link:hover { color: var(--oasis-royal); }
.ow-nav__link.is-active { color: var(--oasis-royal); font-weight: 600; }
.ow-nav__link.is-active::after {
  content: "";
  display: block;
  width: 22px; height: 2px;
  margin-top: 3px;
  background-color: var(--oasis-gold);
}

.ow-nav__cta { margin-top: 0.5rem; }

/* Header layout switches to a row on desktop */
@media (min-width: 992px) {
  .ow-nav__inner { flex-wrap: nowrap; }
  .ow-nav__toggle { display: none; }
  .ow-nav__menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    gap: 1.5rem;
    padding-block: 0;
  }
  .ow-nav__link { padding: 0.35rem 0; }
  .ow-nav__link.is-active::after { margin-inline: auto; }
  .ow-nav__cta { margin-top: 0; margin-left: 0.5rem; }
}

/* ---------------------------------------------------------------------
   6. Footer (ow-footer-)
   --------------------------------------------------------------------- */
.ow-footer {
  background-color: var(--oasis-navy);
  color: rgba(248, 244, 234, 0.78);
  padding-block: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  font-size: 0.95rem;
}

.ow-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.ow-footer__brand-mark { width: 38px; height: 38px; margin-bottom: 0.75rem; }

.ow-footer__title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oasis-gold-light);
  margin: 0 0 1rem;
}

.ow-footer__list { list-style: none; margin: 0; padding: 0; }
.ow-footer__list li { margin-bottom: 0.55rem; }
.ow-footer__list a { color: rgba(248, 244, 234, 0.78); }
.ow-footer__list a:hover { color: #fff; }

.ow-footer__brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: #fff;
}

.ow-footer__bottom {
  border-top: 1px solid rgba(248, 244, 234, 0.14);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(248, 244, 234, 0.6);
}

@media (min-width: 768px) {
  .ow-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
  .ow-footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* =====================================================================
   HOME PAGE SECTIONS
   ===================================================================== */

/* ---------------------------------------------------------------------
   H1. Hero (ow-hero-)
   --------------------------------------------------------------------- */
.ow-hero {
  position: relative;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(46, 90, 158, 0.18) 0%, rgba(46, 90, 158, 0) 55%),
    radial-gradient(100% 100% at 0% 100%, rgba(44, 156, 143, 0.12) 0%, rgba(44, 156, 143, 0) 50%),
    var(--oasis-cream);
  overflow: hidden;
}

.ow-hero__inner {
  max-width: 860px;
  padding-block: clamp(3.5rem, 11vw, 7rem);
}

.ow-hero__eyebrow { color: var(--oasis-gold-deep); }

.ow-hero__title { margin-bottom: 1.25rem; max-width: 16ch; }
.ow-hero__accent { color: var(--oasis-teal); font-style: italic; }
@media (min-width: 768px) { .ow-hero__title { max-width: none; } }

.ow-hero__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--oasis-muted);
  max-width: 60ch;
  margin-bottom: 2rem;
}

.ow-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}
.ow-hero__ghost { color: var(--oasis-royal); }

.ow-hero__trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  font-size: 0.9rem;
  color: var(--oasis-muted);
}
.ow-hero__trust li { position: relative; padding-left: 1.4rem; }
.ow-hero__trust li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background-color: var(--oasis-gold);
}

/* ---------------------------------------------------------------------
   H2. Services overview (ow-svc-)
   --------------------------------------------------------------------- */
.ow-svc__head { max-width: 640px; margin-bottom: 2.5rem; }

.ow-svc__card {
  height: 100%;
  background-color: #fff;
  border: 1px solid rgba(27, 58, 107, 0.08);
  border-radius: var(--ow-radius);
  padding: 1.75rem;
  box-shadow: var(--ow-shadow);
  transition: transform var(--ow-transition), box-shadow var(--ow-transition);
}
.ow-svc__card:hover { transform: translateY(-4px); box-shadow: var(--ow-shadow-lg); }

.ow-svc__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background-color: var(--oasis-sand);
  color: var(--oasis-royal);
  font-size: 1.3rem;
}
.ow-svc__card--tech .ow-svc__icon { background-color: rgba(44, 156, 143, 0.15); color: var(--oasis-teal); }

.ow-svc__title { font-size: 1.25rem; margin-bottom: 0.6rem; }
.ow-svc__copy { color: var(--oasis-muted); margin-bottom: 1rem; }

.ow-svc__link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--oasis-royal);
}
.ow-svc__link:hover { color: var(--oasis-teal); }

.ow-svc__card--cta {
  background-color: var(--oasis-royal);
  border-color: var(--oasis-royal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ow-svc__card--cta .ow-svc__title { color: #fff; }
.ow-svc__card--cta .ow-svc__copy { color: rgba(248, 244, 234, 0.82); }
.ow-svc__card--cta .ow-cta { margin-top: auto; }

/* ---------------------------------------------------------------------
   H3. Industries (ow-ind-)
   --------------------------------------------------------------------- */
.ow-ind__head { max-width: 640px; margin-bottom: 2.5rem; }

.ow-ind__card {
  height: 100%;
  background-color: var(--oasis-cream);
  border: 1px solid rgba(27, 58, 107, 0.10);
  border-radius: var(--ow-radius);
  padding: 1.6rem;
  border-top: 3px solid var(--oasis-gold);
  transition: transform var(--ow-transition), box-shadow var(--ow-transition);
}
.ow-ind__card:hover { transform: translateY(-4px); box-shadow: var(--ow-shadow); }

.ow-ind__icon {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
  margin-bottom: 0.9rem;
  color: var(--oasis-teal);
}
.ow-ind__title { font-size: 1.15rem; margin-bottom: 0.5rem; }
.ow-ind__copy { color: var(--oasis-muted); font-size: 0.95rem; margin: 0; }

/* ---------------------------------------------------------------------
   H4. Social proof (ow-proof-)
   --------------------------------------------------------------------- */
.ow-proof__stats {
  text-align: center;
  margin-bottom: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(27, 58, 107, 0.10);
}
.ow-proof__stat { display: flex; flex-direction: column; gap: 0.25rem; }
.ow-proof__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--oasis-royal);
  line-height: 1;
}
.ow-proof__label {
  font-size: 0.82rem;
  color: var(--oasis-muted);
  letter-spacing: 0.01em;
}

.ow-proof__head { max-width: 640px; margin-bottom: 2rem; }

.ow-proof__card {
  height: 100%;
  margin: 0;
  background-color: #fff;
  border: 1px solid rgba(27, 58, 107, 0.08);
  border-radius: var(--ow-radius);
  padding: 1.75rem;
  box-shadow: var(--ow-shadow);
  display: flex;
  flex-direction: column;
}
.ow-proof__quote {
  font-size: 1.02rem;
  color: var(--oasis-ink);
  margin: 0 0 1.25rem;
  flex-grow: 1;
}
.ow-proof__card::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.6;
  color: var(--oasis-gold);
  display: block;
  margin-bottom: 0.5rem;
}
.ow-proof__author { display: flex; flex-direction: column; }
.ow-proof__name { font-weight: 600; color: var(--oasis-royal); }
.ow-proof__role { font-size: 0.88rem; color: var(--oasis-muted); }

.ow-proof__logos-label {
  text-align: center;
  margin: 3rem 0 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oasis-muted);
}
.ow-proof__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 2rem;
}
.ow-proof__logo {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--oasis-muted);
  padding: 0.75rem 1.5rem;
  border: 1px dashed rgba(27, 58, 107, 0.25);
  border-radius: var(--ow-radius-sm);
}

/* ---------------------------------------------------------------------
   H5. CTA band (ow-cta-band-)
   --------------------------------------------------------------------- */
.ow-cta-band {
  padding-block: clamp(3rem, 8vw, 5.5rem);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(44, 156, 143, 0.25) 0%, rgba(44, 156, 143, 0) 55%),
    var(--oasis-navy);
}
.ow-cta-band__inner { max-width: 720px; }
.ow-cta-band__eyebrow { color: var(--oasis-gold-light); }
.ow-cta-band__title { color: #fff; margin-bottom: 1rem; }
.ow-cta-band__lead {
  color: rgba(248, 244, 234, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.ow-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.ow-cta-band__wa { color: var(--oasis-cream); }
.ow-cta-band__wa:hover { color: var(--oasis-navy); }
.ow-cta-band__note {
  font-size: 0.88rem;
  color: rgba(248, 244, 234, 0.6);
  margin: 0;
}

/* =====================================================================
   SERVICES PAGE SECTIONS
   ===================================================================== */

/* ---------------------------------------------------------------------
   S1. Services hero (ow-shero-)
   --------------------------------------------------------------------- */
.ow-shero {
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(46, 90, 158, 0.16) 0%, rgba(46, 90, 158, 0) 55%),
    var(--oasis-cream);
}
.ow-shero__inner {
  max-width: 760px;
  padding-block: clamp(3rem, 9vw, 5.5rem);
}
.ow-shero__title { margin-bottom: 1.25rem; }
.ow-shero__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--oasis-muted);
  max-width: 60ch;
  margin-bottom: 2rem;
}
.ow-shero__jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.ow-shero__jump a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--oasis-royal);
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(27, 58, 107, 0.18);
  border-radius: 50px;
  transition: all var(--ow-transition);
}
.ow-shero__jump a:hover {
  background-color: var(--oasis-royal);
  color: #fff;
  border-color: var(--oasis-royal);
}

/* ---------------------------------------------------------------------
   S2. Primary service blocks (ow-prim-)
   --------------------------------------------------------------------- */
.ow-prim__title { margin-bottom: 1rem; }
.ow-prim__problem {
  font-size: 1.08rem;
  color: var(--oasis-ink);
  max-width: 46ch;
}
.ow-prim__subhead {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oasis-gold-deep);
  margin-bottom: 0.9rem;
}
.ow-prim__list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.ow-prim__list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
  color: var(--oasis-ink);
}
.ow-prim__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background-color: var(--oasis-teal);
}
.ow-prim__why { color: var(--oasis-muted); margin-bottom: 1.25rem; }
.ow-prim__cta { margin-top: 0.25rem; }

/* Tech-mode variant (AI section) — navy bg, teal/gold on dark */
.ow-prim--tech { padding-block: clamp(3rem, 8vw, 6rem); }
.ow-prim--tech .ow-prim__problem { color: rgba(248, 244, 234, 0.9); }
.ow-prim--tech .ow-prim__why { color: rgba(248, 244, 234, 0.78); }
.ow-prim--tech .ow-prim__list li { color: rgba(248, 244, 234, 0.9); }
.ow-prim--tech .ow-prim__list li::before { background-color: var(--oasis-teal-light); }
.ow-prim--tech .ow-prim__subhead { color: var(--oasis-gold-light); }
.ow-prim__eyebrow--tech { color: var(--oasis-teal-light); }

/* ---------------------------------------------------------------------
   S3. Maintenance / AMC (ow-amc-) — prominent flagship block
   --------------------------------------------------------------------- */
.ow-amc { background-color: var(--oasis-cream); }
.ow-amc__card {
  background:
    radial-gradient(130% 120% at 0% 0%, rgba(201, 162, 75, 0.12) 0%, rgba(201, 162, 75, 0) 50%),
    #fff;
  border: 1px solid rgba(201, 162, 75, 0.35);
  border-top: 4px solid var(--oasis-gold);
  border-radius: var(--ow-radius);
  box-shadow: var(--ow-shadow-lg);
  padding: clamp(1.5rem, 5vw, 3rem);
}
.ow-amc__eyebrow { color: var(--oasis-gold-deep); }
.ow-amc__title { margin-bottom: 1rem; }
.ow-amc__problem { font-size: 1.05rem; color: var(--oasis-ink); margin-bottom: 1rem; }
.ow-amc__why { color: var(--oasis-muted); margin-bottom: 1.5rem; }
.ow-amc__why strong { color: var(--oasis-royal); }

.ow-amc__panel {
  background-color: var(--oasis-navy);
  color: rgba(248, 244, 234, 0.88);
  border-radius: var(--ow-radius);
  padding: 1.75rem;
}
.ow-amc__panel-title {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
}
.ow-amc__list { list-style: none; margin: 0 0 1.25rem; padding: 0; }
.ow-amc__list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}
.ow-amc__list li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 0;
  color: var(--oasis-gold-light);
  font-weight: 700;
}
.ow-amc__list span { color: #fff; font-weight: 600; }
.ow-amc__note { font-size: 0.9rem; color: rgba(248, 244, 234, 0.7); margin: 0; }
.ow-amc__note a { color: var(--oasis-gold-light); }

/* ---------------------------------------------------------------------
   S4. Secondary services (ow-sec-)
   --------------------------------------------------------------------- */
.ow-sec__head { max-width: 640px; margin-bottom: 2.5rem; }
.ow-sec__card {
  height: 100%;
  background-color: var(--oasis-cream);
  border: 1px solid rgba(27, 58, 107, 0.10);
  border-radius: var(--ow-radius);
  padding: 1.75rem;
  transition: transform var(--ow-transition), box-shadow var(--ow-transition);
}
.ow-sec__card:hover { transform: translateY(-4px); box-shadow: var(--ow-shadow); }
.ow-sec__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background-color: rgba(44, 156, 143, 0.14);
  color: var(--oasis-teal);
  font-size: 1.2rem;
}
.ow-sec__title { font-size: 1.2rem; margin-bottom: 0.55rem; }
.ow-sec__copy { color: var(--oasis-muted); margin-bottom: 1rem; }
.ow-sec__link { font-weight: 600; font-size: 0.92rem; color: var(--oasis-royal); }
.ow-sec__link:hover { color: var(--oasis-teal); }
.ow-sec__tags { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.ow-sec__tags li {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--oasis-royal);
  background-color: #fff;
  border: 1px solid rgba(27, 58, 107, 0.15);
  border-radius: 50px;
  padding: 0.35rem 0.8rem;
}

/* =====================================================================
   INDUSTRIES PAGE SECTIONS
   ===================================================================== */

/* ---------------------------------------------------------------------
   I1. Industries hero (ow-ihero-)
   --------------------------------------------------------------------- */
.ow-ihero {
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(44, 156, 143, 0.14) 0%, rgba(44, 156, 143, 0) 55%),
    radial-gradient(120% 120% at 100% 100%, rgba(46, 90, 158, 0.14) 0%, rgba(46, 90, 158, 0) 55%),
    var(--oasis-cream);
}
.ow-ihero__inner {
  max-width: 780px;
  padding-block: clamp(3rem, 9vw, 5.5rem);
}
.ow-ihero__title { margin-bottom: 1.25rem; }
.ow-ihero__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--oasis-muted);
  max-width: 62ch;
  margin-bottom: 2rem;
}
.ow-ihero__jump { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.ow-ihero__jump a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--oasis-royal);
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(27, 58, 107, 0.18);
  border-radius: 50px;
  transition: all var(--ow-transition);
}
.ow-ihero__jump a:hover {
  background-color: var(--oasis-royal);
  color: #fff;
  border-color: var(--oasis-royal);
}

/* ---------------------------------------------------------------------
   I2. Vertical blocks (ow-vert-)
   --------------------------------------------------------------------- */
.ow-vert__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.ow-vert__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background-color: rgba(44, 156, 143, 0.14);
  color: var(--oasis-teal);
  font-size: 1.6rem;
}
.ow-vert__title { margin: 0; }

.ow-vert__world {
  font-size: 1.08rem;
  color: var(--oasis-ink);
  max-width: 75ch;
  margin-bottom: 2rem;
}

.ow-vert__cols { align-items: stretch; }

.ow-vert__subhead {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oasis-gold-deep);
  margin-bottom: 0.9rem;
}
.ow-vert__list { list-style: none; margin: 0; padding: 0; }
.ow-vert__list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.65rem;
  color: var(--oasis-ink);
}
.ow-vert__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background-color: var(--oasis-teal);
}

.ow-vert__outcome {
  height: 100%;
  background-color: var(--oasis-royal);
  color: #fff;
  border-radius: var(--ow-radius);
  border-left: 4px solid var(--oasis-gold);
  padding: 1.6rem;
}
.ow-vert__outcome-title {
  color: var(--oasis-gold-light);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.ow-vert__outcome p { margin: 0; color: rgba(248, 244, 234, 0.92); font-size: 1.02rem; }

/* On sand sections, lift the icon chip to white for contrast */
.ow-section--sand .ow-vert__icon { background-color: #fff; }

/* ---------------------------------------------------------------------
   I3. "Don't see yours" strip (ow-vert-more-)
   --------------------------------------------------------------------- */
.ow-vert-more { background-color: var(--oasis-cream); }
.ow-vert-more__inner { max-width: 640px; }
.ow-vert-more__title { margin-bottom: 0.75rem; }
.ow-vert-more__copy { color: var(--oasis-muted); font-size: 1.05rem; margin-bottom: 1.5rem; }

/* Desktop: industry header sits inline with breathing room */
@media (min-width: 768px) {
  .ow-vert__icon { width: 64px; height: 64px; font-size: 1.9rem; }
}

/* =====================================================================
   ABOUT PAGE SECTIONS
   ===================================================================== */

/* A1. About hero */
.ow-about-hero {
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(46, 90, 158, 0.16) 0%, rgba(46, 90, 158, 0) 55%),
    radial-gradient(110% 110% at 0% 100%, rgba(44, 156, 143, 0.10) 0%, rgba(44, 156, 143, 0) 50%),
    var(--oasis-cream);
}
.ow-about-hero__inner { max-width: 780px; padding-block: clamp(3rem, 9vw, 5.5rem); }
.ow-about-hero__title { margin-bottom: 1.25rem; }
.ow-about-hero__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  color: var(--oasis-muted);
  max-width: 62ch;
  margin: 0;
}

/* A2. Story / philosophy */
.ow-about__body { font-size: 1.05rem; color: var(--oasis-ink); margin-bottom: 1.1rem; }
.ow-about__pull {
  background-color: var(--oasis-navy);
  color: #fff;
  border-radius: var(--ow-radius);
  border-top: 4px solid var(--oasis-gold);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ow-about__pull-quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 1rem;
}
.ow-about__pull-attr {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oasis-gold-light);
  margin: 0;
}

/* A3. Founder */
.ow-founder__media { margin: 0; }
.ow-founder__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--ow-radius);
  background:
    repeating-linear-gradient(45deg, rgba(27,58,107,0.06) 0 12px, rgba(27,58,107,0.02) 12px 24px),
    var(--oasis-cream);
  border: 1px dashed rgba(27, 58, 107, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oasis-muted);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.ow-founder__cap { display: flex; flex-direction: column; }
.ow-founder__name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--oasis-royal); }
.ow-founder__role { font-size: 0.9rem; color: var(--oasis-muted); }

/* A4. What's different */
.ow-diff__head { max-width: 640px; margin-bottom: 2.5rem; }
.ow-diff__card {
  position: relative;
  height: 100%;
  background-color: #fff;
  border: 1px solid rgba(27, 58, 107, 0.08);
  border-radius: var(--ow-radius);
  padding: 1.75rem;
  box-shadow: var(--ow-shadow);
  transition: transform var(--ow-transition), box-shadow var(--ow-transition);
}
.ow-diff__card:hover { transform: translateY(-4px); box-shadow: var(--ow-shadow-lg); }
.ow-diff__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--oasis-sand);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.ow-diff__card--tech { background-color: var(--oasis-navy); }
.ow-diff__card--tech .ow-diff__title { color: #fff; }
.ow-diff__card--tech .ow-diff__copy { color: rgba(248, 244, 234, 0.82); }
.ow-diff__card--tech .ow-diff__num { color: var(--oasis-teal); }
.ow-diff__title { font-size: 1.2rem; margin-bottom: 0.55rem; }
.ow-diff__copy { color: var(--oasis-muted); margin: 0; }

/* A5. Values */
.ow-values__head { max-width: 640px; margin-bottom: 2.5rem; }
.ow-values__item { height: 100%; }
.ow-values__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background-color: #fff;
  color: var(--oasis-teal);
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
}
.ow-values__item h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.ow-values__item p { color: var(--oasis-muted); font-size: 0.95rem; margin: 0; }

/* =====================================================================
   PROCESS PAGE SECTIONS
   ===================================================================== */

/* P1. Process hero */
.ow-proc-hero {
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(46, 90, 158, 0.14) 0%, rgba(46, 90, 158, 0) 55%),
    var(--oasis-cream);
}
.ow-proc-hero__inner { max-width: 800px; padding-block: clamp(3rem, 9vw, 5.5rem); }
.ow-proc-hero__title { margin-bottom: 1.25rem; }
.ow-proc-hero__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--oasis-muted);
  max-width: 64ch;
  margin-bottom: 2rem;
}
.ow-proc-hero__map {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.ow-proc-hero__map li { counter-increment: step; }
.ow-proc-hero__map a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--oasis-royal);
  padding: 0.45rem 0.95rem 0.45rem 0.6rem;
  border: 1px solid rgba(27, 58, 107, 0.18);
  border-radius: 50px;
  transition: all var(--ow-transition);
}
.ow-proc-hero__map a::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--oasis-gold-deep);
}
.ow-proc-hero__map a:hover { background-color: var(--oasis-royal); color: #fff; border-color: var(--oasis-royal); }
.ow-proc-hero__map a:hover::before { color: var(--oasis-gold-light); }

/* P2. Step blocks */
.ow-proc__step { display: flex; gap: 1.25rem; }
.ow-proc__marker { display: flex; flex-direction: column; align-items: center; flex: 0 0 auto; }
.ow-proc__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background-color: var(--oasis-royal);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  flex: 0 0 auto;
}
.ow-proc__num--gold { background-color: var(--oasis-gold); color: var(--oasis-navy); }
.ow-proc__line {
  width: 2px;
  flex: 1 1 auto;
  margin-top: 0.5rem;
  background: linear-gradient(var(--oasis-royal-light), rgba(46, 90, 158, 0));
  min-height: 40px;
}
.ow-proc__body { flex: 1 1 auto; }
.ow-proc__title { margin-bottom: 0.75rem; }
.ow-proc__intro { font-size: 1.05rem; color: var(--oasis-ink); max-width: 70ch; margin-bottom: 1.5rem; }
.ow-proc__sub {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oasis-royal);
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--oasis-sand);
}
.ow-proc__sub--ask { color: var(--oasis-gold-deep); border-bottom-color: var(--oasis-gold-light); }
.ow-proc__cols p { color: var(--oasis-muted); font-size: 0.97rem; margin: 0; }

/* P3. Support & grow / AMC tie-in */
.ow-proc--support { background-color: var(--oasis-cream); }
.ow-proc__eyebrow--gold { color: var(--oasis-gold-deep); }
.ow-proc__amc {
  margin-top: 1.75rem;
  padding: 1.5rem;
  background:
    radial-gradient(130% 120% at 0% 0%, rgba(201, 162, 75, 0.14) 0%, rgba(201, 162, 75, 0) 55%),
    #fff;
  border: 1px solid rgba(201, 162, 75, 0.35);
  border-left: 4px solid var(--oasis-gold);
  border-radius: var(--ow-radius);
}
.ow-proc__amc-copy { font-size: 1.05rem; color: var(--oasis-ink); margin-bottom: 1rem; }

@media (min-width: 768px) {
  .ow-proc__step { gap: 1.75rem; }
  .ow-proc__num { width: 64px; height: 64px; font-size: 1.5rem; }
}

/* =====================================================================
   CONTACT PAGE
   ===================================================================== */

/* C1. Contact hero */
.ow-contact-hero {
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(44, 156, 143, 0.14) 0%, rgba(44, 156, 143, 0) 55%),
    var(--oasis-cream);
}
.ow-contact-hero__inner { max-width: 720px; padding-block: clamp(2.5rem, 8vw, 4.5rem); }
.ow-contact-hero__title { margin-bottom: 1rem; }
.ow-contact-hero__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--oasis-muted);
  max-width: 60ch;
  margin: 0;
}

/* C2. Form card */
.ow-form-card {
  background-color: #fff;
  border: 1px solid rgba(27, 58, 107, 0.10);
  border-radius: var(--ow-radius);
  box-shadow: var(--ow-shadow);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.ow-form__heading { font-size: 1.5rem; margin-bottom: 0.4rem; }
.ow-form__sub { color: var(--oasis-muted); font-size: 0.95rem; margin-bottom: 1.75rem; }
.ow-form__req-key, .ow-form__req { color: var(--oasis-gold-deep); font-weight: 700; }
.ow-form__opt { color: var(--oasis-muted); font-weight: 400; font-size: 0.85em; }

/* Honeypot — visually hidden but present for bots */
.ow-form__hp {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.ow-form__label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--oasis-royal);
  margin-bottom: 0.4rem;
}
.ow-form__input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--oasis-ink);
  background-color: var(--oasis-cream);
  border: 1px solid rgba(27, 58, 107, 0.18);
  border-radius: var(--ow-radius-sm);
  padding: 0.7rem 0.85rem;
  transition: border-color var(--ow-transition), box-shadow var(--ow-transition);
}
.ow-form__input::placeholder { color: var(--oasis-muted); opacity: 0.7; }
.ow-form__input:focus {
  outline: none;
  border-color: var(--oasis-teal);
  box-shadow: 0 0 0 3px rgba(44, 156, 143, 0.18);
  background-color: #fff;
}
.ow-form__textarea { resize: vertical; min-height: 120px; }
.ow-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7585' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.25rem;
}

/* Validation states */
.ow-form__input.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.14);
}
.ow-form__error {
  color: #c0392b;
  font-size: 0.83rem;
  margin: 0.35rem 0 0;
  min-height: 1em;
}

.ow-form__submit { margin-top: 0.5rem; }

.ow-form__status {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: var(--ow-radius-sm);
  display: none;
}
.ow-form__status--error {
  display: block;
  color: #8a2a1f;
  background-color: rgba(192, 57, 43, 0.10);
  border: 1px solid rgba(192, 57, 43, 0.3);
}
.ow-form__status--ready {
  display: block;
  color: var(--oasis-navy);
  background-color: rgba(44, 156, 143, 0.12);
  border: 1px solid rgba(44, 156, 143, 0.35);
}

/* C3. Sidebar — WhatsApp */
.ow-contact__wa {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--oasis-teal);
  color: #fff;
  border-radius: var(--ow-radius);
  padding: 1.25rem 1.4rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--ow-shadow);
  transition: transform var(--ow-transition), box-shadow var(--ow-transition);
}
.ow-contact__wa:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--ow-shadow-lg); }
.ow-contact__wa-icon {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.18);
  font-size: 1.4rem;
}
.ow-contact__wa-text { display: flex; flex-direction: column; }
.ow-contact__wa-text strong { font-size: 1.05rem; }
.ow-contact__wa-text small { font-size: 0.85rem; opacity: 0.9; }

/* C4. Sidebar — direct channels */
.ow-contact__panel {
  background-color: var(--oasis-sand);
  border-radius: var(--ow-radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.ow-contact__panel-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oasis-gold-deep);
  margin-bottom: 1.1rem;
}
.ow-contact__list { list-style: none; margin: 0; padding: 0; }
.ow-contact__list li { display: flex; gap: 0.85rem; margin-bottom: 1rem; }
.ow-contact__list li:last-child { margin-bottom: 0; }
.ow-contact__list li > span:last-child { display: flex; flex-direction: column; color: var(--oasis-ink); }
.ow-contact__list small { color: var(--oasis-muted); font-size: 0.85rem; }
.ow-contact__ic {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background-color: #fff;
  color: var(--oasis-royal);
  font-size: 1.05rem;
}

/* C5. Sidebar — reassurance */
.ow-contact__assure {
  border: 1px solid rgba(27, 58, 107, 0.12);
  border-radius: var(--ow-radius);
  padding: 1.5rem;
}
.ow-contact__assure-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oasis-royal);
  margin-bottom: 1.1rem;
}
.ow-contact__steps { list-style: none; margin: 0 0 1rem; padding: 0; }
.ow-contact__steps li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  color: var(--oasis-ink);
  font-size: 0.97rem;
}
.ow-contact__steps li span {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--oasis-royal);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}
.ow-contact__assure-note { font-size: 0.85rem; color: var(--oasis-muted); margin: 0; }

/* =====================================================================
   PRICING / ENGAGEMENT PAGE
   ===================================================================== */

/* PR1. Pricing hero */
.ow-pr-hero {
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(201, 162, 75, 0.14) 0%, rgba(201, 162, 75, 0) 55%),
    radial-gradient(110% 110% at 0% 100%, rgba(46, 90, 158, 0.12) 0%, rgba(46, 90, 158, 0) 50%),
    var(--oasis-cream);
}
.ow-pr-hero__inner { max-width: 760px; padding-block: clamp(3rem, 9vw, 5.5rem); }
.ow-pr-hero__title { margin-bottom: 1.25rem; }
.ow-pr-hero__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--oasis-muted);
  max-width: 62ch;
  margin-bottom: 2rem;
}
.ow-pr-hero__toggle { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.ow-pr-hero__toggle a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--oasis-royal);
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(27, 58, 107, 0.18);
  border-radius: 50px;
  transition: all var(--ow-transition);
}
.ow-pr-hero__toggle a:hover { background-color: var(--oasis-royal); color: #fff; border-color: var(--oasis-royal); }

/* PR2. How we price */
.ow-pr-how__head { max-width: 640px; margin-bottom: 2.5rem; }
.ow-pr-how__item { height: 100%; }
.ow-pr-how__ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background-color: var(--oasis-sand);
  color: var(--oasis-royal);
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}
.ow-pr-how__item h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.ow-pr-how__item p { color: var(--oasis-muted); margin: 0; }

/* PR3. Section heads */
.ow-pr-project__head, .ow-pr-care__head { max-width: 680px; margin-bottom: 2.5rem; }
.ow-pr-care__eyebrow { color: var(--oasis-gold-deep); }

/* PR4. Plan cards (shared by project + care) */
.ow-plan {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid rgba(27, 58, 107, 0.10);
  border-radius: var(--ow-radius);
  padding: 1.75rem;
  box-shadow: var(--ow-shadow);
  transition: transform var(--ow-transition), box-shadow var(--ow-transition);
}
.ow-plan:hover { transform: translateY(-4px); box-shadow: var(--ow-shadow-lg); }

.ow-plan__kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oasis-gold-deep);
  margin-bottom: 0.75rem;
}
.ow-plan__price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  color: var(--oasis-royal);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.ow-plan__from { font-family: var(--font-body); font-weight: 500; font-size: 0.85rem; color: var(--oasis-muted); display: inline-block; margin-right: 0.25rem; }
.ow-plan__per { font-family: var(--font-body); font-weight: 500; font-size: 0.95rem; color: var(--oasis-muted); }
.ow-plan__tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--oasis-gold-deep);
  background-color: rgba(201, 162, 75, 0.12);
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.ow-plan__desc { color: var(--oasis-ink); margin-bottom: 1.1rem; }
.ow-plan__list { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.ow-plan__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: var(--oasis-ink);
}
.ow-plan__list li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 0;
  color: var(--oasis-teal);
  font-weight: 700;
}
.ow-plan__cta { margin-top: auto; align-self: flex-start; }

/* Featured plan */
.ow-plan--featured {
  border-color: var(--oasis-gold);
  border-width: 2px;
  box-shadow: var(--ow-shadow-lg);
}
.ow-plan__badge {
  position: absolute;
  top: -0.85rem;
  left: 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oasis-navy);
  background-color: var(--oasis-gold);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

/* Care plans get a subtle gold top accent to signal the flagship */
.ow-plan--care { border-top: 3px solid var(--oasis-gold); }
.ow-plan--care.ow-plan--featured { border-top-width: 3px; }

/* Notes under plan rows */
.ow-pr-note { margin-top: 1.5rem; font-size: 0.9rem; color: var(--oasis-muted); }
.ow-pr-note strong { color: var(--oasis-gold-deep); }

/* PR5. FAQ (native details/summary) */
.ow-faq__head { max-width: 640px; margin-bottom: 2.5rem; }
.ow-faq__list { max-width: 820px; }
.ow-faq__item {
  background-color: var(--oasis-cream);
  border: 1px solid rgba(27, 58, 107, 0.10);
  border-radius: var(--ow-radius-sm);
  margin-bottom: 0.85rem;
  overflow: hidden;
}
.ow-faq__q {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--oasis-royal);
  padding: 1.1rem 3rem 1.1rem 1.25rem;
  position: relative;
}
.ow-faq__q::-webkit-details-marker { display: none; }
.ow-faq__q::after {
  content: "+";
  position: absolute;
  right: 1.25rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--oasis-gold-deep);
  transition: transform var(--ow-transition);
}
.ow-faq__item[open] .ow-faq__q::after { content: "\2212"; }
.ow-faq__a { padding: 0 1.25rem 1.2rem; }
.ow-faq__a p { color: var(--oasis-muted); margin: 0; }

/* PR6. Custom quote strip */
.ow-pr-quote { background-color: var(--oasis-cream); }
.ow-pr-quote__inner { max-width: 640px; }
.ow-pr-quote__title { margin-bottom: 0.75rem; }
.ow-pr-quote__copy { color: var(--oasis-muted); font-size: 1.05rem; margin-bottom: 1.5rem; }

/* =====================================================================
   PORTFOLIO / WORK PAGE
   ===================================================================== */

/* W1. Work hero */
.ow-work-hero {
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(46, 90, 158, 0.16) 0%, rgba(46, 90, 158, 0) 55%),
    var(--oasis-cream);
}
.ow-work-hero__inner { max-width: 760px; padding-block: clamp(2.5rem, 8vw, 4.5rem); }
.ow-work-hero__title { margin-bottom: 1rem; }
.ow-work-hero__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--oasis-muted);
  max-width: 60ch;
  margin-bottom: 1rem;
}
.ow-work-hero__hint {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--oasis-gold-deep);
  background-color: rgba(201, 162, 75, 0.12);
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: var(--ow-radius-sm);
  margin: 0;
}

/* W2. Filter */
.ow-work__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.ow-work__filter-btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--oasis-royal);
  background-color: transparent;
  border: 1px solid rgba(27, 58, 107, 0.18);
  border-radius: 50px;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: all var(--ow-transition);
}
.ow-work__filter-btn:hover { border-color: var(--oasis-royal); }
.ow-work__filter-btn.is-active {
  background-color: var(--oasis-royal);
  color: #fff;
  border-color: var(--oasis-royal);
}

/* W3. Project cards */
.ow-work__card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid rgba(27, 58, 107, 0.10);
  border-radius: var(--ow-radius);
  overflow: hidden;
  box-shadow: var(--ow-shadow);
  transition: transform var(--ow-transition), box-shadow var(--ow-transition);
}
.ow-work__card:hover { transform: translateY(-4px); box-shadow: var(--ow-shadow-lg); }

.ow-work__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(45deg, rgba(27,58,107,0.05) 0 14px, rgba(27,58,107,0.02) 14px 28px),
    var(--oasis-sand);
  color: var(--oasis-muted);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}
.ow-work__tag {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background-color: rgba(18, 40, 73, 0.85);
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}
.ow-work__flag {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--oasis-navy);
  background-color: var(--oasis-gold);
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}
.ow-work__meta { padding: 1.4rem; display: flex; flex-direction: column; flex: 1 1 auto; }
.ow-work__name { font-size: 1.2rem; margin-bottom: 0.45rem; }
.ow-work__desc { color: var(--oasis-muted); font-size: 0.95rem; margin-bottom: 1rem; }
.ow-work__delivered { font-size: 0.85rem; color: var(--oasis-ink); margin: auto 0 0; }
.ow-work__delivered span { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--oasis-teal); display: block; margin-bottom: 0.15rem; }
.ow-work__card--case { border-color: rgba(201, 162, 75, 0.4); }
.ow-work__link { font-weight: 600; font-size: 0.9rem; color: var(--oasis-royal); margin-top: 0.85rem; }
.ow-work__link:hover { color: var(--oasis-teal); }

.ow-work__empty { color: var(--oasis-muted); font-style: italic; margin-top: 1rem; }

/* W4. Full case studies */
.ow-case__eyebrow { color: var(--oasis-gold-deep); }
.ow-case__title { max-width: 24ch; margin-bottom: 2rem; }
.ow-case__shot {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--ow-radius);
  background:
    repeating-linear-gradient(45deg, rgba(27,58,107,0.05) 0 16px, rgba(27,58,107,0.02) 16px 32px),
    #fff;
  border: 1px dashed rgba(27, 58, 107, 0.25);
  color: var(--oasis-muted);
  font-family: var(--font-mono);
  font-size: 0.9rem;
}
.ow-case__facts { margin: 0; }
.ow-case__facts > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(27, 58, 107, 0.12);
}
.ow-case__facts dt {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oasis-muted);
}
.ow-case__facts dd { margin: 0; font-weight: 600; color: var(--oasis-royal); text-align: right; }

.ow-case__story { margin-top: 2.5rem; }
.ow-case__sub {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oasis-royal);
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--oasis-sand);
}
.ow-case__sub--out { color: var(--oasis-gold-deep); border-bottom-color: var(--oasis-gold-light); }
.ow-case__story p { color: var(--oasis-muted); margin: 0; }

.ow-case__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}
.ow-case__metric {
  flex: 1 1 140px;
  background-color: var(--oasis-navy);
  color: #fff;
  border-radius: var(--ow-radius);
  border-left: 3px solid var(--oasis-gold);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.ow-case__num { font-family: var(--font-display); font-weight: 900; font-size: 1.8rem; color: #fff; line-height: 1; }
.ow-case__label { font-size: 0.82rem; color: rgba(248, 244, 234, 0.75); }

.ow-case__quote {
  margin: 2.5rem 0 0;
  padding: 1.5rem 1.75rem;
  background-color: var(--oasis-cream);
  border-left: 4px solid var(--oasis-gold);
  border-radius: var(--ow-radius-sm);
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--oasis-ink);
}
.ow-section--sand .ow-case__quote { background-color: #fff; }
.ow-case__quote cite {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--oasis-muted);
}

/* ---------------------------------------------------------------------
   Reduced motion
   --------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
