@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* === Variables === */
:root {
  --navy:        #0F172A;
  --navy-light:  #1E293B;
  --accent:      #F59E0B;
  --accent-dark: #D97706;
  --text:        #1E293B;
  --text-muted:  #64748B;
  --text-light:  #94A3B8;
  --bg:          #F8FAFC;
  --white:       #FFFFFF;
  --border:      #E2E8F0;
  --radius:      0.5rem;
  --radius-lg:   1rem;
  --radius-xl:   1.5rem;
  --shadow:      0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.05);
  --shadow-lg:   0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
  --shadow-xl:   0 20px 25px rgba(0,0,0,.1), 0 10px 10px rgba(0,0,0,.04);
  --t:           200ms ease;
  --container:   1200px;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* === Container === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === Typography === */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }
h4 { font-size: 1.0625rem; }

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  display: block;
  margin-bottom: 0.75rem;
}
.lead { font-size: 1.125rem; color: var(--text-muted); line-height: 1.75; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary { background: var(--accent); color: var(--navy); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { border: 2px solid rgba(255,255,255,.45); color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost {
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--t);
}
.btn-ghost:hover { gap: 0.65rem; }

/* ==============================
   HEADER / NAV
   ============================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.125rem 0;
  transition: padding .3s ease, box-shadow .3s ease;
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.97);
  backdrop-filter: blur(16px);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: -1;
  pointer-events: none;
}
.site-header.scrolled::before {
  opacity: 1;
}
.site-header.scrolled {
  padding: .75rem 0;
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 44px; width: auto; object-fit: contain; }
.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}
.nav-logo-text em { font-style: normal; color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: .9375rem;
  font-weight: 500;
  padding: .5rem .875rem;
  border-radius: var(--radius);
  transition: all var(--t);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,.1); }
.nav-links .nav-cta {
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  margin-left: .5rem;
}
.nav-links .nav-cta:hover { background: var(--accent-dark); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 101;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==============================
   HERO
   ============================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.88) 0%, rgba(15,23,42,.6) 55%, rgba(15,23,42,.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 9rem 0 5rem;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245,158,11,.15);
  border: 1px solid rgba(245,158,11,.3);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 600;
  padding: .375rem 1rem;
  border-radius: 100px;
  letter-spacing: .06em;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 680px;
  font-size: clamp(2.5rem, 6vw, 4rem);
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .lead {
  color: rgba(255,255,255,.72);
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}
.hero-divider {
  width: 60px;
  height: 2px;
  background: rgba(255,255,255,.15);
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
}
.hero-stat-value {
  display: block;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .25rem;
}
.hero-stat-label {
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  background: var(--navy);
  overflow: hidden;
}
.page-hero .hero-bg::after {
  background: linear-gradient(to top, rgba(15,23,42,.9) 0%, rgba(15,23,42,.45) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0 3rem;
  width: 100%;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .75rem;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--t); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: rgba(255,255,255,.25); }
.page-hero h1 { color: var(--white); }
.page-hero .lead { color: rgba(255,255,255,.65); margin-top: .75rem; max-width: 560px; }

/* ==============================
   SECTIONS
   ============================== */
section { padding: 5rem 0; }
.section-bg { background: var(--bg); }
.section-dark { background: var(--navy); }

.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header h2 { margin-bottom: .75rem; }
.section-header .lead { max-width: 580px; }
.section-header.centered .lead { margin: 0 auto; }

/* ==============================
   SERVICE CARDS (Homepage)
   ============================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
  border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.service-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 { margin-bottom: .625rem; }
.service-card-body p { color: var(--text-muted); font-size: .9375rem; flex: 1; margin-bottom: 1.5rem; }

/* ==============================
   ABOUT (Homepage)
   ============================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--accent);
  color: var(--navy);
  font-weight: 800;
  font-size: .9375rem;
  padding: .875rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  line-height: 1.3;
}
.about-text h2 { margin-bottom: 1rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .875rem;
  margin-top: 2rem;
}
.about-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
}
.about-stat-val {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: .3rem;
}
.about-stat-lbl { font-size: .8125rem; color: var(--text-muted); font-weight: 500; }

/* ==============================
   AWARDS STRIP
   ============================== */
.awards-section { padding: 3.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.awards-label { text-align: center; margin-bottom: 2rem; }
.awards-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.awards-logos img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: grayscale(.15);
  opacity: .85;
  transition: all var(--t);
}
.awards-logos img:hover { opacity: 1; filter: none; transform: scale(1.05); }

/* ==============================
   CTA BANNER
   ============================== */
.cta-banner { background: var(--navy); }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.cta-text .lead { color: rgba(255,255,255,.6); max-width: 480px; }
.cta-text h2 { color: var(--white); margin-bottom: .625rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; align-items: center; }
.cta-phone-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.125rem 1.75rem;
  text-align: center;
}
.cta-phone-lbl { font-size: .75rem; color: rgba(255,255,255,.45); display: block; margin-bottom: .2rem; }
.cta-phone-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: .01em;
}
.cta-phone-num a { color: inherit; }

/* ==============================
   HIGHLIGHT BAND
   ============================== */
.highlight-band { background: var(--navy); padding: 4rem 0; text-align: center; }
.highlight-band p {
  color: rgba(255,255,255,.82);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}
.highlight-band p strong { color: var(--accent); font-weight: 700; }

/* ==============================
   GALLERY GRID
   ============================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .875rem 1rem;
  background: linear-gradient(to top, rgba(15,23,42,.85) 0%, transparent 100%);
  color: var(--white);
  font-size: .8125rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform .3s ease;
  z-index: 1;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ==============================
   SERVICE LIST (Domestic/Commercial)
   ============================== */
.services-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem;
}
.svc-item {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.svc-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.svc-icon {
  font-size: 1.125rem;
  flex-shrink: 0;
  display: flex;
}
.svc-item h4 { font-size: .9375rem; font-weight: 600; color: var(--navy); line-height: 1.3; }

/* ==============================
   WIND FARM PROJECT TABLE
   ============================== */
.projects-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.projects-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9375rem;
}
.projects-table thead { background: var(--navy); }
.projects-table thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.projects-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
  cursor: pointer;
}
.projects-table tbody tr.row-active { background: rgba(245,158,11,.1) !important; }
.projects-table tbody tr:last-child { border-bottom: none; }
.projects-table tbody tr:hover { background: var(--bg); }
.projects-table td {
  padding: .8rem 1.25rem;
  color: var(--text);
  vertical-align: middle;
}
.projects-table td:first-child { color: var(--text-light); font-size: .875rem; font-weight: 500; }
.loc-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  padding: .2rem .625rem;
  border-radius: 100px;
  margin-right: .375rem;
}
.loc-au { background: rgba(245,158,11,.12); color: #B45309; }
.loc-intl { background: rgba(59,130,246,.12); color: #1D4ED8; }
.current-tag {
  font-size: .75rem;
  font-weight: 600;
  color: #059669;
  background: rgba(5,150,105,.1);
  padding: .175rem .5rem;
  border-radius: 100px;
  margin-left: .375rem;
}

/* ==============================
   INFO CARDS
   ============================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.info-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: box-shadow var(--t), transform var(--t);
}
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.info-icon {
  margin-bottom: 1rem;
  color: var(--accent-dark);
  display: flex;
}
.info-card h3 { font-size: 1.0625rem; margin-bottom: .5rem; }
.info-card p { color: var(--text-muted); font-size: .9375rem; }

/* ==============================
   CONTACT PAGE
   ============================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-stack { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.contact-card-head {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-bottom: 1rem;
}
.cc-icon {
  flex-shrink: 0;
  color: var(--accent-dark);
  display: flex;
}
.contact-card-head h3 { font-size: 1rem; margin: 0; }
.contact-card p, .contact-card a { color: var(--text-muted); font-size: .9375rem; }
.contact-card a:hover { color: var(--accent-dark); }
.team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  padding: .75rem 0;
  border-top: 1px solid var(--border);
}
.team-row:first-child { border-top: none; padding-top: 0; }
.team-name { font-weight: 600; font-size: .9375rem; color: var(--navy); }
.team-role { font-size: .8125rem; color: var(--text-muted); display: block; }
.team-phone { color: var(--accent-dark); font-weight: 700; font-size: .9375rem; }
.emerg-note { font-size: .75rem; color: var(--text-light); display: block; }
.contact-panel {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 3rem;
  color: var(--white);
  position: sticky;
  top: 5rem;
}
.contact-panel h2 { color: var(--white); margin-bottom: .75rem; }
.contact-panel .lead { color: rgba(255,255,255,.6); margin-bottom: 2.5rem; }
.detail-row {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  align-items: flex-start;
}
.detail-row:last-child { border-bottom: none; padding-bottom: 0; }
.d-icon { flex-shrink: 0; margin-top: .15rem; color: var(--accent); display: flex; }
.d-lbl { font-size: .75rem; color: rgba(255,255,255,.45); margin-bottom: .2rem; display: block; }
.d-val { font-weight: 500; color: var(--white); font-size: .9375rem; }
.d-val a { color: var(--accent); }
.d-val a:hover { color: var(--accent-dark); }

/* ==============================
   ABOUT PAGE
   ============================== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.story-text h2 { margin-bottom: 1rem; }
.story-text p { color: var(--text-muted); margin-bottom: 1rem; }
.story-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.licenses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.lic-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
}
.lic-abbr {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: .375rem;
}
.lic-name { font-size: .8125rem; color: rgba(255,255,255,.55); font-weight: 500; }

/* ==============================
   FOOTER
   ============================== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: 4.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand img { height: 46px; width: auto; margin-bottom: 1.25rem; }
.footer-brand p { font-size: .9375rem; max-width: 270px; line-height: 1.7; color: rgba(255,255,255,.5); }
.footer-col h4 {
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col li { margin-bottom: .625rem; }
.footer-col li a { color: rgba(255,255,255,.5); font-size: .9375rem; transition: color var(--t); }
.footer-col li a:hover { color: var(--accent); }
.f-contact-row {
  display: flex;
  gap: .75rem;
  margin-bottom: .875rem;
  font-size: .9375rem;
  color: rgba(255,255,255,.5);
  align-items: flex-start;
}
.f-contact-row a { color: rgba(255,255,255,.5); transition: color var(--t); }
.f-contact-row a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: .875rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==============================
   SCROLL ANIMATIONS
   ============================== */
[data-anim] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-anim].visible { opacity: 1; transform: none; }
[data-anim-d="1"] { transition-delay: .1s; }
[data-anim-d="2"] { transition-delay: .2s; }
[data-anim-d="3"] { transition-delay: .3s; }
[data-anim-d="4"] { transition-delay: .4s; }
[data-anim-d="5"] { transition-delay: .5s; }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 3rem; }
  .contact-layout { gap: 2.5rem; }
  .licenses-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { gap: 3rem; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

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

  .nav-links {
    display: none;
    position: fixed; inset: 0;
    background: rgba(15,23,42,.98);
    flex-direction: column; align-items: center; justify-content: center;
    gap: .375rem; z-index: 100;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.25rem; padding: .875rem 2rem; width: 220px; text-align: center; border-radius: var(--radius); }
  .nav-links .nav-cta { margin: .5rem 0 0; }
  .nav-toggle { display: flex; }

  .hero-stats { gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { aspect-ratio: 16/9; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .cta-inner { flex-direction: column; }
  .cta-text { text-align: center; }
  .cta-text .lead { margin: 0 auto; }
  .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-panel { position: static; }
  .story-grid { grid-template-columns: 1fr; }
  .story-img { aspect-ratio: 16/9; }
  .licenses-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .projects-table td:nth-child(3),
  .projects-table th:nth-child(3) { display: none; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .services-list-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
}

/* ==============================
   SVG ICONS
   ============================== */
.svc-icon { color: var(--accent-dark); }
.svc-icon svg,
.info-icon svg,
.cc-icon svg { width: 22px; height: 22px; }
.d-icon svg { width: 20px; height: 20px; }
.f-icon { display: flex; align-items: center; flex-shrink: 0; color: rgba(255,255,255,.5); }
.f-icon svg { width: 16px; height: 16px; }
.hero-badge svg { flex-shrink: 0; }

/* ==============================
   WIND FARM MAP
   ============================== */
#wind-farm-map {
  height: 540px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  z-index: 0;
  position: relative;
}
.leaflet-popup-content-wrapper {
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-lg) !important;
  font-family: var(--font) !important;
}
.leaflet-popup-content { margin: .875rem 1rem !important; }
.map-legend {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding: .875rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.legend-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--text-muted);
  font-weight: 500;
}
.legend-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.2);
}

/* ==============================
   CONTACT FORM
   ============================== */
.contact-form-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: sticky;
  top: 5rem;
}
.contact-form-panel h2 { margin-bottom: .5rem; font-size: clamp(1.375rem, 2.5vw, 1.75rem); }
.contact-form-panel .lead { margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.125rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.125rem; }
.form-group { display: flex; flex-direction: column; gap: .375rem; }
.form-label { font-size: .875rem; font-weight: 600; color: var(--navy); }
.form-req { color: var(--accent-dark); margin-left: .125rem; }
.form-input,
.form-select,
.form-textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .9375rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,158,11,.12);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-light); }
.form-textarea { resize: vertical; min-height: 128px; line-height: 1.65; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.turnstile-wrap { margin-top: .25rem; }

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-panel { padding: 1.5rem; position: static; }
}

/* ==============================
   GOOGLE MAPS EMBED
   ============================== */
.maps-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 2.5rem;
}
.maps-wrap iframe { display: block; width: 100%; }
