/* ============================================
   FARACHE TREE SERVICES - Global Stylesheet
   ============================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--moss); outline-offset: 3px; }

/* ---- Design Tokens ---- */
:root {
  --forest:      #1B2A22;
  --forest-deep: #0e1a12;
  --bark:        #2E2018;
  --moss:        #4e6b3f;
  --moss-light:  #5C7A4A;
  --cream:       #F4EFE6;
  --cream-dark:  #E8E1D2;
  --sage:        #A8B89B;
  --ember:       #C4541C;
  --ember-dark:  #9e4216;
  --text:        #1a1a16;
  --text-mid:    #4a4a42;
  --text-light:  #7a7a70;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h:       72px;
}

/* ---- Typography scale ---- */
.f-display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.f-mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---- Layout ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.container--narrow { max-width: 860px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ---- Navigation ---- */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(14, 26, 18, 0.96);
  backdrop-filter: blur(12px);
  border-color: rgba(168,184,155,0.15);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: white;
  letter-spacing: 0.01em;
  line-height: 1;
}
.nav-logo-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: white; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--sage);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav-phone:hover { color: white; }
.btn-nav {
  background: var(--moss-light);
  color: white;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn-nav:hover { background: var(--moss); transform: translateY(-1px); }

/* hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: var(--forest-deep);
  z-index: 99;
  padding: 48px 24px;
  flex-direction: column;
  gap: 8px;
}
#nav-mobile.open { display: flex; }
#nav-mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: white;
  padding: 12px 0;
  border-bottom: 1px solid rgba(168,184,155,0.15);
  transition: color 0.2s;
}
#nav-mobile a:hover { color: var(--sage); }
#nav-mobile .mobile-phone {
  margin-top: 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  color: var(--sage);
  letter-spacing: 0.08em;
}

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--moss-light);
  color: white;
}
.btn-primary:hover {
  background: var(--moss);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76,107,63,0.35);
}
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: white;
}
.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}
.btn-ghost {
  border: 1.5px solid var(--forest);
  color: var(--forest);
}
.btn-ghost:hover {
  background: var(--forest);
  color: white;
}
.btn-emergency {
  background: var(--ember);
  color: white;
}
.btn-emergency:hover {
  background: var(--ember-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,84,28,0.35);
}
.btn svg { flex-shrink: 0; }
.btn-arrow::after {
  content: '→';
  margin-left: 4px;
  transition: transform 0.2s var(--ease);
  display: inline-block;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---- Tag / Badge ---- */
.tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid currentColor;
  display: inline-block;
}
.tag-sage { color: var(--sage); border-color: var(--sage); }
.tag-moss { color: var(--moss-light); border-color: var(--moss-light); }
.tag-ember { color: var(--ember); border-color: var(--ember); }
.tag-cream { color: var(--cream); border-color: rgba(244,239,230,0.4); }

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

/* ---- Section spacing ---- */
.section { padding: 100px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 140px 0; }
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.2;
  max-width: 80px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-title em { font-style: italic; color: var(--moss-light); }

/* ---- Image placeholder ---- */
.img-ph {
  background: var(--forest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.img-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px,
    transparent 12px,
    rgba(255,255,255,0.025) 12px,
    rgba(255,255,255,0.025) 24px
  );
}
.img-ph-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--sage);
  opacity: 0.7;
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

/* ---- Divider ---- */
hr.rule { border: none; border-top: 1px solid rgba(168,184,155,0.2); }

/* ---- Cards ---- */
.card {
  background: white;
  padding: 40px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(27,42,34,0.12);
}

/* ---- Service Icon ---- */
.service-icon {
  width: 48px; height: 48px;
  color: var(--moss-light);
  margin-bottom: 20px;
  transition: transform 0.3s var(--ease);
}
.card:hover .service-icon { transform: scale(1.1); }

/* ---- Footer ---- */
#footer {
  background: var(--forest-deep);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: white;
  margin-bottom: 12px;
}
.footer-brand-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0.6;
}
.footer-col-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 1; }
.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}
.footer-contact-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  opacity: 0.6;
}
.footer-contact-val {
  font-size: 15px;
  color: white;
  transition: color 0.2s;
}
.footer-contact-val:hover { color: var(--sage); }
.footer-bottom {
  border-top: 1px solid rgba(168,184,155,0.12);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; opacity: 0.4; transition: opacity 0.2s; }
.footer-legal a:hover { opacity: 0.8; }
.footer-copy { font-size: 13px; opacity: 0.3; }
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---- Sticky mobile bar ---- */
#sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--forest-deep);
  border-top: 1px solid rgba(168,184,155,0.15);
  z-index: 90;
  padding: 12px 16px;
  gap: 10px;
}
@media (max-width: 768px) { #sticky-mobile { display: flex; } }
#sticky-mobile a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
#sticky-mobile .mob-phone {
  background: transparent;
  border: 1.5px solid rgba(168,184,155,0.4);
  color: white;
}
#sticky-mobile .mob-quote {
  background: var(--moss-light);
  color: white;
}

/* ---- Trust strip ---- */
.trust-strip {
  background: var(--forest);
  border-bottom: 1px solid rgba(168,184,155,0.12);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: white;
  line-height: 1;
}
.trust-num sup { font-size: 20px; vertical-align: top; margin-top: 4px; }
.trust-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-label strong {
  font-size: 14px;
  font-weight: 500;
  color: white;
  line-height: 1.2;
}
.trust-label span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}
.trust-divider {
  width: 1px; height: 40px;
  background: rgba(168,184,155,0.2);
}
@media (max-width: 768px) {
  .trust-strip-inner { justify-content: center; gap: 20px; }
  .trust-divider { display: none; }
  .trust-num { font-size: 34px; }
}

/* ---- Services grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--cream-dark);
}
.service-card {
  background: var(--cream);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s var(--ease);
  cursor: pointer;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--moss-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.service-card:hover { background: white; }
.service-card:hover::after { transform: scaleX(1); }
.service-card-icon {
  width: 40px; height: 40px;
  color: var(--moss-light);
  margin-bottom: 20px;
}
.service-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.2;
}
.service-card-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-card-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss-light);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s var(--ease);
}
.service-card:hover .service-card-link { gap: 12px; }
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ---- Process ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}
.process-step {
  padding: 48px 40px;
  border-right: 1px solid rgba(168,184,155,0.2);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: rgba(27,42,34,0.08);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.3s;
}
.process-step:hover .process-num { color: rgba(92,122,74,0.25); }
.process-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.2;
}
.process-step-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
@media (max-width: 960px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-bottom: 1px solid rgba(168,184,155,0.2); border-right: none; }
  .process-step:nth-child(odd) { border-right: 1px solid rgba(168,184,155,0.2); }
}
@media (max-width: 600px) { .process-steps { grid-template-columns: 1fr; } }

/* ---- Before/After slider ---- */
.ba-wrap {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}
.ba-before, .ba-after {
  position: absolute;
  inset: 0;
}
.ba-after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  width: 3px;
  background: white;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  transition: left 0s;
}
.ba-handle-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--forest);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.ba-label {
  position: absolute;
  bottom: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 4px 10px;
  backdrop-filter: blur(4px);
}
.ba-label-before { left: 20px; }
.ba-label-after { right: 20px; }

/* ---- Testimonial marquee ---- */
.testimonial-card {
  background: white;
  padding: 32px;
  width: 340px;
  flex-shrink: 0;
  margin-right: 20px;
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-star { color: var(--moss-light); font-size: 14px; }
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--text);
}
.testimonial-author { font-size: 13px; font-weight: 500; color: var(--text-mid); }
.testimonial-location {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 2px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 50s linear infinite;
}
.marquee-wrap:hover .marquee-inner { animation-play-state: paused; }

/* ---- CTA section ---- */
.cta-section {
  background: var(--forest-deep);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0 16px,
    rgba(255,255,255,0.015) 16px 32px
  );
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  color: white;
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-title em { font-style: italic; color: var(--sage); }
.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ---- Areas map section ---- */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.area-chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgba(27,42,34,0.2);
  color: var(--text-mid);
  transition: all 0.2s var(--ease);
  cursor: default;
}
.area-chip:hover {
  background: var(--forest);
  color: white;
  border-color: var(--forest);
}

/* ---- Differentiators grid ---- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--forest);
}
.diff-item {
  background: var(--forest);
  padding: 56px 40px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s;
}
.diff-item:hover { border-color: var(--moss-light); }
.diff-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--moss-light);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.7;
}
.diff-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: white;
  margin-bottom: 10px;
  line-height: 1.3;
}
.diff-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }
@media (max-width: 960px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .diff-grid { grid-template-columns: 1fr; } }

/* ---- FAQ accordion ---- */
.faq-item {
  border-bottom: 1px solid rgba(168,184,155,0.25);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  color: var(--text);
  gap: 20px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--moss-light); }
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  position: relative;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}
.faq-icon::before { width: 10px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1.5px; height: 10px; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ---- Quote form ---- */
.form-field { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(27,42,34,0.2);
  background: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus { border-color: var(--moss-light); }
.form-input.error { border-color: var(--ember); }
.form-error { font-size: 12px; color: var(--ember); margin-top: 6px; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234a4a42' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1.5px solid rgba(27,42,34,0.15);
  cursor: pointer;
  transition: all 0.2s;
  background: white;
}
.form-check:hover { border-color: var(--moss-light); }
.form-check.selected {
  border-color: var(--moss-light);
  background: rgba(92,122,74,0.06);
}
.form-check input { position: absolute; opacity: 0; width: 0; height: 0; }
.form-check-box {
  width: 20px; height: 20px;
  border: 1.5px solid rgba(27,42,34,0.3);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  margin-top: 2px;
}
.form-check.selected .form-check-box {
  background: var(--moss-light);
  border-color: var(--moss-light);
  color: white;
}
.form-check-label { font-size: 15px; font-weight: 500; line-height: 1.3; }
.form-check-sub { font-size: 13px; color: var(--text-mid); margin-top: 2px; }

/* step progress */
.step-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
}
.step-prog-item {
  display: flex;
  align-items: center;
  flex: 1;
}
.step-prog-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(27,42,34,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
  background: white;
}
.step-prog-item.active .step-prog-dot {
  border-color: var(--moss-light);
  background: var(--moss-light);
  color: white;
}
.step-prog-item.done .step-prog-dot {
  border-color: var(--moss-light);
  background: var(--moss-light);
  color: white;
}
.step-prog-line {
  flex: 1;
  height: 2px;
  background: rgba(27,42,34,0.1);
  transition: background 0.5s var(--ease);
}
.step-prog-item.done + .step-prog-item .step-prog-line,
.step-prog-item.done .step-prog-line { background: var(--moss-light); }
.step-prog-label {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 6px;
  font-weight: 500;
}

/* ---- Page hero (inner pages) ---- */
.page-hero {
  padding: 160px 0 80px;
  background: var(--forest-deep);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0 20px,
    rgba(255,255,255,0.015) 20px 40px
  );
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.page-hero-title em { font-style: italic; color: var(--sage); }
.page-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  margin-top: 20px;
  max-width: 600px;
  line-height: 1.6;
}

/* ---- Emergency specific ---- */
.emergency-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 300;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1;
}
.emergency-phone a { color: white; }
.emergency-phone a:hover { color: var(--sage); }

/* ---- About editorial ---- */
.about-body {
  font-size: 19px;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 700px;
}
.about-body p { margin-bottom: 28px; }
.about-body p:first-child::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  float: left;
  line-height: 0.75;
  margin: 10px 16px 0 0;
  color: var(--forest);
}
.about-pullquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--moss-light);
  border-left: 3px solid var(--moss-light);
  padding-left: 32px;
  margin: 48px 0;
}

/* ---- Contact grid ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ---- Service area cards ---- */
.area-group { margin-bottom: 48px; }
.area-group-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(168,184,155,0.2);
}
.area-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 600px) { .area-cards { grid-template-columns: repeat(2, 1fr); } }
.area-card {
  padding: 24px;
  border: 1px solid rgba(27,42,34,0.1);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  background: white;
}
.area-card:hover {
  border-color: var(--moss-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,42,34,0.08);
}
.area-card-name { font-size: 16px; font-weight: 500; margin-bottom: 4px; }
.area-card-council { font-size: 12px; color: var(--text-light); }

/* ============================================
   MOBILE POLISH — phone-only rules
   Desktop view is unaffected.
   ============================================ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  html { font-size: 16px; }
  body { padding-bottom: 68px; } /* room for sticky-mobile bar */

  /* Nav */
  .nav-logo-main { font-size: 18px; }
  .nav-logo-sub { font-size: 8px; letter-spacing: 0.15em; }
  .nav-hamburger { padding: 6px; }

  /* Section rhythm */
  .section { padding: 64px 0; }
  .section--sm { padding: 44px 0; }
  .section--lg { padding: 80px 0; }
  .section-title { font-size: clamp(32px, 8vw, 44px); line-height: 1.08; }
  .section-label { gap: 12px; margin-bottom: 18px; }
  .section-label::after { max-width: 48px; }

  /* Buttons full-width feel */
  .btn { padding: 14px 22px; font-size: 14px; }

  /* Trust strip — clean 2x2 */
  .trust-strip-inner {
    padding: 28px 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    justify-content: stretch;
  }
  .trust-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
  }
  .trust-num { font-size: 36px; }
  .trust-num sup { font-size: 16px; }
  .trust-label strong { font-size: 13px; }
  .trust-label span { font-size: 8px; }
  .trust-divider { display: none; }

  /* Services grid: 1-col with tighter padding */
  .services-grid-top { grid-template-columns: 1fr !important; gap: 1px; }
  .service-card { padding: 28px 24px; }
  .service-card-icon { width: 36px; height: 36px; margin-bottom: 14px; }
  .service-card-name { font-size: 20px; }
  .service-card-desc { font-size: 14px; margin-bottom: 16px; }

  /* Process: fix odd-child border bug at 1-col + tighten */
  .process-steps { grid-template-columns: 1fr; }
  .process-step,
  .process-step:nth-child(odd) {
    padding: 36px 24px;
    border-right: none !important;
    border-bottom: 1px solid rgba(168,184,155,0.2);
  }
  .process-step:last-child { border-bottom: none; }
  .process-num { font-size: 56px; margin-bottom: 14px; }
  .process-step-title { font-size: 22px; }

  /* Why grid — tighter padding, single col handled at 700px */
  .why-item { padding: 36px 24px; gap: 18px; }
  .why-icon { width: 36px; height: 36px; }
  .why-title { font-size: 22px; }
  .why-desc { font-size: 14px; line-height: 1.65; }

  /* Before/After — shorter, allow vertical room */
  .ba-wrap { height: 360px !important; }
  .ba-handle-circle { width: 40px; height: 40px; }
  .ba-label { font-size: 9px; bottom: 14px; padding: 3px 8px; }
  .ba-label-before { left: 14px; }
  .ba-label-after { right: 14px; }

  /* Testimonial marquee — narrower cards */
  .testimonial-card { width: 280px; padding: 24px; margin-right: 14px; }
  .testimonial-quote { font-size: 17px; margin-bottom: 16px; }

  /* Areas section: stack cleanly, hide the dense map labels */
  .areas-list { gap: 8px; }
  .area-chip { padding: 7px 12px; font-size: 10px; }
  .sydney-map svg { max-width: 320px; margin: 0 auto; display: block; }

  /* CTA */
  .cta-section { padding: 80px 0; }
  .cta-title { font-size: clamp(36px, 9vw, 52px); }
  .cta-sub { font-size: 15px; margin-bottom: 32px; padding: 0 4px; }
  .cta-buttons .btn { width: 100%; justify-content: center; max-width: 340px; }

  /* Footer tightening */
  #footer { padding: 56px 0 28px; }
  .footer-grid { gap: 36px; margin-bottom: 40px; }
  .footer-brand-name { font-size: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-legal { gap: 16px; }

  /* Sticky mobile bar polish */
  #sticky-mobile {
    padding: 10px 14px;
    gap: 8px;
    box-shadow: 0 -8px 24px rgba(0,0,0,0.25);
  }
  #sticky-mobile a { padding: 12px 12px; font-size: 13px; }

  /* Page hero */
  .page-hero { padding: 110px 0 56px; }
  .page-hero-title { font-size: clamp(40px, 10vw, 56px); }
  .page-hero-sub { font-size: 15px; margin-top: 14px; }

  /* About */
  .about-body { font-size: 16px; line-height: 1.7; }
  .about-body p:first-child::first-letter { font-size: 56px; margin: 8px 12px 0 0; }
  .about-pullquote { font-size: 22px; padding-left: 20px; margin: 32px 0; border-left-width: 2px; }

  /* Mobile nav menu refinement */
  #nav-mobile { padding: 32px 24px 48px; }
  #nav-mobile a { font-size: 28px; padding: 10px 0; }
  #nav-mobile .mobile-phone { margin-top: 24px; font-size: 18px; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }

  /* Hero: tighter, gives sticky bar room, smaller scroll badge */
  #hero { min-height: 92vh; }
  .hero-content { padding: 0 0 56px; }
  .hero-pretag { margin-bottom: 20px; }
  .hero-pretag .tag { font-size: 9px; padding: 5px 10px; letter-spacing: 0.12em; }
  .hero-headline { font-size: clamp(46px, 14vw, 64px) !important; margin-bottom: 14px; }
  .hero-services-line { font-size: 10px !important; margin-bottom: 28px; letter-spacing: 0.1em; }
  .hero-services-line span { margin: 0 6px; }
  .hero-sub { font-size: 15px !important; margin-bottom: 30px; height: auto; min-height: 24px; line-height: 1.4; }
  .hero-actions { gap: 14px; }
  .hero-actions .btn { width: 100%; justify-content: center; max-width: 360px; }
  .hero-phone { font-size: 14px; }
  .hero-phone-num { font-size: 15px; }
  .hero-scroll { display: none; }

  /* Services bottom: stack column at small */
  .service-card-wide {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 28px 24px;
  }
  .service-card-wide .service-card-name { font-size: 18px; }

  /* Why grid single column already; tighten heading */
  .why-grid { grid-template-columns: 1fr; }
  .why-item { padding: 32px 22px; }

  /* Areas section gap */
  .areas-section { gap: 48px; }

  /* Testimonial */
  .testimonial-card { width: 260px; padding: 22px; }
  .testimonial-quote { font-size: 16px; }

  /* Section title scale */
  .section-title { font-size: clamp(28px, 8.5vw, 40px); }
}

@media (max-width: 380px) {
  .hero-headline { font-size: 42px !important; }
  .nav-logo-main { font-size: 16px; }
  .nav-logo-sub { display: none; }
  .trust-strip-inner { grid-template-columns: 1fr; gap: 18px; }
  .trust-num { font-size: 32px; }
}
