:root {
  --ink: #151918;
  --muted: #68716d;
  --paper: #f5f1e8;
  --panel: #fffaf0;
  --line: rgba(21, 25, 24, 0.14);
  --action: #d86d2f;
  --action-dark: #9f401e;
  --green: #1d5f4a;
  --dark: #151918;
  --shadow: 0 24px 70px rgba(21, 25, 24, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  margin: 0;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.header {
  align-items: center;
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1.4rem;
  justify-content: space-between;
  padding: 0.9rem clamp(1rem, 5vw, 4rem);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-mark {
  background: var(--dark);
  border-radius: 8px;
  color: #fff;
  display: grid;
  font-weight: 950;
  height: 48px;
  place-items: center;
  width: 48px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  margin-top: 0.15rem;
}

.nav {
  align-items: center;
  display: flex;
  gap: 1.2rem;
  font-weight: 850;
}

.nav a {
  text-decoration: none;
}

.button,
.button-dark,
.button-soft {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  min-height: 48px;
  padding: 0.86rem 1.2rem;
  text-decoration: none;
}

.button {
  background: var(--action);
  color: #fff;
  box-shadow: 0 16px 36px rgba(216, 109, 47, 0.28);
}

.button-dark {
  background: var(--dark);
  color: #fff;
}

.button-soft {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero {
  background:
    linear-gradient(90deg, rgba(21, 25, 24, 0.92), rgba(21, 25, 24, 0.66) 44%, rgba(21, 25, 24, 0.16)),
    url("https://images.unsplash.com/photo-1632759145351-1d592919f522?auto=format&fit=crop&w=1800&q=80") center / cover;
  color: #fff;
  min-height: 86vh;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 4rem);
}

.hero-inner {
  align-items: end;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
  margin: 0 auto;
  max-width: 1220px;
  min-height: 70vh;
}

.eyebrow {
  color: var(--action);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(3.25rem, 6.8vw, 6.6rem);
  line-height: 0.92;
  max-width: 850px;
}

h1 mark {
  background: linear-gradient(transparent 60%, rgba(216, 109, 47, 0.62) 60%);
  color: inherit;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.58;
  max-width: 680px;
}

.hero-actions,
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.route-split {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.1rem 0 0;
  max-width: 680px;
}

.route-split a {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: #fff;
  display: grid;
  gap: 0.22rem;
  padding: 0.9rem;
  text-decoration: none;
}

.route-split strong {
  font-size: 1rem;
}

.route-split span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
  font-weight: 750;
}

.trust-chips {
  margin-top: 1.4rem;
}

.trust-chips span {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 850;
  padding: 0.65rem 0.85rem;
}

.quote-card {
  background: rgba(255, 250, 240, 0.96);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: clamp(1.15rem, 3vw, 1.6rem);
}

.quote-card h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.98;
}

.quote-card p {
  color: var(--muted);
  line-height: 1.55;
}

.quote-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0;
}

.quote-list span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  padding: 0.8rem;
}

.section {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 4rem);
}

.section-dark {
  background: var(--dark);
  color: #fff;
}

.section-inner {
  margin: 0 auto;
  max-width: 1220px;
}

.section-title {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.58fr);
  margin-bottom: 1.5rem;
}

.section-title h2 {
  font-size: clamp(2.5rem, 5.2vw, 5.2rem);
  line-height: 0.94;
}

.section-title p,
.service-card p,
.reason-card p,
.review-card p,
.faq p,
.footer p {
  color: var(--muted);
  line-height: 1.58;
}

.section-dark .section-title p,
.section-dark .reason-card p {
  color: rgba(255, 255, 255, 0.7);
}

.services-grid,
.reason-grid,
.review-grid,
.area-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.reason-card,
.review-card,
.faq {
  background: rgba(255, 250, 240, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(21, 25, 24, 0.08);
  padding: 1.2rem;
}

.section-dark .reason-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.service-card {
  min-height: 255px;
}

.service-card span,
.reason-card span {
  color: var(--action);
  font-weight: 950;
}

.service-card h3,
.reason-card h3 {
  font-size: 1.72rem;
  line-height: 1.05;
  margin: 1.2rem 0 0.7rem;
}

.process {
  counter-reset: step;
  display: grid;
  gap: 1rem;
}

.process-row {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 1rem;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  padding: 1rem;
}

.process-row::before {
  background: var(--action);
  border-radius: 8px;
  color: #fff;
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  display: grid;
  font-weight: 950;
  height: 58px;
  place-items: center;
}

.process-row h3 {
  font-size: 1.55rem;
}

.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 0.8fr;
}

.gallery img {
  border-radius: 8px;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  width: 100%;
}

.gallery-side {
  display: grid;
  gap: 1rem;
}

.gallery-side img {
  min-height: 175px;
}

.review-card strong {
  color: var(--green);
}

.faq-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq h3 {
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 950;
}

.area-grid span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  padding: 0.85rem 1rem;
  text-align: center;
}

.contact-band {
  background: linear-gradient(135deg, var(--action-dark), var(--dark));
  color: #fff;
}

.contact-panel {
  align-items: center;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.contact-panel h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.94;
}

.footer {
  background: #0f1312;
  color: #fff;
  padding: 2rem clamp(1rem, 5vw, 4rem);
}

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

.sticky-mobile-book {
  display: none;
}

@media (max-width: 860px) {
  body {
    padding-bottom: 82px;
  }

  .nav {
    display: none;
  }

  .hero-inner,
  .section-title,
  .services-grid,
  .reason-grid,
  .review-grid,
  .faq-grid,
  .gallery,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.75rem, 12vw, 3.8rem);
  }

  .process-row {
    grid-template-columns: 1fr;
  }

  .route-split {
    grid-template-columns: 1fr;
  }

  .button,
  .button-dark,
  .button-soft {
    width: 100%;
  }

  .sticky-mobile-book {
    background: rgba(245, 241, 232, 0.96);
    border-top: 1px solid var(--line);
    bottom: 0;
    display: grid;
    gap: 0.6rem;
    grid-template-columns: 1fr 1fr;
    left: 0;
    padding: 0.7rem;
    position: fixed;
    right: 0;
    z-index: 30;
  }

  .sticky-mobile-book .button,
  .sticky-mobile-book .button-soft {
    min-height: 50px;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }
}
