:root {
  --green-900: #12301c;
  --green-800: #1b4429;
  --green-700: #24603a;
  --green-600: #2f7d4b;
  --green-500: #3d9c5f;
  --straw-500: #e8c468;
  --straw-400: #f0d27f;
  --straw-600: #c9a13f;
  --barn-red: #c0392b;
  --earth: #3f2a17;
  --ink: #16201a;
  --body: #4a5a50;
  --line: #e2e8e4;
  --bg: #ffffff;
  --bg-soft: #f6f8f6;
  --radius: 14px;
  --shadow: 0 4px 18px rgba(18, 48, 28, 0.08);
  --shadow-lg: 0 14px 40px rgba(18, 48, 28, 0.14);
  --header-h: 78px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1rem; }
img, svg { display: block; max-width: 100%; }
a { color: var(--green-700); }

.container {
  width: min(1180px, 100% - 3rem);
  margin-inline: auto;
}

.eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: .6rem;
}

.center { text-align: center; }
.section-title { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 700; }
.section-sub { max-width: 640px; margin: 0 auto 3rem; font-size: 1.05rem; }
.center.section-title { margin-bottom: .8rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 1rem 2rem; font-size: 1.02rem; }
.full-width { width: 100%; }

.btn-primary { background: var(--green-700); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--green-800); box-shadow: var(--shadow-lg); }

.btn-light { background: var(--straw-500); color: var(--green-900); }
.btn-light:hover { background: var(--straw-400); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: #fff; color: var(--green-800); border-color: #fff; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(18,48,28,.08); border-bottom-color: var(--line); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}

.logo { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
.logo-text {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 1.12rem;
  line-height: 1.05;
  color: var(--green-900);
  letter-spacing: -0.01em;
}
.logo-text small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-600);
}

.main-nav { display: flex; gap: 1.75rem; }
.main-nav a {
  position: relative;
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: .25rem 0;
  white-space: nowrap;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--green-600);
  transition: width .22s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 1.1rem; }

.lang-switch { display: flex; align-items: center; gap: 2px; padding: 2px; border: 1px solid var(--line); border-radius: 999px; }
.lang-link {
  padding: .35rem .62rem;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--body);
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
}
.lang-link:hover { color: var(--green-700); }
.lang-link.is-current { background: var(--green-700); color: #fff; }
.main-nav .lang-switch { display: none; }
.phone-link {
  display: flex; align-items: center; gap: .45rem;
  font-weight: 600; font-size: .93rem;
  color: var(--green-800); text-decoration: none;
  white-space: nowrap;
}
.phone-link:hover { color: var(--green-600); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px; width: 24px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  margin-inline: auto;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 6rem) 0 6rem;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 520px at 78% 12%, rgba(232,196,104,.28), transparent 62%),
    linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 48%, var(--green-700) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: auto 0 -1px 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg), transparent);
  opacity: .12;
}
.hero-inner { position: relative; max-width: 780px; }
.hero .eyebrow { color: var(--straw-500); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  margin-bottom: 1.1rem;
}
.hero h1 span { color: var(--straw-500); }
.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: rgba(255,255,255,.86);
  max-width: 620px;
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.75rem;
  list-style: none;
  margin: 3.5rem 0 0;
  padding: 2rem 0 0;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero-stats strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.9rem;
  color: var(--straw-500);
  line-height: 1.1;
}
.hero-stats span { font-size: .88rem; color: rgba(255,255,255,.75); }

/* ===== Services ===== */
.services { padding: 6rem 0; background: var(--bg-soft); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  gap: 1.5rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-500);
}
.service-icon {
  display: grid;
  place-items: center;
  width: 82px; height: 82px;
  margin-bottom: 1.25rem;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(61,156,95,.14), rgba(232,196,104,.22));
  color: var(--green-700);
}
.service-card h3 { font-size: 1.22rem; margin-bottom: .5rem; }
.service-card p { margin: 0; font-size: .95rem; flex: 1 1 auto; }

.service-rates {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--line);
}
.service-rates li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: .3rem 0;
}
.service-rates span { font-size: .92rem; }
.service-rates strong {
  flex-shrink: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-700);
  line-height: 1;
}
.service-rates em {
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  color: var(--body);
}

.rate-caveat {
  display: block;
  margin-top: .9rem;
  font-size: .8rem;
  line-height: 1.55;
  color: var(--body);
}

.drive-fee {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  max-width: 760px;
  margin: 3rem auto 0;
  padding: 1.75rem;
  background: linear-gradient(140deg, rgba(61,156,95,.10), rgba(232,196,104,.16));
  border: 1px solid rgba(61,156,95,.28);
  border-radius: var(--radius);
}
.drive-fee-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #fff;
  color: var(--green-700);
  box-shadow: var(--shadow);
}
.drive-fee h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.drive-fee p { margin: 0; font-size: .95rem; }
.drive-fee strong { color: var(--green-800); }

.rate-note {
  max-width: 680px;
  margin: 1.5rem auto 0;
  font-size: .88rem;
  text-align: center;
}

/* ===== About ===== */
.about { padding: 6rem 0; }
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}
.about-media {
  position: relative;
  min-height: 380px;
  border-radius: 20px;
  background:
    radial-gradient(600px 300px at 30% 20%, rgba(232,196,104,.35), transparent 65%),
    linear-gradient(150deg, var(--green-700), var(--green-900));
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
}
.about-card { text-align: center; padding: 2rem; }
.about-card svg { margin: 0 auto 1rem; }
.about-card p {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  color: var(--straw-400);
}
.about-list { list-style: none; margin: 1.5rem 0 2rem; padding: 0; }
.about-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: .8rem;
  font-weight: 500;
  color: var(--ink);
}
.about-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .4rem;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green-600);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== Service Area ===== */
.service-area { padding: 6rem 0; }
.map-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
#service-map {
  height: 460px;
  background: var(--bg-soft);
  z-index: 1;
}
.map-hint {
  margin: 0;
  padding: .7rem 1rem;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  font-size: .82rem;
  text-align: center;
}
.area-towns { margin-top: 2.5rem; text-align: center; }
.area-towns h3 { font-size: 1.15rem; margin-bottom: 1rem; }
.area-towns ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.area-towns li {
  padding: .35rem .9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
  font-size: .87rem;
  font-weight: 500;
  color: var(--ink);
}

/* ===== Process ===== */
.process { padding: 6rem 0; background: var(--bg-soft); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.process-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem 1.6rem 1.8rem;
}
.step-num {
  position: absolute;
  top: -20px; left: 1.6rem;
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.process-step h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.process-step p { margin: 0; font-size: .93rem; }

/* ===== Testimonials ===== */
.testimonials { padding: 6rem 0; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  margin: 0;
  padding: 2rem 1.75rem;
  background: var(--bg-soft);
  border-left: 4px solid var(--straw-500);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.testimonial-card p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.6;
}
.testimonial-card cite {
  font-style: normal;
  font-size: .88rem;
  font-weight: 600;
  color: var(--green-700);
}

/* ===== Before / After ===== */
.ba-block { margin-top: 4rem; }
.ba-title { font-size: 1.5rem; text-align: center; margin-bottom: .3rem; }
.ba-hint { text-align: center; font-size: .9rem; margin-bottom: 2rem; }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 1.5rem;
}

.ba-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  font-family: inherit;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
}
.ba-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ba-item:focus-visible { outline: 3px solid var(--green-600); outline-offset: 3px; }

.ba-media {
  position: relative;
  display: block;
  line-height: 0;
}
.ba-img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.ba-after {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
}
.ba-item:hover .ba-after,
.ba-item.is-after .ba-after { opacity: 1; }

.ba-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  padding: .3rem .8rem;
  border-radius: 999px;
  background: rgba(18, 48, 28, .82);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.ba-item.is-after .ba-badge { background: var(--green-600); }

.ba-caption {
  display: block;
  padding: .85rem 1rem;
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .ba-after { transition: none; }
  .ba-item:hover { transform: none; }
}

/* ===== CTA Band ===== */
.cta-band {
  padding: 5rem 0;
  background:
    radial-gradient(700px 300px at 20% 30%, rgba(232,196,104,.22), transparent 60%),
    linear-gradient(135deg, var(--green-800), var(--green-900));
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.cta-band p { color: rgba(255,255,255,.82); margin-bottom: 2rem; }
.cta-band .hero-actions { justify-content: center; }

/* ===== Contact ===== */
.contact { padding: 6rem 0; background: var(--bg-soft); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.contact-details { list-style: none; margin: 2rem 0 0; padding: 0; }
.contact-details li {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.1rem;
  color: var(--ink);
  font-weight: 500;
}
.contact-details svg { color: var(--green-600); flex-shrink: 0; }
.contact-details a { color: var(--ink); text-decoration: none; }
.contact-details a:hover { color: var(--green-600); }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  margin-bottom: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem .9rem;
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form-group textarea { resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(61,156,95,.15);
}
.form-note {
  margin: 1rem 0 0;
  padding: .8rem 1rem;
  background: rgba(61,156,95,.1);
  border-radius: 10px;
  color: var(--green-800);
  font-size: .9rem;
  font-weight: 500;
  text-align: center;
}

/* ===== Footer ===== */
.site-footer { background: var(--green-900); color: rgba(255,255,255,.7); padding: 3rem 0 2rem; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-footer .logo-text { color: #fff; }
.site-footer .logo-text small { color: var(--straw-500); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-nav a { color: rgba(255,255,255,.72); text-decoration: none; font-size: .92rem; }
.footer-nav a:hover { color: var(--straw-500); }
.footer-copy {
  width: 100%;
  margin: 1.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .85rem;
  text-align: center;
}

/* ===== Mobile call button ===== */
.mobile-call-btn {
  display: none;
  position: fixed;
  right: 1.1rem; bottom: 1.1rem;
  z-index: 90;
  width: 56px; height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .service-card:hover { transform: none; }
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-media { min-height: 260px; order: 2; }
}

@media (max-width: 1180px) {
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: .5rem 1.5rem 1.25rem;
    transform: translateY(-120%);
    transition: transform .3s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .main-nav a::after { display: none; }
  .main-nav .lang-switch { display: flex; width: max-content; margin: 1rem 0 .25rem; }
  .main-nav .lang-link { padding: .35rem .7rem; border-bottom: 0; }
  .mobile-call-btn { display: flex; }
  .hero { padding: calc(var(--header-h) + 4rem) 0 4.5rem; }
  .hero-stats { gap: 1.75rem; }
  .services, .about, .service-area, .process, .testimonials, .contact { padding: 4rem 0; }
  #service-map { height: 380px; }
}

@media (max-width: 560px) {
  .container { width: min(1180px, 100% - 2rem); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .drive-fee { flex-direction: column; gap: 1rem; padding: 1.35rem; }
  .hero-actions .btn { width: 100%; }
  .contact-form { padding: 1.5rem; }
  .footer-inner { flex-direction: column; text-align: center; }
}
