/* ============================================================
   PACE ASSAM – Faithful Recreation
   Fonts: Outfit (body) + Amita (decorative) via Google Fonts
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Amita:wght@400;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --primary:       #3e8f75;
  --primary-dark:  #2a6b55;
  --heading:       #2a493d;
  --heading-alt:   #407d69;
  --body-text:     #47504d;
  --yellow:        #f9da22;
  --btn2-bg:       #f2e59b;
  --nav-bg:        #70a277;
  --footer-bg:     #fafafa;
  --section-bg:    #f7f6f2;
  --white:         #ffffff;
  --dark:          #131216;
  --font-body:     'Outfit', sans-serif;
  --font-display:  'Amita', serif;
  --radius-pill:   33px;
  --transition:    all 0.3s ease-in-out;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--body-text);
  background: var(--white);
  line-height: 1.888;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; display: inline-block; transition: var(--transition); }
a:hover, a:focus { text-decoration: none; outline: none; }

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

button { border: none; background: transparent; cursor: pointer; padding: 0; }

input, textarea, select {
  font-family: var(--font-body);
  outline: none;
  box-shadow: none;
  transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--heading);
  line-height: 1.12;
}

p { line-height: 1.888; }

ul { list-style: none; padding-left: 0; margin-bottom: 0; }

/* ============================================================
   LAYOUT
   ============================================================ */
.section-inner {
  max-width: 1200px;
  padding-left: 95px;
  padding-right: 95px;
  margin-left: auto;
  margin-right: auto;
}

section { padding: 100px 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  background: var(--nav-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 95px;
  min-height: 80px;
  max-width: 1800px;
  margin: 0 auto;
}

/* ---- Logo placeholder ---- */
.navbar-brand { display: flex; align-items: center; }

.navbar-logo {
  height: 54px;
  width: auto;
  display: block;
}

.navbar-brand .brand-text { display: none; }

/* ---- Nav links ---- */
.navbar-nav {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
  margin: 0;
}

.navbar-nav a {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  padding: 28px 23px;
  transition: color 0.2s ease-in-out;
}

.navbar-nav a:hover,
.navbar-nav a.active { color: var(--yellow); }

/* The Hive outlined nav button */
.navbar-nav .nav-hive-btn {
  margin-left: 12px;
  padding: 8px 22px;
  border: 2px solid var(--white);
  border-radius: var(--radius-pill);
  font-weight: 500;
  line-height: 1.4;
  color: var(--white);
  transition: var(--transition);
}
.navbar-nav .nav-hive-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--heading);
}

/* ---- Hamburger ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO BANNER
   ============================================================ */
.hero {
  background: var(--white);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  padding: 0 95px;
  margin: 0 auto;
}

/* Logo in hero */
.hero-logo-img {
  height: 78px;
  width: auto;
  display: block;
  margin-bottom: 30px;
}

.hero-content {
  flex: 1;
  max-width: 580px;
}

.hero-content h1 {
  font-size: 37px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 35px;
}

.hero-image {
  flex: 0 0 326px;
}

.hero-image img {
  width: 326px;
  border-radius: 4px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
/* btn-one: solid green pill */
.btn {
  display: inline-block;
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  line-height: 65px;
  border-radius: var(--radius-pill);
  padding: 0 57px;
  min-width: 170px;
  text-align: center;
  background: var(--primary);
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.btn:hover {
  background: var(--yellow);
  color: var(--heading);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* btn-two: bordered yellow pill */
.btn-outline {
  display: inline-block;
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--dark);
  text-transform: uppercase;
  line-height: 58px;
  border: 1px solid #000;
  border-radius: var(--radius-pill);
  background: var(--btn2-bg);
  padding: 0 50px;
  min-width: 170px;
  text-align: center;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--yellow);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  color: var(--heading);
}

/* Legacy alias */
.btn-solid { background: var(--primary); color: var(--white); }
.btn-solid:hover { background: var(--yellow); color: var(--heading); }

/* ============================================================
   SECTION TITLE
   ============================================================ */
.section-label,
.upper-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-alt);
  margin-bottom: 10px;
  display: block;
}

h2 {
  font-size: 60px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.07;
  margin-bottom: 24px;
}

h3 {
  font-size: 30px;
  font-weight: 500;
  color: var(--heading);
  margin-bottom: 20px;
}

p {
  color: var(--body-text);
  font-size: 18px;
}

/* ============================================================
   ABOUT SECTION (HOME) – feature-block-two
   ============================================================ */
.about-section {
  padding: 100px 0 80px;
}

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

.about-text > p {
  font-size: 18px;
  color: var(--body-text);
  margin-bottom: 30px;
}

/* Media image placeholder */
.media-bg {
  background-color: #e0ebe5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px;
  min-height: 278px;
  width: 100%;
  margin-top: 50px;
}

.about-image img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.about-text .more-link,
.hive-text .more-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  text-transform: uppercase;
  line-height: 58px;
  border: 1px solid #000;
  border-radius: var(--radius-pill);
  background: var(--btn2-bg);
  padding: 0 50px;
  min-width: 170px;
  text-align: center;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.about-text .more-link:hover,
.hive-text .more-link:hover {
  background: var(--yellow);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  color: var(--heading);
}

/* ============================================================
   HIVE SECTION (HOME) – feature-block-three
   ============================================================ */
.hive-section {
  padding: 100px 0;
}

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

.hive-section h2 { color: var(--heading); }
.hive-section h3 { color: var(--heading); }
.hive-section p  { color: var(--body-text); }

.hive-image .media-bg {
  margin-top: 0;
  min-height: 320px;
}

.hive-image img { border-radius: 4px; width: 100%; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--footer-bg);
  color: #000;
  padding: 60px 0 0;
}

.footer-inner {
  max-width: 1200px;
  padding: 0 95px;
  margin: 0 auto;
}

/* Slogan bar above footer grid (the footer-top was dark, now matches original #fafafa) */
.footer-top {
  display: none; /* original site uses logo + tagline inside footer grid, not a separate colored bar */
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.8fr;
  gap: 40px;
  padding: 0 0 30px;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 20px;
  display: block;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li {
  font-size: 16px;
  color: var(--body-text);
}

.footer-col ul li a {
  font-size: 16px;
  color: var(--body-text);
  transition: color 0.2s;
}

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

.footer-col p {
  font-size: 16px;
  color: var(--body-text);
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--body-text);
  font-size: 16px;
}

.footer-col a:hover { color: var(--primary); }

/* Footer logo */
.footer-brand-logo {
  height: 54px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 0;
  margin-top: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom span,
.footer-bottom p { color: #000; margin: 0; font-size: 15px; }

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--body-text);
  font-size: 15px;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--primary); }

/* ============================================================
   PAGE BANNER
   ============================================================ */
.page-banner {
  background: var(--white);
  padding: 80px 0;
}

.page-banner h1 {
  font-size: 72px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 10px;
  line-height: 1.07;
}

.page-banner p {
  color: var(--body-text);
  font-size: 18px;
  max-width: 600px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.vision-section {
  background: var(--section-bg);
  padding: 80px 0;
}

.vision-section > .section-inner > p {
  font-size: 18px;
  color: var(--body-text);
  margin-bottom: 14px;
}

.vision-list {
  margin: 24px 0 0;
}

.vision-list li {
  padding: 12px 0 12px 28px;
  position: relative;
  color: var(--body-text);
  font-size: 18px;
  border-bottom: 1px solid rgba(42,73,61,0.12);
}

.vision-list li:last-child { border-bottom: none; }

.vision-list li::before {
  content: '•';
  position: absolute;
  left: 6px;
  color: var(--primary);
  font-size: 1.3rem;
  line-height: 1.5;
}

.trustees-section {
  padding: 80px 0 100px;
  background: var(--white);
}

.trustees-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

.sub-section-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: 60px;
  margin-bottom: 0;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(42,73,61,0.15);
}

.trustee-card {
  border: 1px solid rgba(42,73,61,0.12);
  border-radius: 8px;
  background: var(--white);
  transition: box-shadow 0.3s;
  padding: 36px 44px;
}

.trustee-card:hover { box-shadow: 0 8px 30px rgba(42,73,61,0.12); }

.trustee-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  border: 3px solid rgba(42,73,61,0.15);
  margin-bottom: 16px;
}

.trustee-card-body { padding: 0; }

.trustee-card-body h4 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 16px;
}

.trustee-card-body p {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 12px;
}

.trustee-card-body p:last-child { margin-bottom: 0; }

.trustee-hidden { display: none; }

.read-more-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  background: transparent;
  border: 2px solid var(--primary-dark);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.read-more-btn:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* ============================================================
   SLIDESHOW
   ============================================================ */
.slideshow-wrap {
  position: relative;
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  background: #000;
}

.slideshow { position: relative; width: 100%; }

.slide {
  display: none;
  width: 100%;
}

.slide.active { display: block; }

.slide img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Prev / Next buttons */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.slide-btn:hover { background: rgba(0,0,0,0.72); }
.slide-prev { left: 16px; }
.slide-next { right: 16px; }

/* Dots */
.slide-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.slide-dot.active { background: #fff; }

/* ============================================================
   OUR WORK PAGE
   ============================================================ */
.work-intro {
  background: var(--section-bg);
  padding: 80px 0;
}

.work-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.work-item {
  background: var(--white);
  border: 1px solid rgba(42,73,61,0.12);
  border-left: 4px solid var(--primary);
  padding: 32px;
  border-radius: 2px;
}

.work-item .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--btn2-bg);
  -webkit-text-stroke: 2px var(--heading-alt);
  line-height: 1;
  margin-bottom: 10px;
}

.work-item h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 10px;
}

.work-item p { font-size: 16px; color: var(--body-text); }

.focus-section {
  padding: 80px 0;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.focus-card {
  background: var(--section-bg);
  border-radius: 4px;
  border-top: 3px solid var(--primary);
  padding: 28px;
}

.focus-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 14px;
}

.focus-card ul { display: flex; flex-direction: column; }

.focus-card ul li {
  color: var(--body-text);
  font-size: 16px;
  padding: 6px 0 6px 18px;
  position: relative;
}

.focus-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.projects-section {
  background: var(--section-bg);
  padding: 80px 0 100px;
}

.project-card {
  background: var(--white);
  border: 1px solid rgba(42,73,61,0.12);
  border-radius: 4px;
  padding: 44px;
  margin-bottom: 32px;
}

.project-card h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 18px;
}

.project-card > p {
  font-size: 18px;
  color: var(--body-text);
  margin-bottom: 14px;
}

.project-card ul { margin-top: 14px; }

.project-card ul li {
  font-size: 16px;
  color: var(--body-text);
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px solid rgba(42,73,61,0.08);
}

.project-card ul li:last-child { border-bottom: none; }

.project-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.2rem;
}

/* ============================================================
   PRIVACY & TERMS PAGE
   ============================================================ */
.privacy-section {
  padding: 60px 0 100px;
  background: var(--white);
}

.privacy-content h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--heading);
  margin-top: 48px;
  margin-bottom: 20px;
}

.privacy-content h2:first-child { margin-top: 0; }

.privacy-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-alt);
  margin-top: 28px;
  margin-bottom: 8px;
}

.privacy-content p {
  font-size: 17px;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 4px;
}

.privacy-content a {
  color: var(--primary);
  text-decoration: underline;
}

.privacy-divider {
  border: none;
  border-top: 1px solid rgba(42,73,61,0.15);
  margin: 56px 0 48px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  background: var(--white);
  padding: 80px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}

.contact-info {
  background: var(--section-bg);
  border-radius: 4px;
  padding: 44px;
}

.contact-info h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(42,73,61,0.12);
}

.contact-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.contact-detail-icon i {
  font-size: 18px;
}

.contact-detail-text h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 4px;
}

.contact-detail-text p,
.contact-detail-text a {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.6;
  margin: 0;
}

.contact-detail-text a:hover { color: var(--primary); }

.contact-form {
  background: var(--white);
  border: 1px solid rgba(42,73,61,0.12);
  border-radius: 4px;
  padding: 44px;
}

.contact-form h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 32px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--heading);
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(42,73,61,0.2);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--body-text);
  background: var(--section-bg);
  transition: border-color 0.25s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
}

.form-group textarea { height: 130px; resize: vertical; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- Tablets / narrow desktops ---- */
@media (max-width: 1100px) {
  .section-inner,
  .navbar-inner,
  .hero-inner,
  .footer-inner { padding-left: 40px; padding-right: 40px; }

  h2 { font-size: 48px; }
  h3 { font-size: 26px; }
  .page-banner h1 { font-size: 52px; }
}

/* ---- Tablets portrait ---- */
@media (max-width: 900px) {
  .section-inner { padding: 0 24px; }
  .navbar-inner  { padding: 0 24px; }
  .footer-inner  { padding-left: 24px; padding-right: 24px; }
  .hero-inner    { padding: 0 24px; }

  /* Override all section-specific vertical paddings */
  section,
  .about-section,
  .hive-section,
  .vision-section,
  .trustees-section,
  .work-intro,
  .projects-section,
  .contact-section,
  .privacy-section { padding: 60px 0; }
  .page-banner { padding: 50px 0; }
  footer { padding-top: 40px; }

  /* Typography */
  h2 { font-size: 36px; }
  h3 { font-size: 22px; }
  .page-banner h1 { font-size: 42px; }

  /* Mobile nav */
  .navbar { position: relative; }
  .navbar-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 999;
  }
  .navbar-nav.open { display: flex; }
  .navbar-nav a { padding: 14px 20px; border-top: 1px solid rgba(255,255,255,0.08); }
  /* Reset pill style for hive btn inside stacked menu */
  .navbar-nav .nav-hive-btn {
    margin-left: 0;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 14px 20px;
  }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 48px 0 60px; }
  .hero-inner { flex-direction: column; gap: 32px; }
  .hero-image { flex: none; width: 100%; }
  .hero-image img { width: 100% !important; height: auto; border-radius: 8px; }
  .hero-content { max-width: 100%; }
  .hero-content h1 { font-size: 26px; }
  .hero-logo-img { height: 60px; margin-bottom: 20px; }

  /* Hive – image below button on mobile */
  .hive-grid { display: flex; flex-direction: column; }
  .hive-text  { order: 1; }
  .hive-image { order: 2; }

  /* About – image below button on mobile, remove desktop offset margin */
  .about-grid { display: flex; flex-direction: column; }
  .about-text { order: 1; }
  .about-grid > .about-image { order: 2; }
  .about-grid .media-bg { margin-top: 0; min-height: 260px; }

  /* Layouts */
  .about-grid,
  .hive-grid,
  .work-intro-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .focus-grid { grid-template-columns: 1fr 1fr; }

  /* Cards */
  .trustee-card { padding: 28px; }

  /* Buttons */
  .about-text .more-link,
  .hive-text .more-link { padding: 0 32px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- Mobile phones ---- */
@media (max-width: 600px) {
  .section-inner { padding: 0 16px; }
  .navbar-inner  { padding: 0 16px; }
  .footer-inner  { padding-left: 16px; padding-right: 16px; }

  /* Sections */
  section,
  .about-section,
  .hive-section,
  .vision-section,
  .trustees-section,
  .work-intro,
  .projects-section,
  .contact-section,
  .privacy-section { padding: 44px 0; }
  .page-banner { padding: 36px 0; }

  /* Typography */
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  p  { font-size: 16px; }
  .page-banner h1 { font-size: 30px; }
  .hero-content h1 { font-size: 21px; }
  .upper-title { font-size: 16px; }
  .hero-logo-img { height: 52px; }

  /* Grids */
  .focus-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* Buttons – full width on small screens */
  .btn, .btn-outline {
    width: 100%;
    padding: 0 24px;
    min-width: 0;
    line-height: 52px;
    font-size: 15px;
  }
  .about-text .more-link,
  .hive-text .more-link {
    width: 100%;
    padding: 0 24px;
    min-width: 0;
    line-height: 52px;
    font-size: 15px;
  }

  /* Cards */
  .trustee-card  { padding: 20px; }
  .project-card  { padding: 20px; }
  .contact-info  { padding: 20px; }
  .contact-form  { padding: 20px; }
  .work-item     { padding: 20px; }

  /* Contact details */
  .contact-detail { gap: 12px; margin-bottom: 20px; padding-bottom: 20px; }
  .contact-detail-icon { width: 40px; height: 40px; }
  .contact-detail-icon i { font-size: 16px; }

  /* Privacy */
  .privacy-content h2 { font-size: 24px; }
  .privacy-content h3 { font-size: 17px; }
}

/* ---- Very small phones ---- */
@media (max-width: 400px) {
  .section-inner { padding: 0 12px; }
  .navbar-inner  { padding: 0 12px; }
  h2 { font-size: 22px; }
  .page-banner h1 { font-size: 26px; }
  .hero-content h1 { font-size: 19px; }
}