/* ===== GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
}

body {
  background: #f3f5f0;
  color: #1f2933;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.nx-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nx-container {
  width: 92%;
  max-width: 1160px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.nx-header {
  background: #fdfdf9;
  border-bottom: 1px solid rgba(15,23,42,0.06);
  position: sticky;
  top: 0;
  z-index: 40;
}

.nx-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
}

/* Logo */
.nx-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nx-logo-mark {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0,#a3e635,#22c55e 50%,#15803d 100%);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
}

.nx-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nx-logo-main {
  text-transform: lowercase;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: #123023;
}

.nx-logo-sub {
  font-size: 10px;
  color: #6b7280;
}

/* Nav */
.nx-nav {
  display: flex;
  gap: 16px;
  font-size: 13px;
}

.nx-nav a {
  color: #4b5563;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nx-nav a:hover,
.nx-nav a.active {
  color: #166534;
  border-bottom-color: #22c55e;
}

/* Header contact */
.nx-header-contact {
  font-size: 13px;
  color: #123023;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nx-header-contact a {
  color: inherit;
  text-decoration: none;
}

/* Burger */
.nx-burger {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nx-burger span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: #123023;
  margin-bottom: 4px;
}

/* Mobile menu */
.nx-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 230px;
  height: 100vh;
  background: #fdfdf9;
  border-left: 1px solid rgba(15,23,42,0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 72px;
  padding-left: 24px;
  transition: right 0.3s ease;
  z-index: 100;
}

.nx-mobile-menu a {
  text-decoration: none;
  color: #123023;
  font-size: 14px;
}

.nx-mobile-menu.open {
  right: 0;
}

/* ===== MAIN ===== */
.nx-main {
  flex: 1;
  padding: 18px 0 20px;
}

/* ===== HERO ===== */
.nx-hero {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  margin: 0 auto 18px;
}

.nx-hero-bg img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.nx-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,23,42,0.75), rgba(15,23,42,0.1));
}

.nx-hero-inner {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0,1.5fr) minmax(0,1.1fr);
  gap: 24px;
  align-items: center;
}

/* Hero left */
.nx-hero-text {
  color: #f9fafb;
  max-width: 620px;
}

.nx-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #bbf7d0;
}

.nx-hero-text h1 {
  font-size: 28px;
  line-height: 1.25;
  margin-top: 6px;
}

.nx-hero-desc {
  margin-top: 10px;
  font-size: 13px;
  color: #e5e7eb;
}

.nx-hero-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nx-hero-meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #e5e7eb;
}

.nx-hero-meta i {
  margin-right: 4px;
}

/* Hero right card */
.nx-hero-panel {
  display: flex;
  justify-content: flex-end;
}

.nx-hero-card {
  background: rgba(252,254,252,0.96);
  border-radius: 18px;
  padding: 14px 14px 16px;
  min-width: 240px;
  max-width: 280px;
  border: 1px solid rgba(209,250,229,0.9);
  box-shadow: 0 18px 40px rgba(15,23,42,0.38);
  color: #1f2933;
}

.nx-hero-card h2 {
  font-size: 16px;
  margin-bottom: 8px;
}

.nx-hero-card ul {
  list-style: none;
  font-size: 13px;
  color: #4b5563;
}

.nx-hero-card li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 6px;
}

.nx-hero-card i {
  color: #16a34a;
  margin-top: 3px;
}

/* ===== BUTTONS ===== */
.nx-btn {
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
}

.nx-btn-primary {
  background: #22c55e;
  color: #052e16;
  border-color: #16a34a;
  box-shadow: 0 10px 26px rgba(34,197,94,0.36);
}

.nx-btn-primary:hover {
  background: #16a34a;
  border-color: #15803d;
  transform: translateY(-1px);
}

.nx-btn-outline {
  background: transparent;
  color: #f9fafb;
  border-color: rgba(226,232,240,0.5);
}

.nx-btn-outline:hover {
  background: rgba(15,23,42,0.3);
}

/* Pills */
.nx-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #dcfce7;
  color: #14532d;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ===== SECTIONS ===== */
.nx-section {
  margin-bottom: 18px;
}

.nx-section-head {
  margin-bottom: 10px;
}

.nx-section-head h2 {
  font-size: 18px;
  margin-bottom: 4px;
  color: #123023;
}

.nx-section-head p {
  font-size: 13px;
  color: #4b5563;
}

/* Grid 3 */
.nx-grid-3 {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 14px;
}

.nx-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.5);
  padding: 12px 12px 14px;
  font-size: 13px;
  color: #4b5563;
}

.nx-card h3 {
  font-size: 15px;
  margin-bottom: 4px;
  color: #123023;
}

.nx-icon {
  font-size: 30px;
  color: #16a34a;
  margin-bottom: 8px;
}

/* Split */
.nx-split {
  display: grid;
  grid-template-columns: minmax(0,1.4fr) minmax(0,1.1fr);
  gap: 18px;
}

.nx-split-left h2 {
  font-size: 18px;
  margin: 4px 0;
  color: #123023;
}

.nx-split-left p {
  font-size: 13px;
  color: #4b5563;
}

.nx-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #15803d;
}

.nx-list {
  margin-left: 18px;
  margin-top: 4px;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.8;
}

/* Photo box */
.nx-photo-box {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,0.6);
  max-height: 230px;
}

.nx-photo-box img {
  width: 100%;
  height: 100%;
}

/* Link */
.nx-link {
  display: inline-flex;
  margin-top: 8px;
  font-size: 13px;
  color: #166534;
  text-decoration: none;
}

.nx-link:hover {
  text-decoration: underline;
}

/* ===== GALLERY BAND ===== */
.nx-gallery-band {
  background: #ecfdf3;
  padding: 18px 0 20px;
  margin-bottom: 10px;
}

.nx-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0,1.6fr) minmax(0,1fr);
  gap: 14px;
}

.nx-gallery-item {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.6);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.nx-gallery-large {
  grid-row: span 2;
}

.nx-gallery-img {
  max-height: 190px;
  overflow: hidden;
}

.nx-gallery-body {
  padding: 10px 12px 12px;
  font-size: 13px;
  color: #4b5563;
}

.nx-gallery-body h3 {
  font-size: 15px;
  margin-top: 6px;
  margin-bottom: 4px;
  color: #123023;
}

/* ===== STEPS ===== */
.nx-steps {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 14px;
}

.nx-step {
  background: #ffffff;
  border-radius: 18px;
  border: 1px dashed rgba(148,163,184,0.7);
  padding: 12px 12px 14px;
  font-size: 13px;
  color: #4b5563;
}

.nx-step h3 {
  font-size: 15px;
  margin-bottom: 4px;
  color: #123023;
}

.nx-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #dcfce7;
  color: #14532d;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
}

/* ===== PAGE HEAD ===== */
.nx-page-head {
  margin-bottom: 10px;
}

.nx-page-head h1 {
  font-size: 20px;
  margin-bottom: 4px;
  color: #123023;
}

.nx-page-head p {
  font-size: 13px;
  color: #4b5563;
}

/* ===== SERVICES GRID ===== */
.nx-services-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 14px;
}

.nx-service-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.7);
  padding: 12px 12px 14px;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.8;
}

.nx-service-card h2 {
  font-size: 16px;
  margin-top: 4px;
  margin-bottom: 4px;
  color: #123023;
}

/* ===== DIRECTIONS GRID ===== */
.nx-directions-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 14px;
}

.nx-direction-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.7);
  padding: 12px 12px 14px;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.8;
}

.nx-direction-card h2 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #123023;
}

/* ===== NOTE BOX ===== */
.nx-note-box {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.7);
  padding: 12px 12px 14px;
  font-size: 13px;
  color: #4b5563;
}

/* ===== ABOUT GRID ===== */
.nx-about-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
}

.nx-about-col h2 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #123023;
}

.nx-about-col p,
.nx-about-col li {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.8;
}

/* ===== CONTACT LAYOUT ===== */
.nx-contact-layout {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1.1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.nx-contact-panel {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.7);
  padding: 12px 12px 14px;
  font-size: 13px;
  color: #4b5563;
}

.nx-contact-panel p {
  margin-bottom: 4px;
}

.nx-contact-note {
  margin-top: 6px;
  margin-bottom: 10px;
}

.nx-contact-panel form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nx-contact-panel label {
  font-size: 12px;
  color: #123023;
}

.nx-contact-panel input,
.nx-contact-panel textarea {
  font-size: 13px;
  padding: 7px 9px;
  border-radius: 10px;
  border: 1px solid rgba(148,163,184,0.9);
  background: #f9fafb;
  color: #123023;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.nx-contact-panel textarea {
  resize: vertical;
  min-height: 110px;
}

.nx-contact-panel input:focus,
.nx-contact-panel textarea:focus {
  border-color: #22c55e;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(34,197,94,0.25);
}

.nx-map-panel {
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
  border: 1px solid rgba(148,163,184,0.7);
}

/* ===== CONTACT STRIP ===== */
.nx-contact-strip {
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.7);
  background: #ffffff;
  padding: 11px 12px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.nx-contact-left h2 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #123023;
}

.nx-contact-left p {
  font-size: 13px;
  color: #4b5563;
}

.nx-contact-right {
  text-align: right;
  font-size: 13px;
}

.nx-contact-right p {
  margin-bottom: 4px;
  color: #4b5563;
}

.nx-contact-right i {
  margin-right: 4px;
}

/* ===== POLICY PAGES ===== */
.nx-page-simple {
  flex-direction: column;
}

.nx-main-simple {
  padding: 20px 0 20px;
}

.nx-policy-card {
  max-width: 820px;
  margin: 18px auto 16px;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.7);
  background: #ffffff;
  padding: 16px 18px 18px;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.8;
}

.nx-policy-card h1 {
  font-size: 20px;
  margin-bottom: 4px;
  color: #123023;
}

.nx-policy-card h2 {
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 4px;
  color: #123023;
}

.nx-policy-card ul {
  margin-left: 18px;
}

/* ===== FOOTER ===== */
.nx-footer {
  border-top: 1px solid rgba(148,163,184,0.7);
  padding: 10px 0 14px;
  font-size: 11px;
  color: #6b7280;
  background: #fdfdf9;
}

.nx-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nx-footer-links a {
  color: #4b5563;
  text-decoration: none;
  margin-left: 10px;
  font-size: 11px;
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 320px;
  z-index: 120;
}

.cookie-box {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,0.7);
  padding: 10px 12px;
  font-size: 12px;
  color: #123023;
  box-shadow: 0 18px 40px rgba(15,23,42,0.2);
}

.cookie-box button {
  margin-top: 8px;
  width: 100%;
  padding: 7px;
  border-radius: 999px;
  border: none;
  background: #22c55e;
  color: #052e16;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

/* ===== REVEAL ANIMATION ===== */
.nx-reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.nx-reveal.nx-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nx-nav {
    display: none;
  }

  .nx-burger {
    display: block;
  }

  .nx-hero-inner {
    grid-template-columns: minmax(0,1fr);
    align-items: flex-end;
    padding-top: 40px;
    padding-bottom: 14px;
  }

  .nx-hero-panel {
    justify-content: flex-start;
  }

  .nx-grid-3,
  .nx-services-grid,
  .nx-directions-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .nx-gallery-grid {
    grid-template-columns: minmax(0,1fr);
  }

  .nx-steps {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .nx-split {
    grid-template-columns: minmax(0,1fr);
  }

  .nx-about-grid {
    grid-template-columns: minmax(0,1fr);
  }

  .nx-contact-layout {
    grid-template-columns: minmax(0,1fr);
  }

  .nx-contact-right {
    text-align: left;
  }

  .nx-footer-inner {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 640px) {
  .nx-container {
    width: 94%;
  }

  .nx-hero-inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .nx-hero-text h1 {
    font-size: 22px;
  }

  .nx-hero-desc,
  .nx-section-head p {
    font-size: 12px;
  }

  .nx-grid-3,
  .nx-services-grid,
  .nx-directions-grid,
  .nx-gallery-grid,
  .nx-steps {
    grid-template-columns: minmax(0,1fr);
  }

  #cookie-banner {
    right: 10px;
    left: 10px;
    max-width: none;
  }
}
