@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@300;400;500;600;700;800&display=swap');
/* Pavilion Serif Typeface is a licensed font (Creative Market) and cannot be
   loaded from a CDN. Once you upload the .woff2/.woff files, drop them in
   and uncomment the @font-face below — Playfair Display is the stand-in
   for all headings/sub-headings until then. */
/* @font-face {
  font-family: 'Pavilion Serif';
  src: url('PavilionSerif-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal;
} */
/* ===== SKD CONSULTANCY — BRAND STYLE 2026 ("MODERN AUTHORITY") ===== */
/* Vivid Blue: #0052FF | Charcoal Slate: #1E293B | Malaysian Ochre: #D4AF37 */

:root {
  --blue: #F8DA5D;
  --blue-dark: #D9B84A;
  --blue-pale: #FCE9A0;
  --charcoal: #582102;
  --charcoal-deep: #3E1701;
  --ochre: #F8DA5D;
  --ochre-light: #FCE9A0;
  --ochre-pale: #FAECD1;
  --white: #ffffff;
  --off-white: #FCF6E8;
  --text-dark: #582102;
  --text-mid: #582102;
  --text-light: #7A4B1E;
  --border: #D9B87A;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(88,33,2,0.08);
  --shadow-lg: 0 8px 40px rgba(88,33,2,0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 100%; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-mid);
  background: var(--white);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Pavilion Serif', 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

a { text-decoration: none; color: inherit; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 3%; }
.gold-text { color: var(--blue); }
.center-btn { text-align: center; margin-top: 40px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(88,33,2,0.25);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(88,33,2,0.35);
}
.btn-primary.large { font-size: 1.1rem; padding: 18px 44px; }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--charcoal);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 31px;
  border-radius: 8px;
  border: 2px solid var(--border);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-secondary:hover {
  background: var(--off-white);
  border-color: var(--charcoal);
}

/* ===== TOP CONTACT BAR ===== */
.top-bar {
  background: var(--ink);
  padding: 16px 32px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.top-bar a {
  color: rgba(255,255,255,0.92);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.top-bar a:hover { color: var(--silver-light); }
@media (max-width: 600px) {
  .top-bar { gap: 18px; padding: 12px 16px; }
  .top-bar a { font-size: 0.8rem; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 32px;
  box-shadow: 0 2px 20px rgba(30,41,59,0.06);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 112px; object-fit: contain; display: block; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}
.nav-links a {
  color: var(--text-mid);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-cta {
  background: var(--blue);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(88,33,2,0.3); }
.hamburger { display: none; background: none; border: none; color: var(--charcoal); font-size: 1.5rem; cursor: pointer; }

/* ===== HERO ===== */
.hero {
  background: var(--white);
  padding: 80px 32px;
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(88,33,2,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 560px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero { padding: 70px 3%; }
.hero-tag {
  display: inline-block;
  background: var(--blue-pale);
  border: 1px solid rgba(88,33,2,0.25);
  color: var(--blue);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-text p {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 620px;
}
.hero-btns { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.8rem; color: var(--blue); }
.stat-label { font-size: 0.78rem; color: var(--text-light); font-weight: 600; letter-spacing: 0.3px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero image */
.hero-image { display: flex; justify-content: center; align-items: flex-end; }
.hero-img-frame {
  position: relative;
  width: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30,41,59,0.25), 0 0 0 3px var(--blue-pale);
}
.hero-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-img-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, transparent 100%);
  padding: 32px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.badge-name { font-family: 'Inter', sans-serif; font-weight: 700; color: var(--white); font-size: 1rem; }
.badge-title { font-size: 0.8rem; color: var(--ochre-light); font-weight: 600; }

/* ===== SECTION COMMON ===== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-tag.light { background: rgba(255,255,255,0.15); color: var(--ochre-light); }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--charcoal); margin-bottom: 12px; }
.section-header p { color: var(--text-mid); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ===== SERVICES ===== */
.what-we-do { padding: 88px 0; background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition: all 0.3s;
  position: relative;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-top-color: var(--blue); }
.service-icon { font-size: 2rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1rem; color: var(--charcoal); margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 16px; }
.service-price { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--blue); background: var(--blue-pale); padding: 4px 10px; border-radius: 4px; }

/* ===== COMMUNITY BANNER ===== */
.community-banner { background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-deep) 100%); padding: 72px 32px; }
.banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.banner-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--white); margin-bottom: 16px; }
.banner-text p { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 520px; margin-bottom: 24px; }
.tier-pills { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.pill { background: rgba(255,255,255,0.1); color: var(--white); font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.85rem; padding: 8px 18px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.25); }
.gold-pill { background: rgba(212,175,55,0.2); border-color: var(--ochre); color: var(--ochre-light); }
.banner-icon { font-size: 6rem; opacity: 0.12; }

/* ===== WHY SKD ===== */
.why-skd { padding: 88px 0; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-skd .why-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .why-skd .why-grid { grid-template-columns: 1fr; } }
.why-card { background: var(--off-white); border-radius: var(--radius); padding: 32px; display: flex; gap: 16px; align-items: flex-start; }
.why-icon { font-size: 1.4rem; flex-shrink: 0; color: var(--ochre); }
.why-card h4 { font-size: 1rem; color: var(--charcoal); margin-bottom: 6px; }
.why-card p { font-size: 0.9rem; color: var(--text-mid); }

/* ===== CTA SECTION ===== */
.cta-section { background: var(--blue); padding: 80px 32px; text-align: center; }
.cta-section h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--white); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 36px; }
.cta-section .btn-primary { background: var(--white); color: var(--blue); box-shadow: 0 6px 24px rgba(0,0,0,0.15); }
.cta-section .btn-primary:hover { background: var(--off-white); transform: translateY(-2px); }

/* ===== FOOTER ===== */
.footer { background: var(--charcoal); padding: 60px 0 0; border-top: 3px solid var(--ochre); }
.footer-inner { display: grid; grid-template-columns: auto auto; gap: 100px; padding-bottom: 48px; justify-content: center; text-align: center; }
.footer-logo-wrap { background: var(--white); display: inline-flex; padding: 10px 20px; border-radius: 10px; }
.footer-logo { height: 64px; display: block; }
.contact-quote { font-style: italic; color: var(--charcoal); font-size: 0.98rem; border-left: 3px solid var(--blue); padding-left: 16px; margin: 24px 0 32px; line-height: 1.6; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-top: 12px; }
.footer h4 { color: var(--ochre-light); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 32px; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--blue);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 14px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  z-index: 900;
  box-shadow: 0 6px 24px rgba(88,33,2,0.35);
  transition: all 0.2s;
}
.floating-cta:hover { background: var(--blue-dark); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(88,33,2,0.45); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 96px; right: 28px;
  width: 46px; height: 46px;
  background: var(--gold-btn-2, #C9A24B);
  color: var(--charcoal, #2b2b2b);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  z-index: 900;
  box-shadow: 0 6px 24px rgba(88,33,2,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(88,33,2,0.45); }
@media (max-width: 600px) {
  .back-to-top { bottom: 86px; right: 18px; width: 42px; height: 42px; font-size: 1rem; }
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(15,23,42,0.6);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.modal {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  border-top: 4px solid var(--blue);
}
.modal h3 { font-size: 1.4rem; color: var(--charcoal); margin-bottom: 8px; }
.modal p { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 24px; }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text-mid); }
.modal-field { margin-bottom: 16px; }
.modal-field label { display: block; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.82rem; color: var(--charcoal); margin-bottom: 6px; }
.modal-field input, .modal-field textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 0.92rem; color: var(--text-dark);
  transition: border-color 0.2s; outline: none;
}
.modal-field input:focus, .modal-field textarea:focus { border-color: var(--blue); }
.modal-field textarea { height: 90px; resize: none; }
.full-width { display: block; width: 100%; text-align: center; margin-top: 8px; }

/* ===== ABOUT PAGE ===== */
.page-hero { background: var(--white); padding: 72px 32px; text-align: center; border-bottom: 1px solid var(--border); }
.page-hero h1 { color: var(--charcoal); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.page-hero p { color: var(--text-mid); font-size: 1.05rem; }
.page-hero .tagline-lines {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--charcoal);
  line-height: 1.25;
}
.page-hero .tagline-lines .gold-text { color: var(--blue); }
.about-section { padding: 80px 0 8px; }
.about-grid { display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: start; }
.about-photo { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); border: 3px solid var(--blue-pale); max-height: 460px; align-self: start; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.about-content h2 { font-size: 1.8rem; color: var(--charcoal); margin-bottom: 16px; }
.about-content p { color: var(--text-mid); margin-bottom: 16px; line-height: 1.75; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.about-tag { background: var(--ochre-pale); color: var(--charcoal); font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.8rem; padding: 6px 14px; border-radius: 50px; border: 1px solid rgba(212,175,55,0.4); }
.experience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 48px 0; }
.exp-card { background: var(--charcoal); color: white; border-radius: var(--radius); padding: 28px 20px; text-align: center; }
.exp-num { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 2.2rem; color: var(--ochre-light); display: block; }
.exp-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* ===== SERVICES PAGE ===== */
.services-section { padding: 80px 0; }
.service-full-card { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); margin-bottom: 24px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: start; border-left: 4px solid var(--blue); }
.service-full-card h3 { font-size: 1.2rem; color: var(--charcoal); margin-bottom: 10px; }
.service-full-card p { color: var(--text-mid); font-size: 0.95rem; }
.service-full-card ul { margin: 12px 0 0 18px; color: var(--text-mid); font-size: 0.9rem; }
.service-full-card ul li { margin-bottom: 6px; }
.price-badge { background: var(--blue-pale); color: var(--blue); font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.9rem; padding: 10px 20px; border-radius: 8px; white-space: nowrap; text-align: center; }
.retainer-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.retainer-card { border-radius: var(--radius); padding: 36px 28px; text-align: center; border: 2px solid var(--border); transition: all 0.3s; }
.retainer-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.retainer-card.featured { border-color: var(--royal); background: linear-gradient(135deg, var(--royal-deep), var(--royal)); color: white; }
.retainer-card h4 { font-size: 1rem; margin-bottom: 12px; }
.retainer-card .price { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 2rem; color: var(--blue); display: block; margin: 12px 0; }
.retainer-card .tailored-note { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--blue); margin: 16px 0 4px; }
.retainer-card.featured .tailored-note { color: var(--ochre-light); }
.retainer-card .period { font-size: 0.8rem; color: var(--text-mid); }
.retainer-card.featured .period { color: rgba(255,255,255,0.6); }
.retainer-card ul { list-style: none; margin: 20px 0; text-align: left; }
.retainer-card ul li { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 8px; padding-left: 20px; position: relative; }
.retainer-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--ochre); font-weight: 700; }
.retainer-card.featured ul li { color: rgba(255,255,255,0.75); }
.retainer-card.featured ul li::before { color: var(--ochre-light); }

/* ===== COMMUNITY PAGE ===== */
.community-section { padding: 80px 0; }
.tier-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 48px; }
.tier-card { border-radius: var(--radius); padding: 40px 32px; border: 2px solid var(--border); transition: all 0.3s; }
.tier-card:hover, .tier-card.featured { border-color: var(--blue); box-shadow: var(--shadow-lg); }
.tier-card.featured { background: linear-gradient(135deg, var(--ink) 0%, #3E1701 100%); color: white; }
.tier-card h3 { font-size: 1.3rem; color: var(--charcoal); margin-bottom: 8px; }
.tier-card.featured h3 { color: white; }
.tier-card .tier-price { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 2.4rem; color: var(--blue); }
.tier-card.featured .tier-price { color: var(--ochre-light) !important; }
.tier-card ul { list-style: none; margin: 20px 0; }
.tier-card ul li { font-size: 0.92rem; color: var(--text-mid); padding: 8px 0 8px 24px; position: relative; border-bottom: 1px solid var(--border); }
.tier-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--ochre); font-weight: 700; }
.tier-card.featured ul li { color: rgba(255,255,255,0.75); border-bottom-color: rgba(255,255,255,0.1); }
.tier-card.featured ul li::before { color: var(--ochre-light); }
.join-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 64px; text-align: center; }
.step-item { padding: 24px 16px; }
.step-num { width: 48px; height: 48px; background: var(--blue); color: var(--white); font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.1rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step-item h4 { font-size: 0.95rem; color: var(--charcoal); margin-bottom: 6px; }
.step-item p { font-size: 0.85rem; color: var(--text-mid); }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { font-size: 1.8rem; color: var(--charcoal); margin-bottom: 20px; }
.contact-info p { color: var(--text-mid); margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon { width: 44px; height: 44px; background: var(--blue-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-item h4 { font-size: 0.9rem; color: var(--charcoal); margin-bottom: 3px; }
.contact-item p { color: var(--text-mid); font-size: 0.9rem; margin: 0; }
.contact-form { background: var(--off-white); border-radius: var(--radius); padding: 40px; }
.contact-form h3 { color: var(--charcoal); font-size: 1.3rem; margin-bottom: 24px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.82rem; color: var(--charcoal); margin-bottom: 6px; }
.form-field input, .form-field textarea, .form-field select { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.92rem; color: var(--text-dark); background: white; outline: none; transition: border-color 0.2s; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--blue); }
.form-field textarea { height: 100px; resize: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-image { display: flex; margin-top: 32px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .retainer-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .join-steps { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .service-full-card { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .navbar { padding: 12px 16px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px; gap: 16px; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .nav-cta { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; }
  .join-steps { grid-template-columns: 1fr; }
  .hero { padding: 48px 16px; }
}

/* ===== CORE VALUES ===== */
.values-section { padding: 8px 0 80px; background: var(--off-white); }
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 16px; }
.value-card { background: var(--white); border-radius: var(--radius); padding: 28px 22px; text-align: center; box-shadow: var(--shadow); border-top: 3px solid var(--blue); transition: transform 0.25s; }
.value-card:hover { transform: translateY(-6px); }
.value-card h4 { font-family: 'Marcellus', 'Playfair Display', serif; font-weight: 600; color: var(--charcoal); font-size: 1.35rem; letter-spacing: 0.3px; margin-bottom: 10px; }
.value-card p { color: var(--text-mid); font-size: 0.88rem; }

/* ===== WHY LEADERS CHOOSE SKD ===== */
.leaders-section { padding: 80px 0; }
.leaders-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 16px; }
.leader-card { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); border-left: 4px solid var(--charcoal); transition: all 0.25s; }
.leader-card:hover { border-left-color: var(--blue); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.leader-card-icon { font-size: 1.3rem; margin-bottom: 10px; }
.leader-card h4 { font-family: 'Inter', sans-serif; font-weight: 700; color: var(--charcoal); font-size: 1.05rem; margin-bottom: 8px; }
.leader-card p { color: var(--text-mid); font-size: 0.92rem; }
.leaders-footnote { text-align: center; margin-top: 40px; font-size: 1.1rem; color: var(--charcoal); font-weight: 600; }

/* ===== CONSULTING PHILOSOPHY ===== */
.philosophy-section { padding: 80px 0; background: linear-gradient(135deg, var(--ink) 0%, #3E1701 100%); border-top: 3px solid var(--royal); border-bottom: 3px solid var(--royal); }
.philosophy-section .section-tag { background: rgba(255,255,255,0.16); color: #FFFFFF; }
.philosophy-section .section-header h2 { color: var(--white); }
.philosophy-section .philosophy-text { color: rgba(255,255,255,0.8); font-size: 1.1rem; line-height: 1.8; max-width: 760px; margin: 0 auto; text-align: center; }

@media (max-width: 900px) {
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .leaders-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SKD CONSULTANCY — WATERCOLOR EDITION 2026
   Palette drawn from the SKD logo: royal blue ink, watercolor washes,
   silver script, ice-white base. Elegant with a pinch of crazy.
   ========================================================================== */

:root {
  --royal: #F8DA5D;
  --royal-deep: #D9B84A;
  --ink: #582102;
  --wash-strong: rgba(248, 218, 93, 0.34);
  --wash-mid: rgba(248, 218, 93, 0.20);
  --wash-soft: rgba(248, 218, 93, 0.13);
  --silver: #F0CE7A;
  --silver-light: #FCE9A0;
  --ice: #FAECD1;
}

/* 1. Hero fold — white melting into a watercolor sky, wash pooling top-right
      like the letterhead. Royal blue never flat: always blended, always soft. */
.main-canvas-container {
  background:
    radial-gradient(ellipse 620px 420px at 88% 4%, var(--wash-strong), transparent 62%),
    radial-gradient(ellipse 480px 380px at 99% 26%, var(--wash-mid), transparent 65%),
    radial-gradient(ellipse 700px 300px at 70% 0%, var(--wash-soft), transparent 70%),
    linear-gradient(180deg, #FFFFFF 0%, #FBFCFF 45%, var(--ice) 100%);
}
.main-canvas-container .navbar { background: var(--ice); }
.main-canvas-container .hero { background: transparent; }
.main-canvas-container .page-hero { background: transparent; border-bottom: none; }

/* Hero accent orbs re-tinted to the wash */
.hero::before { background: radial-gradient(circle, var(--wash-mid) 0%, transparent 70%); }
.hero::after { background: radial-gradient(circle, rgba(248,218,93,0.20) 0%, transparent 70%); }

/* 2. "What We Do" wash block — soft periwinkle pool, no more gold */
.gold-anchor-section {
  background:
    radial-gradient(ellipse 500px 320px at 8% 12%, rgba(255,255,255,0.65), transparent 60%),
    radial-gradient(ellipse 560px 400px at 94% 88%, var(--wash-mid), transparent 65%),
    linear-gradient(180deg, #FCF6E8 0%, #F3DFA0 100%) !important;
  color: #1A202C !important;
}
.gold-anchor-section .section-header h2,
.gold-anchor-section .offer-name { color: var(--ink); }

/* 3. CTA — ink background, gold used sparingly as a thin accent border */
.vivid-blue-cta {
  background: linear-gradient(135deg, var(--ink) 0%, #3E1701 55%, var(--ink) 100%) !important;
  border-top: 3px solid var(--royal);
  border-bottom: 3px solid var(--royal);
  color: #FFFFFF !important;
}

/* 4. Divider line above footer */
.footer-divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--silver-light), transparent) !important;
  width: 100%; border: none; margin: 0;
}

/* 5. Deep ink footer with silver typography */
.site-footer { background-color: var(--ink) !important; color: #FFFFFF !important; }
.footer { border-top: 3px solid var(--royal); }
.site-footer h4, .site-footer .link-heading { color: var(--silver-light) !important; }
.site-footer a { color: #97A2B8 !important; text-decoration: none; }
.site-footer a:hover { color: #FFFFFF !important; }
.exp-num { color: var(--silver-light); }
.section-tag.light { background: rgba(255,255,255,0.12); color: var(--silver-light); }
.gold-pill { background: rgba(248,218,93,0.18); border-color: var(--silver); color: var(--silver-light); }
.badge-title { color: var(--silver-light); }
.why-icon { color: var(--royal); }
.about-tag { background: #FCF6E8; border: 1px solid rgba(248,218,93,0.3); }

/* ==========================================================================
   SERVICE CARDS — "elegant with a pinch of crazy"
   Staggered mosaic, asymmetric corners, tilted at rest, straighten on hover
   ========================================================================== */
.services-grid { align-items: start; }
.service-card {
  border-radius: 26px 10px 26px 10px;
  border-top: none;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(88,33,2,0.10);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--royal) 0%, #7C90D6 55%, var(--silver-light) 100%);
}
/* the pinch of crazy: gentle tilts + stagger */
.service-card:nth-child(3n+1) { transform: rotate(-1deg); }
.service-card:nth-child(3n+2) { transform: translateY(22px) rotate(0.7deg); }
.service-card:nth-child(3n)   { transform: translateY(8px) rotate(-0.4deg); }
.service-card:hover {
  transform: translateY(-6px) rotate(0deg) !important;
  box-shadow: 0 18px 48px rgba(88,33,2,0.20);
  border-top-color: transparent;
}
/* watercolor blob behind each icon */
.service-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 30% 30%, var(--wash-strong), var(--wash-soft));
  border-radius: 58% 42% 55% 45% / 50% 58% 42% 50%;
  margin-bottom: 18px;
}
.service-card:hover .service-icon {
  border-radius: 45% 55% 42% 58% / 58% 45% 55% 42%;
  transition: border-radius 0.4s ease;
}
.service-price { color: var(--royal); background: #FCF6E8; }

/* ==========================================================================
   FIVE PILLARS — SKD Protect / Partner / Hire / Grow / Circle
   Clean, professional, no tilt/mosaic — sits flush in a single row
   ========================================================================== */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.offer-card {
  background: #FFFFFF;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%);
  border-radius: 14px;
  padding: 32px 26px 26px;
  box-shadow: 0 6px 24px rgba(36,28,16,0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.offer-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--royal-deep) 0%, var(--royal) 60%, var(--silver-light) 100%);
}
.offer-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(36,28,16,0.14); }
.offer-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.offer-name sup { font-size: 0.6rem; top: -0.8em; color: var(--royal); }
.offer-tag {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--royal-deep);
  margin-bottom: 14px;
  display: block;
}
.offer-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.offer-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  flex-grow: 1;
}
.offer-list li {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
  margin-bottom: 7px;
}
.offer-list li::before {
  content: '';
  position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(120deg, var(--royal-deep), var(--royal));
}
.offer-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--royal-deep);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}
.offer-card:hover .offer-cta { color: var(--royal); gap: 10px; }
@media (max-width: 1100px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .offer-grid { grid-template-columns: 1fr; }
}

/* Philosophy strip (replaces the stats numbers) */
.philosophy-strip { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.philo-item { display: flex; align-items: center; gap: 10px; }
.philo-mark {
  font-size: 1.1rem;
  color: var(--royal);
  background: var(--wash-soft);
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 55% 45% 50% 50% / 48% 55% 45% 52%;
  flex-shrink: 0;
}
.philo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--charcoal);
  letter-spacing: 0.2px;
}
.philo-divider { width: 1px; height: 34px; background: var(--silver-light); }

/* Re-point remaining blue/ochre accents to the new royal */
.gold-text, .stat-num { color: var(--gold-deep-text); }
.nav-links a:hover, .nav-links a.active { color: var(--gold-deep-text); font-weight: 800; }
.btn-primary, .nav-cta, .floating-cta { background: linear-gradient(120deg, var(--gold-btn-1), var(--gold-btn-2), var(--gold-btn-3)); }
.btn-primary:hover, .nav-cta:hover, .floating-cta:hover { background: linear-gradient(120deg, var(--gold-btn-3), var(--gold-btn-1)); }
.cta-section .btn-primary { background: var(--white); color: var(--ink); }
.cta-section .btn-primary:hover { background: var(--ice); }
.hero-tag, .section-tag { background: var(--royal); color: var(--ink); border: none; font-weight: 800; }
.top-bar a:hover { color: var(--silver-light); }
.modal { border-top: 4px solid var(--royal); }
.service-full-card { border-left: 4px solid var(--royal); }
.price-badge { background: var(--royal); color: var(--ink); font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.9rem; padding: 10px 20px; border-radius: 8px; white-space: nowrap; text-align: center; }
.retainer-card:hover { border-color: var(--royal); }
.retainer-card.featured { border-color: var(--royal); background: var(--ink); }
.hero-img-frame { box-shadow: 0 20px 60px rgba(88,33,2,0.25), 0 0 0 3px #FCF6E8; }
.about-photo { border: 3px solid #FCF6E8; }
.contact-quote { border-left: 3px solid var(--royal); }
.modal-field input:focus, .modal-field textarea:focus { border-color: var(--royal); }

/* Navbar banner logo sizing — relaxed, not cramped */
.navbar { padding: 14px 4%; min-height: auto; }
.nav-logo img { height: 68px; max-width: none; }
@media (max-width: 900px) { .nav-logo img { height: 56px; } .navbar { min-height: auto; } }
@media (max-width: 600px) { .nav-logo img { height: 44px; } .navbar { padding: 12px 4%; min-height: auto; } }

/* Keep it calm on smaller screens: no stagger, no tilt */
@media (max-width: 900px) {
  .service-card:nth-child(3n+1),
  .service-card:nth-child(3n+2),
  .service-card:nth-child(3n) { transform: none; }
  .philosophy-strip { gap: 14px; }
  .philo-divider { display: none; }
}

/* Community banner re-tinted to ink navy with a subtle wash */
.community-banner {
  background:
    radial-gradient(ellipse 500px 350px at 90% 15%, rgba(248,218,93,0.25), transparent 60%),
    linear-gradient(135deg, #582102 0%, var(--ink) 100%);
}


/* ==========================================================================
   SKD 2026 REFRESH — "About SKD, not me"
   Fonts from the Brand Blueprint: Lato (humanist sans, tagline voice)
   + Playfair Display (authority serif, the CONSULTANCY voice)
   ========================================================================== */

/* --- Typography system --- */
.hero h1 {
  font-family: 'Pavilion Serif', 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: 2.8rem;
}
.hero h1 .gold-text { font-weight: 400; }
.hero-sub, .hero p.lead {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 1.22rem;
  line-height: 1.7;
  color: var(--text-mid);
}
h2, .section-header h2, .page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}
.section-header h2 { font-size: 2.5rem; }
.page-hero h1 { font-family: 'Playfair Display', serif; }

/* --- Navbar: bigger logo, bigger links, no CTA --- */
.navbar { padding: 12px 4%; gap: 18px; }
.nav-logo img { height: 68px; max-width: none; }
.nav-links { margin-left: 8px; }
.nav-links a { font-size: 1.05rem; font-weight: 700; padding-top: 4px; }
/* nav CTA removed from HTML on all pages except community (Join Now) */

/* --- Backgrounds: royal blue x slate gray gradient, balanced, never heavy --- */
.main-canvas-container {
  background:
    radial-gradient(ellipse 640px 420px at 90% 2%, rgba(248,218,93,0.14), transparent 60%),
    radial-gradient(ellipse 560px 420px at 100% 30%, rgba(216,184,74,0.16), transparent 62%),
    radial-gradient(ellipse 520px 300px at 4% 96%, rgba(216,184,74,0.12), transparent 65%),
    linear-gradient(160deg, #FFFFFF 0%, #FCF6E8 46%, #F3DFA0 100%);
}
.hero { position: relative; }
.hero .hero-splash {
  position: absolute; top: -10px; left: -10px;
  width: 300px; opacity: 0.9; pointer-events: none;
}
.page-hero {
  background:
    radial-gradient(ellipse 600px 380px at 92% 8%, rgba(248,218,93,0.15), transparent 60%),
    radial-gradient(ellipse 520px 360px at 6% 90%, rgba(216,184,74,0.17), transparent 62%),
    linear-gradient(150deg, #FFFFFF 0%, #FCF6E8 55%, #F3DFA0 100%) !important;
}

/* --- Three pillar statements (soft pill style, not boxy) --- */
.pillar-boxes { display: flex; gap: 14px; flex-wrap: wrap; }
.pillar-box {
  flex: 1; min-width: 190px;
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 18px 26px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pillar-box::before {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--royal-deep), var(--royal));
  flex-shrink: 0;
}
.pillar-box {
  background: linear-gradient(150deg, #FFFFFF, var(--wash-soft));
  box-shadow: 0 4px 16px rgba(217,184,74,0.10);
}
.pillar-box span { display:block; font-family:'Inter',sans-serif; font-weight:400; font-size:0.8rem; color:#5A6478; }

/* --- Lead-gen form card (replaces hero photo) --- */
.lead-card {
  background: #FFFFFF;
  border-radius: 24px 10px 24px 10px;
  box-shadow: 0 20px 60px rgba(88,33,2,0.18), 0 0 0 3px #FCF6E8;
  padding: 36px;
  max-width: 460px;
  width: 100%;
}
.lead-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.lead-card .lead-sub { font-size: 0.98rem; color: #5A6478; margin-bottom: 20px; }
.lead-tabs { display: flex; gap: 8px; margin-bottom: 20px; }
.lead-tab {
  flex: 1; padding: 11px 12px; text-align: center;
  border: 1.5px solid rgba(248,218,93,0.25); border-radius: 999px;
  font-size: 0.92rem; font-weight: 700; color: var(--royal);
  cursor: pointer; background: #FFF; transition: all .2s;
}
.lead-tab.active { background: linear-gradient(120deg, var(--royal-deep), var(--royal)); color: #FFF; border-color: transparent; }
.lead-card form { display: flex; flex-direction: column; gap: 12px; }
.lead-card input, .lead-card select {
  padding: 13px 16px; border: 1.5px solid #EFDDB0; border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: 0.98rem; width: 100%;
}
.lead-card input:focus, .lead-card select:focus { border-color: var(--royal); outline: none; }
.lead-card button[type=submit] {
  margin-top: 6px; padding: 15px;
  background: linear-gradient(120deg, var(--royal-deep), var(--royal));
  color: #FFF; border: none; border-radius: 10px;
  font-weight: 700; font-size: 1.02rem; cursor: pointer;
}
.lead-card button[type=submit]:hover { filter: brightness(1.12); }
.lead-note { font-size: 0.8rem; color: #8A93A6; margin-top: 10px; text-align: center; }

/* --- Why SKD: larger fonts --- */
.why-card h4 { font-size: 1.28rem; }
.why-card p { font-size: 1.02rem; }
.why-icon { font-size: 1.6rem; }

/* --- About page: bigger photo, Grow with Shakun --- */
.about-photo img, .about-grid img { width: 100%; }
.about-photo { max-width: 460px; }

/* --- Footer: centered brand block, big logo --- */
.footer-brand-center {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px; padding: 8px 0 26px;
  border-bottom: 1px solid rgba(255,255,255,0.12); margin-bottom: 28px;
}
.footer-brand-center .footer-logo-wrap {
  background: #FFFFFF; border-radius: 16px; padding: 18px 36px;
}
.footer-brand-center img { height: 130px; display: block; }
@media (max-width: 600px) { .footer-brand-center img { height: 84px; } }
.footer-tagline {
  font-family: 'Inter', sans-serif; font-style: italic;
  color: var(--silver-light); font-size: 1.05rem;
}

@media (max-width: 900px) {
  .hero h1 { font-size: 2.1rem; }
  .nav-logo img { height: 74px; }
  .pillar-boxes { flex-direction: column; }
  .hero .hero-splash { width: 180px; }
}


/* ==========================================================================
   FINAL POLISH ROUND — Shakun's annotated changes
   ========================================================================== */

/* Tagline + About header in the new serif stack */
.hero h1 { font-family: 'Pavilion Serif', 'Playfair Display', serif; font-weight: 600; }
.founder-title { font-family: 'Pavilion Serif', 'Playfair Display', serif !important; font-weight: 700 !important; letter-spacing: 0.5px; }

/* Enlarge all section tags (WHAT WE DO, WHY JOIN, THE SKD FACTORS, etc.) */
.section-tag {
  font-size: 1.02rem !important;
  padding: 10px 22px !important;
  letter-spacing: 2.5px;
  font-weight: 800;
}
/* Enlarge subtitle sentences under section headings */
.section-header p { font-size: 1.18rem; }

/* Lead card broader; resume tab note */
.lead-card { max-width: 640px; width: 100%; }
.resume-note {
  font-size: 0.98rem; color: var(--ink); margin-bottom: 14px;
  font-family: 'Inter', sans-serif; font-style: italic;
  background: var(--wash-soft); padding: 12px 16px; border-radius: 10px;
  border-left: 3px solid var(--royal);
}

/* Community banner — ink background, gold used sparingly as a soft accent glow + thin border */
.community-banner {
  background:
    radial-gradient(ellipse 500px 350px at 90% 15%, rgba(248,218,93,0.16), transparent 60%),
    linear-gradient(135deg, var(--ink) 0%, #3E1701 100%) !important;
  border-top: 3px solid var(--royal);
  border-bottom: 3px solid var(--royal);
}
.site-footer {
  background: var(--ink) !important;
  border-top: 4px solid var(--royal) !important;
}
.site-footer h4, .site-footer .link-heading { color: #FFFFFF !important; }
.site-footer a { color: rgba(255,255,255,0.85) !important; }
.site-footer a:hover { color: #FFFFFF !important; text-decoration: underline; }
.footer-tagline { color: #FFFFFF; }
.footer-brand-center { border-bottom: 2px solid #2E1200; }

/* Center the footer link columns */
.footer-inner { justify-content: center !important; text-align: center; gap: 80px; }
.footer-inner ul { padding: 0; }

/* NEW badge — bright star banner */
.new-star {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(120deg, #F8DA5D, #D9B84A);
  color: #2E1200; font-weight: 900; font-size: 1rem;
  padding: 8px 20px; border-radius: 999px;
  box-shadow: 0 4px 16px rgba(255,180,0,0.45);
  letter-spacing: 1.5px; transform: rotate(-2deg);
}

/* Justify the About bio */
.about-bio p, .about-text p { text-align: justify; }

/* SKD Factors cards */
.fact-num {
  font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 700;
  color: var(--royal); letter-spacing: 2px; display: block; margin-bottom: 6px;
}
.about-content p { text-align: justify; }

.service-full-card ol { margin: 12px 0 0 18px; display: flex; flex-direction: column; gap: 8px; color: var(--text-mid); }
.service-full-card ol ul { margin: 8px 0 0 18px; list-style: disc; display: flex; flex-direction: column; gap: 6px; }
.quote-btn { display: inline-block; background: linear-gradient(120deg, var(--royal-deep), var(--royal)); color: #FFF !important; padding: 14px 18px; border-radius: 12px; font-weight: 700; font-size: 0.92rem; text-align: center; text-decoration: none; line-height: 1.4; box-shadow: 0 6px 18px rgba(88,33,2,0.25); }
.quote-btn:hover { filter: brightness(1.12); }

/* WHY SKD — bigger tag, no green checkmarks */
.why-skd .section-tag { font-size: 1.3rem !important; padding: 12px 30px !important; }
.why-skd .why-icon {
  background: transparent; color: var(--royal); font-size: 1.7rem !important;
}

/* Readability on blue bands: no blue-on-blue */
.philosophy-section .section-header h2 .gold-text { color: #FCE9A0; }
.philosophy-section .philosophy-text { color: rgba(255,255,255,0.92); }
.community-banner .gold-text { color: #FCE9A0; }
.community-banner .pill, .community-banner .gold-pill {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.35) !important;
  color: #FFFFFF !important;
}
.vivid-blue-cta .gold-text { color: #FCE9A0; }

/* ==========================================================================
   ROUND 3 — Aug 2 2026 annotated changes
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;500;700;900&family=Marcellus&family=Marcellus+SC&display=swap');

:root {
  /* darker, richer golds for text/tags that sit on light cream — readability first */
  --gold-deep-text: #9C6B12;
  --gold-deep-text-2: #8A5E10;
  /* darker 3-stop gradient for every gold button/pill so nothing reads "washed out" */
  --gold-btn-1: #C8942A;
  --gold-btn-2: #9C6B12;
  --gold-btn-3: #E8C767;
}

/* Body copy stays in Inter (Lato made everything visually smaller — reverted) */
p, li { color: var(--text-mid); line-height: 1.7; }

/* --- Soft gold watercolor texture + blurred blobs + barely-there vignette --- */
.main-canvas-container, body {
  background-image:
    radial-gradient(ellipse 900px 500px at 96% -4%, rgba(200,148,42,0.16), transparent 60%),
    radial-gradient(ellipse 700px 460px at -6% 100%, rgba(200,148,42,0.14), transparent 62%),
    radial-gradient(ellipse 1400px 900px at 50% 50%, rgba(88,33,2,0.025), transparent 75%),
    linear-gradient(180deg, #FFFFFF 0%, #FCF6E8 45%, #F6E4B4 100%);
  background-attachment: fixed;
}
section, .services-section, .why-skd, .leaders-section, .philosophy-section, .about-section, .contact-section {
  position: relative;
}
.why-skd, .about-section, .values-section, .leaders-section {
  background: transparent !important;
}

/* --- Nav: heavier weight + caps, as requested --- */
.nav-links a { font-weight: 800; text-transform: uppercase; letter-spacing: 0.6px; font-size: 1.12rem; }
.nav-links { align-items: flex-end; padding-bottom: 6px; }

/* --- Section tags: bigger, more visible, distinctive shape (not a plain pill) --- */
.section-tag, .hero-tag {
  background: linear-gradient(120deg, var(--gold-btn-1), var(--gold-btn-3)) !important;
  color: #3E1701 !important;
  border-radius: 6px 18px 6px 18px !important;
  font-size: 1.05rem !important;
  padding: 11px 26px !important;
  font-weight: 900 !important;
  letter-spacing: 2px !important;
  box-shadow: 0 4px 14px rgba(140,94,16,0.28);
}
.services-section .section-tag { font-size: 1.15rem !important; }

/* --- Hero caps subtitle line (replaces the old soft paragraph) --- */
.hero-caps-line {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--ink);
  font-size: 1.5rem !important;
  line-height: 1.5 !important;
  max-width: 620px;
  margin-bottom: 28px;
}

/* --- Pillar boxes: all caps --- */
.pillar-box { text-transform: uppercase; font-size: 1.05rem; font-weight: 800; }

/* --- Buttons / WhatsApp pills: unified darker gradient everywhere --- */
.quote-btn, .lead-card button[type=submit], .btn-primary {
  background: linear-gradient(120deg, var(--gold-btn-1), var(--gold-btn-2), var(--gold-btn-3)) !important;
  color: #FFFFFF !important;
}
.quote-btn:hover, .lead-card button[type=submit]:hover, .btn-primary:hover { filter: brightness(1.1); }
.cta-section .btn-primary { background: #FFFFFF !important; color: var(--ink) !important; }
.lead-tab.active { background: linear-gradient(120deg, var(--gold-btn-1), var(--gold-btn-2)) !important; }

/* --- Offer cards (SKD Protect/Partner/Hire/Grow/Circle): clickable, link styling --- */
a.offer-card { text-decoration: none; cursor: pointer; }

/* --- Community banner copy block --- */
.community-banner .banner-text p { color: rgba(255,255,255,0.88); }
.community-banner .btn-primary, .community-banner a.btn-primary { color: var(--ink) !important; }

/* --- Why SKD cards: real border + contrast, no more "flat and light" --- */
.why-card {
  background: #FFFFFF !important;
  border: 1.5px solid var(--border);
  box-shadow: 0 6px 20px rgba(88,33,2,0.06);
}
.why-card h4, .why-card p { color: var(--text-mid); }
.why-skd .section-header h2 .gold-text { color: var(--gold-deep-text-2); }

/* --- Services page: HR Health Check block, "SKD Protect" eyebrow --- */
.pillar-eyebrow {
  display: block; font-family: 'Lato', sans-serif; font-weight: 900;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold-deep-text);
  font-size: 0.85rem; margin-bottom: 6px;
}
.section-header p.diagnosis-line { font-weight: 700; font-size: 1.15rem; }

/* --- Pillar group headers on services page --- */
.pillar-group-header { text-align: center; margin: 72px 0 32px; scroll-margin-top: 140px; }
.pillar-group-header h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.pillar-group-header .gold-text { text-transform: uppercase; color: var(--gold-deep-text-2); }
#protect, #partner, #build, #grow { scroll-margin-top: 140px; }

/* --- Grouped sub-cards inside each pillar (grid instead of stacked full-width) --- */
.pillar-subgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .pillar-subgrid { grid-template-columns: 1fr; } }
.pillar-subgrid .service-full-card { margin-bottom: 0; grid-template-columns: 1fr; }
.pillar-subgrid .service-full-card h3 { text-transform: uppercase; font-size: 1.05rem; }

/* --- SKD Factors: tighter cards, no dead whitespace, 3-column desktop grid --- */
.leaders-grid { grid-template-columns: repeat(3, 1fr) !important; }
@media (max-width: 1100px) { .leaders-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 600px) { .leaders-grid { grid-template-columns: 1fr !important; } }
.leader-card { display: flex; flex-direction: column; gap: 2px; }
.fact-num {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: var(--gold-deep-text) !important;
}
.leader-card h4 { margin-top: 2px; }
.leader-card p { font-family: 'Lato', sans-serif; font-weight: 700; }
.leaders-footnote { text-transform: uppercase; letter-spacing: 0.5px; }

/* --- Footer polish --- */
.footer-tagline { font-size: 1.2rem !important; color: #FFFFFF !important; }
.footer-contact p, .footer-contact a { color: rgba(255,255,255,0.85) !important; }

/* --- Community page (new) --- */
.community-hero-note { text-align: center; max-width: 640px; margin: 0 auto 8px; color: var(--text-mid); font-size: 1.05rem; }
.tier-card.free-tier { background: #FFFFFF; }
.tier-card .tier-price sup { font-size: 0.9rem; font-weight: 600; }
.tier-note { font-size: 0.82rem; color: var(--text-light); margin-top: 6px; }
.caps-accent { text-transform: uppercase; letter-spacing: 0.5px; }

/* --- Header logo enlarged (requested update) --- */
.nav-logo img { height: 96px; max-width: none; }
@media (max-width: 900px) { .nav-logo img { height: 82px; } }
@media (max-width: 600px) { .nav-logo img { height: 60px; } }
