/* ===== BASE ===== */
:root {
  --green: #354d40;
  --green-light: #4f6f52;
  --green-dark: #1f2a23;
  --bg: #f6f6f4;
  --white: #ffffff;
  --black: #171717;
  --gray: #6b6b6b;
  --border: #e1e1dd;
  --accent: #000000;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--bg);
  color: var(--black);
  line-height: 1.6;
}

/* ===== GLOBAL ===== */
.section-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 64px 0;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--gray);
  max-width: 580px;
}

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

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

/* ===== HEADER / NAV ===== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  background: linear-gradient(135deg, #101710, #050807);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.main-header.scrolled .nav-wrapper {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  background: #050807;
}

.nav-bar {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #f5f5f5;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-main {
  font-size: 1.3rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

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

.logo-sub {
  font-size: 0.78rem;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--green-light);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--green-light);
  color: var(--white);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #f5f5f5;
  font-size: 1.3rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  background: radial-gradient(circle at top left, #dce9dd 0, #f6f6f4 40%, #f6f6f4 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.hero-content h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero-text {
  font-size: 0.98rem;
  max-width: 540px;
  margin-bottom: 16px;
}

.hero-bullets {
  margin-bottom: 18px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.hero-bullets i {
  color: var(--green-light);
  font-size: 0.9rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.btn-primary,
.btn-secondary {
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--green);
  color: #f5f5f5;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.04);
  text-decoration: none;
  transform: translateY(-1px);
}

.hero-note {
  font-size: 0.82rem;
  color: var(--gray);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.metric {
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  min-width: 120px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.metric:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.metric-number {
  font-size: 1.1rem;
  font-weight: 600;
}

.metric-label {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
}

/* HERO VISUAL */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-card {
  background: radial-gradient(circle at top left, #1f2a23, #0c120f);
  color: #f5f5f5;
  border-radius: 20px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-card-main {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.hero-card-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-card-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-card-main p {
  font-size: 0.85rem;
  opacity: 0.9;
}

.hero-card-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: var(--black);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.hero-card-secondary i {
  font-size: 1.3rem;
  color: var(--green-light);
}

.hero-card-secondary-title {
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-card-secondary-text {
  font-size: 0.83rem;
  color: var(--gray);
}

.hero-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.45);
}

/* ===== DIFFERENTIALS ===== */
.differentials {
  background: var(--white);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.diff-card {
  background: #fcfcfb;
  border-radius: 16px;
  padding: 16px 16px 14px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
  font-size: 0.93rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.diff-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(53, 77, 64, 0.08);
  color: var(--green);
  margin-bottom: 10px;
}

.diff-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.diff-card p {
  font-size: 0.9rem;
  color: var(--gray);
}

.diff-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
  border-color: rgba(79, 111, 82, 0.55);
}

/* ===== SERVICES ===== */
.services {
  background: var(--bg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.04);
  font-size: 0.94rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(79, 111, 82, 0.08);
  color: var(--green);
  margin-bottom: 8px;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 10px;
}

.service-card ul {
  list-style: disc;
  padding-left: 18px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.service-card li + li {
  margin-top: 4px;
}

.service-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
}

.service-cta:hover {
  text-decoration: underline;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.12);
  border-color: rgba(79, 111, 82, 0.6);
}

/* ===== ABOUT ===== */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.about-text p {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.about-kicker {
  font-weight: 600;
  margin-bottom: 10px;
}

.about-text ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.about-text li + li {
  margin-top: 4px;
}

.about-signature {
  margin-top: 4px;
  font-size: 0.95rem;
}

.about-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-metrics {
  display: flex;
  gap: 10px;
}

.about-metric {
  flex: 1;
  background: #fcfcfb;
  border-radius: 14px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.about-number {
  font-size: 1.1rem;
  font-weight: 600;
}

.about-label {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
}

.about-metric:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: rgba(79, 111, 82, 0.45);
}

.about-card {
  background: #fcfcfb;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  font-size: 0.94rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-card h3 {
  margin-bottom: 8px;
}

.about-card ul {
  list-style: disc;
  padding-left: 20px;
  margin: 8px 0;
}

.about-card li + li {
  margin-top: 4px;
}

.about-note {
  font-size: 0.85rem;
  color: var(--gray);
}

.about-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.about-map-placeholder {
  border-radius: 16px;
  padding: 12px 14px;
  background: radial-gradient(circle at top left, #d4dfd6, #b5c3b9);
  color: #1f261f;
  font-size: 0.88rem;
}

.map-title {
  font-weight: 600;
  display: block;
}

.map-subtitle {
  font-size: 0.8rem;
}

/* ===== QUOTE / FORM ===== */
.quote {
  background: #f0f0ea;
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
  gap: 24px;
  align-items: flex-start;
}

.quote-text p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.quote-bullets {
  list-style: disc;
  padding-left: 18px;
  font-size: 0.95rem;
}

.quote-bullets li + li {
  margin-top: 4px;
}

.quote-alt {
  margin-top: 12px;
  font-size: 0.9rem;
}

.quote-note {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 6px;
}

.quote-form {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quote-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
}

input,
select,
textarea {
  border-radius: 8px;
  border: 1px solid #d0d0ca;
  padding: 9px 10px;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border 0.15s, box-shadow 0.15s, background 0.15s;
  background: #fbfbf9;
}

textarea {
  resize: vertical;
  min-height: 90px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 2px rgba(79, 111, 82, 0.16);
  background: #ffffff;
}

.btn-full {
  width: 100%;
  margin-top: 6px;
}

.form-feedback {
  margin-top: 6px;
  font-size: 0.82rem;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: flex-start;
}

.contact-item {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.contact-item i {
  font-size: 1.1rem;
  color: var(--green);
  margin-top: 2px;
}

.contact-label {
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-note {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
}

.contact-note-box {
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  font-size: 0.94rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-note-box ul {
  list-style: disc;
  padding-left: 20px;
  margin: 8px 0;
}

.contact-note-box li + li {
  margin-top: 4px;
}

.contact-note-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #111111;
  color: #e9e9e9;
  padding: 24px 0;
  font-size: 0.84rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  }

  .diff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .quote-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-side {
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: #050807;
    padding: 10px 20px 12px;
    flex-direction: column;
    gap: 10px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }

  .service-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row {
    flex-direction: column;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-padding {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.1rem;
  }

  .section-title {
    font-size: 1.7rem;
  }
}

/* === REFINED HERO LOOK === */
body {
  background-color: #f2f1ec;
}

.hero {
  background: radial-gradient(circle at top left, #c8d7cb 0, #edf0ea 45%, #f5f3ee 100%);
}

.hero.section-padding {
  padding-top: 80px;
  padding-bottom: 72px;
}

.hero-text {
  line-height: 1.7;
}

.hero-photo-placeholder {
  width: 100%;
  min-height: 260px;
  border-radius: 24px;
  background: radial-gradient(circle at top, #2b4334 0, #101713 52%, #060908 100%);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.45);
}

/* === EVERCLEAN REFINEMENTS (LOGO + SPACING + LESS WHITE) === */

body {
  background-color: #eae7df;
}

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

.main-header {
  background: radial-gradient(circle at top, #111611 0, #050807 60%);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: row;
}

.logo-image {
  height: 40px;
  width: auto;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.differentials {
  background: #fdfcf9;
}

.services {
  background: #f1efe8;
}

.about {
  background: #fbfaf6;
}

.quote {
  background: #e7e3d8;
}

.contact {
  background: #f5f3ec;
}

.section-inner {
  padding-inline: 24px;
}

.hero-grid {
  gap: 40px;
}

.hero-metrics {
  gap: 18px;
}

.service-card,
.diff-card,
.quote-form,
.contact-note-box,
.about-card {
  border-radius: 20px;
}
