*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-sage: #557a75;
  --color-sage-dark: #456660;
  --color-cream: #f5f1e3;
  --color-cream-light: #faf9f7;
  --color-text: #3d4a42;
  --color-text-muted: #5a6b5e;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-cream-light);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.75rem 2rem;
  background-color: var(--color-sage);
  border-bottom: 1px solid var(--color-sage-dark);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-image {
  height: 52px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  color: var(--color-cream);
  text-decoration: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 0.85;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(245, 241, 227, 0.35);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  background-color: var(--color-cream);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-icon {
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-icon::before {
  top: -6px;
}

.nav-toggle-icon::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.page-title {
  font-size: 1.75rem;
  font-weight: 600;
}

/* Shared page layout (inner pages) */

.page {
  max-width: none;
  padding: 0;
}

.page-header {
  background-color: var(--color-cream);
  color: var(--color-sage);
  padding: 2.5rem 2rem 3rem;
  text-align: center;
}

.page-header-inner {
  max-width: 720px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.intro-text {
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 720px;
}

/* Services page */

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

.service-card {
  background-color: #fff;
  border: 1px solid #e5e2dc;
  border-radius: 6px;
  padding: 1.75rem;
  box-shadow: 0 4px 16px rgba(61, 74, 66, 0.06);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-sage-dark);
  margin-bottom: 0.75rem;
}

.service-detail,
.service-audience {
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.service-card ul {
  margin: 0 0 1.25rem 1.25rem;
  color: var(--color-text-muted);
}

.service-card li {
  margin-bottom: 0.35rem;
}

.service-price {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-sage-dark);
}

.custom-service {
  background-color: var(--color-cream);
}

.custom-examples {
  list-style: none;
  margin: 0 0 1.25rem;
}

.custom-examples li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-muted);
}

.custom-examples li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-sage);
}

.custom-service p {
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.coming-soon {
  margin-top: 1.5rem;
  font-style: italic;
  text-align: center;
}

.things-to-know {
  background-color: #fff;
}

.info-list {
  list-style: none;
  margin-bottom: 2rem;
}

.info-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--color-text-muted);
}

.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-sage);
}

.disclaimer {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  padding-top: 1.5rem;
  border-top: 1px solid #e5e2dc;
}

/* Contact page */

.contact-location {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.contact-details {
  background-color: var(--color-cream);
}

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

.contact-card {
  background-color: #fff;
  border: 1px solid #e5e2dc;
  border-radius: 6px;
  padding: 1.75rem;
  box-shadow: 0 4px 16px rgba(61, 74, 66, 0.06);
  text-align: center;
}

.contact-card h2 {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-sage-dark);
  margin-bottom: 0.75rem;
}

.contact-card p {
  color: var(--color-text-muted);
  word-break: break-word;
}

.contact-card a {
  color: var(--color-sage);
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.map-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  border-radius: 6px;
}

.map-trigger img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(61, 74, 66, 0.12);
}

.map-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.map-lightbox.is-open {
  display: flex;
}

.map-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(61, 74, 66, 0.55);
  cursor: pointer;
}

.map-lightbox-dialog {
  position: relative;
  z-index: 1;
  max-width: min(900px, 90vw);
  max-height: 85vh;
  background-color: #fff;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 16px 48px rgba(61, 74, 66, 0.25);
}

.map-lightbox-dialog img {
  display: block;
  width: 100%;
  max-height: calc(85vh - 2rem);
  object-fit: contain;
  border-radius: 4px;
}

.map-lightbox-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 50%;
  background-color: var(--color-sage);
  color: var(--color-cream);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.map-lightbox-close:hover {
  background-color: var(--color-sage-dark);
}

body.map-lightbox-open {
  overflow: hidden;
}

/* Reviews page */

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

.review-card {
  background-color: #fff;
  border: 1px solid #e5e2dc;
  border-radius: 6px;
  padding: 1.75rem;
  margin: 0;
  box-shadow: 0 4px 16px rgba(61, 74, 66, 0.06);
}

.review-card p {
  color: var(--color-text-muted);
  font-style: italic;
}

.review-card p::before {
  content: "\201C";
  color: var(--color-sage);
  font-size: 1.5rem;
  line-height: 0;
  vertical-align: -0.2em;
  margin-right: 0.15em;
}

.review-card p::after {
  content: "\201D";
  color: var(--color-sage);
  font-size: 1.5rem;
  line-height: 0;
  vertical-align: -0.2em;
  margin-left: 0.1em;
}

/* Home page */

.home {
  max-width: none;
  padding: 0;
}

.hero {
  background-color: var(--color-cream);
  color: var(--color-sage);
  padding: 2.5rem 2rem 3rem;
  text-align: center;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.hero-logo {
  max-width: 240px;
  width: 100%;
  height: auto;
  margin: 0 auto 1.25rem;
  display: block;
  border-radius: 4px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.hero-tagline {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-style: italic;
  opacity: 0.95;
}

.section {
  padding: 4rem 2rem;
}

.section:nth-of-type(even) {
  background-color: #fff;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  font-size: clamp(1.5rem, 4vw, 1.75rem);
  font-weight: 400;
  color: var(--color-sage-dark);
  margin-bottom: 1.25rem;
}

.section-content p {
  margin-bottom: 1.25rem;
  color: var(--color-text-muted);
}

.section-content p:last-child {
  margin-bottom: 0;
}

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

.split.reverse .section-image {
  order: 2;
}

.section-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(61, 74, 66, 0.12);
}

.benefits-list {
  background-color: var(--color-cream);
}

.benefits-list h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.benefits-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.benefits-grid li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--color-text-muted);
}

.benefits-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-sage);
}

@media (max-width: 900px) {
  .service-cards,
  .review-cards,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.75rem 1rem;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    order: 3;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(245, 241, 227, 0.2);
  }

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

  .nav-links a {
    padding: 0.75rem 0;
    font-size: 0.85rem;
  }

  .split,
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split.reverse .section-image {
    order: 0;
  }

  .page-header,
  .hero {
    padding: 2rem 1.25rem 2.5rem;
  }

  .section {
    padding: 2.5rem 1.25rem;
  }

  .service-card,
  .review-card,
  .contact-card {
    padding: 1.25rem;
  }

  .map-lightbox {
    padding: 1rem;
  }

  .map-lightbox-dialog {
    max-width: 100%;
    padding: 0.75rem;
  }

  .hero-logo {
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .logo-image {
    height: 44px;
  }

  .nav-links a {
    letter-spacing: 0.05em;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .contact-location {
    font-size: 1rem;
  }
}
