:root {
  --bg: #fbf7ef;
  --surface: #fffdf8;
  --surface-soft: #f2eadc;
  --text: #26302d;
  --muted: #5f6a65;
  --border: #ddd2bf;
  --accent: #2f6f63;
  --accent-dark: #214f47;
  --accent-soft: #dcebe5;
  --sand: #eadfcf;
  --focus: #b85c38;
  --shadow: 0 10px 24px rgba(38, 48, 45, 0.08);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

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

a {
  color: var(--accent-dark);
}

a:hover {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--accent-dark);
  color: white;
  text-decoration: none;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 239, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--text);
  text-decoration: none;
  line-height: 1.1;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.brand span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius);
  padding: 0.55rem 0.75rem;
  font-weight: 700;
}

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

.site-nav a {
  color: var(--text);
  text-decoration: none;
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius);
  font-size: 0.94rem;
}

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

.nav-cta {
  margin-left: 0.35rem;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.05rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

.button:hover {
  background: var(--accent-dark);
  color: white;
  border-color: var(--accent-dark);
}

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

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

main {
  min-height: 60vh;
}

.section {
  padding: 4.5rem 1.25rem;
}

.section.tight {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.hero {
  padding: 5rem 1.25rem 4rem;
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 3rem;
  align-items: center;
}

.page-hero {
  padding: 4rem 1.25rem 2.5rem;
  border-bottom: 1px solid var(--border);
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.16;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  max-width: 900px;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
}

h3 {
  margin: 0 0 0.6rem;
  font-size: 1.35rem;
}

p {
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 760px;
}

.hero .lead {
  margin-top: 1rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.quick-info strong {
  display: block;
  color: var(--text);
}

.photo-frame {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 0.75rem;
  box-shadow: var(--shadow);
}

.photo-placeholder {
  min-height: 320px;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid #d4c7b3;
  background:
    linear-gradient(135deg, rgba(47, 111, 99, 0.16), rgba(234, 223, 207, 0.72)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.32) 0 10px, rgba(255,255,255,0.12) 10px 20px);
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
  color: var(--accent-dark);
  font-weight: 700;
}

.photo-placeholder small {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.card,
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.card p,
.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.band {
  background: var(--surface-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.callout {
  background: var(--accent-dark);
  color: white;
  border-radius: var(--radius);
  padding: 2rem;
}

.callout h2,
.callout p {
  color: white;
}

.callout .button {
  background: white;
  color: var(--accent-dark);
  border-color: white;
}

.callout .button.secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.list-check {
  padding-left: 1.1rem;
  margin: 1rem 0 0;
}

.list-check li {
  margin-bottom: 0.55rem;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.step::before {
  content: counter(step);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
}

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

.gallery-grid .photo-placeholder {
  min-height: 210px;
}

.caption {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.map-placeholder {
  min-height: 280px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(47, 111, 99, 0.14), rgba(255, 253, 248, 0.82)),
    linear-gradient(90deg, transparent 49%, rgba(47,111,99,0.18) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(47,111,99,0.18) 50%, transparent 51%);
  background-size: auto, 72px 72px, 72px 72px;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  text-align: center;
  color: var(--accent-dark);
  font-weight: 700;
}

.form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  margin-bottom: 1rem;
}

label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #bfb4a3;
  border-radius: var(--radius);
  padding: 0.72rem;
  background: white;
  color: var(--text);
  font: inherit;
}

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

.checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
}

.checkbox input {
  width: auto;
  min-height: auto;
  margin-top: 0.35rem;
}

.hidden {
  display: none;
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  background: #1f2926;
  color: #f7efe3;
  padding: 3rem 1.25rem 1.5rem;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.site-footer a {
  color: #f7efe3;
}

.site-footer h2,
.site-footer h3 {
  color: white;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.legal {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.18);
  color: #ded6c9;
  font-size: 0.9rem;
}

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

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 0.8rem;
  }

  .nav-cta {
    margin-left: 0;
  }

  .hero-grid,
  .split,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .card-grid.three,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    padding-inline: 1rem;
  }

  .brand strong {
    font-size: 1.15rem;
  }

  .hero,
  .section,
  .page-hero {
    padding-inline: 1rem;
  }

  .hero {
    padding-top: 3.25rem;
  }

  h1 {
    font-size: 2.3rem;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .card-grid,
  .card-grid.three,
  .gallery-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .photo-placeholder {
    min-height: 240px;
  }

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