/* =========================================================
   Katisa Hospitality Services — warm luxury system
   ========================================================= */

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #1c282b;
  --ink-soft: #5f6d70;
  --ink-faint: #93a0a3;
  --line: #dbe5e7;
  --line-soft: #edf4f5;
  --bronze: #6fc6d0;
  --bronze-deep: #238c9a;
  --sand: #eef8f9;
  --sand-2: #d7eef1;
  --dark: #263538;
  --dark-2: #263538;

  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display-font: var(--sans);
  --display-weight: 700;
  --display-spacing: -0.02em;
  --display-transform: none;

  --accent-light: #8ed6df;
  --nav-bg: #263538;

  /* motion knobs (overridden per [data-motion]) */
  --reveal-y: 28px;
  --reveal-dur: 1s;
  --reveal-blur: 0px;
  --lift: -6px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1280px;
  --gut: clamp(20px, 5vw, 80px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { padding-block: clamp(80px, 12vw, 168px); position: relative; }
.section--tight { padding-block: clamp(60px, 8vw, 110px); }

.quote-band {
  background: #263538;
  color: #fff;
  padding-block: clamp(38px, 5vw, 64px);
  scroll-margin-top: 170px;
}
.quote-band--light {
  background: #eef8f9;
  color: var(--ink);
}
.quote-band blockquote {
  margin: 0;
  max-width: 900px;
}
.quote-band p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 500;
}
.quote-band cite {
  display: block;
  margin-top: 16px;
  color: var(--accent-light);
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.quote-band--light cite {
  color: var(--bronze-deep);
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--bronze);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -0.02em; line-height: 1.02; }
.display, .h2, .statement {
  font-family: var(--display-font);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-spacing);
  text-transform: var(--display-transform);
}
.display { font-size: clamp(44px, 7.4vw, 104px); }
.h2 { font-size: clamp(32px, 4.6vw, 60px); line-height: 1.04; }
.h3 { font-size: clamp(21px, 2vw, 27px); letter-spacing: -0.01em; line-height: 1.15; }
.lead { font-size: clamp(18px, 1.7vw, 22px); line-height: 1.55; color: var(--ink-soft); }
.muted { color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  --pad: 17px 30px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.06em;
  font-weight: 600;
  text-transform: uppercase;
  padding: var(--pad);
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  transition: transform .5s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  will-change: transform;
}
.btn .arrow { transition: transform .45s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }
.btn--solid { background: var(--ink); color: #fff; }
.btn--solid:hover { background: var(--bronze-deep); transform: translateY(-3px); }
.btn--bronze { background: var(--bronze); color: #fff; }
.btn--bronze:hover { background: var(--bronze-deep); transform: translateY(-3px); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-3px); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-3px); }

/* ---------- Placeholder imagery ---------- */
.ph {
  position: relative;
  overflow: hidden;
  background-color: var(--sand);
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(111, 198, 208, 0.14) 0px,
    rgba(111, 198, 208, 0.14) 1px,
    transparent 1px,
    transparent 11px
  );
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.ph::after {
  content: attr(data-label);
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--bronze-deep);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(3px);
  padding: 5px 9px;
  border-radius: 4px;
  z-index: 2;
}
.ph--dark {
  background-color: #3a342c;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px,
    transparent 1px, transparent 11px
  );
}
.ph--dark::after { color: #8ed6df; background: rgba(38,53,56,0.72); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: #263538;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 3vw, 42px);
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.nav.scrolled {
  background: #263538;
  backdrop-filter: blur(14px) saturate(1.2);
  padding-block: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.brand { display: flex; align-items: center; color: #fff; transition: color .5s var(--ease); flex: 0 0 auto; }
.nav.scrolled .brand, .nav.light .brand { color: #fff; }
.brand img {
  width: auto;
  height: clamp(82px, 7vw, 118px);
  max-width: clamp(180px, 18vw, 300px);
  object-fit: contain;
  filter: brightness(1.35) contrast(1.22) saturate(1.18);
}

.nav-links { display: flex; align-items: center; justify-content: flex-end; gap: clamp(12px, 1.5vw, 24px); flex: 1 1 auto; min-width: 0; }
.nav-links a {
  font-size: clamp(14px, 1.08vw, 18px); font-weight: 650; color: rgba(255,255,255,0.95);
  white-space: nowrap;
  position: relative; transition: color .4s var(--ease);
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.nav.scrolled .nav-links a { color: rgba(255,255,255,0.95); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0;
  background: var(--bronze); transition: width .4s var(--ease);
}
.nav-links a:hover { color: var(--bronze); }
.nav-links a:hover::after { width: 100%; }
.nav .btn { padding: 12px 22px; }
.nav-cta-wrap { display: flex; align-items: center; gap: 18px; flex: 0 0 auto; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; transition: .4s var(--ease); }
.nav.scrolled .nav-toggle span { background: #fff; }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 99; background: var(--bg);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: var(--gut);
  transform: translateY(-100%); transition: transform .6s var(--ease);
}
.drawer.open { transform: translateY(0); }
.drawer a { font-size: clamp(28px, 8vw, 44px); font-weight: 700; letter-spacing: -0.02em; padding: 8px 0; border-bottom: 1px solid var(--line); }
.drawer .btn { margin-top: 24px; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: -12% 0 0 0; z-index: 0; }
.hero-media .ph { position: absolute; inset: 0; height: 124%; will-change: transform; }
.hero-media .ph::after { left: 24px; bottom: 28px; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15,28,31,0.92) 0%, rgba(20,35,38,0.76) 36%, rgba(38,53,56,0.30) 68%, rgba(38,53,56,0.18) 100%),
    linear-gradient(to top, rgba(15,28,31,0.88) 0%, rgba(38,53,56,0.24) 48%, rgba(38,53,56,0.44) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(54px, 8vw, 96px); padding-top: 150px; pointer-events: none; }
.hero-inner a { pointer-events: auto; }
.hero .eyebrow { color: var(--accent-light); }
.hero .eyebrow::before { background: var(--accent-light); }
.hero h1 {
  color: #fff;
  max-width: 14ch;
  font-size: clamp(46px, 5.8vw, 82px);
  line-height: 1.03;
  text-shadow: 0 3px 18px rgba(0,0,0,0.52);
}
.hero-sub {
  color: rgba(255,255,255,0.95);
  max-width: 42ch;
  margin: 24px 0 36px;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
  text-shadow: 0 2px 12px rgba(0,0,0,0.62);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-meta { position: absolute; right: var(--gut); bottom: clamp(54px,8vw,96px); z-index: 2; text-align: right; color: rgba(255,255,255,0.7); font-size: 13px; letter-spacing: .04em; display: none; }
.hero-meta strong { display:block; color:#fff; font-size: 34px; font-weight:700; letter-spacing:-0.02em; }

.scroll-hint { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3; pointer-events: none; color: rgba(255,255,255,.7); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; display:flex; flex-direction:column; align-items:center; gap:10px; }
.scroll-hint .line { width: 1px; height: 40px; background: linear-gradient(rgba(255,255,255,.6), transparent); animation: drop 2s var(--ease) infinite; }
@keyframes drop { 0%{transform:scaleY(0);transform-origin:top;} 40%{transform:scaleY(1);transform-origin:top;} 60%{transform:scaleY(1);transform-origin:bottom;} 100%{transform:scaleY(0);transform-origin:bottom;} }

/* ============================================================
   TRUST MARQUEE
   ============================================================ */
.trust { background: var(--dark); color: #fff; padding-block: 30px; overflow: hidden; }
.trust .label { text-align: center; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 22px; }
.marquee { display: flex; gap: 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 64px; padding-right: 64px; flex-shrink: 0; animation: scroll-x 32s linear infinite; }
.marquee-track span { font-size: clamp(18px, 2vw, 26px); font-weight: 700; letter-spacing: -0.01em; color: rgba(255,255,255,0.55); white-space: nowrap; }
@keyframes scroll-x { to { transform: translateX(-100%); } }

/* ============================================================
   INTRO / STATEMENT
   ============================================================ */
.intro-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.statement { font-size: clamp(26px, 3.4vw, 44px); line-height: 1.22; letter-spacing: -0.02em; font-weight: 600; max-width: 18ch; }
.statement .hl { color: var(--bronze-deep); }
.intro-side { position: relative; aspect-ratio: 4/5; }
.intro-points { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 0; }
.intro-points li { display: flex; gap: 18px; padding: 20px 0; border-top: 1px solid var(--line); align-items: flex-start; }
.intro-points li:last-child { border-bottom: 1px solid var(--line); }
.intro-points .n { font-size: 12px; font-weight: 700; color: var(--bronze); letter-spacing: .1em; padding-top: 4px; min-width: 28px; }
.intro-points h3 { font-size: 18px; margin-bottom: 4px; }
.intro-points p { margin: 0; font-size: 15px; color: var(--ink-soft); }

/* ============================================================
   SERVICES
   ============================================================ */
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: clamp(44px, 6vw, 76px); flex-wrap: wrap; }
.sec-head .h2 { max-width: 16ch; }
.sec-head p { max-width: 38ch; margin: 0; }

.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.4vw, 34px); }
.service-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-bottom: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(111,198,208,0.2);
  background: rgba(111,198,208,0.2);
}
.service-summary p {
  margin: 0;
  padding: 18px 20px;
  background: var(--dark);
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.55;
}
.service-summary strong {
  color: #fff;
  font-weight: 700;
}
.svc {
  position: relative; border-radius: 6px; overflow: hidden; background: var(--surface);
  border: 1px solid var(--line); display: flex; flex-direction: column;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease), border-color .6s var(--ease);
}
.svc:hover { transform: translateY(var(--lift)); box-shadow: 0 30px 60px -34px rgba(35,140,154,0.32); border-color: var(--sand-2); }
.svc-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.svc-img .ph { position: absolute; inset: 0; transition: transform 1.1s var(--ease); }
.svc:hover .svc-img .ph { transform: scale(1.06); }
.svc-num { position: absolute; top: 16px; left: 18px; z-index: 3; font-size: 12px; font-weight: 700; letter-spacing: .12em; color: #fff; mix-blend-mode: difference; }
.svc-body { padding: 28px 28px 30px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc-body h3 { font-size: 23px; }
.svc-body p { margin: 0; font-size: 15px; color: var(--ink-soft); flex: 1; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.tag { font-size: 12px; letter-spacing: .03em; color: var(--bronze-deep); background: var(--sand); padding: 6px 12px; border-radius: 100px; }
.service-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  background: var(--line);
}
.service-proof div {
  background: #fff;
  padding: clamp(18px, 2.4vw, 28px);
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.service-proof strong {
  color: var(--teal);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
  letter-spacing: 0;
}
.service-proof span {
  color: var(--ink-soft);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ============================================================
   RECRUITMENT
   ============================================================ */
.recruitment { background: #fff; }
.recruitment-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.recruitment-brand img {
  width: clamp(190px, 24vw, 320px);
  max-height: 120px;
  object-fit: contain;
  object-position: left center;
  height: auto;
}
.recruitment-brand span {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--bronze-deep);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.recruitment-panel {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}
.recruitment-copy {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(26px, 3vw, 42px);
  background: var(--sand);
}
.recruitment-copy h3,
.recruitment-benefits h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.recruitment-copy p,
.recruitment-benefits p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}
.recruitment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.recruitment-tags span {
  border: 1px solid rgba(35,140,154,0.22);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--bronze-deep);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.inline-photo {
  margin: clamp(22px, 3vw, 34px) 0 0;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(35,140,154,0.16);
}
.inline-photo img,
.image-band img,
.wide-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recruitment-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.recruitment-benefits article {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(22px, 2.4vw, 32px);
  background: var(--surface);
}

.recruitment-apply {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  margin-top: clamp(40px, 5vw, 72px);
  padding-top: clamp(40px, 5vw, 72px);
  border-top: 1px solid var(--line);
}
.apply-intro h3 { font-size: 26px; margin: 10px 0 14px; }
.apply-intro p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; margin: 0 0 10px; max-width: 42ch; }
.apply-note { color: var(--bronze-deep); font-weight: 700; font-size: 13px; letter-spacing: .02em; }
.recruitment-apply .form {
  border: 1px solid var(--line);
  box-shadow: 0 28px 80px -58px rgba(35,140,154,0.42);
}
.radio-group { display: flex; flex-wrap: wrap; gap: 10px 22px; padding-top: 4px; }
.radio { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink); cursor: pointer; white-space: nowrap; flex-shrink: 0; }
.radio input { accent-color: var(--ink); width: 16px; height: 16px; }
.consent {
  display: flex; gap: 10px; align-items: flex-start; margin: 4px 0 22px;
  font-size: 12.5px; color: var(--ink-soft); line-height: 1.5; cursor: pointer;
}
.consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--ink); flex-shrink: 0; }

/* ============================================================
   SPECIALTIES
   ============================================================ */
.specialties { background: #fff; }
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
}
.specialty {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(22px, 2.4vw, 32px);
  background: var(--surface);
  transition: transform .5s var(--ease), border-color .35s var(--ease), box-shadow .5s var(--ease);
}
.specialty:hover {
  transform: translateY(var(--lift));
  border-color: var(--sand-2);
  box-shadow: 0 24px 54px -42px rgba(13, 29, 34, 0.48);
}
.specialty h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.specialty p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}
.image-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(34px, 5vw, 68px);
}
.image-band figure {
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--line);
}
.image-band figure:first-child {
  grid-row: auto;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries { background: var(--dark); color: #fff; }
.industries .eyebrow { color: var(--accent-light); }
.industries .eyebrow::before { background: var(--accent-light); }
.industries .muted { color: rgba(255,255,255,0.6); }
.ind-list { margin-top: clamp(40px, 6vw, 70px); border-top: 1px solid rgba(255,255,255,0.12); }
.ind {
  display: grid; grid-template-columns: 80px 1.4fr 2fr auto; gap: 30px; align-items: center;
  padding: clamp(26px, 3vw, 42px) 6px; border-bottom: 1px solid rgba(255,255,255,0.12);
  position: relative; transition: padding .5s var(--ease);
}
.ind::before { content:""; position:absolute; inset:0; background: rgba(111,198,208,0.12); transform: scaleY(0); transform-origin: bottom; transition: transform .6s var(--ease); z-index:0; }
.ind:hover::before { transform: scaleY(1); }
.ind > * { position: relative; z-index: 1; }
.ind:hover { padding-inline: 22px; }
.ind .ind-n { font-size: 13px; color: var(--bronze); font-weight: 700; letter-spacing: .1em; }
.ind h3 { font-size: clamp(24px, 2.6vw, 36px); font-weight: 700; letter-spacing: -0.02em; }
.ind p { margin: 0; color: rgba(255,255,255,0.62); font-size: 15px; max-width: 44ch; }
.ind .ind-arrow { width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); display: grid; place-items: center; transition: .5s var(--ease); }
.ind:hover .ind-arrow { background: var(--bronze); border-color: var(--bronze); transform: rotate(-45deg); }

/* ============================================================
   NEWS
   ============================================================ */
.section.news {
  background: #eef8f9;
  scroll-margin-top: 110px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
}
.news-card {
  min-height: 100%;
  padding: clamp(26px, 3vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.news-card:hover {
  transform: translateY(var(--lift));
  border-color: var(--sand-2);
  box-shadow: 0 24px 54px -42px rgba(13, 29, 34, 0.48);
}
.news-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.news-card__meta span {
  color: var(--bronze-deep);
}
.news-card h3 {
  margin-bottom: 14px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.18;
}
.news-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

/* ============================================================
   FOOTPRINT / VALUES
   ============================================================ */
.footprint { background: #fff; }
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
}
.location-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
}
.location-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.location-card__body {
  padding: clamp(24px, 2.6vw, 36px);
}
.location-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.location-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: clamp(32px, 5vw, 64px);
  background: var(--line);
  border: 1px solid var(--line);
}
.value {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 22px;
  background: #fff;
}
.value-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef8f9;
  border: 1px solid rgba(35,140,154,0.18);
  font-size: 22px;
  line-height: 1;
}
.value strong {
  color: var(--bronze-deep);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.value span {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

/* ============================================================
   STANDARD / PROCESS + COUNTERS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px,3vw,40px); margin-top: clamp(48px,6vw,80px); }
.stat { border-top: 2px solid var(--bronze); padding-top: 20px; }
.stat .num { font-size: clamp(40px, 5vw, 68px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.stat .num--text { font-size: clamp(26px, 3.2vw, 42px); letter-spacing: 0.02em; overflow-wrap: anywhere; }
.stat .num .suf { color: var(--bronze); }
.stat .cap { margin-top: 10px; font-size: 14px; color: var(--ink-soft); }

.process { margin-top: clamp(56px,7vw,100px); display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px,2.4vw,34px); counter-reset: step; }
.step { position: relative; padding-top: 30px; border-top: 1px solid var(--line); }
.step .si { font-size: 13px; font-weight: 700; color: var(--bronze); letter-spacing: .1em; margin-bottom: 18px; }
.step h3 { font-size: 21px; margin-bottom: 10px; }
.step p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--sand); }
.t-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px,2.4vw,30px); margin-top: clamp(44px,6vw,70px); }
.t-card { background: var(--surface); border-radius: 6px; padding: clamp(28px,3vw,40px); display: flex; flex-direction: column; gap: 22px; border: 1px solid var(--line-soft); }
.t-card h3 { font-size: 24px; }
.ref-meta {
  color: var(--bronze-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ref-summary {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}
.t-card .quote { font-size: clamp(17px,1.4vw,20px); line-height: 1.5; letter-spacing: -0.01em; font-weight: 500; flex: 1; }
.t-card .quote::before { content: "\201C"; color: var(--bronze); font-size: 52px; line-height: 0; display: block; margin-bottom: 22px; font-family: Georgia, serif; }
.t-who { display: flex; align-items: center; gap: 14px; }
.t-who .av { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; }
.t-who .nm { font-weight: 700; font-size: 15px; }
.t-who .rl { font-size: 13px; color: var(--ink-soft); }
.stars { display:flex; gap:3px; color: var(--bronze); font-size: 14px; letter-spacing:2px; }

/* ============================================================
   QUOTE / CONTACT
   ============================================================ */
.quote-sec { background: var(--dark-2); color: #fff; }
.quote-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px,6vw,96px); align-items: start; }
.quote-sec .eyebrow { color: var(--accent-light); }
.quote-sec .eyebrow::before { background: var(--accent-light); }
.quote-sec .display { color: #fff; font-size: clamp(38px,5vw,72px); }
.quote-lead { color: rgba(255,255,255,0.7); margin: 24px 0 34px; max-width: 40ch; }
.q-contact { display: grid; gap: 2px; margin-top: 34px; }
.q-contact a, .q-contact div { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); font-size: 15px; }
.quote-sec .q-contact a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color .3s var(--ease), text-decoration-color .3s var(--ease);
}
.quote-sec .q-contact a:hover {
  color: var(--accent-light);
  text-decoration-color: rgba(111,198,208,0.55);
}
.quote-sec .q-contact a .ic {
  transition: color .3s var(--ease), transform .3s var(--ease);
}
.quote-sec .q-contact a:hover .ic {
  color: var(--accent-light);
  transform: translateX(2px);
}
.q-contact .ic { color: var(--bronze); width: 20px; }
.regional-contact {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.78);
  font-style: normal;
  font-size: 15px;
  line-height: 1.6;
}
.regional-contact__label {
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.regional-contact strong {
  color: #fff;
  font-size: 19px;
}
.regional-contact a {
  width: fit-content;
  color: #fff;
  text-decoration-color: rgba(111,198,208,0.55);
  text-underline-offset: 4px;
}
.regional-contact a:hover {
  color: var(--accent-light);
}

.form { background: #fff; color: var(--ink); border-radius: 8px; padding: clamp(28px,3.4vw,46px);
  /* always render the form in a light context, regardless of theme */
  --ink: #1c282b; --ink-soft: #5f6d70; --line: #dbe5e7; --bg: #ffffff; --surface: #fff; }
.form h3 { font-size: 22px; margin-bottom: 6px; }
.form .sub { color: var(--ink-soft); font-size: 14px; margin: 0 0 26px; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.field { margin-bottom: 18px; }
.field > label { display: block; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 16px; color: var(--ink);
  padding: 14px 16px; border: 1px solid var(--line); border-radius: 6px; background: var(--bg);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--bronze); background: #fff;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.06);
}
.field textarea { resize: vertical; min-height: 96px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form .btn:disabled {
  opacity: .72;
  cursor: wait;
  transform: none;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { font-size: 14px; padding: 10px 16px; border: 1px solid var(--line); border-radius: 100px; cursor: pointer; transition: .3s var(--ease); user-select: none; }
.chip:hover { border-color: var(--bronze); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.form-success { text-align: center; padding: 30px 0; display: none; }
.form-success.show { display: block; }
.form-success .ok { width: 64px; height: 64px; border-radius: 50%; background: var(--sand); color: var(--bronze-deep); display: grid; place-items: center; margin: 0 auto 20px; font-size: 28px; }
.form-success h3 { font-size: 24px; margin-bottom: 8px; }
.form-success p { color: var(--ink-soft); margin: 0; }
.form-error {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(35,140,154,0.3);
  border-radius: 6px;
  color: #1c282b;
  background: #eef8f9;
  font-size: 14px;
  line-height: 1.5;
}
.form-error.show { display: block; }
.field-msg { display: none; font-size: 12.5px; font-weight: 700; color: #c0392b; margin-top: 6px; }
.field-msg.show { display: block; }

/* ============================================================
   TRAINING
   ============================================================ */
.training { background: #fff; }
.training-brand {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}
.training-brand img {
  width: clamp(190px, 24vw, 320px);
  max-height: 120px;
  object-fit: contain;
  object-position: left center;
  height: auto;
}
.training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
}
.training-card {
  background: var(--sand);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: clamp(24px, 2.6vw, 36px);
}
.training-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.training-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}
.training-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}
.training-card li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}
.training-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal-2);
}
.wide-photo {
  margin: clamp(28px, 4vw, 52px) 0 0;
  aspect-ratio: 21/8;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: 0 28px 80px -58px rgba(35,140,154,0.42);
}

/* ============================================================
   COMMUNITY APP
   ============================================================ */
.community-app { background: #fff; }
.app-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
}
.app-feature {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(22px, 2.4vw, 32px);
  background: var(--surface);
  transition: transform .5s var(--ease), border-color .35s var(--ease), box-shadow .5s var(--ease);
}
.app-feature:hover {
  transform: translateY(var(--lift));
  border-color: var(--sand-2);
  box-shadow: 0 24px 54px -42px rgba(13, 29, 34, 0.48);
}
.app-feature span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(111,198,208,0.45);
  border-radius: 50%;
  color: var(--bronze-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.app-feature h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.app-feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}
.app-photo {
  aspect-ratio: 21/7;
}
.app-summary {
  margin-top: clamp(30px, 4vw, 54px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 3vw, 38px);
  background: var(--sand);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
}
.app-summary p {
  margin: 0;
  color: var(--ink);
  max-width: 68ch;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding-block: clamp(56px,7vw,90px) 34px; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.foot-brand .brand { color: #fff; margin-bottom: 18px; }
.foot-brand .brand img { width: 300px; max-height: none; }
.foot-brand p { max-width: 34ch; font-size: 15px; line-height: 1.6; }
.foot-col h4 { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin: 0 0 18px; font-weight: 600; }
.foot-col a { display: block; padding: 7px 0; font-size: 15px; color: rgba(255,255,255,0.7); transition: color .3s var(--ease); }
.foot-col a:hover { color: var(--bronze); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; flex-wrap: wrap; gap: 14px; font-size: 13px; color: rgba(255,255,255,0.45); }

/* ============================================================
   MOTION — reveal
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(var(--reveal-y)); filter: blur(var(--reveal-blur)); transition: opacity var(--reveal-dur) var(--ease), transform var(--reveal-dur) var(--ease), filter var(--reveal-dur) var(--ease); }
[data-reveal].in { opacity: 1; transform: none; filter: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .marquee-track, .scroll-hint .line { animation: none; }
  html { scroll-behavior: auto; }
}

/* Failsafe: if the animation timeline is frozen (offscreen render, print,
   some embed contexts), show everything instantly instead of leaving it hidden */
html.motion-frozen [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }

/* ============================================================
   HERO / SERVICE PHOTOS
   ============================================================ */
.hero-media img#heroPh {
  position: absolute; inset: 0; width: 100%; height: 124%; object-fit: cover; will-change: transform;
}
.intro-side img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
.svc-img img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.svc:hover .svc-img img { transform: scale(1.06); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro-side { order: -1; aspect-ratio: 16/10; }
  .quote-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ind { grid-template-columns: 50px 1fr auto; }
  .ind p { display: none; }
  .hero-meta { display: block; }
}
@media (max-width: 1180px) {
  .nav-links, .nav-cta-wrap .btn { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 760px) {
  .svc-grid { grid-template-columns: 1fr; }
  .service-summary { grid-template-columns: 1fr; }
  .service-proof { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .process { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .location-grid, .values-grid { grid-template-columns: 1fr; }
  .recruitment-panel, .recruitment-benefits, .recruitment-apply { grid-template-columns: 1fr; }
  .specialty-grid, .training-grid, .app-feature-grid, .image-band, .news-grid { grid-template-columns: 1fr; }
  .image-band figure:first-child { grid-row: auto; }
  .image-band figure, .image-band figure:not(:first-child), .wide-photo { min-height: 220px; aspect-ratio: 16/10; }
  .app-summary { align-items: flex-start; flex-direction: column; }
  .t-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .sec-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 460px) {
  .service-proof { grid-template-columns: 1fr; }
  .stats, .process { grid-template-columns: 1fr; }
  .ind { grid-template-columns: 40px 1fr auto; gap: 16px; }
}

/* ============================================================
   TWEAKABLE VARIANTS — Atmosphere · Headline voice · Motion
   ============================================================ */

/* ---- Atmosphere: full palette swaps ---- */
html[data-theme="brand"] {
  --bg: #ffffff; --surface: #ffffff; --ink: #1c282b; --ink-soft: #5f6d70; --ink-faint: #93a0a3;
  --line: #dbe5e7; --line-soft: #edf4f5;
  --bronze: #6fc6d0; --bronze-deep: #238c9a; --sand: #eef8f9; --sand-2: #d7eef1;
  --dark: #263538; --dark-2: #263538; --accent-light: #8ed6df; --nav-bg: #263538;
}
html[data-theme="slate"] {
  --bg: #ffffff; --surface: #ffffff; --ink: #1c282b; --ink-soft: #5f6d70; --ink-faint: #93a0a3;
  --line: #dbe5e7; --line-soft: #edf4f5;
  --bronze: #6fc6d0; --bronze-deep: #238c9a; --sand: #eef8f9; --sand-2: #d7eef1;
  --dark: #263538; --dark-2: #263538; --accent-light: #8ed6df; --nav-bg: #263538;
}
html[data-theme="sage"] {
  --bg: #ffffff; --surface: #ffffff; --ink: #1c282b; --ink-soft: #5f6d70; --ink-faint: #93a0a3;
  --line: #dbe5e7; --line-soft: #edf4f5;
  --bronze: #6fc6d0; --bronze-deep: #238c9a; --sand: #eef8f9; --sand-2: #d7eef1;
  --dark: #263538; --dark-2: #263538; --accent-light: #8ed6df; --nav-bg: #263538;
}
html[data-theme="noir"] {
  --bg: #ffffff; --surface: #ffffff; --ink: #1c282b; --ink-soft: #5f6d70; --ink-faint: #93a0a3;
  --line: #dbe5e7; --line-soft: #edf4f5;
  --bronze: #6fc6d0; --bronze-deep: #238c9a; --sand: #eef8f9; --sand-2: #d7eef1;
  --dark: #263538; --dark-2: #263538; --accent-light: #8ed6df; --nav-bg: #263538;
}
/* noir: lighten the placeholder stripes so they read on the dark surfaces */
html[data-theme="noir"] .ph {
  background-image: repeating-linear-gradient(-45deg,
    rgba(111,198,208,0.14) 0px, rgba(111,198,208,0.14) 1px, transparent 1px, transparent 11px);
}
html[data-theme="noir"] .ph::after { color: #8ed6df; background: rgba(38,53,56,0.72); }

/* ---- Headline voice: type personality ---- */
html[data-type="serif"] {
  --display-font: "Cormorant Garamond", Georgia, serif;
  --display-weight: 600;
  --display-spacing: 0em;
  --display-transform: none;
}
html[data-type="serif"] .display { font-size: clamp(52px, 8.6vw, 124px); line-height: 0.98; }
html[data-type="serif"] .h2 { font-size: clamp(38px, 5.4vw, 70px); }

html[data-type="caps"] {
  --display-font: var(--sans);
  --display-weight: 600;
  --display-spacing: 0.04em;
  --display-transform: uppercase;
}
html[data-type="caps"] .display { font-size: clamp(36px, 6vw, 84px); line-height: 1.02; }

/* ---- Motion intensity ---- */
html[data-motion="calm"] {
  --reveal-y: 8px; --reveal-dur: 0.55s; --reveal-blur: 0px; --lift: -2px;
}
html[data-motion="refined"] {
  --reveal-y: 28px; --reveal-dur: 1s; --reveal-blur: 0px; --lift: -6px;
}
html[data-motion="immersive"] {
  --reveal-y: 64px; --reveal-dur: 1.3s; --reveal-blur: 7px; --lift: -12px;
}
html[data-motion="immersive"] [data-reveal] { transform: translateY(var(--reveal-y)) scale(0.97); }
html[data-motion="immersive"] [data-reveal].in { transform: none; }
html[data-motion="immersive"] [data-reveal-delay="1"] { transition-delay: .12s; }
html[data-motion="immersive"] [data-reveal-delay="2"] { transition-delay: .24s; }
html[data-motion="immersive"] [data-reveal-delay="3"] { transition-delay: .36s; }
html[data-motion="immersive"] [data-reveal-delay="4"] { transition-delay: .48s; }
html[data-motion="calm"] [data-reveal-delay="1"],
html[data-motion="calm"] [data-reveal-delay="2"],
html[data-motion="calm"] [data-reveal-delay="3"],
html[data-motion="calm"] [data-reveal-delay="4"] { transition-delay: 0s; }
html[data-motion="calm"] .scroll-hint .line { animation: none; }

/* ============================================================
   KATISA BRAND LOCK
   ============================================================ */
html,
html[data-theme="brand"],
html[data-theme="slate"],
html[data-theme="sage"],
html[data-theme="noir"] {
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #1c282b;
  --ink-soft: #5f6d70;
  --ink-faint: #93a0a3;
  --line: #dbe5e7;
  --line-soft: #edf4f5;
  --bronze: #6fc6d0;
  --bronze-deep: #238c9a;
  --sand: #eef8f9;
  --sand-2: #d7eef1;
  --dark: #263538;
  --dark-2: #263538;
  --accent-light: #8ed6df;
  --nav-bg: #263538;
}

body,
.section,
.testimonials {
  background: #ffffff;
}

.nav,
.nav.scrolled,
.footer,
.trust,
.industries,
.quote-sec {
  background: #263538;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(15,28,31,0.92) 0%, rgba(20,35,38,0.76) 36%, rgba(38,53,56,0.30) 68%, rgba(38,53,56,0.18) 100%),
    linear-gradient(to top, rgba(15,28,31,0.88) 0%, rgba(38,53,56,0.24) 48%, rgba(38,53,56,0.44) 100%);
}

.btn--bronze,
.ind:hover .ind-arrow {
  background: #6fc6d0;
  color: #122326;
}

.btn--bronze:hover {
  background: #8ed6df;
  color: #122326;
}

.btn--solid,
.chip.active {
  background: #263538;
  color: #fff;
  border-color: #263538;
}

.btn--solid:hover {
  background: #238c9a;
}

.tag,
.form-success .ok {
  background: #eef8f9;
  color: #238c9a;
}

.form {
  --ink: #1c282b;
  --ink-soft: #5f6d70;
  --line: #dbe5e7;
  --bg: #ffffff;
  --surface: #ffffff;
  box-shadow: 0 28px 80px -48px rgba(13, 29, 34, 0.55);
}

.nav,
.nav.scrolled,
.nav.light {
  background: #263538;
  color: #fff;
}

.nav .brand,
.nav.scrolled .brand,
.nav.light .brand,
.nav .nav-links a,
.nav.scrolled .nav-links a,
.nav.light .nav-links a {
  color: #fff;
}

.nav .nav-toggle span,
.nav.scrolled .nav-toggle span,
.nav.light .nav-toggle span {
  background: #fff;
}
