:root {
  --green-900: #2f5d44;
  --green-700: #4a7c59;
  --green-500: #58956b;
  --green-100: #edf5ef;
  --gold-500: #c9a227;
  --ink: #1a2420;
  --muted: #5c6b63;
  --line: #d8e5dc;
  --soft: #f6faf7;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(47, 93, 68, 0.14);
  --soft-shadow: 0 10px 28px rgba(26, 36, 32, 0.08);
  --radius: 12px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--green-900);
  color: var(--white);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(216, 229, 220, 0.95);
  box-shadow: 0 8px 24px rgba(26, 36, 32, 0.04);
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 1;
}

.brand-logo {
  display: block;
  width: auto;
  height: 52px;
  max-width: min(220px, 42vw);
  object-fit: contain;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-weight: 600;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--green-900);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item .nav-parent {
  font-weight: 600;
  color: var(--muted);
}

.nav-submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.nav-submenu-toggle svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

.nav-dropdown {
  display: none;
}

.nav-item.is-open .nav-submenu-toggle,
.nav-submenu-toggle:hover,
.nav-submenu-toggle:focus-visible {
  background: var(--green-100);
  color: var(--green-900);
}

@media (min-width: 761px) {
  .nav-submenu-toggle {
    display: none;
  }

  .nav-item.has-dropdown {
    position: relative;
  }

  .nav-dropdown {
    display: block;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    padding: 10px 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
    z-index: 30;
  }

  .nav-item.has-dropdown:hover .nav-dropdown,
  .nav-item.has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-dropdown a {
    display: block;
    padding: 10px 18px;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
  }

  .nav-dropdown a:hover,
  .nav-dropdown a:focus-visible,
  .nav-dropdown a.is-active {
    background: var(--green-100);
    color: var(--green-900);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0 1.35rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: var(--white);
  box-shadow: 0 12px 24px rgba(47, 93, 68, 0.22);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-900);
  border: 1px solid var(--line);
}

.btn-sm {
  min-height: 42px;
  padding: 0 1rem;
  font-size: 0.95rem;
}

.btn-full {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.header-lang {
  white-space: nowrap;
}

.nav-lang {
  display: none;
  font-weight: 700;
  color: var(--green-700);
}

.nav-lang:hover,
.nav-lang:focus-visible {
  color: var(--green-900);
}

.header-cta {
  flex-shrink: 0;
}

.hero {
  padding-top: 72px;
  background:
    radial-gradient(circle at top right, rgba(201, 162, 39, 0.12), transparent 28%),
    linear-gradient(180deg, var(--soft) 0%, var(--white) 100%);
}

.hero-grid {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-text {
  margin: 0 auto 18px;
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 28px 0 24px;
}

.hero-badge {
  display: inline-block;
  margin: 0 0 14px;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--green-100);
  border: 1px solid var(--line);
  color: var(--green-900);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-points {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  width: fit-content;
  text-align: left;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--green-700);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-copy h2,
.section-heading h2 {
  margin: 0 0 16px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--green-900);
}

.section-copy p,
.section-heading p {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 62ch;
}

.hero-points li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink);
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold-500);
}

.trust-strip {
  padding: 28px 0;
  background: var(--green-900);
  color: var(--white);
}

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

.trust-grid strong {
  display: block;
  font-size: 1.05rem;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.about-grid {
  max-width: 720px;
}

.about-us {
  background: var(--soft);
}

.about-us-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1.1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.about-us-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.about-us-lead h2 {
  margin: 0 0 16px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--green-900);
}

.about-us-lead p {
  margin: 0 0 16px;
  color: var(--muted);
}

.about-us-specialty {
  margin-top: 8px;
  padding: 16px 18px;
  background: var(--green-100);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 600;
}

.about-us-highlights {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.about-us-highlights li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink);
  font-weight: 600;
}

.about-us-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold-500);
}

.about-us-credentials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.credential-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.credential-card h3 {
  margin: 0 0 14px;
  font-size: 1.1rem;
  color: var(--green-900);
}

.credential-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.credential-card li + li {
  margin-top: 8px;
}

.contact-shell {
  max-width: 640px;
  margin: 0 auto;
}

.contact-copy {
  text-align: center;
}

.contact-copy .section-copy p,
.contact-copy p {
  margin-left: auto;
  margin-right: auto;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.contact-list {
  margin: 28px 0 0;
}

.contact-list div {
  margin-bottom: 16px;
}

.contact-list dt {
  display: block;
  margin-bottom: 4px;
  font-size: 0.92rem;
  color: var(--green-900);
}

.contact-list dd {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 40px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.centered p {
  margin-left: auto;
  margin-right: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  color: var(--green-900);
}

.service-card p {
  margin: 0 0 18px;
  color: var(--muted);
  flex: 1;
}

.service-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.service-hero {
  padding-top: 72px;
  background:
    radial-gradient(circle at top right, rgba(201, 162, 39, 0.1), transparent 28%),
    linear-gradient(180deg, var(--soft) 0%, var(--white) 100%);
}

.service-hero-grid {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.service-hero-grid h1 {
  margin: 0 0 16px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  color: var(--green-900);
}

.service-hero-grid p {
  margin: 0 auto 24px;
  max-width: 62ch;
  color: var(--muted);
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-detail-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.service-detail-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  color: var(--green-900);
}

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

.service-note {
  max-width: 720px;
  margin: 28px auto 0;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--green-100);
  border: 1px solid var(--line);
  color: var(--ink);
  text-align: center;
}

.how-it-works {
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.step-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--soft);
  border: 1px solid var(--line);
  text-align: center;
}

.step-card .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 0 16px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  font-weight: 800;
}

.step-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: var(--green-900);
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

.what-to-bring {
  background: var(--soft);
}

.bring-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.bring-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.bring-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: var(--green-900);
}

.bring-card p {
  margin: 0;
  color: var(--muted);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 20px;
  font-weight: 700;
  color: var(--green-900);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--green-700);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 20px 18px;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.faq-answer a {
  color: var(--green-700);
  font-weight: 600;
  text-decoration: underline;
}

.cta-strip {
  padding: 48px 0;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: var(--white);
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-strip h2 {
  margin: 0 0 8px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
}

.cta-strip p {
  margin: 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.88);
}

.btn-white {
  flex-shrink: 0;
  background: var(--white);
  color: var(--green-900);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.booking-frame {
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  background: var(--white);
}

.booking-frame iframe {
  display: block;
  border: 0;
  min-height: 720px;
}

.contact {
  background: var(--soft);
}

.site-footer {
  padding: 48px 0 24px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  display: block;
  width: auto;
  height: 54px;
  margin-bottom: 14px;
}

.footer-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
}

.footer-grid p {
  margin: 0 0 8px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .about-us-intro {
    grid-template-columns: 1fr;
  }

  .about-us-credentials,
  .bring-grid,
  .footer-grid,
  .service-detail-grid,
  .steps-grid,
  .trust-grid,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 72px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 88px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--soft-shadow);
  }

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

  .nav-links > a,
  .nav-item {
    width: 100%;
  }

  .nav-item {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-item .nav-parent {
    display: block;
    padding: 14px 0 10px;
    border-bottom: none;
  }

  .nav-submenu-toggle {
    position: absolute;
    top: 8px;
    right: 0;
  }

  .nav-item.has-dropdown {
    position: relative;
    padding-right: 36px;
  }

  .nav-item.is-open .nav-dropdown {
    display: block;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 12px;
    background: transparent;
  }

  .nav-dropdown a {
    display: block;
    padding: 10px 0 10px 14px;
    border-bottom: 1px solid var(--line);
    font-weight: 600;
    color: var(--muted);
  }

  .nav-dropdown a.is-active {
    color: var(--green-900);
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .header-actions {
    display: none;
  }

  .nav-lang {
    display: block;
    font-weight: 700;
    color: var(--green-700);
  }

  .header-cta {
    display: none;
  }

  .about-us-intro,
  .about-us-credentials,
  .bring-grid,
  .footer-grid,
  .service-detail-grid,
  .steps-grid,
  .trust-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
