/*
Theme Name: Cloud Workshop
Theme URI: https://thecloudworkshop.uk
Author: The Cloud Workshop Studio
Author URI: https://thecloudworkshop.uk
Description: A custom theme for The Cloud Workshop Studio – where cloud technology meets creativity and community.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cloudworkshop
Tags: dark, one-column, custom-colors, custom-menu, featured-images, full-width-template
*/

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

:root {
  --bg-deep:       #060c1a;
  --bg-primary:    #0d1528;
  --bg-card:       #111e38;
  --bg-card-hover: #162344;
  --accent-blue:   #00b4d8;
  --accent-cyan:   #48cae4;
  --accent-purple: #7b2fff;
  --accent-glow:   rgba(0, 180, 216, 0.18);
  --text-white:    #ffffff;
  --text-muted:    #9ab0cc;
  --text-dim:      #5d7a99;
  --border:        rgba(0, 180, 216, 0.25);
  --border-strong: rgba(0, 180, 216, 0.5);
  --gradient-hero: linear-gradient(135deg, #060c1a 0%, #0d1e3d 50%, #060c1a 100%);
  --gradient-accent: linear-gradient(90deg, #00b4d8, #7b2fff);
  --font-heading: 'Rajdhani', 'Orbitron', 'Exo 2', sans-serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, sans-serif;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow-card:  0 4px 30px rgba(0, 0, 0, 0.5);
  --shadow-glow:  0 0 30px rgba(0, 180, 216, 0.25);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; color: var(--text-muted); }

a { color: var(--accent-blue); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--accent-cyan); }

strong { color: var(--text-white); font-weight: 700; }

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

ul { list-style: none; }

/* =============================================
   LAYOUT UTILITIES
============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section-dark { background: var(--bg-primary); }
.section-deeper { background: var(--bg-deep); }
.section-card { background: var(--bg-card); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: rgba(0, 180, 216, 0.12);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.section-title {
  color: var(--text-white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 50px;
}

.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 180, 216, 0.35);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 180, 216, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--accent-blue);
  border: 2px solid var(--border-strong);
}
.btn-outline:hover {
  background: var(--accent-glow);
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
}

/* =============================================
   HEADER / NAVIGATION
============================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6, 12, 26, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 1px;
  line-height: 1;
}

.logo-text .tagline {
  font-size: 0.68rem;
  color: var(--accent-blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 3px;
}

/* Constrain custom logo image */
.site-logo img,
.custom-logo-link img,
.custom-logo {
  height: 46px !important;
  width: auto !important;
  max-width: 180px !important;
  display: block;
}

/* Ensure header never overflows */
#site-header {
  overflow: hidden;
}

#primary-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

#primary-nav ul li a {
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.25s;
}

#primary-nav ul li a:hover,
#primary-nav ul li.current-menu-item a {
  color: var(--accent-blue);
  background: rgba(0, 180, 216, 0.1);
}

.nav-cta .btn { padding: 9px 22px; font-size: 0.8rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   HERO SECTION
============================================= */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}

.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #00b4d8, transparent);
  top: -200px; right: -100px;
}

.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #7b2fff, transparent);
  bottom: -150px; left: -100px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 180, 216, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 180, 216, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 24px;
  color: var(--text-white);
}

.hero-title .line-blue { color: var(--accent-blue); }

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll .arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--accent-blue);
  border-bottom: 2px solid var(--accent-blue);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   MISSION SECTION
============================================= */
#mission {
  padding: 90px 0;
  background: var(--bg-primary);
  position: relative;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-visual {
  position: relative;
}

.mission-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-accent);
}

.mission-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.mission-quote {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.4;
  margin-bottom: 20px;
}

.mission-quote .highlight { color: var(--accent-blue); }

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.pillar-item {
  background: rgba(0, 180, 216, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: all 0.3s;
}

.pillar-item:hover {
  background: rgba(0, 180, 216, 0.12);
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.pillar-icon { font-size: 1.5rem; margin-bottom: 10px; }

.pillar-item h4 {
  font-size: 0.9rem;
  color: var(--text-white);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.pillar-item p {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin: 0;
}

/* =============================================
   WHAT WE DO
============================================= */
#what-we-do {
  padding: 90px 0;
  background: var(--bg-deep);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 60px; height: 60px;
  background: var(--accent-glow);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--text-white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* =============================================
   TEAM / MENTORS
============================================= */
#team {
  padding: 90px 0;
  background: var(--bg-primary);
  position: relative;
}

#team::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 180, 216, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 180, 216, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s ease;
  position: relative;
}

.team-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 180, 216, 0.15);
}

.team-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--bg-deep);
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.team-card:hover .team-img-wrap img { transform: scale(1.06); }

.team-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,12,26,0.95) 0%, rgba(6,12,26,0.2) 60%, transparent 100%);
}

.team-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gradient-accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.team-info {
  padding: 24px;
}

.team-info h3 {
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.82rem;
  color: var(--accent-blue);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.team-company {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.team-tag {
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.team-bio {
  font-size: 0.83rem;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.6;
}

/* =============================================
   COMMUNITY / EXPLORE
============================================= */
#community {
  padding: 90px 0;
  background: var(--bg-deep);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 50px;
}

.community-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.community-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.comm-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.community-card h3 {
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 10px;
}

.community-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.comm-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-blue);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: gap 0.2s;
}

.community-card:hover .comm-link { gap: 10px; }

/* =============================================
   CTA SECTION
============================================= */
#cta {
  padding: 90px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.cta-orbs { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}
.cta-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #7b2fff, transparent);
  top: -100px; left: -100px;
}
.cta-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #00b4d8, transparent);
  bottom: -100px; right: -100px;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-inner h2 {
  margin-bottom: 18px;
}

.cta-inner p {
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.cta-social {
  margin-top: 50px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
}

.social-link:hover {
  background: var(--accent-glow);
  border-color: var(--border-strong);
  color: var(--accent-cyan);
  transform: translateY(-2px);
}

.social-icon { font-size: 1rem; }

/* =============================================
   FOOTER
============================================= */
#colophon {
  background: #030710;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand .site-logo { margin-bottom: 18px; }

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 38px; height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--accent-glow);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-dim);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--accent-blue); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
  gap: 14px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin: 0;
}

.footer-nonprofit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-blue);
}

/* =============================================
   DIVIDER / DECORATION
============================================= */
.divider {
  height: 1px;
  background: var(--gradient-accent);
  opacity: 0.3;
  margin: 0;
}

.accent-bar {
  width: 60px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
  margin: 0 auto 30px;
}

.accent-bar-left {
  margin: 0 0 30px;
}

/* =============================================
   WORDPRESS DEFAULTS
============================================= */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-dim); margin-top: 8px; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin: 0 20px 20px 0; }
.alignright { float: right; margin: 0 0 20px 20px; }

/* Entry content styles for pages/posts */
.entry-content {
  padding: 90px 0;
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
  color: var(--text-white);
  margin-bottom: 16px;
  margin-top: 32px;
}

.entry-content p { color: var(--text-muted); }

.entry-content ul, .entry-content ol {
  color: var(--text-muted);
  padding-left: 24px;
  margin-bottom: 1rem;
}

.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }

/* Page header */
.page-header {
  padding: 120px 0 60px;
  background: var(--bg-primary);
  text-align: center;
}

.page-header h1 { color: var(--text-white); }
.page-header p { color: var(--text-muted); margin-top: 12px; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  #primary-nav {
    display: none;
    position: fixed;
    inset: 72px 0 0;
    background: rgba(6, 12, 26, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 30px 24px;
  }

  #primary-nav.open { display: flex; flex-direction: column; }
  #primary-nav ul { flex-direction: column; gap: 4px; }
  #primary-nav ul li a { display: block; padding: 14px 18px; font-size: 1rem; }

  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .hero-content { max-width: 100%; }
  .hero-stats { gap: 24px; }

  .pillars-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-title { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}
