:root {
  --bg: #fbfaf6;
  --surface: #ffffff;
  --surface-soft: #eef3ec;
  --ink: #1f2923;
  --muted: #647067;
  --line: #dfe6dc;
  --accent: #3f7d5a;
  --accent-dark: #28563d;
  --warm: #b9744f;
  --shadow: 0 18px 50px rgba(32, 42, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(223, 230, 220, 0.8);
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--accent);
  background: #dfeadd;
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: 56px;
  min-height: auto;
  padding: 42px 5vw 34px;
}

.hero-copy {
  max-width: 680px;
}

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

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.8vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.25;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  font-weight: 800;
}

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

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  color: var(--accent-dark);
  background: transparent;
}

.button.secondary:hover {
  background: #e7efe5;
}

.hero-media {
  position: relative;
  margin: 0;
}

.hero-media::before {
  position: absolute;
  inset: 24px -18px -18px 28px;
  z-index: -1;
  border-radius: 8px;
  background: var(--surface-soft);
  content: "";
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.hero-benefits div {
  display: grid;
  gap: 4px;
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-benefits strong {
  font-size: 0.98rem;
}

.hero-benefits span,
.service-card p,
.process-section p,
.steps span,
.pricing p,
.contact p,
.note {
  color: var(--muted);
}

.section,
.process-section,
.contact {
  padding: 74px 5vw;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 18px;
}

.section-heading.compact {
  margin-bottom: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.pricing article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--warm);
  font-size: 0.84rem;
  font-weight: 800;
}

.process-section {
  background: #ffffff;
}

.process-section .eyebrow {
  margin-bottom: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-left: 4px solid var(--accent);
  background: var(--surface-soft);
}

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

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pricing article {
  min-height: 220px;
}

.price {
  color: var(--accent-dark);
  font-weight: 800;
}

.note {
  max-width: 760px;
  margin: 22px 0 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 40px;
  align-items: center;
}

.contact p {
  max-width: 720px;
  font-size: 1.08rem;
}

.contact-box {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 5vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.page-shell {
  padding: 56px 5vw 80px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.photo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.photo-card:first-child {
  grid-column: span 2;
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface-soft);
}

.photo-card div {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.photo-card span,
.notice,
.calendar-grid p {
  color: var(--muted);
}

.notice {
  max-width: 850px;
  margin: 0 0 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.calendar-grid article {
  display: grid;
  gap: 8px;
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.calendar-grid .day {
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.calendar-grid strong {
  font-size: 1.7rem;
  line-height: 1;
}

.calendar-grid .blocked {
  background: #f1eee8;
}

.form-panel {
  display: grid;
  gap: 20px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

label.wide {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 92px;
  resize: vertical;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
}

button {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  background: var(--accent);
  font: inherit;
  font-weight: 800;
}

.journal-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr 0.9fr 1.5fr;
  gap: 8px;
  margin-top: 8px;
}

.journal-row.header {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .nav {
    width: 100%;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .process-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-benefits,
  .service-grid,
  .steps,
  .gallery-grid,
  .calendar-grid,
  .pricing {
    grid-template-columns: 1fr 1fr;
  }

  .photo-card:first-child {
    grid-column: span 2;
  }

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

@media (max-width: 640px) {
  .hero {
    gap: 34px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .section,
  .process-section,
  .contact {
    padding: 56px 20px;
  }

  .hero-benefits,
  .service-grid,
  .steps,
  .gallery-grid,
  .calendar-grid,
  .pricing {
    grid-template-columns: 1fr;
  }

  .page-shell {
    padding: 42px 20px 62px;
  }

  .photo-card:first-child {
    grid-column: span 1;
  }

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

  .service-card,
  .pricing article {
    min-height: auto;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
