/* ==========================================================
   Planet Agritech — Main Stylesheet
   ========================================================== */

/* Google Fonts are enqueued via functions.php */

:root {
  --green-deep:  #1a3a1f;
  --green-mid:   #2d6a35;
  --green-leaf:  #4a9455;
  --green-light: #7ec87d;
  --green-mist:  #e8f4e8;
  --gold:        #c8a84b;
  --gold-light:  #f0dfa0;
  --cream:       #faf8f2;
  --warm-white:  #f5f3ec;
  --dark:        #111a12;
  --gray:        #6b7b6c;
  --border:      rgba(74,148,85,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  font-weight: 300;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: .4;
}

/* Typography */
h1, h2, h3, .serif { font-family: 'Cormorant Garamond', serif; }
a { text-decoration: none; }

/* ==========================================================
   NAVIGATION
   ========================================================== */
.pag-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 5vw;
  background: rgba(250,248,242,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.pag-nav.scrolled { background: rgba(250,248,242,0.97); }

.nav-logo {
  display: flex; align-items: center; gap: 0.7rem; text-decoration: none;
}
.nav-logo svg { width: 36px; height: 36px; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 600; color: var(--green-deep); line-height: 1.1;
}
.nav-logo-text span {
  display: block; font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.15em; color: var(--green-mid); text-transform: uppercase;
}

/* WordPress nav menu override */
.pag-nav .nav-links {
  display: flex; gap: 2.5rem; list-style: none; align-items: center;
}
.pag-nav .nav-links li { position: relative; }
.pag-nav .nav-links a {
  font-size: 0.82rem; letter-spacing: 0.06em; color: var(--green-deep);
  font-weight: 400; transition: color 0.2s;
}
.pag-nav .nav-links a:hover,
.pag-nav .nav-links .current-menu-item > a { color: var(--green-leaf); }

/* Dropdown */
.pag-nav .nav-links .sub-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid var(--border);
  min-width: 200px; padding: 0.5rem 0; list-style: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.pag-nav .nav-links li:hover > .sub-menu { display: block; }
.pag-nav .nav-links .sub-menu a {
  display: block; padding: 0.55rem 1.2rem;
  font-size: 0.8rem; color: var(--dark);
}
.pag-nav .nav-links .sub-menu a:hover { color: var(--green-leaf); }

.nav-cta {
  background: var(--green-deep); color: #fff;
  border: none; padding: 0.55rem 1.4rem; font-size: 0.8rem;
  letter-spacing: 0.08em; cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-weight: 400; transition: background 0.2s;
}
.nav-cta:hover { background: var(--green-mid); }

/* Mobile hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--green-deep);
  transition: all 0.3s;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; top: 72px;
  background: rgba(250,248,242,0.97); backdrop-filter: blur(18px);
  z-index: 499; padding: 2rem 5vw; flex-direction: column; gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.2rem; color: var(--green-deep); font-family: 'Cormorant Garamond', serif; font-weight: 400; }

/* ==========================================================
   HERO
   ========================================================== */
.pag-hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  padding: 0 5vw; padding-top: 90px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 55%, #dff0df 100%);
}
.hero-bg-ring {
  position: absolute; right: -8vw; top: 50%; transform: translateY(-50%);
  width: 65vw; height: 65vw; max-width: 820px; max-height: 820px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, rgba(126,200,125,0.22) 0%, rgba(45,106,53,0.10) 55%, transparent 75%);
  animation: slowSpin 40s linear infinite;
}
.hero-bg-ring::after {
  content: ''; position: absolute; inset: 12%;
  border-radius: 50%; border: 1px solid rgba(74,148,85,0.15);
}
@keyframes slowSpin { to { transform: translateY(-50%) rotate(360deg); } }

.hero-content { position: relative; z-index: 2; padding-right: 4vw; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green-mid); margin-bottom: 1.8rem; font-weight: 500;
}
.hero-tag::before { content: ''; display: block; width: 28px; height: 1px; background: var(--green-leaf); }
.pag-hero h1 {
  font-size: clamp(3rem, 5.5vw, 5.5rem); font-weight: 300; line-height: 1.05;
  color: var(--green-deep); margin-bottom: 1.5rem;
}
.pag-hero h1 em { font-style: italic; color: var(--green-leaf); }
.hero-lead {
  font-size: 1.05rem; line-height: 1.75; color: var(--gray);
  max-width: 480px; margin-bottom: 2.8rem; font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual { position: relative; z-index: 2; display: flex; justify-content: center; align-items: center; }
.hero-logo-large {
  width: clamp(260px, 38vw, 480px); height: clamp(260px, 38vw, 480px);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.hero-logo-large svg { width: 100%; height: 100%; }
.hero-logo-ring {
  position: absolute; inset: -16px; border-radius: 50%;
  border: 1px solid rgba(74,148,85,0.2); animation: pulse 4s ease-in-out infinite;
}
.hero-logo-ring-2 {
  position: absolute; inset: -38px; border-radius: 50%;
  border: 1px solid rgba(74,148,85,0.1); animation: pulse 4s ease-in-out infinite 0.8s;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn-primary {
  background: var(--green-deep); color: #fff;
  padding: 0.85rem 2.2rem; font-size: 0.83rem; letter-spacing: 0.08em;
  display: inline-block; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s; font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); color: #fff; }

.btn-outline {
  border: 1px solid var(--green-mid); color: var(--green-mid);
  padding: 0.85rem 2.2rem; font-size: 0.83rem; letter-spacing: 0.08em;
  display: inline-block; background: transparent;
  transition: all 0.2s; font-family: 'DM Sans', sans-serif;
}
.btn-outline:hover { background: var(--green-mid); color: #fff; }

/* ==========================================================
   MISSION STRIP
   ========================================================== */
.mission-strip {
  background: var(--green-deep); color: rgba(255,255,255,0.9);
  padding: 4.5rem 5vw;
  display: grid; grid-template-columns: 1fr 2px 1fr 2px 1fr;
  gap: 0; align-items: start;
}
.mission-divider { background: rgba(255,255,255,0.12); }
.mission-item { padding: 0 4vw; }
.mission-item:first-child { padding-left: 0; }
.mission-item:last-child { padding-right: 0; }
.mission-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300; color: var(--green-light);
  line-height: 1; margin-bottom: 0.6rem;
}
.mission-item h3 {
  font-size: 1.15rem; font-weight: 600; margin-bottom: 0.6rem;
  color: #fff; font-family: 'Cormorant Garamond', serif;
}
.mission-item p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.62); font-weight: 300; }

/* ==========================================================
   SECTIONS — SHARED
   ========================================================== */
.pag-section { padding: 7rem 5vw; }

.section-tag {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green-mid); font-weight: 500; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-tag::before { content: ''; width: 22px; height: 1px; background: var(--green-leaf); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300; line-height: 1.1; color: var(--green-deep); margin-bottom: 1.4rem;
}
.section-title em { font-style: italic; color: var(--green-leaf); }

.section-lead {
  font-size: 1rem; line-height: 1.8; color: var(--gray);
  max-width: 600px; font-weight: 300;
}

/* ==========================================================
   ABOUT
   ========================================================== */
.pag-about { background: var(--warm-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: center; }
.about-body { font-size: 0.95rem; line-height: 1.85; color: var(--gray); margin-top: 2rem; font-weight: 300; }
.about-body p + p { margin-top: 1rem; }
.about-values { margin-top: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.value-chip { border: 1px solid var(--border); padding: 1rem 1.2rem; background: #fff; }
.value-chip strong { display: block; font-size: 0.82rem; color: var(--green-deep); font-weight: 500; margin-bottom: 0.25rem; letter-spacing: 0.03em; }
.value-chip span { font-size: 0.78rem; color: var(--gray); line-height: 1.5; }
.about-visual {
  position: relative;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  padding: 4rem 3rem; color: #fff; min-height: 480px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.about-visual::before {
  content: ''; position: absolute; top: 2rem; right: 2rem; left: 2rem; bottom: 2rem;
  border: 1px solid rgba(255,255,255,0.12); pointer-events: none;
}
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.about-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 300; color: var(--green-light); line-height: 1;
}
.about-stat .label { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 0.3rem; line-height: 1.4; }
.about-visual-tag { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 2.5rem; }

/* ==========================================================
   SERVICES
   ========================================================== */
.pag-services { background: var(--cream); }
.services-header { max-width: 700px; margin-bottom: 4rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: var(--border); }
.service-card {
  background: var(--cream); padding: 2.8rem 2.2rem;
  transition: background 0.25s; position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--green-leaf); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { background: #fff; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { width: 48px; height: 48px; margin-bottom: 1.5rem; color: var(--green-leaf); }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 600; color: var(--green-deep);
  margin-bottom: 0.8rem; line-height: 1.2;
}
.service-card p { font-size: 0.87rem; line-height: 1.75; color: var(--gray); font-weight: 300; }
.service-card .learn-more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-mid); margin-top: 1.4rem; font-weight: 500; transition: gap 0.2s;
}
.service-card:hover .learn-more { gap: 0.7rem; }
.service-card-dark { background: var(--green-deep) !important; }
.service-card-dark h3 { color: #fff; }
.service-card-dark p { color: rgba(255,255,255,0.6); }
.service-card-dark .service-icon { color: var(--green-light); }
.service-card-dark .learn-more { color: var(--green-light); }
.service-card-dark::after { background: var(--green-light); }

/* ==========================================================
   SUSTAINABILITY
   ========================================================== */
.pag-sustainability {
  background: var(--green-deep); color: #fff; position: relative; overflow: hidden;
  padding: 7rem 5vw;
}
.sust-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(74,148,85,0.25) 0%, transparent 65%); }
.sust-inner { position: relative; z-index: 2; }
.sust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: center; }
.sust-content .section-tag { color: var(--green-light); }
.sust-content .section-tag::before { background: var(--green-light); }
.sust-content .section-title { color: #fff; }
.sust-content .section-lead { color: rgba(255,255,255,0.65); max-width: 520px; }
.sust-pillars { margin-top: 3rem; display: flex; flex-direction: column; gap: 1px; background: rgba(255,255,255,0.08); }
.sust-pillar {
  background: rgba(255,255,255,0.03); padding: 1.3rem 1.8rem;
  display: flex; gap: 1.2rem; align-items: flex-start; transition: background 0.2s;
}
.sust-pillar:hover { background: rgba(255,255,255,0.07); }
.sust-pillar-num {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem;
  color: var(--green-light); font-weight: 300; line-height: 1; min-width: 28px; padding-top: 2px;
}
.sust-pillar h4 { font-size: 0.9rem; color: #fff; font-weight: 500; margin-bottom: 0.3rem; }
.sust-pillar p { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.6; font-weight: 300; }
.sust-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.08); }
.sust-metric { background: rgba(255,255,255,0.04); padding: 2.5rem 2rem; display: flex; flex-direction: column; gap: 0.4rem; }
.sust-metric .big { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: var(--green-light); line-height: 1; }
.sust-metric .label { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.4; font-weight: 300; }

/* ==========================================================
   TEAM
   ========================================================== */
.pag-team { background: var(--warm-white); }
.team-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; align-items: end; margin-bottom: 4rem; }
.team-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5px; background: var(--border); }
.team-card { background: #fff; padding: 2.5rem 2rem; }
.team-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: #fff;
  font-weight: 300; margin-bottom: 1.2rem;
}
.team-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--green-deep); margin-bottom: 0.2rem; }
.team-card .role { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-mid); font-weight: 500; margin-bottom: 0.8rem; }
.team-card p { font-size: 0.83rem; line-height: 1.7; color: var(--gray); font-weight: 300; }
.team-contact { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.3rem; }
.team-contact a { font-size: 0.78rem; color: var(--green-mid); display: flex; align-items: center; gap: 0.4rem; }
.team-contact a:hover { color: var(--green-deep); }

/* ==========================================================
   CALLOUT
   ========================================================== */
.pag-callout {
  background: var(--green-mist);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 6rem 5vw; text-align: center;
}
.callout-inner { max-width: 720px; margin: 0 auto; }
.callout-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,3.5vw,3.2rem); font-weight: 300; color: var(--green-deep); margin-bottom: 1rem; }
.callout-inner p { font-size: 0.95rem; color: var(--gray); line-height: 1.8; margin-bottom: 2.5rem; font-weight: 300; }
.callout-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ==========================================================
   CONTACT
   ========================================================== */
.pag-contact { background: var(--cream); padding: 7rem 5vw; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: start; }
.contact-block { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.4rem; }
.contact-row { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { color: var(--green-leaf); margin-top: 2px; flex-shrink: 0; }
.contact-row strong { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-mid); font-weight: 500; margin-bottom: 0.25rem; }
.contact-row p, .contact-row a { font-size: 0.9rem; color: var(--gray); line-height: 1.5; font-weight: 300; }
.contact-row a:hover { color: var(--green-mid); }

/* WordPress contact form / CF7 overrides */
.wpcf7-form .form-group { margin-bottom: 1.2rem; }
.wpcf7-form label,
.contact-form .form-label {
  display: block; font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green-mid); font-weight: 500; margin-bottom: 0.5rem;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select,
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; border: 1px solid var(--border);
  background: #fff; padding: 0.8rem 1rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
  color: var(--dark); outline: none; transition: border-color 0.2s;
  font-weight: 300; border-radius: 0; appearance: none;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--green-leaf); }
.wpcf7-form textarea, .contact-form textarea { resize: vertical; min-height: 120px; }
.wpcf7-submit, .contact-form .btn-submit {
  width: 100%; background: var(--green-deep); color: #fff; border: none;
  padding: 1rem; font-size: 0.85rem; letter-spacing: 0.1em; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-weight: 400; transition: background 0.2s;
}
.wpcf7-submit:hover, .contact-form .btn-submit:hover { background: var(--green-mid); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.wpcf7-not-valid-tip { font-size: 0.75rem; color: #c0392b; margin-top: 0.3rem; }
.wpcf7-response-output { font-size: 0.82rem; margin-top: 1rem; padding: 0.8rem 1rem; border: 1px solid var(--border); }

/* ==========================================================
   FOOTER
   ========================================================== */
.pag-footer { background: var(--green-deep); color: rgba(255,255,255,0.7); padding: 4rem 5vw 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4vw; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.83rem; line-height: 1.75; color: rgba(255,255,255,0.5); margin-top: 1rem; font-weight: 300; max-width: 280px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 0.6rem; }
.footer-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: #fff; font-weight: 600; }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); font-weight: 500; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a, .pag-footer .footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.83rem; transition: color 0.2s; font-weight: 300; }
.footer-col ul a:hover { color: var(--green-light); }
/* WP footer menu override */
.footer-col .menu { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col .menu a { color: rgba(255,255,255,0.55); font-size: 0.83rem; transition: color 0.2s; font-weight: 300; }
.footer-col .menu a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.8rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.76rem; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ==========================================================
   SCROLL ANIMATIONS
   ========================================================== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ==========================================================
   WORDPRESS CORE CLASSES
   ========================================================== */
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.78rem; color: var(--gray); margin-top: 0.4rem; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; }

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

@media (max-width: 768px) {
  .pag-hero { grid-template-columns: 1fr; padding-top: 110px; }
  .hero-visual { display: none; }
  .about-grid, .sust-grid, .contact-grid, .team-intro { grid-template-columns: 1fr; }
  .mission-strip { grid-template-columns: 1fr; }
  .mission-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pag-nav .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .about-visual { min-height: 320px; }
  .sust-visual { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
