:root {
  --primary: #0f1f2e;
  --primary-light: #1a3a52;
  --green: #16a34a;
  --green-dark: #15803d;
  --green-light: #f0fdf4;
  --orange: #ea580c;
  --orange-dark: #c2410c;
  --text: #111827;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-off: #f9fafb;
  --border: #e5e7eb;
  --radius: 8px;
  --radius-lg: 14px;
  --header-h: 68px;
  --shadow: 0 2px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1rem;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 900;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}

.nav-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo span { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav-links a,
.nav-links button {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  border: none;
  background: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  text-decoration: none;
  font-family: inherit;
}

.nav-links a:hover,
.nav-links button:hover,
.nav-links a.active {
  background: var(--green-light);
  color: var(--green-dark);
}

.nav-links a.active { font-weight: 600; }

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  padding: 0.4rem;
  z-index: 100;
}

.nav-dropdown.open .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: 0.875rem;
  color: var(--text);
  border-radius: 6px;
  transition: background 0.15s;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: var(--green-light);
  color: var(--green-dark);
}

.nav-dropdown-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-dropdown.open .nav-dropdown-arrow { transform: rotate(180deg); }

.nav-cta {
  flex-shrink: 0;
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border-radius: var(--radius);
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--bg);
  z-index: 800;
  padding: 1rem 1.25rem;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}

.mobile-overlay.open { display: block; }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-links a,
.mobile-nav-links span {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: background 0.15s;
}

.mobile-nav-links a:hover { background: var(--green-light); color: var(--green-dark); }
.mobile-nav-links a.active { background: var(--green-light); color: var(--green-dark); font-weight: 600; }

.mobile-nav-group { margin-left: 0.75rem; }

.mobile-nav-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.75rem 1rem 0.25rem;
}

.mobile-nav-divider {
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0;
}

.mobile-cta-wrap {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

main { padding-top: var(--header-h); }

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--primary);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 1.25rem 4rem;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(22,163,74,.15);
  border: 1px solid rgba(22,163,74,.3);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero h1 span { color: var(--green); }

.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  max-width: 580px;
  margin: 0 auto 2.25rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-outline,
.btn-dark,
.btn-green,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.22s ease;
  min-height: 44px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--orange);
  color: #ffffff;
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #ffffff;
  color: #ffffff;
}

.btn-dark {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.btn-dark:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: #ffffff;
}

.btn-green {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
}

.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #ffffff;
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: var(--bg-off);
  color: var(--primary);
  border-color: #d1d5db;
}

.info-strip {
  background: var(--primary);
  color: #fff;
  padding: 2.5rem 0;
}

.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.info-strip-item {}

.info-strip-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.info-strip-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,.75);
}

section { padding: 4.5rem 0; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 2.5rem;
}

.services-section { background: var(--bg-off); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--green);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--green-dark);
}

.service-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-dark);
  transition: gap 0.2s;
}

.service-card-link:hover { gap: 0.6rem; }

.feature-section { overflow: hidden; }
.feature-section.alt { background: var(--bg-off); }

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-row.rev { direction: rtl; }
.feature-row.rev > * { direction: ltr; }

.feature-text {}

.feature-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.feature-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.feature-text .feature-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.feature-list-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.feature-list-item-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green);
}

.feature-list-item-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-list-item p {
  font-size: 0.9rem;
  color: var(--text);
  margin: 0;
}

.cta-band {
  background: var(--primary);
  padding: 4rem 0;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta-band-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-section { background: var(--green-light); }

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.social-card {
  background: var(--bg);
  border: 1px solid rgba(22,163,74,.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
}

.social-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.social-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-dark);
}

.social-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-card-text h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.social-card-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.contact-section { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.contact-detail:hover { color: var(--green-dark); }

.contact-detail svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.location-box {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--green-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--green);
}

.location-box-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}

.location-box p {
  font-size: 0.9rem;
  color: var(--text);
  margin: 0;
}

.contact-form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.form-row { margin-bottom: 1.1rem; }

.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,.12);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 2rem;
  background: var(--orange);
  color: #ffffff;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.22s, border-color 0.22s;
  min-height: 48px;
  letter-spacing: 0.02em;
}

.form-submit:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
}

.form-honey { display: none !important; }

.msg-ok {
  background: #dcfce7;
  color: #14532d;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.msg-err {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.page-header {
  background: var(--primary);
  padding: 4rem 0 3.5rem;
}

.page-header-inner {
  max-width: 740px;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
}

.page-breadcrumb a { color: rgba(255,255,255,.55); transition: color 0.2s; }
.page-breadcrumb a:hover { color: #fff; }

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.page-header h1 span { color: var(--green); }

.page-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 620px;
}

.article-section { background: var(--bg); }

.article-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.article-wrap h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: var(--primary);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.02em;
}

.article-wrap h2:first-child { margin-top: 0; }

.article-wrap h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin: 1.75rem 0 0.6rem;
}

.article-wrap p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.article-wrap ul {
  margin: 0.75rem 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.article-wrap ul li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.article-wrap ul li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 0.55em;
}

.article-wrap ul li strong { color: var(--text); }

.article-highlight {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.article-highlight p {
  color: var(--text);
  margin: 0;
  font-size: 0.95rem;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.feat-item {
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.feat-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.feat-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.feat-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.booking-note {
  background: var(--primary);
  color: rgba(255,255,255,.85);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 2.5rem 0;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.booking-note-icon { font-size: 1.75rem; flex-shrink: 0; }

.booking-note-text {
  font-size: 0.95rem;
  line-height: 1.7;
}

.booking-note-text a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2.5rem 0;
}

.article-cta-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  align-self: center;
}

.faq-wrap { max-width: 800px; margin: 0 auto; padding-top: 1.5rem; }

.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.1rem 0;
  background: none;
  border: none;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  gap: 1rem;
}

.faq-q-icon {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--green);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item.open .faq-q-icon { transform: rotate(45deg); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-a { max-height: 600px; }

.faq-a-inner {
  padding-bottom: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.wiki-box {
  background: var(--green-light);
  border: 1px solid rgba(22,163,74,.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 2rem 0;
}

.wiki-box p {
  font-size: 0.9rem;
  color: var(--text);
  margin: 0;
  line-height: 1.7;
}

.wiki-box a {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.link-green {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.link-green:hover { color: var(--green); }

footer {
  background: var(--primary);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.footer-logo span { color: var(--green); }

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.7);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 1.25rem;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom span {
  font-size: 0.8rem;
  color: rgba(255,255,255,.45);
}

.footer-legal {
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
}

.footer-legal a {
  color: rgba(255,255,255,.6);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-legal a:hover { color: #fff; }

.r {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.r.in {
  opacity: 1;
  transform: none;
}

.rd2 { transition-delay: 0.12s; }
.rd3 { transition-delay: 0.22s; }

@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .info-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row.rev { direction: ltr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .service-features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .info-strip-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .service-features { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-band-btns { flex-direction: column; align-items: center; }
  .article-cta { flex-direction: column; }
}
