:root {
  --bg: #f6f2e8;
  --surface: #fffaf0;
  --surface-strong: #1d3d3a;
  --text: #1c2423;
  --muted: #5d6967;
  --line: rgba(28, 36, 35, 0.12);
  --accent: #ce8f2f;
  --accent-dark: #8f5d16;
  --shadow: 0 18px 40px rgba(18, 29, 28, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(206, 143, 47, 0.18), transparent 28%),
    linear-gradient(180deg, #f8f3e8 0%, #f3efe7 55%, #efe8dc 100%);
}

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

a {
  color: inherit;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(248, 243, 232, 0.88);
  border-bottom: 1px solid rgba(28, 36, 35, 0.08);
}

.site-header .wrap,
.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header .wrap {
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
}

.brand img {
  width: auto;
  height: 48px;
  max-width: min(240px, 52vw);
  object-fit: contain;
}

.site-nav {
  display: flex;
  gap: 10px;
}

.site-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--surface);
  background: var(--surface-strong);
}

.hero {
  width: min(1200px, calc(100% - 32px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: stretch;
}

.hero-copy,
.hero-image,
.card,
.map-frame,
.feature-layout {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px;
  background:
    linear-gradient(135deg, rgba(29, 61, 58, 0.98), rgba(43, 77, 73, 0.92)),
    var(--surface-strong);
  color: var(--surface);
}

.hero-image {
  min-height: 100%;
}

.hero-image img,
.difference-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--accent);
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: 0.98;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  margin-bottom: 16px;
}

.lede,
.feature-layout p,
.difference-copy p,
.detail-card p {
  color: rgba(255, 250, 240, 0.84);
  line-height: 1.7;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #1d1b17;
  text-decoration: none;
  font-weight: 800;
}

.button-secondary {
  background: rgba(255, 250, 240, 0.12);
  color: var(--surface);
  border: 1px solid rgba(255, 250, 240, 0.18);
}

.section {
  padding: 84px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading-tight {
  margin-bottom: 24px;
}

.pricing-grid,
.contact-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  padding: 28px;
  background: rgba(255, 250, 240, 0.84);
  border: 1px solid rgba(28, 36, 35, 0.07);
}

.price {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  color: var(--surface-strong);
}

.price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.feature-band {
  padding: 28px 0;
}

.feature-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: stretch;
  overflow: visible;
  box-shadow: none;
}

.feature-layout > div {
  padding: 46px;
  background: #153532;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-layout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-layout h2,
.feature-layout p {
  color: var(--surface);
}

.difference-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.difference-image {
  min-height: 360px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.difference-copy {
  padding: 34px;
  background: rgba(255, 250, 240, 0.8);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.difference-copy p,
.detail-card p,
.detail-card a,
.site-footer p {
  color: var(--muted);
}

.contact-list {
  padding-left: 20px;
  line-height: 1.8;
}

.detail-card h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.map-frame {
  margin-top: 22px;
  background: rgba(255, 250, 240, 0.84);
}

.map-frame iframe {
  width: 100%;
  min-height: 460px;
  border: 0;
}

.site-footer {
  padding: 26px 0 42px;
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .hero,
  .feature-layout,
  .difference-grid,
  .pricing-grid,
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .feature-layout,
  .difference-grid {
    grid-template-columns: 1fr;
  }

  .difference-image {
    min-height: 280px;
  }
}

@media (max-width: 720px) {
  .site-header .wrap,
  .footer-layout,
  .site-nav,
  .pricing-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header .wrap {
    padding: 14px 0;
  }

  .hero-copy,
  .feature-layout > div,
  .difference-copy,
  .card {
    padding: 24px;
  }

  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .section {
    padding: 56px 0;
  }

  .site-nav {
    width: 100%;
  }
}
