:root {
  color-scheme: light;
  --bg: #fffbf0;
  --surface: #ffffff;
  --surface-strong: #faf8f0;
  --text: #1a1a1a;
  --muted: #666666;
  --border: rgba(0, 0, 0, 0.08);
  --accent: #2f7a63;
  --accent-light: #f0e6c5;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

.hero-copy h1,
.section-header h2,
.cta-panel h2 {
  font-family: Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 2rem;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 520px;
  background: #F5F5DC;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 86%);
  z-index: -1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.hero-copy h1 {
  font-size: 2.8rem;
  margin: 0 0 1rem;
}

.hero-copy p {
  max-width: 100%;
  line-height: 1.7;
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(74, 155, 127, 0.25);
}

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

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

.hero-media {
  width: 100%;
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section {
  padding: 3.5rem 0;
}

.section-light {
  background: var(--bg);
}

.section-soft {
  background: #faf8f0;
}

.section-testimonials {
  background: linear-gradient(rgba(245, 245, 220, 0.96), rgba(245, 245, 220, 0.96));
}

.section-cta {
  background: var(--bg);
}

.section-header {
  max-width: 100%;
  margin-bottom: 2.5rem;
  text-align: center;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

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

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 980px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 2rem;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.cta-panel {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
}

.quote {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}

.author {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(360px, 520px);
  gap: 2rem;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
}

.map-wrap {
  width: min(520px, 100%);
  max-width: 100%;
  aspect-ratio: 1;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-card a {
  color: var(--accent);
  font-weight: 600;
}

.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 0 auto;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.cta-panel h2 {
  margin-bottom: 0.75rem;
  font-size: 2rem;
}

.cta-panel p {
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-media {
    order: -1;
    max-width: 400px;
  }

  .cards-grid,
  .testimonials-grid,
  .contact-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .hero {
    padding: 1.5rem 0;
  }

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

  .hero-media {
    display: block;
    width: min(280px, 100%);
    margin: 1.5rem auto 0;
    order: 1;
  }

  .hero-media img {
    width: 100%;
    height: auto;
    border-radius: 24px;
  }

  .hero-copy h1 {
    font-size: 1.8rem;
  }

  .hero-copy p {
    font-size: 0.85rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

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

  .cta-panel {
    padding: 2rem 1.5rem;
  }

  .cta-panel h2 {
    font-size: 1.5rem;
  }

  .cards-grid {
    gap: 1rem;
  }

  .card {
    padding: 1.25rem;
  }
}
