:root {
  --bg: #f7f5f1;
  --surface: #ffffff;
  --surface-soft: #eef4f2;
  --text: #1f2a28;
  --muted: #5e6c68;
  --line: #dce6e2;
  --brand: #6e8f86;
  --brand-dark: #55736b;
  --accent: #d9c3a7;
  --shadow: 0 20px 50px rgba(41, 57, 52, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 1000;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(247, 245, 241, 0.88);
  border-bottom: 1px solid rgba(220, 230, 226, 0.7);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.eyebrow {
  margin: 0 0 0.35rem;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand {
  font-size: 1.35rem;
  font-weight: 800;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-primary,
.nav-cta {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: transparent;
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid,
.two-col,
.contact-card {
  display: grid;
  gap: 1.5rem;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  max-width: 12ch;
}

.hero-text,
.section-heading p,
.two-col p,
.card p,
.service-box p,
.contact-card p,
.site-footer p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.5rem 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-points li {
  background: rgba(110, 143, 134, 0.12);
  color: var(--brand-dark);
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}

.photo-card {
  background: linear-gradient(180deg, #fff, #f3efea);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.photo-placeholder {
  min-height: 320px;
  border: 2px dashed #b9c8c3;
  border-radius: calc(var(--radius) - 4px);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  text-align: center;
  color: var(--muted);
  background: repeating-linear-gradient(
    45deg,
    #f7faf8,
    #f7faf8 14px,
    #f0f5f3 14px,
    #f0f5f3 28px
  );
  font-weight: 600;
}

.section {
  padding: 1.2rem 0 4rem;
}

.section-soft {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.section-heading h2,
.two-col h2,
.contact-card h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.12;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card,
.service-box,
.contact-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.4rem;
  border: 1px solid rgba(220, 230, 226, 0.9);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
}

.check-list {
  display: grid;
  gap: 0.9rem;
}

.check-item {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(220, 230, 226, 0.9);
  border-radius: 16px;
  padding: 1rem 1rem 1rem 2.8rem;
  position: relative;
  font-weight: 600;
}

.check-item::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 0.95rem;
  color: var(--brand-dark);
  font-weight: 800;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-link {
  font-weight: 700;
  color: var(--brand-dark);
}

.site-footer {
  padding: 0 0 2.5rem;
}

.footer-wrap {
  padding-top: 1rem;
  border-top: 1px solid rgba(220, 230, 226, 0.85);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.btn-secondary:hover {
  background: rgba(110, 143, 134, 0.08);
}

.btn:focus-visible,
.nav-cta:focus-visible,
.contact-link:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(110, 143, 134, 0.35);
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

  .two-col,
  .contact-card {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}