* {
  box-sizing: border-box;
}

:root {
  --bg: #f5f2ea;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --text: #1c2b24;
  --muted: #5c6e66;
  --line: rgba(28, 43, 36, 0.12);
  --primary: #1f5c47;
  --primary-dark: #173f32;
  --accent: #c49a44;
  --shadow: 0 24px 60px rgba(21, 36, 29, 0.09);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1160px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(196, 154, 68, 0.18), transparent 32%),
    linear-gradient(180deg, #f7f3eb 0%, #f3f5f1 42%, #eef3f0 100%);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(247, 243, 235, 0.86);
  border-bottom: 1px solid rgba(28, 43, 36, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
}

.brand img {
  width: 210px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.nav-toggle {
  display: none;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--text);
  cursor: pointer;
}

.hero,
.page-hero {
  padding: 4.5rem 0 2rem;
}

.hero-grid,
.split-layout,
.contact-layout {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
}

.hero-copy,
.page-hero-inner,
.split-copy {
  animation: rise 0.7s ease both;
}

.hero-media img,
.spotlight img,
.service-card img,
.preview-card img,
.form-cover {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero-media img {
  min-height: 460px;
  box-shadow: var(--shadow);
}

.page-hero-inner {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 3.3vw, 3rem);
}

h3 {
  font-size: 1.3rem;
}

.lead {
  max-width: 58ch;
  font-size: 1.08rem;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.button-secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(31, 92, 71, 0.24);
}

.hero-points,
.footer-links,
.plain-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.footer-links li,
.plain-links li {
  margin-bottom: 0.6rem;
}

.hero-points li::before {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.65rem;
  border-radius: 999px;
  background: var(--accent);
}

.section {
  padding: 2rem 0 5rem;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}

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

.feature-grid,
.service-preview-grid,
.footer-grid,
.contact-details {
  display: grid;
  gap: 1.25rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-preview-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.feature-card,
.preview-card,
.detail-card {
  padding: 1.5rem;
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(31, 92, 71, 0.1);
  color: var(--primary);
  font-weight: 800;
}

.split-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  align-items: center;
}

.spotlight {
  overflow: hidden;
}

.spotlight img {
  min-height: 380px;
}

.spotlight-body {
  padding: 1.5rem;
}

.preview-card img,
.service-card img,
.form-cover {
  aspect-ratio: 16 / 10;
}

.preview-card img,
.service-card img {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.preview-card,
.service-card,
.form-card {
  overflow: hidden;
}

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

.service-card-body,
.form-card-body {
  padding: 1.5rem;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(31, 92, 71, 0.96), rgba(16, 49, 39, 0.94));
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-panel h2,
.cta-panel p {
  color: inherit;
}

.cta-panel .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

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

.contact-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.contact-details {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-card p,
.detail-card li {
  color: var(--muted);
}

.form-hint {
  margin-top: -0.2rem;
  color: var(--muted);
}

form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(28, 43, 36, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 1.4rem;
  margin: 0;
  color: var(--primary);
  font-weight: 600;
}

.site-footer {
  padding-top: 2rem;
  border-top: 1px solid rgba(28, 43, 36, 0.08);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 2rem;
  padding-bottom: 1.5rem;
}

.brand-footer img {
  width: 190px;
}

.footer-copy,
.footer-links {
  color: var(--muted);
}

.footer-bottom {
  padding: 1.25rem 0 2rem;
  border-top: 1px solid rgba(28, 43, 36, 0.08);
  color: var(--muted);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .contact-layout,
  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .service-preview-grid,
  .contact-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 800px) {
  .nav-toggle {
    display: inline-flex;
  }

  .has-js .site-nav {
    display: none;
  }

  .has-js .site-nav.is-open {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav a {
    padding: 0.85rem 1rem;
    border-radius: 14px;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: rgba(31, 92, 71, 0.08);
  }
}

@media (max-width: 640px) {
  .hero,
  .page-hero {
    padding-top: 3rem;
  }

  .section {
    padding-bottom: 4rem;
  }

  .feature-grid,
  .service-preview-grid,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    min-height: 320px;
  }

  .brand img {
    width: 170px;
  }
}
