/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F7F5F0;
  --bg-alt: #EDEAE3;
  --green: #1A3C34;
  --green-mid: #2D5F4F;
  --green-light: #3D7A66;
  --amber: #F5A623;
  --amber-light: #FDD07A;
  --white: #FFFFFF;
  --text: #1A3C34;
  --text-muted: #4A6B60;
  --text-light: #7A9890;
  --font-display: 'Bricolage Grotesque', 'Arial Black', sans-serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; }

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 60, 52, 0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
}

.logo-accent { color: var(--amber); }

.header-nav { display: flex; gap: 2rem; }
.header-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--green); }

/* === HERO === */
.hero {
  background: var(--green);
  color: var(--white);
  padding: 5rem 2rem 4rem;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.hero-lede {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.3);
  color: var(--amber-light);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  width: 340px;
  height: 340px;
  margin: 0 auto;
}

.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245, 166, 35, 0.2);
}

.ring-outer {
  width: 340px;
  height: 340px;
  top: 0;
  left: 0;
}

.ring-mid {
  width: 240px;
  height: 240px;
  top: 50px;
  left: 50px;
  border-color: rgba(245, 166, 35, 0.3);
}

.ring-inner {
  width: 150px;
  height: 150px;
  top: 95px;
  left: 95px;
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.5);
}

.visual-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--amber);
  z-index: 2;
}

.stat-float {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  text-align: center;
  min-width: 90px;
}

.stat-float-1 { top: 0; left: -20px; }
.stat-float-2 { top: 40px; right: -20px; }
.stat-float-3 { bottom: 20px; left: -10px; }

.stat-float-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}

.stat-float-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* === STATS ROW === */
.stats-row {
  background: var(--bg-alt);
  border-top: 1px solid rgba(26, 60, 52, 0.06);
  border-bottom: 1px solid rgba(26, 60, 52, 0.06);
  padding: 2.5rem 2rem;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.stat-item { text-align: center; flex: 1; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.stat-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(26, 60, 52, 0.1);
  flex-shrink: 0;
}

/* === HOW IT WORKS === */
.how {
  padding: 5rem 2rem;
  background: var(--bg);
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3.5rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: var(--white);
  border: 1px solid rgba(26, 60, 52, 0.07);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 60, 52, 0.08);
}

.step-num {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(26, 60, 52, 0.06);
  line-height: 1;
}

.step-icon {
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === SERVICES === */
.services {
  padding: 5rem 2rem;
  background: var(--green);
  color: var(--white);
}

.services .section-eyebrow { color: var(--amber); }
.services .section-title { color: var(--white); }
.services .section-sub { color: rgba(255,255,255,0.6); }

.services-inner { max-width: 1200px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}

.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: background 0.2s, border-color 0.2s;
}

.service-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(245, 166, 35, 0.3);
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(245, 166, 35, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.service-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-pill {
  display: inline-block;
  background: rgba(245, 166, 35, 0.15);
  color: var(--amber-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

/* === WHY === */
.why {
  padding: 5rem 2rem;
  background: var(--bg);
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.why-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.why-points { display: flex; flex-direction: column; gap: 1rem; }

.why-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.why-check {
  width: 24px;
  height: 24px;
  background: rgba(26, 60, 52, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Model Card */
.model-card {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}

.model-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.75rem;
}

.model-flow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.flow-icon {
  width: 44px;
  height: 44px;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--amber);
}

.flow-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  max-width: 70px;
  line-height: 1.3;
}

.flow-arrow {
  color: rgba(255,255,255,0.2);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.model-revenue {
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.rev-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 0.35rem;
}

.rev-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* === BOOKING === */
.booking {
  padding: 5rem 2rem;
  background: var(--bg);
}

.booking-inner {
  max-width: 680px;
  margin: 0 auto;
}

/* Call CTA */
.call-cta-wrap {
  margin-bottom: 2.5rem;
  text-align: center;
}

.call-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(26, 60, 52, 0.25);
  letter-spacing: -0.01em;
}

.call-cta-btn:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 60, 52, 0.3);
}

.call-cta-btn:active {
  transform: translateY(0);
}

.call-cta-icon {
  width: 52px;
  height: 52px;
  background: rgba(245, 166, 35, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}

.call-cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.call-cta-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.8;
}

.call-cta-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.call-cta-arrow {
  color: rgba(255,255,255,0.4);
  margin-left: auto;
}

.call-cta-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* Divider */
.booking-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0;
}

.booking-divider::before,
.booking-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(26, 60, 52, 0.12);
}

.booking-divider span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Quote Form */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group-full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid rgba(26, 60, 52, 0.15);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A6B60' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  padding-right: 2.25rem;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45, 95, 79, 0.12);
}

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

.btn-submit {
  background: var(--amber);
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  padding: 0.9rem 1.5rem;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.15s;
  position: relative;
  min-height: 52px;
}

.btn-submit:hover { background: #e8951e; transform: translateY(-1px); }
.btn-submit:active { transform: translateY(0); }

.btn-submit .btn-submit-loading {
  display: none;
}

.btn-submit.loading .btn-submit-text { display: none; }
.btn-submit.loading .btn-submit-loading { display: inline; }

.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
}

/* Success state */
.quote-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.quote-success.show {
  display: block;
}

.quote-form.hidden { display: none; }

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(26, 60, 52, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin: 0 auto 1.5rem;
}

.quote-success h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.quote-success p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.success-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.success-call-btn:hover { background: var(--green-mid); }

/* Sticky mobile call bar */
.sticky-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--green);
  padding: 0.75rem 1rem;
  display: none;
  box-shadow: 0 -4px 20px rgba(26, 60, 52, 0.2);
}

.sticky-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--amber);
  color: var(--green);
  text-decoration: none;
  border-radius: var(--radius);
  padding: 0.85rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  width: 100%;
  letter-spacing: -0.01em;
  transition: background 0.2s;
}

.sticky-call-btn:hover { background: #e8951e; }

/* === CLOSING === */
.closing {
  background: var(--bg-alt);
  padding: 6rem 2rem;
  text-align: center;
}

.closing-inner { max-width: 720px; margin: 0 auto; }

.closing-badge {
  display: inline-block;
  background: rgba(26, 60, 52, 0.06);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.closing-headline {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.closing-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.meta-dot { color: var(--amber); }

/* === FOOTER === */
.site-footer {
  background: var(--green);
  color: rgba(255,255,255,0.5);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}

.footer-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  max-width: 400px;
  line-height: 1.5;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .stats-inner { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-item { min-width: calc(50% - 1rem); }
}

@media (max-width: 600px) {
  .header-nav { display: none; }
  .hero { padding: 3rem 1.5rem 3rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-row { padding: 2rem 1rem; }
  .how, .services, .why, .booking { padding: 3rem 1.5rem; }
  .closing { padding: 4rem 1.5rem; }
  .footer-inner { flex-direction: column; }
  .sticky-call-bar { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .booking-inner { max-width: 100%; }
  .call-cta-btn { font-size: 1.1rem; padding: 1rem 1.5rem; }
  .call-cta-number { font-size: 1.2rem; }
  /* prevent bottom of page from hiding behind sticky bar */
  body { padding-bottom: 70px; }
}