/* Variant 2 — Modern & Approachable
   Warm cream + sage accent, soft cards, generous whitespace */

:root {
  --cream: #f7f3ed;
  --cream-deep: #efe9df;
  --paper: #ffffff;
  --ink: #2c2825;
  --ink-soft: #58524d;
  --muted: #8a847e;
  --line: #e6dfd2;
  --sage: #7a9b76;
  --sage-deep: #5d7a59;
  --terra: #c97c5d;
  --gold: #d4a45c;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-deep); text-decoration: none; }
a:hover { color: var(--terra); }

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
h3 { font-size: 1.3rem; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 760px; margin: 0 auto; padding: 0 28px; }

/* Header */
.site-header {
  background: rgba(247, 243, 237, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
}
.nav-brand { display: flex; align-items: center; }
.nav-brand img { height: 38px; max-width: min(70vw, 320px); object-fit: contain; }
.nav-links {
  display: flex; gap: 36px; list-style: none; align-items: center;
}
.nav-links a {
  font-weight: 500; font-size: 0.96rem; color: var(--ink);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--sage-deep); }
.nav-links a.active { color: var(--sage-deep); }
.nav-cta {
  background: var(--ink); color: var(--cream) !important;
  padding: 11px 22px; border-radius: 999px;
  font-weight: 600; font-size: 0.92rem;
}
.nav-cta:hover { background: var(--sage-deep); color: var(--paper) !important; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--ink); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; font-weight: 600; font-size: 1rem;
  border-radius: 999px; border: 0; cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary { background: var(--ink); color: var(--cream) !important; }
.btn-primary:hover { background: var(--sage-deep); transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(0,0,0,0.25); }
.btn-secondary {
  background: transparent; color: var(--ink) !important;
  border: 1.5px solid var(--ink); padding: 14.5px 28.5px;
}
.btn-secondary:hover { background: var(--ink); color: var(--cream) !important; }
.btn-arrow::after { content: '→'; transition: transform 0.2s; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* Hero */
.hero {
  padding: 80px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%; background: radial-gradient(circle, rgba(122, 155, 118, 0.18), transparent 65%);
  top: -120px; right: -120px;
  z-index: 0;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: center;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--paper); padding: 8px 18px; border-radius: 999px;
  font-size: 0.83rem; font-weight: 600; color: var(--sage-deep);
  border: 1px solid var(--line); margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--sage);
}
.hero h1 { margin-bottom: 26px; }
.hero h1 .accent { color: var(--sage-deep); font-style: italic; font-weight: 600; }
.hero p.lede {
  font-size: 1.18rem; color: var(--ink-soft); margin-bottom: 36px; max-width: 540px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image-wrap {
  position: relative;
}
.hero-image-wrap img {
  width: 100%; border-radius: 32px;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.3);
}
.hero-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--paper); padding: 18px 22px;
  border-radius: 18px;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.18);
  display: flex; align-items: center; gap: 14px;
}
.hero-badge-num {
  font-size: 1.8rem; font-weight: 800; color: var(--sage-deep);
  line-height: 1;
}
.hero-badge-text {
  font-size: 0.85rem; color: var(--ink-soft); line-height: 1.3;
}

/* Sections */
section { padding: 100px 0; position: relative; }
section.alt { background: var(--paper); }
.section-head { max-width: 720px; margin: 0 auto 70px; text-align: center; }
.section-eyebrow {
  display: inline-block; font-size: 0.82rem; font-weight: 600;
  color: var(--sage-deep); text-transform: uppercase; letter-spacing: 0.18em;
  margin-bottom: 16px;
}
.section-head p { color: var(--ink-soft); font-size: 1.1rem; margin-top: 18px; }

/* Value cards */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card {
  background: var(--paper); border-radius: 24px; padding: 40px 34px;
  border: 1px solid var(--line);
  transition: transform 0.25s, box-shadow 0.25s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -25px rgba(0,0,0,0.18); }
.value-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 24px;
}
.value-card:nth-child(1) .value-icon { background: rgba(122, 155, 118, 0.15); color: var(--sage-deep); }
.value-card:nth-child(2) .value-icon { background: rgba(201, 124, 93, 0.15); color: var(--terra); }
.value-card:nth-child(3) .value-icon { background: rgba(212, 164, 92, 0.18); color: var(--gold); }
.value-card h3 { margin-bottom: 12px; }
.value-card p { color: var(--ink-soft); font-size: 1rem; }

/* Service tags */
.services-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  list-style: none; max-width: 920px; margin: 0 auto;
}
.services-list li {
  background: var(--paper); padding: 18px 22px; border-radius: 14px;
  border: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px; font-weight: 500;
  font-size: 0.97rem;
}
.services-list li::before {
  content: '✓'; display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--sage); color: var(--paper); font-size: 0.75rem; font-weight: 700;
  flex-shrink: 0;
}

/* Quote block */
.quote-block {
  background: var(--ink); color: var(--cream);
  padding: 110px 0; position: relative; overflow: hidden;
}
.quote-block::before {
  content: ''; position: absolute; right: -100px; bottom: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 155, 118, 0.4), transparent 60%);
}
.quote-block blockquote {
  font-size: clamp(1.5rem, 3.2vw, 2.4rem); font-weight: 600;
  line-height: 1.35; max-width: 920px; margin: 0 auto;
  text-align: center; letter-spacing: -0.01em;
  position: relative;
}
.quote-block blockquote .em { color: #a8c4a4; font-style: italic; font-weight: 500; }
.quote-block .cite {
  display: block; margin-top: 32px;
  font-size: 0.88rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); font-weight: 600;
}

/* CTA band */
.cta-band {
  padding: 100px 0; text-align: center;
  background: linear-gradient(135deg, rgba(122, 155, 118, 0.1), rgba(201, 124, 93, 0.08));
}
.cta-band h2 { margin-bottom: 18px; }
.cta-band p { color: var(--ink-soft); margin-bottom: 36px; font-size: 1.1rem; }

/* Industries */
.industries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 920px; margin: 0 auto; }
.industry-tag {
  background: var(--cream); border-radius: 18px;
  padding: 24px; text-align: center;
  border: 1px solid var(--line);
}
.industry-tag strong { display: block; color: var(--ink); font-size: 1.05rem; margin-bottom: 4px; }
.industry-tag span { color: var(--ink-soft); font-size: 0.9rem; }

/* Service detail cards */
.service-detail {
  background: var(--paper); border-radius: 24px;
  padding: 40px; margin-bottom: 24px;
  border: 1px solid var(--line);
}
.service-detail h3 {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.service-detail h3::before {
  content: ''; width: 44px; height: 44px; border-radius: 14px;
  background: rgba(122, 155, 118, 0.15);
}
.service-detail ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.service-detail ul li {
  padding: 8px 0 8px 28px; position: relative;
  color: var(--ink-soft); font-size: 0.97rem;
}
.service-detail ul li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--sage-deep); font-weight: 700;
}

/* Process steps */
.steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
  margin-top: 30px;
}
.step {
  background: var(--paper); border-radius: 20px; padding: 28px 22px;
  border: 1px solid var(--line);
  position: relative;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--sage); color: var(--paper);
  font-weight: 700; margin-bottom: 16px; font-size: 0.95rem;
}
.step h3 { font-size: 1.02rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--ink-soft); }

/* About page */
.about-hero-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center;
}
.about-photo-wrap {
  position: relative;
}
.about-photo-wrap img { border-radius: 28px; box-shadow: 0 30px 60px -25px rgba(0,0,0,0.3); }
.about-photo-wrap::after {
  content: ''; position: absolute;
  top: -20px; left: -20px; width: 100%; height: 100%;
  border: 2px solid var(--sage); border-radius: 28px;
  z-index: -1;
}

.about-callouts {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 920px; margin: 0 auto;
}
.callout {
  background: var(--paper); border-radius: 20px; padding: 32px;
  border: 1px solid var(--line);
}
.callout-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 18px;
}
.callout:nth-child(1) .callout-icon { background: rgba(122, 155, 118, 0.15); color: var(--sage-deep); }
.callout:nth-child(2) .callout-icon { background: rgba(201, 124, 93, 0.15); color: var(--terra); }
.callout:nth-child(3) .callout-icon { background: rgba(212, 164, 92, 0.18); color: var(--gold); }
.callout:nth-child(4) .callout-icon { background: rgba(122, 155, 118, 0.15); color: var(--sage-deep); }
.callout h4 { margin-bottom: 10px; font-size: 1.1rem; }
.callout p { color: var(--ink-soft); font-size: 0.97rem; }

/* Contact */
.contact-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px;
}
.contact-card {
  background: var(--paper); border-radius: 24px; padding: 40px;
  border: 1px solid var(--line);
}
.contact-card h3 { margin-bottom: 28px; }
.contact-row {
  display: flex; gap: 16px; padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: 0; }
.contact-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(122, 155, 118, 0.15); color: var(--sage-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; flex-shrink: 0;
}
.contact-label {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); font-weight: 600; margin-bottom: 4px;
}
.contact-value { color: var(--ink); font-size: 1.02rem; }

.contact-form { background: var(--paper); border-radius: 24px; padding: 44px; border: 1px solid var(--line); }
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--ink); margin-bottom: 8px;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 0.98rem;
  background: var(--cream); color: var(--ink);
  transition: all 0.2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--sage); background: var(--paper);
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-row .req { color: var(--terra); }

/* Footer */
.site-footer {
  background: var(--ink); color: var(--cream);
  padding: 90px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 50px;
  margin-bottom: 60px;
}
.footer-grid img.f-logo {
  background: var(--cream); padding: 14px 18px; max-width: 280px;
  border-radius: 14px; margin-bottom: 22px;
}
.footer-grid p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer-grid h4 {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(168, 196, 164, 0.9); margin-bottom: 18px; font-weight: 700;
}
.footer-grid ul { list-style: none; }
.footer-grid ul li { padding: 6px 0; }
.footer-grid a { color: rgba(255,255,255,0.85); font-size: 0.96rem; }
.footer-grid a:hover { color: #a8c4a4; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 26px;
  text-align: center; font-size: 0.86rem; color: rgba(255,255,255,0.5);
}

/* Mobile */
@media (max-width: 920px) {
  .hero-grid, .about-hero-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .values, .services-list, .industries, .footer-grid, .about-callouts { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .service-detail ul { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
}
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); flex-direction: column; gap: 0;
    padding: 16px 28px; border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border-bottom: 0; }
  .values, .services-list, .industries, .footer-grid, .about-callouts, .steps { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 70px; }
  .hero-badge { left: 14px; bottom: -16px; padding: 14px 18px; }
}

/* Modal — used for form status (success / error) */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(20, 18, 14, 0.5);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  display: none;
  align-items: center; justify-content: center;
  z-index: 1000; padding: 20px;
  opacity: 0; transition: opacity 0.18s ease;
}
.modal-backdrop.open { display: flex; opacity: 1; }
.modal-card {
  background: var(--paper); border-radius: 24px;
  padding: 40px 36px 32px; max-width: 440px; width: 100%;
  text-align: center; position: relative;
  transform: translateY(8px) scale(0.97); opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
  box-shadow: 0 30px 80px -15px rgba(0,0,0,0.4);
}
.modal-backdrop.open .modal-card { transform: translateY(0) scale(1); opacity: 1; }
.modal-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; font-size: 1.7rem; font-weight: 700;
}
.modal-card.success .modal-icon { background: rgba(122,155,118,0.18); color: var(--sage-deep); }
.modal-card.error .modal-icon { background: rgba(201,124,93,0.15); color: var(--terra); }
.modal-card.info .modal-icon { background: rgba(0,0,0,0.06); color: var(--ink); }
.modal-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.modal-message { color: var(--ink-soft); font-size: 1rem; line-height: 1.55; margin-bottom: 26px; }
.modal-message a { color: var(--sage-deep); text-decoration: underline; }
.modal-close-btn {
  background: var(--ink); color: var(--cream);
  padding: 13px 32px; border-radius: 999px; border: 0;
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  font-family: inherit; transition: background 0.15s, transform 0.15s;
}
.modal-close-btn:hover { background: var(--sage-deep); transform: translateY(-1px); }
.modal-x {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,0.05); color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: 0; font-size: 1.2rem; line-height: 1;
  transition: background 0.15s, color 0.15s;
}
.modal-x:hover { background: rgba(0,0,0,0.1); color: var(--ink); }
