/* ================================================================
   STYLE-LS.CSS  –  Local Style (LS) interior page styles
   ----------------------------------------------------------------
   EDITING RULE: This file is for LS-only rules. Never put IB
   colors (#00C2B5, --mn-*) or IB classes (mn-*, sv-ib-*, sp-ib-*)
   in here. All selectors here live inside .aud-local wrappers in
   the HTML, so they cannot reach IB markup.
   Prefix conventions used: sv- ct- ab- wk- sp- lk- ls-
   ================================================================ */

/* ================================================================
   SERVICES PAGE  (.sv-*)
   ================================================================ */

/* ── Hero ───────────────────────────────────────────────────────── */
.sv-hero {
  position: relative;
  padding: calc(var(--header-h, 80px) + 1rem) 0 3.5rem;
  background: linear-gradient(160deg, #061210 0%, #0D1B12 50%, #08140E 100%);
  overflow: hidden;
}

.sv-hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
}
.sv-hero-glow--r {
  top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(0,194,181,.1) 0%, transparent 65%);
}
.sv-hero-glow--l {
  bottom: -200px; left: -100px;
  background: radial-gradient(circle, rgba(245,200,50,.07) 0%, transparent 65%);
}

.sv-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.sv-eyebrow {
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal, #1ABFAA);
  margin-bottom: 1rem;
  display: block;
}
.sv-eyebrow--light { color: rgba(0,194,181,.7); }

.sv-h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.sv-h1 em {
  color: var(--gold, #F5C832);
  font-style: normal;
}

.sv-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,.55);
  max-width: 52ch;
  margin-bottom: 2rem;
}

/* Quick-jump pill nav */
.sv-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.sv-jump {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .38rem .85rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: background .22s, border-color .22s, color .22s, transform .22s var(--ease-spring);
}
.sv-jump:hover {
  background: rgba(0,194,181,.12);
  border-color: rgba(0,194,181,.35);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Service sections ───────────────────────────────────────────── */
.sv-service {
  padding: 7rem 0;
  background: #fff;
}
.sv-service:nth-child(even) { background: var(--cream, #F6F0E6); }

.sv-service-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}
.sv-service--flip .sv-service-inner { direction: rtl; }
.sv-service--flip .sv-content,
.sv-service--flip .sv-img-wrap { direction: ltr; }

/* Image side */
.sv-img-wrap {
  position: relative;
}
.sv-img-frame {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0,0,0,.1);
  aspect-ratio: 4 / 3;
}
.sv-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease-out);
}
.sv-img-frame:hover .sv-img { transform: scale(1.04); }

/* Accent blob behind image */
.sv-img-blob {
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: var(--sv-color, #1ABFAA);
  opacity: .08;
  bottom: -15%;
  right: -15%;
  z-index: 1;
  filter: blur(40px);
}

/* Content side */
.sv-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .35rem 1rem .35rem .6rem;
  background: color-mix(in srgb, var(--sv-color, #1ABFAA) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--sv-color, #1ABFAA) 28%, transparent);
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
/* Fallback for browsers without color-mix */
@supports not (color: color-mix(in srgb, red 10%, blue)) {
  .sv-badge { background: rgba(0,194,181,.1); border-color: rgba(0,194,181,.25); }
}
.sv-badge-num {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: rgba(13,27,18,.45);
}
.sv-badge-icon { font-size: 1rem; line-height: 1; }
.sv-badge-name {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(13,27,18,.6);
}

.sv-service-h {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #0D1B12;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.sv-service-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(13,27,18,.62);
  margin-bottom: 1.75rem;
}

/* Feature list */
.sv-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 2.25rem;
}
.sv-feature {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .92rem;
  color: rgba(13,27,18,.72);
}
.sv-feature-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: .85;
}

.sv-service-acts {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.sv-learn {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(13,27,18,.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(13,27,18,.2);
  padding-bottom: 1px;
  transition: color .22s, border-color .22s;
}
.sv-learn:hover { color: #0D1B12; border-color: #0D1B12; }

/* ── CTA ────────────────────────────────────────────────────────── */
.sv-cta {
  position: relative;
  padding: 7rem 0;
  background: linear-gradient(150deg, #061210 0%, #0D1B12 100%);
  overflow: hidden;
  text-align: center;
}
.sv-cta-glow {
  position: absolute;
  width: 700px; height: 700px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,194,181,.08) 0%, transparent 65%);
  pointer-events: none;
}
.sv-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.sv-cta-h {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.sv-cta-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,.5);
  margin-bottom: 2.5rem;
}
.sv-cta-acts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.sv-cta-phone {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .22s;
}
.sv-cta-phone:hover { color: #fff; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .sv-service-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .sv-service--flip .sv-service-inner { direction: ltr; }
  .sv-img-blob { display: none; }
  .sv-service { padding: 4.5rem 0; }
}

@media (max-width: 520px) {
  .sv-hero { padding-bottom: 4rem; }
  .sv-jump  { font-size: .75rem; padding: .38rem .8rem; }
  .sv-h1    { font-size: 2.2rem; }
}


/* ================================================================
   CONTACT PAGE  (.ct-*)
   ================================================================ */

/* ── Hero ───────────────────────────────────────────────────────── */
.ct-hero {
  position: relative;
  padding: calc(var(--header-h, 80px) + 3rem) 0 3.5rem;
  background: linear-gradient(160deg, #061210 0%, #0D1B12 55%, #071620 100%);
  overflow: hidden;
}

.ct-hero-glow {
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  pointer-events: none;
}
.ct-hero-glow--tr {
  top: -160px; right: -80px;
  background: radial-gradient(circle, rgba(0,194,181,.12) 0%, transparent 65%);
}
.ct-hero-glow--bl {
  bottom: -200px; left: -80px;
  background: radial-gradient(circle, rgba(245,200,50,.06) 0%, transparent 65%);
}

.ct-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.ct-eyebrow {
  display: block;
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal, #1ABFAA);
  margin-bottom: 1rem;
}

.ct-h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.ct-h1 em {
  color: var(--gold, #F5C832);
  font-style: normal;
}

.ct-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,.52);
  max-width: 52ch;
}

/* ── Body: two-column ───────────────────────────────────────────── */
.ct-body {
  background: #0A0F0D;
  padding: 5rem 0 7rem;
}

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: start;
}

/* ── Info panel (left) ──────────────────────────────────────────── */
.ct-info {
  position: sticky;
  top: calc(var(--header-h, 80px) + 2rem);
}

.ct-info-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ct-info-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: .4rem;
}
.ct-info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal, #1ABFAA);
}

.ct-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.ct-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}
a.ct-detail:hover .ct-detail-icon { background: rgba(0,194,181,.18); border-color: rgba(0,194,181,.3); }
a.ct-detail:hover strong { color: var(--teal, #1ABFAA); }

.ct-detail-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal, #1ABFAA);
  transition: background .22s, border-color .22s;
}
.ct-detail-icon svg { width: 15px; height: 15px; }

.ct-detail > div {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.ct-detail strong {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  transition: color .22s;
}
.ct-detail span,
.ct-detail:not([href]) span {
  font-size: .92rem;
  color: rgba(255,255,255,.7);
}
a.ct-detail span { color: rgba(255,255,255,.85); }

/* Islands chips */
.ct-islands {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ct-islands-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-bottom: .75rem;
}
.ct-islands-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.ct-chip {
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-pill, 999px);
  padding: .25rem .75rem;
}

/* Trust lines */
.ct-trust {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.ct-trust-line {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .83rem;
  color: rgba(255,255,255,.38);
}
.ct-trust-line svg { color: var(--teal, #1ABFAA); flex-shrink: 0; }

/* ── Form card (right) ──────────────────────────────────────────── */
.ct-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}

.ct-card-head {
  padding: 2.5rem 2.5rem 2rem;
  background: linear-gradient(130deg, #061210 0%, #0D1B12 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ct-card-h {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: .6rem;
}
.ct-card-sub {
  font-size: .88rem;
  color: rgba(255,255,255,.45);
}

/* Form message */
.ct-form-msg {
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: .9rem;
  line-height: 1.5;
}
.ct-form-msg.is-success {
  max-height: 200px;
  padding: 1.25rem 2.5rem;
  background: #edfdf8;
  color: #0a5e42;
  border-bottom: 1px solid #b4e9d4;
}
.ct-form-msg.is-error {
  max-height: 200px;
  padding: 1.25rem 2.5rem;
  background: #fff4f2;
  color: #7a2020;
  border-bottom: 1px solid #f5c9c4;
}

/* Form fields */
.ct-form {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ct-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.ct-field label {
  font-size: .78rem;
  font-weight: 600;
  color: #374151;
  letter-spacing: .02em;
}
.ct-field label abbr {
  text-decoration: none;
  color: var(--coral, #E8603C);
  margin-left: .15em;
}

.ct-field input,
.ct-field select,
.ct-field textarea {
  width: 100%;
  padding: .7rem 1rem;
  font-family: var(--f-body);
  font-size: .92rem;
  color: #111;
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  appearance: none;
  -webkit-appearance: none;
}
.ct-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  padding-right: 2.5rem;
}
.ct-field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

.ct-field input::placeholder,
.ct-field textarea::placeholder { color: #9ca3af; }

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: var(--teal, #1ABFAA);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,194,181,.12);
}
.ct-field input.is-invalid,
.ct-field select.is-invalid,
.ct-field textarea.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}

/* Submit button */
.ct-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-top: .5rem;
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
}
.ct-submit svg { transition: transform .22s; }
.ct-submit:hover svg { transform: translateX(3px) translateY(-3px); }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .ct-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ct-info {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
    align-items: start;
  }
  .ct-info-block { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
  .ct-details    { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
  .ct-islands    { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
}

@media (max-width: 640px) {
  .ct-hero { padding-bottom: 3.5rem; }
  .ct-body  { padding: 3.5rem 0 5rem; }
  .ct-info  { grid-template-columns: 1fr; }
  .ct-card-head { padding: 2rem 1.5rem 1.5rem; }
  .ct-form  { padding: 1.75rem 1.5rem; }
  .ct-row   { grid-template-columns: 1fr; }
}


/* ================================================================
   ABOUT PAGE  (.ab-*)
   ================================================================ */

/* ── Hero ───────────────────────────────────────────────────────── */
.ab-hero {
  position: relative;
  padding: calc(var(--header-h, 80px) + 3rem) 0 3.5rem;
  background: linear-gradient(160deg, #061210 0%, #0D1B12 50%, #060E1A 100%);
  overflow: hidden;
}

.ab-hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  pointer-events: none;
}
.ab-hero-glow--tr {
  top: -140px; right: -60px;
  background: radial-gradient(circle, rgba(0,194,181,.1) 0%, transparent 65%);
}
.ab-hero-glow--bl {
  bottom: -180px; left: -60px;
  background: radial-gradient(circle, rgba(245,200,50,.06) 0%, transparent 65%);
}

.ab-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.ab-eyebrow {
  display: block;
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1rem;
}
.ab-eyebrow--teal { color: var(--teal, #1ABFAA); }

.ab-h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.ab-h1 em {
  color: var(--gold, #F5C832);
  font-style: normal;
}

.ab-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,.5);
  max-width: 52ch;
}

/* ── Story ──────────────────────────────────────────────────────── */
.ab-story {
  background: var(--cream, #F6F0E6);
  padding: 7rem 0;
}

.ab-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

.ab-story-img {
  position: relative;
}
.ab-story-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-xl, 1.5rem);
  display: block;
}
.ab-story-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--teal, #1ABFAA);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,194,181,.3);
}
.ab-badge-num {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.ab-badge-year {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.ab-section-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal, #1ABFAA);
  margin-bottom: 1rem;
  display: block;
}

.ab-story-h {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--ink, #0D1B12);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.ab-story-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(13,27,18,.58);
  margin-bottom: 1.1rem;
}
.ab-story-body p:last-child { margin-bottom: 0; }

/* ── Values ─────────────────────────────────────────────────────── */
.ab-values {
  background: linear-gradient(180deg, #0A0F0D 0%, #061210 100%);
  padding: 7rem 0;
}

.ab-values-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
}
.ab-values-h {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-top: .5rem;
}

.ab-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.ab-value-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg, 1rem);
  padding: 2.25rem 2rem;
  transition: border-color .25s, background .25s;
}
.ab-value-card:hover {
  background: rgba(255,255,255,.055);
  border-color: rgba(0,194,181,.2);
}

.ab-value-icon { font-size: 2.2rem; margin-bottom: 1.1rem; }

.ab-value-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .6rem;
}

.ab-value-text {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255,255,255,.42);
}

/* ── Team ────────────────────────────────────────────────────────── */
.ab-team {
  background: var(--cream, #F6F0E6);
  padding: 7rem 0;
}

.ab-team-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
}
.ab-team-h {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--ink, #0D1B12);
  margin: .5rem 0 1rem;
  line-height: 1.2;
}
.ab-team-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(13,27,18,.5);
}

.ab-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.ab-team-card {
  background: #fff;
  border-radius: var(--r-lg, 1rem);
  overflow: hidden;
  border: 1px solid rgba(13,27,18,.07);
  transition: box-shadow .25s, transform .25s;
}
.ab-team-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
  transform: translateY(-3px);
}

.ab-team-photo {
  height: 220px;
  background: linear-gradient(135deg, #0D1B12 0%, #1A5C42 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab-team-photo-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0,194,181,.25);
  border: 2px solid rgba(0,194,181,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal, #1ABFAA);
}

.ab-team-info {
  padding: 1.5rem;
}
.ab-team-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink, #0D1B12);
  margin-bottom: .15rem;
}
.ab-team-role {
  font-size: .8rem;
  font-weight: 600;
  color: var(--teal, #1ABFAA);
  margin-bottom: .5rem;
}
.ab-team-island {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(13,27,18,.4);
  background: rgba(13,27,18,.05);
  border-radius: var(--r-pill, 999px);
  padding: .2rem .65rem;
  margin-bottom: .85rem;
}
.ab-team-bio {
  font-size: .85rem;
  line-height: 1.65;
  color: rgba(13,27,18,.5);
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .ab-story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ab-story-img { max-width: 480px; }
  .ab-story-img-badge { right: 0; }
  .ab-story, .ab-values, .ab-team { padding: 5rem 0; }
}

@media (max-width: 520px) {
  .ab-h1 { font-size: 2.4rem; }
  .ab-hero { padding-bottom: 4rem; }
  .ab-values-grid { grid-template-columns: 1fr; }
  .ab-team-grid   { grid-template-columns: 1fr; }
}


/* ================================================================
   WORK PAGE  (.wk-*)
   ================================================================ */

/* ── Hero ───────────────────────────────────────────────────────── */
.wk-hero {
  position: relative;
  padding: calc(var(--header-h, 80px) + 1rem) 0 3.5rem;
  background: linear-gradient(160deg, #061210 0%, #0D1B12 50%, #08140E 100%);
  overflow: hidden;
}

.wk-hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  pointer-events: none;
}
.wk-hero-glow--tr {
  top: -150px; right: -80px;
  background: radial-gradient(circle, rgba(0,194,181,.1) 0%, transparent 65%);
}
.wk-hero-glow--bl {
  bottom: -180px; left: -60px;
  background: radial-gradient(circle, rgba(245,200,50,.06) 0%, transparent 65%);
}

.wk-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.wk-eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal, #1ABFAA);
  margin-bottom: 1rem;
}

.wk-h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.wk-h1 em {
  color: var(--gold, #F5C832);
  font-style: normal;
}

.wk-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,.5);
  max-width: 52ch;
  margin-bottom: 2rem;
}

/* Filter pills */
.wk-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 2rem;
}

.wk-filter {
  font-family: var(--f-body);
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-pill, 999px);
  padding: .4rem 1rem;
  cursor: pointer;
  transition: color .2s, background .2s, border-color .2s;
}
.wk-filter:hover,
.wk-filter.is-active {
  color: #fff;
  background: rgba(0,194,181,.15);
  border-color: rgba(0,194,181,.4);
}

/* ── Grid ───────────────────────────────────────────────────────── */
.wk-grid-sec {
  background: linear-gradient(160deg, #061210 0%, #0D1B12 55%, #08140E 100%);
  padding: 5rem 0 7rem;
}

.wk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

/* ── Card ───────────────────────────────────────────────────────── */
.wk-card {
  background: #fff;
  border-radius: var(--r-xl, 1.5rem);
  overflow: hidden;
  border: 1px solid rgba(13,27,18,.07);
  transition: transform .4s var(--ease-spring, cubic-bezier(.34,1.56,.64,1)), box-shadow .35s ease;
}
.wk-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0,0,0,.5), 0 0 0 1px rgba(26,191,170,.12);
}

/* hidden state for JS filter */
.wk-card.is-hidden {
  display: none;
}

.wk-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.wk-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.wk-card:hover .wk-card-img { transform: scale(1.05); }

.wk-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,18,.72) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.wk-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.wk-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wk-color, #1ABFAA);
  background: rgba(0,0,0,.5);
  border: 1px solid color-mix(in srgb, var(--wk-color, #1ABFAA) 40%, transparent);
  border-radius: var(--r-pill, 999px);
  padding: .2rem .65rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.wk-card-body {
  padding: 1.75rem 2rem 2rem;
}

.wk-card-cat {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(13,27,18,.38);
  margin-bottom: .5rem;
}

.wk-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink, #0D1B12);
  margin-bottom: .65rem;
  line-height: 1.35;
}

.wk-card-desc {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(13,27,18,.52);
  margin-bottom: 1.5rem;
}

.wk-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(13,27,18,.08);
}

.wk-metric {
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--f-display, 'Poppins', sans-serif);
  color: var(--teal, #1ABFAA);
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 780px) {
  .wk-grid { grid-template-columns: 1fr; }
  .wk-grid-sec { padding: 4rem 0 5rem; }
}

@media (max-width: 520px) {
  .wk-h1 { font-size: 2.4rem; }
  .wk-hero { padding-bottom: 3.5rem; }
  .wk-filters { gap: .4rem; }
  .wk-filter { font-size: .72rem; padding: .35rem .85rem; }
}


/* ================================================================
   SERVICE SUBPAGES  (.sp-*)
   ================================================================ */

/* ── Hero ───────────────────────────────────────────────────────── */
.sp-hero {
  position: relative;
  padding: calc(var(--header-h, 80px) + 3rem) 0 3.5rem;
  background: linear-gradient(160deg, #0F5840 0%, #0D4A35 55%, #07200E 100%);
  overflow: hidden;
}

.sp-hero-glow-a {
  position: absolute;
  top: -160px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,191,170,.22) 0%, transparent 65%);
  pointer-events: none;
}
.sp-hero-glow-b {
  position: absolute;
  bottom: -200px; left: -80px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,196,96,.14) 0%, transparent 65%);
  pointer-events: none;
}

.sp-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sp-h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.sp-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,.52);
  max-width: 46ch;
  margin-bottom: 2.5rem;
}

.sp-hero-acts {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.sp-hero-visual { position: relative; }

.sp-hero-img-wrap { position: relative; }
.sp-hero-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-xl, 1.5rem);
  display: block;
  box-shadow: 0 28px 80px rgba(0,0,0,.5);
}
.sp-hero-img-glow {
  position: absolute;
  inset: 20px -20px -20px 20px;
  border-radius: var(--r-xl, 1.5rem);
  background: color-mix(in srgb, var(--sp-accent, #1ABFAA) 20%, transparent);
  z-index: -1;
  filter: blur(36px);
}

.sp-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: 1.5rem;
}
.sp-hero-tag {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--r-pill, 999px);
  padding: .3rem .85rem;
}

/* ── Benefits ───────────────────────────────────────────────────── */
.sp-benefits {
  background: #fff;
  padding: 7rem 0;
}

.sp-benefits-intro {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

.sp-benefits-h {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--ink, #0D4A38);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.sp-benefits-h em { font-weight: 800; }

.sp-benefits-sub {
  font-size: .95rem;
  line-height: 1.8;
  color: rgba(13,74,56,.52);
  margin-bottom: 2rem;
}

.sp-benefits-cta { display: inline-flex; }

.sp-benefit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.sp-benefit-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: var(--r-md, .75rem);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}

.sp-benefit-card-bar {
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--sp-accent, var(--teal, #1ABFAA));
  border-radius: 2px;
  flex-shrink: 0;
}

.sp-benefit-card-text {
  font-size: .9rem;
  color: rgba(13,74,56,.7);
  line-height: 1.65;
  margin: 0;
}

/* ── FAQ ────────────────────────────────────────────────────────── */
.sp-faq {
  background: var(--dark, #0D4A38);
  padding: 7rem 0;
}

.sp-faq-inner { max-width: 860px; }

.sp-faq-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.sp-faq-h {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-top: .5rem;
}

.sp-faq-list {
  display: flex;
  flex-direction: column;
}

.sp-faq-item {
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.sp-faq-item:first-child { border-top: 1px solid rgba(255,255,255,.09); }

.sp-faq-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem 0;
  font-family: var(--f-display, 'Poppins', sans-serif);
  font-size: 1.02rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  gap: 1.5rem;
  transition: color .2s;
}
.sp-faq-btn:hover { color: var(--teal, #1ABFAA); }
.sp-faq-btn.is-open { color: var(--teal, #1ABFAA); }

.sp-faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.22);
  position: relative;
  transition: border-color .2s, background .2s;
}
.sp-faq-icon::before,
.sp-faq-icon::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  transition: opacity .2s, transform .2s, background .2s;
}
.sp-faq-icon::before { width: 10px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.sp-faq-icon::after  { width: 1.5px; height: 10px; top: 50%; left: 50%; transform: translate(-50%,-50%); }

.sp-faq-btn.is-open .sp-faq-icon { border-color: var(--teal, #1ABFAA); background: rgba(26,191,170,.1); }
.sp-faq-btn.is-open .sp-faq-icon::before { background: var(--teal, #1ABFAA); }
.sp-faq-btn.is-open .sp-faq-icon::after  { opacity: 0; transform: translate(-50%,-50%) rotate(90deg); }

.sp-faq-answer { padding-bottom: 1.5rem; }
.sp-faq-answer p {
  font-size: .92rem;
  line-height: 1.75;
  color: rgba(255,255,255,.48);
}

/* ── Related ────────────────────────────────────────────────────── */
/* ── Portfolio showcase ─────────────────────────────────────────── */
.sp-showcase {
  background: var(--cream, #F6F0E6);
  padding: 6rem 0;
}
.sp-showcase-head {
  text-align: center;
  margin-bottom: 3rem;
}
.sp-showcase-h {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--ink, #0D4A38);
  margin-top: .4rem;
}
.sp-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.sp-showcase-item {
  border-radius: .875rem;
  overflow: hidden;
  background: rgba(13,74,56,.05);
}
.sp-showcase-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s ease;
}
.sp-showcase-item:hover img { transform: scale(1.03); }

.sp-related {
  background: var(--cream, #F6F0E6);
  padding: 5rem 0;
}

.sp-related-head { margin-bottom: 2rem; }
.sp-related-h {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--ink, #0D4A38);
  margin-top: .4rem;
}

.sp-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.sp-related-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(13,74,56,.65);
  background: rgba(13,74,56,.05);
  border: 1px solid rgba(13,74,56,.12);
  border-radius: var(--r-pill, 999px);
  padding: .75rem 1.5rem;
  text-decoration: none;
  transition: color .22s, background .22s, border-color .22s;
}
.sp-related-link:hover {
  color: var(--ink, #0D4A38);
  background: rgba(26,191,170,.12);
  border-color: rgba(26,191,170,.4);
}
.sp-related-link svg { transition: transform .22s; }
.sp-related-link:hover svg { transform: translateX(3px); }

/* ── Bottom CTA ─────────────────────────────────────────────────── */
.sp-cta {
  background: var(--dark, #0D4A38);
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
  text-align: center;
}
.sp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(26,191,170,.16) 0%, transparent 65%);
}
.sp-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.sp-cta-h {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.sp-cta-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.46);
  margin-bottom: 2.5rem;
}
.sp-cta-acts {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .sp-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .sp-hero-visual { order: -1; }
  .sp-benefit-cards { grid-template-columns: repeat(2, 1fr); }
  .sp-benefits, .sp-faq, .sp-related, .sp-cta { padding: 5rem 0; }
}

@media (max-width: 520px) {
  .sp-benefit-cards { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .sp-h1 { font-size: 2.2rem; }
  .sp-hero { padding-bottom: 3.5rem; }
  .sp-hero-acts { flex-direction: column; align-items: flex-start; }
  .sp-faq-btn { font-size: .92rem; }
}


/* ================================================================
   LK THEME, CONTACT PAGE  [data-audience="local"]
   ================================================================ */

/* Hero: bright LK forest green */
[data-audience="local"] .ct-hero {
  background: #0D4A38;
}
[data-audience="local"] .ct-hero-glow--tr {
  width: 900px; height: 900px;
  top: -300px; right: -200px;
  background: radial-gradient(circle, rgba(26,191,170,.22) 0%, transparent 65%);
  filter: blur(110px);
  animation: wkGlowPulse 10s ease-in-out infinite;
}
[data-audience="local"] .ct-hero-glow--bl {
  width: 700px; height: 700px;
  bottom: -250px; left: -150px;
  background: radial-gradient(circle, rgba(26,191,170,.14) 0%, transparent 65%);
  filter: blur(110px);
  animation: wkGlowPulse 14s ease-in-out infinite 2s;
}


/* LK shimmer gradient on the h1 em, same as rest of LK theme */
[data-audience="local"] .ct-h1 em {
  background: linear-gradient(135deg, var(--teal, #1ABFAA) 0%, var(--gold, #F5C832) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: shimmer 4s ease infinite;
}

/* Body: lighter, more colorful LK green */
[data-audience="local"] .ct-body {
  background: #fff;
}

/* Info panel: flip all white-on-dark text to dark-on-white */
[data-audience="local"] .ct-info-label  { color: rgba(0,0,0,.4); }
[data-audience="local"] .ct-info-value  { color: var(--teal, #1ABFAA); }
[data-audience="local"] .ct-info-block,
[data-audience="local"] .ct-details,
[data-audience="local"] .ct-islands     { border-bottom-color: rgba(0,0,0,.08); }
[data-audience="local"] .ct-detail-icon { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.1); }
[data-audience="local"] .ct-detail strong               { color: rgba(0,0,0,.5); }
[data-audience="local"] .ct-detail span,
[data-audience="local"] a.ct-detail span                { color: rgba(0,0,0,.7); }
[data-audience="local"] .ct-islands-label               { color: rgba(0,0,0,.4); }
[data-audience="local"] .ct-chip {
  color: var(--teal, #1ABFAA);
  border-color: rgba(0,194,181,.3);
  background: rgba(0,194,181,.07);
}
[data-audience="local"] .ct-trust-line { color: rgba(0,0,0,.45); }

/* Form card: semi-transparent glass over the green body */
[data-audience="local"] .ct-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 8px 48px rgba(0,0,0,.1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

[data-audience="local"] .ct-card-head {
  background: linear-gradient(130deg, #061210 0%, #0D4A35 100%);
  border-bottom: 2px solid rgba(0,194,181,.3);
}

[data-audience="local"] .ct-field label { color: rgba(0,0,0,.65); }
[data-audience="local"] .ct-field label abbr { color: var(--teal, #1ABFAA); }

[data-audience="local"] .ct-field input,
[data-audience="local"] .ct-field select,
[data-audience="local"] .ct-field textarea {
  background: #fafafa;
  border-color: rgba(0,0,0,.14);
  color: #111;
}
[data-audience="local"] .ct-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
}
[data-audience="local"] .ct-field select option { background: #fff; color: #111; }
[data-audience="local"] .ct-field input::placeholder,
[data-audience="local"] .ct-field textarea::placeholder { color: rgba(0,0,0,.3); }

[data-audience="local"] .ct-field input:focus,
[data-audience="local"] .ct-field select:focus,
[data-audience="local"] .ct-field textarea:focus {
  border-color: var(--teal, #1ABFAA);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,194,181,.12);
}

[data-audience="local"] .ct-form-msg.is-success {
  background: rgba(0,194,181,.08); color: #0a6e65; border-bottom-color: rgba(0,194,181,.25);
}
[data-audience="local"] .ct-form-msg.is-error {
  background: rgba(232,96,60,.08); color: #a33a20; border-bottom-color: rgba(232,96,60,.25);
}

[data-audience="local"] .ct-submit-btn {
  background: #F5C832;
  color: #051610;
  box-shadow: 0 4px 22px rgba(245,200,50,.32);
}
[data-audience="local"] .ct-submit-btn:hover {
  background: #ffd94d;
  box-shadow: 0 8px 32px rgba(245,200,50,.48);
}
[data-audience="local"] .ct-submit-btn svg { color: #051610; }

/* Islands chips only relevant for LK */
[data-audience="mainland"] .ct-islands { display: none; }


/* =====================================================
   ABOUT PAGE, LOCAL STYLE (LS) OVERRIDES
   Cascades over the earlier ab-* block.
===================================================== */

/* Hero em tag */
.ab-h1 em { font-style: normal; display: block; }

/* Story, light cream bg, dark text */
.ab-story {
  background: var(--cream, #F6F0E6);
  padding: clamp(5rem,8vw,8rem) 0;
  position: relative;
}
.ab-story::before { display: none; }
.ab-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(3rem,7vw,6rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.ab-story-photo {
  border: 1px solid rgba(13,74,56,.12);
}
.ab-story-img-badge {
  background: var(--teal, #1ABFAA);
  box-shadow: 0 8px 32px rgba(26,191,170,.25);
}
.ab-story-h {
  font-family: var(--f-display);
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 800;
  color: var(--dark, #0D4A38);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 1.75rem;
}
.ab-story-h em { font-style: normal; display: block; color: var(--teal, #1ABFAA); }
.ab-story-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(13,27,18,.6);
  margin-bottom: 1.1rem;
}
.ab-story-body p:last-child { margin-bottom: 0; }

/* Values: cream bg, dark cards */
.ab-values {
  background: var(--cream, #F6F0E6) !important;
  padding: clamp(4rem,7vw,7rem) 0 clamp(5rem,8vw,8rem);
}
.ab-values::before { display: none; }
.ab-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem,4vw,3rem);
}
.ab-value-card {
  background: #fff;
  border: 1px solid rgba(13,74,56,.1);
  border-radius: var(--r-lg, 1rem);
  padding: 2.25rem 2rem;
  transition: border-color .3s, box-shadow .3s;
}
.ab-value-card:hover {
  border-color: rgba(26,191,170,.3);
  box-shadow: 0 8px 32px rgba(26,191,170,.1);
}
.ab-value-num {
  display: block;
  font-family: var(--f-display);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal, #1ABFAA);
  margin-bottom: 1.25rem;
}
.ab-value-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark, #0D4A38);
  margin-bottom: .65rem;
  letter-spacing: -.01em;
}
.ab-value-text {
  font-size: .88rem;
  line-height: 1.75;
  color: rgba(13,27,18,.55);
  margin: 0;
}

/* Values section header: dark text on cream */
.ab-values .bento-title {
  color: var(--dark, #0D4A38);
}

/* Team, light bg, dark cards */
.ab-team {
  background: #fff;
  padding: clamp(5rem,8vw,8rem) 0;
}
.ab-team-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(3rem,5vw,4.5rem);
}
.ab-team-h {
  font-family: var(--f-display);
  font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 800;
  color: var(--dark, #0D4A38);
  margin: .5rem 0 1rem;
  line-height: 1.1;
  letter-spacing: -.03em;
}
.ab-team-h em { font-style: normal; display: block; color: var(--teal, #1ABFAA); }
.ab-team-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(13,27,18,.5);
}
.ab-team-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.ab-team-card {
  background: #fff;
  border: 1px solid rgba(13,74,56,.1);
  border-radius: var(--r-lg, 1rem);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.ab-team-card:hover {
  border-color: rgba(26,191,170,.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,191,170,.1);
}
.ab-team-photo {
  height: 180px;
  background: linear-gradient(135deg, #0D4A38 0%, #1A6B52 100%);
  border-bottom: 1px solid rgba(13,74,56,.08);
}
.ab-team-photo-placeholder {
  width: 68px;
  height: 68px;
  background: rgba(26,191,170,.18);
  border: 1.5px solid rgba(26,191,170,.35);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--teal, #1ABFAA);
  font-family: var(--f-display);
}
.ab-team-name  { color: var(--dark, #0D4A38); letter-spacing: -.01em; }
.ab-team-role  { color: var(--teal, #1ABFAA); font-size: .75rem; }
.ab-team-island {
  color: rgba(13,74,56,.5);
  background: rgba(13,74,56,.06);
  border: 1px solid rgba(13,74,56,.1);
}
.ab-team-bio { color: rgba(13,27,18,.5); }

/* Stats, dark teal accent band */
.ab-stats-ls {
  background: #081C14;
  border-top: none;
  padding: clamp(4rem,6vw,6rem) 0;
}
.ab-stats-ls-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
  text-align: center;
}
.ab-stat-ls {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: 0 1rem;
  border-right: 1px solid rgba(255,255,255,.07);
}
.ab-stat-ls:last-child { border-right: none; }
.ab-stat-ls-super {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.ab-stat-ls-num {
  font-family: var(--f-display);
  font-size: clamp(2.5rem,5vw,4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-l, #4DDBCB) 55%, var(--gold, #E8C460) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ab-stat-ls-label {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* Responsive overrides */
@media (max-width: 860px) {
  .ab-story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ab-story-img  { max-width: 480px; }
  .ab-story-img-badge { right: 0; }
  .ab-stats-ls-grid { grid-template-columns: repeat(2,1fr); }
  .ab-stat-ls:nth-child(2) { border-right: none; }
}
@media (max-width: 520px) {
  .ab-h1         { font-size: 2.4rem; }
  .ab-hero       { padding-bottom: 4rem; }
  .ab-values-grid { grid-template-columns: 1fr; }
  .ab-team-grid  { grid-template-columns: 1fr; }
  .ab-stats-ls-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}



/* LS: about hero */
[data-audience="local"] .ab-hero {
  background: #0D4A38;
  overflow: visible;
  padding-bottom: 4.5rem;
}
[data-audience="local"] .ab-hero-glow--tr {
  width: 900px; height: 900px;
  top: -300px; right: -200px;
  background: radial-gradient(circle, rgba(26,191,170,.22) 0%, transparent 65%);
  filter: blur(110px);
  animation: wkGlowPulse 10s ease-in-out infinite;
}
[data-audience="local"] .ab-hero-glow--bl {
  width: 700px; height: 700px;
  bottom: -250px; left: -150px;
  background: radial-gradient(circle, rgba(26,191,170,.14) 0%, transparent 65%);
  filter: blur(110px);
  animation: wkGlowPulse 14s ease-in-out infinite 2s;
}

/* LS: services promo hero */
[data-audience="local"] .sp-hero {
  background: #0D4A38;
}
[data-audience="local"] .sp-hero-glow-a {
  width: 900px; height: 900px;
  top: -300px; right: -200px;
  background: radial-gradient(circle, rgba(26,191,170,.22) 0%, transparent 65%);
  filter: blur(110px);
  animation: wkGlowPulse 10s ease-in-out infinite;
}
[data-audience="local"] .sp-hero-glow-b {
  width: 700px; height: 700px;
  bottom: -250px; left: -150px;
  background: radial-gradient(circle, rgba(26,191,170,.14) 0%, transparent 65%);
  filter: blur(110px);
  animation: wkGlowPulse 14s ease-in-out infinite 2s;
}

/* ================================================================
   WORK PAGE, STATS SECTION  (.stats-sec)
   Base styles not previously defined.
   ================================================================ */

.stats-sec {
  padding: clamp(4rem, 6vw, 6rem) 0;
  background: var(--cream, #F6F0E6);
}

.stat-super {
  font-family: var(--f-body, 'Poppins', sans-serif);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(13,27,18,.38);
  margin-bottom: .4rem;
}

.stat-suffix {
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
}


/* ================================================================
   SERVICES PAGE, LOCAL STYLE (LS) OVERRIDES
   Cascades over the earlier sv-* block.
   ================================================================ */

/* Hero: forest green to match all LS interior pages */
[data-audience="local"] .sv-hero {
  background: #0D4A38;
}
[data-audience="local"] .sv-hero-glow--r {
  width: 900px; height: 900px;
  top: -300px; right: -200px;
  background: radial-gradient(circle, rgba(26,191,170,.22) 0%, transparent 65%);
  filter: blur(110px);
  animation: wkGlowPulse 10s ease-in-out infinite;
}
[data-audience="local"] .sv-hero-glow--l {
  width: 700px; height: 700px;
  bottom: -250px; left: -150px;
  background: radial-gradient(circle, rgba(26,191,170,.14) 0%, transparent 65%);
  filter: blur(110px);
  animation: wkGlowPulse 14s ease-in-out infinite 2s;
}

/* Eyebrow: gold in LS */

/* h1 em: LS gradient text */
[data-audience="local"] .sv-h1 em {
  background: linear-gradient(135deg, var(--teal, #1ABFAA) 0%, var(--gold, #E8C460) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

/* Jump pills: teal hover in LS */
[data-audience="local"] .sv-jump:hover {
  background: rgba(26,191,170,.14);
  border-color: rgba(26,191,170,.38);
  color: #fff;
}

/* Service sections: warm-tinted alternates */
[data-audience="local"] .sv-service:nth-child(even) {
  background: var(--cream, #F6F0E6);
}

/* Image frame: larger radius for LS warmth */
[data-audience="local"] .sv-img-frame {
  border-radius: var(--r-xl, 40px);
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
}

/* Badge text: LS ink */
[data-audience="local"] .sv-badge-num { color: rgba(13,74,56,.42); }
[data-audience="local"] .sv-badge-name { color: rgba(13,74,56,.65); }

/* Service heading & body text: LS dark green */
[data-audience="local"] .sv-service-h { color: var(--dark, #0D4A38); }
[data-audience="local"] .sv-service-desc { color: rgba(13,74,56,.6); }

/* Feature list */
[data-audience="local"] .sv-feature { color: rgba(13,74,56,.7); }

/* "Learn more" underline link */
[data-audience="local"] .sv-learn {
  color: rgba(13,74,56,.5);
  border-bottom-color: rgba(13,74,56,.2);
}
[data-audience="local"] .sv-learn:hover {
  color: var(--dark, #0D4A38);
  border-bottom-color: var(--dark, #0D4A38);
}

/* CTA section: LS forest green */
[data-audience="local"] .sv-cta {
  background: linear-gradient(150deg, #0F5840 0%, #0D4A35 100%);
}
[data-audience="local"] .sv-cta-glow {
  background: radial-gradient(circle, rgba(26,191,170,.16) 0%, transparent 65%);
}


/* ================================================================
   WORK PAGE, LOCAL STYLE (LS) OVERRIDES
   Cascades over the earlier wk-* block.
   ================================================================ */

/* Hero: match pin-story approach -- dark base + large blurred glow blobs */
[data-audience="local"] .wk-hero {
  background: #0D4A38;
}
[data-audience="local"] .wk-hero-glow--tr {
  width: 900px; height: 900px;
  top: -300px; right: -200px;
  background: radial-gradient(circle, rgba(26,191,170,.22) 0%, transparent 65%);
  filter: blur(110px);
  animation: wkGlowPulse 10s ease-in-out infinite;
}
[data-audience="local"] .wk-hero-glow--bl {
  width: 700px; height: 700px;
  bottom: -250px; left: -150px;
  background: radial-gradient(circle, rgba(26,191,170,.14) 0%, transparent 65%);
  filter: blur(110px);
  animation: wkGlowPulse 14s ease-in-out infinite 2s;
}


/* h1 em: LS gradient text */
[data-audience="local"] .wk-h1 em {
  background: linear-gradient(135deg, var(--teal, #1ABFAA) 0%, var(--gold, #E8C460) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

/* Filter pills: teal hover/active */
[data-audience="local"] .wk-filter:hover,
[data-audience="local"] .wk-filter.is-active {
  color: #fff;
  background: rgba(26,191,170,.14);
  border-color: rgba(26,191,170,.38);
}

/* Grid section: warm cream stays, matches LS palette */
[data-audience="local"] .wk-grid-sec {
  background: #F4FAF7;
}

/* Cards: LS ink, larger radius */
[data-audience="local"] .wk-card {
  border-radius: var(--r-xl, 40px);
  border-color: rgba(13,74,56,.07);
}
[data-audience="local"] .wk-card-cat  { color: rgba(13,74,56,.4); }
[data-audience="local"] .wk-card-title { color: var(--dark, #0D4A38); }
[data-audience="local"] .wk-card-desc  { color: rgba(13,74,56,.55); }
[data-audience="local"] .wk-metrics    { border-top-color: rgba(13,74,56,.1); }
[data-audience="local"] .wk-card-foot  { border-top-color: rgba(13,74,56,.1); }

/* ── Project pages LS overrides ─────────────────────────────── */
[data-audience="local"] .pj-hero { background: #0D4A38; }
[data-audience="local"] .pj-hero-glow--r {
  background: radial-gradient(circle, rgba(26,191,170,.22) 0%, transparent 65%);
  animation: wkGlowPulse 12s ease-in-out infinite;
}
[data-audience="local"] .pj-overview   { background: var(--cream, #F6F0E6); }
[data-audience="local"] .pj-story-h    { color: var(--dark, #0D4A38); }
[data-audience="local"] .pj-story-body { color: rgba(13,74,56,.65); }
[data-audience="local"] .pj-aside      { background: #fff; border-color: rgba(13,74,56,.1); }
[data-audience="local"] .pj-deliv-item { color: var(--dark, #0D4A38); }
[data-audience="local"] .pj-gallery    { background: #fff; }
[data-audience="local"] .pj-back-nav   { background: var(--cream, #F6F0E6); }
[data-audience="local"] .pj-back-link  { color: var(--dark, #0D4A38); }

/* Stats: dark green background, gold numbers */
[data-audience="local"] .stats-sec {
  background: var(--dark, #0D4A38);
}
[data-audience="local"] .stat-super {
  color: rgba(255,255,255,.45);
}
[data-audience="local"] .stat-num {
  color: var(--gold, #E8C460);
}
[data-audience="local"] .stat-label {
  color: rgba(255,255,255,.45);
}
[data-audience="local"] .stat-item + .stat-item {
  border-left: 1px solid rgba(255,255,255,.1);
}



/* ================================================================
   PROMISE STRIP  –  replaces stat/counter sections, both themes
   ================================================================ */

/* LS version */
.ls-promise {
  background: var(--cream, #F6F0E6);
  border-top: 1px solid rgba(13,74,56,.08);
  border-bottom: 1px solid rgba(13,74,56,.08);
  padding: clamp(4rem,7vw,7rem) 0;
}
.ls-promise-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: rgba(13,74,56,.08);
  border: 1px solid rgba(13,74,56,.12);
  border-radius: 14px;
  overflow: hidden;
}
.ls-promise-item {
  padding: clamp(1.8rem,3vw,2.8rem) clamp(1.5rem,2.5vw,2.4rem);
  border-top: 3px solid var(--lp, #1ABFAA);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.ls-promise-label {
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--lp, #1ABFAA);
}
.ls-promise-title {
  font-family: var(--f-display, 'Poppins', sans-serif);
  font-size: clamp(.95rem,1.3vw,1.08rem);
  font-weight: 700;
  color: var(--dark, #0D4A38);
  line-height: 1.3;
}
.ls-promise-body {
  font-size: .87rem;
  color: rgba(13,74,56,.6);
  line-height: 1.65;
}
@media (max-width: 767px) {
  .ls-promise-row { grid-template-columns: 1fr; gap: 0; border-radius: 10px; }
}

/* ── About dogs section ───────────────────────────────────── */
.ab-dogs {
  background: var(--cream, #F6F0E6);
  padding: 6rem 0;
}
.ab-dogs-inner {
  text-align: center;
}
.ab-dogs-h {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--ink, #0D1B12);
  margin: .5rem 0 2.5rem;
  line-height: 1.1;
}
.ab-dogs-amp {
  color: var(--gold, #E8C460);
}
.ab-dogs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}
.ab-dog-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 1.75rem;
  text-align: left;
  border: 1px solid rgba(13,27,18,.07);
}
.ab-dog-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark, #0D4A38);
  margin: 0 0 .25rem;
}
.ab-dog-role {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal, #1ABFAA);
  margin: 0 0 .75rem;
}
.ab-dog-desc {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(13,27,18,.55);
  margin: 0;
}
@media (max-width: 600px) {
  .ab-dogs-grid { grid-template-columns: 1fr; }
}

@keyframes wkGlowPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.12); }
}
