/* Universal Services And Agency Ltd. — site styles
   Design tokens per Claude Design handoff (Spiritual Lotus Palette, OKLCH). */

:root {
  --navy-deep: oklch(0.22 0.07 262);
  --navy: oklch(0.32 0.09 262);
  --navy-text-1: oklch(0.24 0.06 262);
  --navy-text-2: oklch(0.28 0.05 262);
  --navy-text-3: oklch(0.28 0.08 262);

  --gold: oklch(0.78 0.13 85);
  --gold-deep: oklch(0.60 0.13 82);
  --gold-deeper: oklch(0.55 0.10 82);
  --gold-tint-bg: oklch(0.96 0.03 85);

  --pink: oklch(0.80 0.09 15);
  --pink-deep: oklch(0.55 0.10 15);
  --pink-dark: oklch(0.30 0.06 15);
  --pink-tint-bg: oklch(0.96 0.03 15);
  --pink-section-bg: oklch(0.97 0.025 15);

  --lavender: oklch(0.80 0.06 300);
  --lavender-deep: oklch(0.50 0.09 300);
  --lavender-dark: oklch(0.40 0.08 300);
  --lavender-tint-bg: oklch(0.96 0.02 300);
  --lavender-section-bg: oklch(0.94 0.025 300);
  --lavender-badge-bg: oklch(0.94 0.03 300);
  --lavender-border: oklch(0.85 0.02 300);

  --white: #ffffff;
  --grey-section-bg: oklch(0.97 0.008 262);
  --border-subtle: oklch(0.90 0.012 262);
  --border-subtle-2: oklch(0.88 0.012 262);
  --border-navy-card: oklch(0.38 0.06 262);
  --border-footer: oklch(0.35 0.06 262);

  --body-text: oklch(0.40 0.02 262);
  --body-text-2: oklch(0.42 0.02 262);
  --muted-1: oklch(0.50 0.02 262);
  --muted-2: oklch(0.55 0.02 262);
  --muted-3: oklch(0.60 0.02 262);

  --on-navy-1: oklch(0.86 0.02 262);
  --on-navy-2: oklch(0.75 0.02 262);

  --card-navy-bg: oklch(0.27 0.06 262);

  --radius-sm: 3px;
  --radius-md: 5px;
  --radius-lg: 6px;

  --pad-page-x: 48px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  color: var(--body-text);
}

h1, h2, h3 {
  font-family: 'Lora', serif;
  margin: 0;
}

a {
  color: var(--navy);
  text-decoration: none;
}
a:hover { color: var(--gold-deep); }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 2px;
  border-radius: 2px;
}

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

/* ---------- Layout helpers ---------- */
.container-1180 { max-width: 1180px; margin: 0 auto; }
.container-1080 { max-width: 1080px; margin: 0 auto; }
.container-900  { max-width: 900px;  margin: 0 auto; }
.container-780  { max-width: 780px;  margin: 0 auto; }
.container-760  { max-width: 760px;  margin: 0 auto; }
.container-640  { max-width: 640px;  margin: 0 auto; }

.section-pad-96 { padding: 96px var(--pad-page-x); }
.section-pad-88 { padding: 88px var(--pad-page-x); }

.text-center { text-align: center; }

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad-page-x);
  flex-wrap: wrap;
  gap: 16px;
}
.site-nav .brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-nav .brand img { width: 42px; height: 42px; }
.site-nav .brand span {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--navy-text-3);
  letter-spacing: 0.2px;
}
.site-nav nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 600;
  flex-wrap: wrap;
}
.site-nav nav a.pill-btn {
  background: var(--navy);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease;
}
.site-nav nav a.pill-btn:hover {
  background: var(--navy-text-1);
  color: var(--white) !important;
}

/* ---------- Hero (home) ---------- */
.hero {
  background: var(--navy-deep);
  padding: 96px var(--pad-page-x) 88px;
  text-align: center;
}
.hero .eyebrow { color: var(--gold); margin-bottom: 20px; }
.hero h1 {
  font-weight: 600;
  font-size: 46px;
  line-height: 1.2;
  color: var(--white);
  margin: 0 0 22px;
}
.hero p.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--on-navy-1);
  max-width: 580px;
  margin: 0 auto;
}

.pillars {
  max-width: 1080px;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  display: block;
  background: var(--card-navy-bg);
  border: 1px solid var(--border-navy-card);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: left;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.pillar-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.pillar-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  margin-bottom: 20px;
}
.pillar-card h3 {
  font-weight: 600;
  font-size: 19px;
  color: var(--white);
  margin-bottom: 8px;
}
.pillar-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: oklch(0.80 0.02 262);
  margin: 0 0 16px;
}
.pillar-card .cta {
  font-size: 14px;
  font-weight: 700;
}
.pillar-gold .pillar-dot { background: var(--gold); }
.pillar-gold .cta { color: var(--gold) !important; }
.pillar-pink .pillar-dot { background: var(--pink); }
.pillar-pink .cta { color: var(--pink) !important; }
.pillar-lavender .pillar-dot { background: var(--lavender); }
.pillar-lavender .cta { color: var(--lavender) !important; }

/* ---------- Hero (consultancy, smaller) ---------- */
.hero-sub {
  background: var(--navy-deep);
  padding: 88px var(--pad-page-x) 76px;
  text-align: center;
}
.hero-sub .eyebrow { color: var(--gold); margin-bottom: 20px; }
.hero-sub h1 {
  font-weight: 600;
  font-size: 42px;
  line-height: 1.25;
  color: var(--white);
  margin: 0 0 22px;
}
.hero-sub p.lead {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--on-navy-1);
  max-width: 620px;
  margin: 0 auto;
}

/* ---------- What We Do ---------- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow { color: var(--gold-deep); }
.section-header h2 {
  font-weight: 600;
  font-size: 34px;
  color: var(--navy-text-1);
}

.tiles-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tile {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.tile-tag {
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}
.tag-gold { color: var(--gold-deep); background: var(--gold-tint-bg); }
.tag-pink { color: var(--pink-deep); background: var(--pink-tint-bg); }
.tag-lavender { color: var(--lavender-deep); background: var(--lavender-tint-bg); }

.tile h3 {
  font-size: 21px;
  font-weight: 600;
  color: var(--navy-text-1);
  margin: 0 0 12px;
}
.tile p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--body-text-2);
  margin: 0 0 24px;
  flex: 1;
}
.tile .cta {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
}

/* ---------- Split sections (consultancy spotlight / travel / education) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split .eyebrow { margin-bottom: 14px; }
.split h2 {
  font-weight: 600;
  font-size: 32px;
  color: var(--navy-text-1);
  margin: 0 0 20px;
}
.split p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-text-2);
  margin: 0 0 28px;
}

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  transition: filter 0.15s ease, transform 0.15s ease;
}
.btn:hover { filter: brightness(0.94); transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: var(--white) !important; }
.btn-pink { background: var(--pink); color: var(--navy-text-1) !important; }
.btn-light {
  background: var(--grey-section-bg);
  border: 1px solid var(--border-subtle-2);
  color: var(--navy-text-2) !important;
}

.stack-cards { display: flex; flex-direction: column; gap: 18px; }
.stack-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}
.stack-card .title {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 16.5px;
  color: var(--navy-text-1);
  margin-bottom: 6px;
}
.stack-card .desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted-1);
}

.quote-card {
  background: var(--pink-section-bg);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.quote-card .eyebrow { color: var(--pink-deep); margin-bottom: 14px; letter-spacing: 1.5px; }
.quote-card blockquote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--pink-dark);
  line-height: 1.5;
  margin: 0;
}

.badge-launching {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lavender-badge-bg);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
}
.badge-launching .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lavender-deep);
}
.badge-launching span.label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--lavender-dark);
}

.campus-card {
  background: var(--lavender-section-bg);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.campus-card .eyebrow {
  color: var(--lavender-deep);
  letter-spacing: 1.5px;
  margin-bottom: 22px;
}
.campus-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--lavender-border);
}
.campus-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.campus-row .name {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--navy-text-1);
}
.campus-row .status { font-size: 14px; color: var(--muted-1); }

/* ---------- About / Leadership ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}
.founder-photo-slot {
  width: 280px;
  height: 340px;
  border-radius: var(--radius-lg);
  background: var(--grey-section-bg);
  border: 1px dashed var(--border-subtle-2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.5;
}
.about-grid h3 {
  font-weight: 600;
  font-size: 23px;
  color: var(--navy-text-1);
  margin: 0 0 4px;
}
.about-grid .role {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gold-deeper);
  margin-bottom: 22px;
}
.about-grid p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--body-text);
  margin: 0 0 18px;
}
.about-grid p:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: var(--on-navy-1);
  padding: 72px var(--pad-page-x) 32px;
}
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-footer);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-brand img { width: 38px; height: 38px; }
.footer-brand span {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
}
.footer-address {
  font-size: 14px;
  line-height: 1.7;
  color: var(--on-navy-2);
}
.footer-brn { font-size: 13px; color: var(--gold-deep); margin-top: 14px; }
.footer-col-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
}
.footer-links a { color: var(--on-navy-1); }
.footer-links .muted-note { color: var(--muted-3); font-size: 13px; }
.footer-links .coming-soon { color: var(--muted-2); }
.footer-copyright {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 24px;
  font-size: 13px;
  color: var(--muted-2);
}

/* ---------- Consultancy: service areas ---------- */
.service-cards { display: flex; flex-direction: column; gap: 28px; }
.service-card {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 44px;
}
.service-card .dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  margin-bottom: 20px;
}
.service-card h3 {
  font-weight: 600;
  font-size: 23px;
  color: var(--navy-text-1);
  margin: 0 0 12px;
}
.service-card > div:first-child p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--body-text-2);
  margin: 0;
}
.chip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.chip {
  background: var(--grey-section-bg);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-text-2);
}

/* ---------- How We Work ---------- */
.steps-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.step-card .num {
  font-weight: 600;
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 14px;
}
.step-card .title {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--navy-text-1);
  margin-bottom: 8px;
}
.step-card .desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-1);
}

/* ---------- CTA ---------- */
.cta-section { padding: 96px var(--pad-page-x); text-align: center; }
.cta-section h2 {
  font-weight: 600;
  font-size: 30px;
  color: var(--navy-text-1);
  margin: 0 0 18px;
}
.cta-section p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-text-2);
  margin: 0 0 32px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Backgrounds ---------- */
.bg-grey { background: var(--grey-section-bg); }
.bg-white { background: var(--white); }

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 860px) {
  :root { --pad-page-x: 24px; }

  .hero h1 { font-size: 34px; }
  .hero-sub h1 { font-size: 30px; }
  .hero { padding: 72px var(--pad-page-x) 64px; }
  .hero-sub { padding: 64px var(--pad-page-x) 56px; }

  .pillars,
  .tiles-3,
  .split,
  .about-grid,
  .chip-grid,
  .steps-4 {
    grid-template-columns: 1fr !important;
  }

  .about-grid { gap: 32px; }
  .founder-photo-slot { width: 100%; height: 260px; }

  .service-card { padding: 28px; gap: 24px; }

  .split .quote-card {
    order: -1 !important;
  }

  .section-pad-96 { padding: 64px var(--pad-page-x); }
  .section-pad-88 { padding: 56px var(--pad-page-x); }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }

  .site-nav nav { gap: 18px; row-gap: 10px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { text-align: center; }
}
