:root {
  --ink: #171a36;
  --muted: #536070;
  --green: #2e7d57;
  --green-dark: #1f6746;
  --green-soft: #edf6ef;
  --mint: #f5faf7;
  --cream: #fffdf9;
  --border: #dde7df;
  --gold: #d5b878;
  --shadow: 0 10px 24px rgba(23, 26, 54, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
}

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

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

h1,
h2,
h3,
.cm-logo {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.05;
}

h1 {
  max-width: 600px;
  margin-bottom: 1.4rem;
  font-size: clamp(3.2rem, 8vw, 5rem);
}

h2 {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}

h3 {
  margin-bottom: 0.8rem;
  font-size: 1.75rem;
}

p {
  color: var(--muted);
}

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

.cm-narrow {
  width: min(100% - 2rem, 760px);
}

.cm-header {
  position: sticky;
  z-index: 10;
  top: 0;
  background: rgba(255, 253, 249, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.cm-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  gap: 2rem;
}

.cm-logo {
  color: var(--ink);
  font-size: 2rem;
}

.cm-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  color: var(--ink);
  font-size: 0.95rem;
}

.cm-nav a:not(.cm-btn):hover,
.cm-text-link:hover,
.cm-footer a:hover {
  color: var(--green);
}

.cm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 500;
  line-height: 1.2;
}

.cm-btn-primary {
  color: #ffffff;
  background: var(--green);
}

.cm-btn-primary:hover {
  background: var(--green-dark);
}

.cm-hero {
  background: linear-gradient(120deg, var(--mint), #ffffff 70%);
}

.cm-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: 3rem;
  min-height: 600px;
  padding: 4rem 0;
}

.cm-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  padding: 0.45rem 0.75rem;
  color: var(--green-dark);
  background: #dff0e4;
  border-radius: 999px;
  font-size: 0.9rem;
}

.cm-hero-copy > p {
  max-width: 520px;
  margin-bottom: 2rem;
  color: #3f4a59;
  font-size: 1.1rem;
}

.cm-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 2.6rem;
}

.cm-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--green);
  font-weight: 500;
}

.cm-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
}

.cm-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  max-width: 180px;
}

.cm-trust i {
  color: var(--green);
  font-size: 1.7rem;
}

.cm-hero-image {
  width: 100%;
  mix-blend-mode: multiply;
}

.cm-section {
  padding: 4rem 0;
}

.cm-soft {
  background: var(--mint);
}

.cm-about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: center;
  gap: 4rem;
}

.cm-about-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.cm-about-grid h2 {
  text-align: left;
}

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

.cm-certifications span,
.cm-card,
.cm-contact-card,
.cm-prices {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.cm-certifications span {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 4.5rem;
  padding: 1rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
}

.cm-certifications i {
  color: var(--green);
  font-size: 2rem;
}

.cm-help-grid,
.cm-testimonials,
.cm-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.cm-card {
  padding: 1.6rem;
}

.cm-card > i {
  display: inline-flex;
  margin-bottom: 1.6rem;
  color: var(--green);
  font-size: 3.2rem;
}

.cm-card p {
  margin-bottom: 0;
}

.cm-prices {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

.cm-prices td {
  padding: 0.8rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.cm-prices tr:last-child td {
  border-bottom: 0;
}

.cm-prices td:last-child {
  width: 45%;
  border-left: 1px solid var(--border);
  text-align: center;
  font-weight: 500;
}

.cm-note {
  margin: 1.3rem 0 0;
  text-align: center;
  font-style: italic;
}

.cm-testimonials .cm-card {
  text-align: center;
}

.cm-stars {
  margin-bottom: 0.8rem;
  color: #f3b21a;
  letter-spacing: 0.12rem;
}

blockquote {
  margin: 0 0 1.3rem;
  color: var(--muted);
  font-style: italic;
}

.cm-testimonials strong {
  color: var(--green);
}

.cm-booking {
  text-align: center;
}

.cm-contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.3rem;
}

.cm-contact-card {
  display: grid;
  grid-template-columns: 4rem 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  text-align: left;
}

.cm-contact-card i {
  display: grid;
  grid-row: span 3;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 50%;
  font-size: 1.8rem;
}

.cm-contact-card span,
.cm-contact-card small {
  color: var(--muted);
}

.cm-contact-card strong {
  color: var(--green);
  font-size: 1.1rem;
}

.cm-location,
.cm-free {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.3rem;
}

.cm-location {
  width: 100%;
  margin-bottom: 0;
}

.cm-free {
  width: 100%;
  padding: 0.9rem 1rem;
  color: var(--green-dark);
  background: #dff0e4;
  border-radius: 10px;
}

.cm-footer {
  padding: 1.8rem 0 1rem;
  color: #ffffff;
  background: var(--green);
}

.cm-footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: start;
}

.cm-footer p {
  margin-bottom: 0.2rem;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
}

.cm-footer small,
.cm-footer a,
.cm-credit {
  color: #effaf2;
}

.cm-credit {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
  font-size: 0.9rem;
}

.cm-credit a {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .cm-header {
    position: static;
  }

  .cm-header-inner,
  .cm-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .cm-nav {
    width: 100%;
    gap: 1rem;
    padding-bottom: 1rem;
  }

  .cm-nav .cm-btn {
    width: 100%;
  }

  .cm-hero-grid,
  .cm-about-grid,
  .cm-help-grid,
  .cm-testimonials,
  .cm-contact-grid,
  .cm-footer-grid {
    grid-template-columns: 1fr;
  }

  .cm-hero-grid {
    min-height: auto;
  }

  .cm-hero-image {
    max-width: 520px;
    margin-inline: auto;
  }

  .cm-about-grid {
    gap: 2rem;
  }

  .cm-about-grid img {
    width: min(100%, 360px);
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .cm-section,
  .cm-hero-grid {
    padding: 3rem 0;
  }

  .cm-actions,
  .cm-actions .cm-btn,
  .cm-contact-card {
    width: 100%;
  }

  .cm-certifications {
    grid-template-columns: 1fr;
  }

  .cm-contact-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cm-contact-card i {
    grid-row: auto;
    margin-inline: auto;
  }
}
