:root {
  --bg: #f7fbf8;
  --surface: #ffffff;
  --surface-strong: #eef6f0;
  --ink: #1f2722;
  --muted: #66716b;
  --line: #dfe8e2;
  --green: #5b8c74;
  --green-dark: #2f604c;
  --coral: #a94f42;
  --coral-soft: #f8ded8;
  --shadow: 0 22px 60px rgba(39, 67, 52, 0.12);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(247, 251, 248, 0.9);
  border-bottom: 1px solid rgba(223, 232, 226, 0.8);
  backdrop-filter: blur(18px);
}

.site-header[data-elevated="true"] {
  box-shadow: 0 10px 30px rgba(31, 39, 34, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: var(--green-dark);
  border-radius: var(--radius);
  font-weight: 700;
  font-family: Georgia, serif;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.mobile-quick-nav {
  display: none;
}

.nav-links a,
.language-button,
.footer-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.language-button:hover,
.footer-links a:hover {
  color: var(--green-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  padding: 3px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.language-button {
  min-width: 44px;
  min-height: 44px;
  padding: 0 8px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.language-button[aria-pressed="true"] {
  color: #fff;
  background: var(--green-dark);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta,
.button.primary {
  color: #fff;
  background: var(--green-dark);
}

.button.secondary {
  color: var(--green-dark);
  background: #fff;
  border-color: var(--line);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0;
}

.section.compact {
  padding: 36px 0 72px;
}

.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
  min-width: 0;
  min-height: calc(100vh - 72px);
  padding-top: 48px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 88px);
  overflow-wrap: break-word;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.2vw, 58px);
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.hero-text,
.split p,
.service-layout p,
.section-heading p,
.booking p {
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 8px 12px;
  color: var(--green-dark);
  background: var(--surface-strong);
  border: 1px solid #d9eadf;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.hero-media picture,
.hero-media img {
  display: block;
  width: 100%;
  height: 620px;
}

.hero-media img {
  object-fit: cover;
  object-position: 46% 48%;
}

.hero-price-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(250px, calc(100% - 44px));
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(31, 39, 34, 0.14);
}

.hero-price-card span,
.hero-price-card small {
  display: block;
  color: var(--muted);
}

.hero-price-card strong {
  display: block;
  margin: 2px 0;
  color: var(--green-dark);
  font-size: 30px;
}

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

.quick-book article,
.service-card,
.review-grid article,
.faq-list details {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quick-book .icon {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--coral);
  font-weight: 900;
}

.quick-book p,
.service-card p,
.service-card .text-link,
.review-grid p,
.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card .text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green-dark);
  font-weight: 800;
}

.service-card .text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: start;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.prices {
  scroll-margin-top: 110px;
  padding: 72px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-table {
  scroll-margin-top: 112px;
  width: 100%;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-table th,
.price-table td {
  padding: 18px 20px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.price-table th {
  color: var(--green-dark);
  background: var(--surface-strong);
  font-size: 13px;
  text-transform: uppercase;
}

.price-table tbody tr:nth-child(odd) td {
  background: #fbfdfb;
}

.price-table tbody tr:last-child td {
  border-bottom: 0;
}

.price-table th:last-child,
.price-table td:last-child {
  color: var(--green-dark);
  text-align: right;
  white-space: nowrap;
  font-weight: 800;
}

.hygiene {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.hygiene-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hygiene-media picture,
.hygiene-media img {
  display: block;
  width: 100%;
}

.hygiene-media img {
  height: 520px;
  object-fit: cover;
  object-position: 48% 50%;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  background: var(--surface-strong);
  border-radius: var(--radius);
}

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

.gallery figure {
  overflow: hidden;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.gallery picture,
.gallery img {
  display: block;
  width: 100%;
}

.gallery img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery figcaption {
  padding: 16px;
  color: var(--muted);
  font-weight: 700;
}

.reviews {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  background: var(--surface-strong);
}

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

.review-grid h3 {
  margin-bottom: 12px;
}

.review-grid p {
  color: var(--ink);
  font-size: 20px;
}

.location {
  padding-top: 58px;
}

.location-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.location-panel p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.location-list span {
  padding: 10px 12px;
  color: var(--green-dark);
  background: var(--surface-strong);
  border: 1px solid #d9eadf;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list details[open] {
  border-color: #c9dfd0;
}

.faq-list p {
  margin-top: 14px;
}

.booking {
  scroll-margin-top: 110px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 54px;
  align-items: start;
}

.booking-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-self: center;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-direct .button {
  min-width: 180px;
}

.breadcrumb {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-page .service-hero {
  min-height: auto;
  padding-top: 54px;
}

.service-page .service-hero h1 {
  font-size: clamp(44px, 6.2vw, 78px);
}

.service-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: start;
}

.service-panel {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mini-price-table {
  border: 0;
}

.mini-price-table td:first-child {
  color: var(--ink);
  font-weight: 700;
}

.language-button:focus-visible,
.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(217, 124, 109, 0.58);
  outline-offset: 2px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px max(24px, calc((100vw - var(--max)) / 2)) 96px;
  color: #fff;
  background: var(--ink);
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.mobile-book {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: none;
  min-height: 48px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--coral);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(31, 39, 34, 0.2);
  font-weight: 800;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .mobile-quick-nav {
    position: sticky;
    top: 69px;
    z-index: 19;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 16px;
    background: rgba(247, 251, 248, 0.92);
    border-bottom: 1px solid rgba(223, 232, 226, 0.8);
    backdrop-filter: blur(18px);
  }

  .mobile-quick-nav a {
    flex: 0 0 auto;
    padding: 8px 12px;
    color: var(--green-dark);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 800;
  }

  .section {
    width: min(100% - 32px, var(--max));
    padding: 58px 0;
  }

  .hero,
  .split,
  .service-layout,
  .hygiene,
  .booking {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .hero-media,
  .hero-media img {
    min-height: 320px;
    height: 320px;
  }

  .quick-book,
  .gallery,
  .review-grid,
  .location-panel {
    grid-template-columns: 1fr;
  }

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

  .prices {
    width: min(100% - 32px, var(--max));
    scroll-margin-top: 136px;
    padding: 22px;
  }

  .prices .section-heading {
    margin-bottom: 20px;
  }

  .price-table {
    scroll-margin-top: 138px;
  }

  .hygiene-media img {
    height: 360px;
    object-position: 44% 50%;
  }

  .site-footer {
    display: block;
  }

  .footer-links {
    margin-top: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .location-list {
    justify-content: flex-start;
  }

  .mobile-book {
    display: none;
  }

  .mobile-book.is-visible {
    display: inline-flex;
  }

  .mobile-book.is-suppressed {
    display: none;
  }
}

@media (max-width: 520px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    padding: 12px 16px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    max-width: 136px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .language-switch {
    flex: 0 0 auto;
  }

  .language-button {
    min-width: 44px;
    padding: 0 7px;
  }

  .header-cta {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.1;
  }

  h2 {
    font-size: 30px;
  }

  .hero-text,
  .split p,
  .service-layout p,
  .section-heading p,
  .booking p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    margin: 26px 0;
  }

  .hero-actions .button {
    width: 100%;
  }

  .mobile-book {
    right: 16px;
    left: 16px;
    width: auto;
    padding: 0 12px;
    text-align: center;
  }

  .hero-media,
  .hero-media img {
    min-height: 300px;
    height: 300px;
  }

  .hero-price-card {
    right: 14px;
    bottom: 14px;
    width: min(230px, calc(100% - 28px));
    padding: 14px;
  }

  .hero-price-card strong {
    font-size: 26px;
  }

  .price-table th,
  .price-table td {
    display: block;
    width: 100%;
    text-align: left;
  }

  .price-table th:last-child,
  .price-table td:last-child {
    text-align: left;
    padding-top: 0;
  }

  .price-table thead {
    display: none;
  }

  .price-table {
    display: block;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .price-table tbody {
    display: grid;
    gap: 10px;
  }

  .price-table tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    gap: 12px;
    align-items: center;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .price-table tbody tr:nth-child(odd) td,
  .price-table td {
    padding: 0;
    background: transparent;
    border-bottom: 0;
  }

  .price-table td:first-child {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .price-table td:last-child {
    align-self: center;
    color: var(--green-dark);
    text-align: right;
    white-space: nowrap;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  html {
    scroll-behavior: auto;
    transition: none !important;
  }
}
