/* ============================================================
   Jibraeel Management Consulting — Main Stylesheet
   Design: Contemporary — Midnight Navy + Sacred Gold
   Font: Palatino Linotype (headings) + Arial (body)
   ============================================================ */

/* System fonts only — no external font import */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange:   #C49A2A;   /* Sacred Gold — primary brand accent */
  --orange-l: #D4AE4A;   /* Gold lighter (hover) */
  --orange-bg:#FBF5E6;   /* Gold tint background */
  --dark:     #0C1D3A;   /* Midnight Navy */
  --dark2:    #152444;   /* Midnight Navy 2 */
  --slate:    #4A5568;
  --light:    #F7F6F3;
  --warm:     #F4EDD8;   /* Parchment */
  --white:    #FFFFFF;
  --mid:      #8A95A8;
  --border:   #E2E8F0;
  --serif:    'Palatino Linotype', 'Book Antiqua', Georgia, serif;
  --sans:     Arial, 'Helvetica Neue', system-ui, -apple-system, sans-serif;
  --radius:   8px;
  --shadow:   0 2px 12px rgba(12,29,58,0.08);
  --shadow-lg:0 16px 48px rgba(12,29,58,0.14);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); color: var(--dark); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; display: block; }
a    { color: inherit; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--serif); line-height: 1.15; }
h1 { font-size: clamp(36px, 5vw, 60px); }
h2 { font-size: clamp(28px, 3.5vw, 44px); }
h3 { font-size: clamp(18px, 2vw, 24px); }
h4 { font-size: 18px; font-family: var(--sans); font-weight: 700; }
p  { font-size: 15px; line-height: 1.8; color: var(--slate); }

.eyebrow {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 600; color: var(--orange); margin-bottom: 12px; display: block;
}
.section-title { color: var(--dark); margin-bottom: 20px; }
.section-intro  { font-size: 16px; color: var(--slate); max-width: 560px; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 6%; }
.section { padding: 64px 6%; }
.section-sm { padding: 44px 6%; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn { display: inline-block; font-family: var(--sans); font-weight: 600; font-size: 14px; text-decoration: none; border-radius: var(--radius); cursor: pointer; transition: all var(--transition); letter-spacing: 0.2px; border: none; }
.btn-primary   { padding: 12px 28px; background: var(--orange); color: white; }
.btn-primary:hover { background: var(--orange-l); }
.btn-outline   { padding: 12px 28px; border: 1.5px solid var(--border); color: var(--dark); background: white; }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-dark      { padding: 12px 28px; background: var(--dark); color: white; }
.btn-dark:hover { background: var(--dark2); }
.btn-outline-light { padding: 12px 28px; border: 1.5px solid rgba(255,255,255,0.28); color: white; background: transparent; border-radius: var(--radius); }
.btn-outline-light:hover { border-color: var(--orange); color: var(--orange); }
.btn-sm        { padding: 8px 18px; font-size: 13px; }
.btn-lg        { padding: 15px 36px; font-size: 15px; }

/* ── NAV ─────────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: white; border-bottom: 1px solid var(--border);
  height: 70px; display: flex; align-items: center;
  padding: 0 6%;
  transition: box-shadow var(--transition);
}
.site-nav.scrolled { box-shadow: 0 4px 20px rgba(12,29,58,0.1); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-mark {
  width: 42px; height: 42px;
  flex-shrink: 0;
}
.nav-logo-text  { font-size: 14px; font-weight: 700; color: var(--dark); letter-spacing: -0.2px; line-height: 1.2; }
.nav-logo-sub   { font-size: 10px; color: var(--mid); letter-spacing: 0.5px; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 30px; }
.nav-links a { text-decoration: none; font-size: 14px; font-weight: 500; color: var(--slate); transition: color var(--transition); padding: 4px 0; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a.active { font-weight: 600; }
.nav-cta { padding: 10px 22px !important; background: var(--orange) !important; color: white !important; border-radius: 6px !important; }
.nav-cta:hover { background: var(--orange-l) !important; color: white !important; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); margin: 4px 0; border-radius: 2px; transition: all var(--transition); }

/* ── PAGE WRAPPER ────────────────────────────────────────── */
.page-body { padding-top: 70px; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: var(--dark);
  position: relative; overflow: hidden;
  padding: 72px 6% 64px;
  min-height: calc(100vh - 70px);
  display: flex; align-items: center;
}
.hero-glow-tr {
  position: absolute; top: -120px; right: -80px;
  width: 560px; height: 560px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(196,154,42,0.2) 0%, transparent 65%);
}
.hero-glow-bl {
  position: absolute; bottom: -80px; left: 10%;
  width: 380px; height: 380px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(196,154,42,0.07) 0%, transparent 65%);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 56px; align-items: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(196,154,42,0.15);
  border: 1px solid rgba(196,154,42,0.35);
  border-radius: 50px;
  padding: 6px 16px; margin-bottom: 22px; width: fit-content;
  font-size: 12px; font-weight: 600; color: var(--orange);
}
.hero-title { font-size: clamp(44px, 5.5vw, 72px); line-height: 1.0; margin-bottom: 18px; color: white; }
.hero-title .accent { color: var(--orange); }
.hero-subtitle { font-size: 16px; color: rgba(255,255,255,0.58); line-height: 1.75; max-width: 460px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats { display: flex; gap: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.hero-stat-num { font-family: var(--serif); font-size: 34px; color: white; line-height: 1; }
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* Right panel */
.hero-panel { display: flex; flex-direction: column; gap: 14px; }
.hero-quote-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 24px;
}
.hero-quote-card blockquote {
  font-family: var(--serif); font-size: 20px; color: white; line-height: 1.45; margin: 0;
}
.hero-quote-card cite {
  display: block; font-size: 11px; color: var(--orange);
  margin-top: 10px; font-style: normal; font-weight: 600; letter-spacing: 0.5px;
}
.hero-creds { display: flex; flex-direction: column; gap: 8px; }
.hero-cred {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  font-size: 13px; color: rgba(255,255,255,0.68);
}
.hero-cred-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }

/* ── STRIP ───────────────────────────────────────────────── */
.identity-strip {
  background: var(--orange); display: flex; overflow: hidden;
}
.strip-cell {
  flex: 1; padding: 20px 12px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
  transition: background var(--transition);
}
.strip-cell:last-child { border-right: none; }
.strip-cell:hover { background: rgba(0,0,0,0.08); }
.strip-num { font-family: var(--serif); font-size: 34px; color: white; line-height: 1; }
.strip-label { font-size: 10px; color: rgba(255,255,255,0.8); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; font-weight: 600; }

/* ── ABOUT / PHILOSOPHY ──────────────────────────────────── */
.philosophy { background: var(--light); }
.philosophy-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.value-cards { display: flex; flex-direction: column; gap: 12px; }
.value-card { background: white; padding: 18px 22px; border-radius: var(--radius); border: 1px solid var(--border); transition: box-shadow var(--transition); }
.value-card:hover { box-shadow: var(--shadow); }
.value-card-icon { font-size: 20px; margin-bottom: 8px; }
.value-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.value-card p  { font-size: 14px; margin: 0; }
.bee-block { background: var(--dark); padding: 24px 28px; border-radius: var(--radius); margin-top: 20px; border-left: 4px solid var(--orange); }
.bee-block p { color: rgba(255,255,255,0.8); font-size: 14px; margin: 0; }
.bee-block strong { color: var(--orange); }

/* ── SERVICES ────────────────────────────────────────────── */
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; flex-wrap: wrap; gap: 12px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  padding: 24px 22px; border-radius: var(--radius); border: 1px solid var(--border);
  background: white; transition: all var(--transition); cursor: default; position: relative;
}
.service-card:hover { border-color: var(--orange); box-shadow: 0 8px 32px rgba(196,154,42,0.1); transform: translateY(-3px); }
.service-num { font-family: var(--serif); font-size: 44px; color: rgba(196,154,42,0.1); line-height: 1; margin-bottom: 12px; }
.service-icon { font-size: 24px; margin-bottom: 12px; }
.service-card h3 { font-family: var(--sans); font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.service-card p  { font-size: 14px; }
.service-arrow { position: absolute; bottom: 28px; right: 28px; font-size: 18px; color: var(--orange); opacity: 0; transition: opacity var(--transition); }
.service-card:hover .service-arrow { opacity: 1; }

/* ── PROJECTS / WORK ─────────────────────────────────────── */
.work-section { background: var(--dark); }
.work-section .eyebrow { color: var(--orange); }
.work-section h2 { color: white; }
.work-section .section-intro { color: rgba(255,255,255,0.5); }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.work-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 20px 18px; transition: all var(--transition);
}
.work-card:hover { background: rgba(196,154,42,0.08); border-color: rgba(196,154,42,0.35); }
.work-sector { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); font-weight: 600; margin-bottom: 10px; }
.work-card h4 { font-family: var(--sans); font-size: 15px; font-weight: 600; color: white; line-height: 1.4; margin-bottom: 10px; }
.work-card p  { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; }
.work-metric     { margin-top: 16px; font-family: var(--serif); font-size: 28px; color: var(--orange); line-height: 1; }
.work-metric-lbl { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.work-confidential { border-style: dashed; }
.conf-tag { display: inline-block; font-size: 10px; padding: 3px 10px; background: rgba(255,255,255,0.06); border-radius: 4px; color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; margin-top: 12px; }

/* ── TEAM ────────────────────────────────────────────────── */
.team-section { background: var(--warm); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 36px; }
.team-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: box-shadow var(--transition); }
.team-card:hover { box-shadow: var(--shadow-lg); }
.team-card-head { background: var(--dark); padding: 24px 24px 18px; position: relative; }
.team-initials { font-family: var(--serif); font-size: 60px; color: rgba(196,154,42,0.45); line-height: 1; margin-bottom: 14px; }
.team-photo-wrap { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin-bottom: 14px; border: 3px solid var(--orange); }
.team-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.team-card-head h3 { font-family: var(--sans); font-size: 18px; font-weight: 700; color: white; margin-bottom: 2px; }
.team-card-role { font-size: 11px; color: var(--orange); font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; }
.team-card-bar { height: 3px; background: var(--orange); margin-top: 18px; }
.team-card-body { padding: 18px 22px 20px; }
.team-quals { font-size: 12px; color: var(--orange); font-weight: 700; margin-bottom: 10px; letter-spacing: 0.3px; }
.team-bio { font-size: 13px; line-height: 1.75; }
.team-linkedin { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--orange); text-decoration: none; margin-top: 14px; transition: color var(--transition); }
.team-linkedin:hover { color: var(--dark); }

/* Extended team */
.extended-title { font-family: var(--serif); font-size: 26px; color: var(--dark); margin-bottom: 20px; }
.extended-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.ext-card { background: white; padding: 14px 18px; border-radius: var(--radius); border-left: 3px solid var(--orange); border: 1px solid var(--border); border-left-width: 3px; border-left-color: var(--orange); }
.ext-name { font-weight: 700; font-size: 15px; color: var(--dark); }
.ext-quals { font-size: 12px; color: var(--orange); font-weight: 600; margin: 3px 0; }
.ext-bio { font-size: 13px; }

/* ── CLIENTS ─────────────────────────────────────────────── */
.clients-section { text-align: center; }
.clients-eyebrow { font-family: var(--serif); font-size: 20px; color: var(--mid); font-weight: 400; margin-bottom: 40px; }
.clients-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.client-chip {
  padding: 14px 26px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 14px; font-weight: 600; color: var(--slate); background: white;
  transition: all var(--transition);
}
.client-chip:hover { border-color: var(--orange); color: var(--dark); background: var(--orange-bg); }
.client-logo-wrap { display: flex; align-items: center; justify-content: center; }
.client-logo-wrap img { max-height: 40px; filter: grayscale(1); opacity: 0.6; transition: all var(--transition); }
.client-logo-wrap:hover img { filter: none; opacity: 1; }

/* ── BEE BANNER ──────────────────────────────────────────── */
.bee-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #9A7A20 100%);
  padding: 40px 6%; display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
}
.bee-text h2 { font-family: var(--serif); font-size: 30px; color: white; margin-bottom: 6px; }
.bee-text p  { font-size: 14px; color: rgba(255,255,255,0.8); }
.bee-stats { display: flex; gap: 48px; }
.bee-stat-num { font-family: var(--serif); font-size: 38px; color: white; line-height: 1; }
.bee-stat-lbl { font-size: 11px; color: rgba(255,255,255,0.75); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 3px; }

/* ── BLOG / INSIGHTS ─────────────────────────────────────── */
.blog-section { background: var(--light); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.blog-card { background: white; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: box-shadow var(--transition); text-decoration: none; display: block; }
.blog-card:hover { box-shadow: var(--shadow-lg); }
.blog-card-img { height: 140px; background: var(--dark); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-img-placeholder { font-size: 44px; opacity: 0.2; }
.blog-card-body { padding: 16px 18px 18px; }
.blog-card-cat { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); font-weight: 700; margin-bottom: 8px; }
.blog-card-title { font-family: var(--sans); font-size: 16px; font-weight: 700; color: var(--dark); line-height: 1.35; margin-bottom: 10px; }
.blog-card-excerpt { font-size: 13px; color: var(--slate); line-height: 1.65; }
.blog-card-date { font-size: 12px; color: var(--mid); margin-top: 14px; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-section { background: var(--dark); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact-section .eyebrow { color: var(--orange); }
.contact-section h2 { color: white; margin-bottom: 16px; }
.contact-blurb { color: rgba(255,255,255,0.55); margin-bottom: 36px; font-size: 15px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 18px; }
.contact-icon { width: 40px; height: 40px; border-radius: var(--radius); background: rgba(196,154,42,0.15); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); font-weight: 600; }
.contact-value { font-size: 14px; color: rgba(255,255,255,0.85); margin-top: 3px; }
.contact-form-wrap { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; color: rgba(255,255,255,0.5); }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 14px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px; font-family: var(--sans); font-size: 14px; color: white;
  outline: none; transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--dark); }
.form-message { padding: 12px 16px; border-radius: 6px; font-size: 14px; display: none; }
.form-message.success { background: rgba(52,199,89,0.15); color: #34C759; border: 1px solid rgba(52,199,89,0.3); display: block; }
.form-message.error   { background: rgba(255,59,48,0.15);  color: #FF3B30;  border: 1px solid rgba(255,59,48,0.3);  display: block; }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero { background: var(--dark); padding: 52px 6% 40px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 40%; background: radial-gradient(ellipse at 80% 50%, rgba(196,154,42,0.12), transparent); }
.page-hero .eyebrow { color: var(--orange); }
.page-hero h1 { color: white; margin-bottom: 16px; position: relative; z-index: 1; }
.page-hero p  { color: rgba(255,255,255,0.6); max-width: 560px; font-size: 16px; position: relative; z-index: 1; }
.breadcrumb   { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }

/* ── BLOG POST ───────────────────────────────────────────── */
.post-body { max-width: 760px; margin: 0 auto; padding: 48px 6%; }
.post-body h2,h3,h4 { margin: 32px 0 14px; }
.post-body p { margin-bottom: 18px; }
.post-body ul,ol { padding-left: 24px; margin-bottom: 18px; }
.post-body li { margin-bottom: 8px; font-size: 15px; color: var(--slate); line-height: 1.7; }
.post-meta { font-size: 13px; color: var(--mid); margin-bottom: 32px; }
.post-category { display: inline-block; padding: 3px 10px; background: var(--orange-bg); color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border-radius: 4px; margin-bottom: 12px; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: #08121E; padding: 48px 6% 24px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.75; margin-top: 12px; max-width: 260px; }
.footer-tagline { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--orange) !important; margin-top: 16px !important; }
.footer-col h4 { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 18px; font-weight: 600; }
.footer-col a  { display: block; font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 9px; transition: color var(--transition); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p, .footer-bottom a { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ── PRIVACY PAGE ────────────────────────────────────────── */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { font-size: 22px; margin: 36px 0 14px; color: var(--dark); }
.prose p, .prose li { font-size: 15px; color: var(--slate); line-height: 1.8; }
.prose ul { padding-left: 24px; margin-bottom: 16px; }
.prose li { margin-bottom: 6px; }

/* ── UTILITIES ───────────────────────────────────────────── */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-white  { color: white; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.hidden { display: none !important; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { padding: 52px 5% 48px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-panel { display: none; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 28px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .section { padding: 52px 5%; }
  .section-sm { padding: 36px 5%; }
  .page-hero { padding: 44px 5% 32px; }
}

@media (max-width: 768px) {
  .section { padding: 40px 5%; }
  .section-sm { padding: 28px 5%; }
  .page-hero { padding: 36px 5% 28px; }
  .hero { padding: 40px 5% 40px; }
  .hero-stats { gap: 16px; }
  .hero-actions { gap: 10px; }
  .services-grid { grid-template-columns: 1fr; gap: 10px; }
  .service-card { padding: 18px 16px; }
  .work-grid { grid-template-columns: 1fr; gap: 10px; }
  .work-card { padding: 16px 14px; }
  .team-grid { grid-template-columns: 1fr; gap: 14px; margin-bottom: 24px; }
  .team-card-head { padding: 20px 18px 14px; }
  .team-card-body { padding: 14px 18px 16px; }
  .blog-grid { grid-template-columns: 1fr; gap: 12px; }
  .extended-grid { grid-template-columns: 1fr; gap: 8px; }
  .ext-card { padding: 12px 14px; }
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; margin-bottom: 24px; }
  .bee-banner { flex-direction: column; gap: 24px; padding: 32px 5%; }
  .bee-stats { gap: 20px; flex-wrap: wrap; }
  .identity-strip { display: grid; grid-template-columns: repeat(3, 1fr); }
  .strip-cell { border-right: 1px solid rgba(255,255,255,0.15); border-bottom: 1px solid rgba(255,255,255,0.15); padding: 14px 8px; }
  .strip-num { font-size: 26px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: white; padding: 16px 5%; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 10px 0; border-bottom: 1px solid var(--border); display: block; }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-toggle { display: block; }
  .philosophy-inner { gap: 20px; }
  .value-card { padding: 14px 16px; }
  .post-body { padding: 32px 5%; }
  .site-footer { padding: 36px 5% 20px; }
}

/* ── LANDSCAPE PHONE ─────────────────────────────────────── */
@media (max-width: 900px) and (orientation: landscape) {
  .hero { padding: 28px 5%; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(28px, 4vw, 44px); }
  .section { padding: 36px 5%; }
  .section-sm { padding: 24px 5%; }
  .page-hero { padding: 32px 5% 24px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .identity-strip { flex-direction: row; }
  .strip-cell { padding: 12px 8px; }
}
