:root {
  --sage-900: #2f5141;
  --sage-800: #466c57;
  --sage-700: #6d8d73;
  --sage-500: #adc1a9;
  --sage-200: #e6efe2;
  --paper: #fffefb;
  --mist: #f8fbf6;
  --sand: #f3f5ee;
  --ink: #203128;
  --ink-soft: #5b6d61;
  --line: rgba(47, 81, 65, 0.13);
  --shadow: 0 24px 60px rgba(51, 75, 60, 0.12);
  --shadow-soft: 0 14px 34px rgba(51, 75, 60, 0.08);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-width: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  min-width: 0;
  width: 100%;
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(173, 193, 169, 0.22), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7faf4 100%);
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(20, 34, 27, 0.34);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.topbar,
.section,
.site-footer,
.hero-home,
.page-hero {
  padding-inline: 4vw;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: rgba(255, 255, 252, 0.94);
  border-bottom: 1px solid rgba(47, 81, 65, 0.07);
  backdrop-filter: blur(18px);
  width: 100%;
  max-width: 100%;
}

.brand,
.footer-branding {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
  flex: 1 1 auto;
}

.brand img,
.footer-branding img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(47, 81, 65, 0.08);
}

.brand-copy,
.footer-branding div {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.brand-copy strong,
.footer-branding strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 0.88;
  color: var(--sage-900);
}

.brand-copy span,
.footer-branding span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}

.desktop-nav,
.footer-links,
.footer-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
}

.desktop-nav {
  flex-wrap: wrap;
  justify-content: center;
  flex: 0 1 auto;
}

.desktop-nav a,
.footer-links a,
.footer-contact a,
.footer-contact span {
  display: inline-flex;
  align-items: center;
  color: var(--ink-soft);
}

.desktop-nav a {
  position: relative;
  z-index: 1;
  padding: 0.35rem 0.2rem;
  white-space: nowrap;
}

@media (min-width: 1101px) {
  .topbar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: nowrap;
  }

  .brand {
    flex: 0 0 auto;
  }

  .desktop-nav {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: clamp(0.9rem, 1.4vw, 1.6rem);
    min-width: 0;
  }

  .desktop-nav a {
    flex: 0 0 auto;
    padding: 0.35rem 0;
  }

  .topbar-actions {
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: 0.7rem;
  }
}

@media (max-width: 1380px) and (min-width: 1101px) {
  .desktop-nav {
    gap: 1rem;
  }

  .desktop-nav a {
    font-size: 0.96rem;
  }

  .phone-pill {
    display: none;
  }

  .book-pill {
    padding: 0.82rem 1.05rem;
  }
}

.desktop-nav a:hover,
.footer-links a:hover,
.footer-contact a:hover,
.side-menu-links a:hover {
  color: var(--sage-900);
}

.topbar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  min-width: 0;
}

.phone-pill,
.book-pill,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.92rem 1.3rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  min-width: 0;
  white-space: nowrap;
}

.phone-pill {
  background: rgba(173, 193, 169, 0.24);
  color: var(--sage-900);
}

.book-pill,
.button-primary {
  background: linear-gradient(135deg, var(--sage-900), var(--sage-800));
  color: #fff;
  box-shadow: 0 16px 30px rgba(47, 81, 65, 0.16);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.96);
  color: var(--sage-900);
  border: 1px solid rgba(47, 81, 65, 0.14);
}

.book-pill:hover,
.button:hover,
.category-link-card:hover,
.service-tile:hover,
.service-detail-card:hover,
.news-card:hover {
  transform: translateY(-2px);
}

.menu-toggle,
.menu-close {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(47, 81, 65, 0.14);
  display: grid;
  place-items: center;
  gap: 0.35rem;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--sage-900);
  border-radius: 999px;
}

.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(360px, 92vw);
  height: 100vh;
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(102, 133, 107, 0.98), rgba(55, 81, 64, 0.98));
  color: #fff;
  transform: translateX(100%);
  transition: transform 200ms ease;
  box-shadow: -24px 0 60px rgba(31, 43, 34, 0.2);
}

.side-menu.is-open {
  transform: translateX(0);
}

.side-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.side-menu-header p {
  margin: 0;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.menu-close {
  color: #fff;
  font-size: 1.8rem;
}

.side-menu-links {
  display: grid;
  gap: 1.1rem;
}

.side-menu-links a {
  display: block;
  padding: 0.25rem 0;
  font-size: 1.3rem;
}

.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  align-items: stretch;
  min-height: calc(100vh - 92px);
  padding-top: 1.2rem;
  padding-bottom: 2.4rem;
  width: 100%;
  max-width: 100%;
}

.hero-copy-panel {
  display: grid;
  min-width: 0;
  width: 100%;
  align-content: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  background: linear-gradient(180deg, #ffffff 0%, #f9fcf8 100%);
  border-top-left-radius: var(--radius-xl);
  border-bottom-left-radius: var(--radius-xl);
  border: 1px solid var(--line);
  border-right: 0;
}

.hero-kicker-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.hero-kicker-nav span::after {
  content: "›";
  margin-left: 0.75rem;
  color: var(--sage-700);
}

.hero-kicker-nav span:last-child::after {
  content: "";
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-promo-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.hero-promo-card {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(47, 81, 65, 0.12);
  background: linear-gradient(135deg, rgba(230, 239, 226, 0.9), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-soft);
}

.hero-promo-card strong {
  color: var(--sage-900);
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-promo-card span {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-pill {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(173, 193, 169, 0.18);
  color: var(--sage-900);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-image-panel {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  border-top-right-radius: var(--radius-xl);
  border-bottom-right-radius: var(--radius-xl);
  border: 1px solid var(--line);
  border-left: 0;
  background: #dfe9dd;
}

.hero-slider-track,
.hero-image-panel > .image-fallback {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1400ms ease, transform 8.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(30, 45, 36, 0.18));
}

.hero-media-topbar {
  position: absolute;
  top: 2rem;
  right: 2rem;
  left: 2rem;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  max-width: calc(100% - 4rem);
}

.hero-mini-chip {
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--sage-900);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.hero-slider-dots {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 3;
  display: flex;
  gap: 0.55rem;
  max-width: calc(100% - 4rem);
}

.hero-slider-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: transform 220ms ease, background 220ms ease;
}

.hero-slider-dot.is-active {
  background: #ffffff;
  transform: scale(1.15);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--sage-700);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  color: var(--ink);
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 0.95;
}

h3 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1;
}

.lead,
.section-heading p,
.copy-columns p,
.service-detail-card p,
.info-card p,
.pricing-note,
.contact-list p,
.booking-note,
.service-bullets li,
.news-card p,
.link-column p,
.service-row-link span {
  color: var(--ink-soft);
  line-height: 1.78;
}

.section {
  padding-top: 2.6rem;
  padding-bottom: 2.6rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.8rem;
}

.white-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 243, 0.98));
  border-top: 1px solid rgba(47, 81, 65, 0.06);
  border-bottom: 1px solid rgba(47, 81, 65, 0.06);
}

.image-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(230, 239, 226, 0.95), rgba(255, 255, 255, 0.97));
  border: 1px dashed rgba(47, 81, 65, 0.14);
}

.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-fallback {
  display: none !important;
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: grid;
  gap: 0.15rem;
  padding: 0.95rem;
  text-align: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(47, 81, 65, 0.08);
}

.image-fallback p,
.image-fallback span {
  margin: 0;
}

.image-fallback span {
  color: var(--sage-700);
  font-size: 0.88rem;
}

.split-link-grid,
.service-card-grid,
.service-detail-grid,
.pricing-grid,
.contact-grid,
.service-summary-grid,
.news-grid,
.home-trust-layout,
.home-service-lists {
  display: grid;
  gap: 1.2rem;
}

.home-service-lists {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.link-column {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.link-column .image-card {
  min-height: 235px;
  border-radius: 20px;
  margin-bottom: 1.4rem;
}

.service-row-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(47, 81, 65, 0.12);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.45rem);
  color: var(--ink);
}

.service-row-link:last-of-type {
  margin-bottom: 1.4rem;
}

.service-row-link strong {
  font-weight: 700;
}

.service-row-link span {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: var(--sage-700);
}

.home-trust-layout {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
}

.trust-copy-panel,
.copy-panel,
.booking-panel,
.service-detail-card,
.info-card,
.pricing-card,
.contact-split,
.cta-band,
.news-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.trust-copy-panel,
.copy-panel,
.booking-panel,
.service-detail-card,
.info-card,
.pricing-card,
.contact-split,
.news-card {
  padding: 1.5rem;
}

.trust-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.trust-stat {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(230, 239, 226, 0.72);
}

.trust-stat strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--sage-900);
}

.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-card {
  display: grid;
  gap: 1rem;
}

.news-card .image-card {
  min-height: 260px;
  border-radius: 22px;
}

.news-date {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(230, 239, 226, 0.92);
  color: var(--sage-900);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem;
}

.page-hero {
  display: grid;
  align-items: end;
  min-height: 420px;
  padding-top: 1.6rem;
  padding-bottom: 1.8rem;
}

.page-hero-image {
  min-height: 420px;
}

.title-badge {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  max-width: min(720px, calc(100% - 4rem));
  padding: 1.2rem 1.7rem;
  background: rgba(255, 255, 255, 0.94);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  font-weight: 700;
  line-height: 0.95;
  box-shadow: var(--shadow-soft);
}

.service-summary-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-detail-card {
  display: grid;
  gap: 1rem;
}

.service-detail-card .image-card {
  min-height: 300px;
  border-radius: 0;
  border: 0;
}

.service-detail-card .tile-label {
  position: static;
  margin-top: -1rem;
  padding: 1rem 1.15rem;
  border-radius: 0;
  background: rgba(230, 239, 226, 0.97);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.private-why-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 14% 12%, rgba(230, 239, 226, 0.18), transparent 24%),
    radial-gradient(circle at 86% 8%, rgba(173, 193, 169, 0.18), transparent 20%),
    linear-gradient(135deg, var(--sage-900) 0%, #375f4b 52%, var(--sage-800) 100%);
  color: #fff;
}

.private-why-section::before {
  content: "";
  position: absolute;
  inset: 1.2rem;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.private-why-heading {
  max-width: 760px;
  margin: 0 auto clamp(2rem, 4vw, 3.4rem);
  text-align: center;
}

.private-why-heading .eyebrow {
  justify-content: center;
  width: fit-content;
  margin-inline: auto;
  background: rgba(230, 239, 226, 0.16);
  color: var(--sage-200);
}

.private-why-heading h2 {
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.private-why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.private-why-card {
  min-height: 315px;
  padding: clamp(1.3rem, 2.4vw, 2rem);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(173, 193, 169, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(255, 254, 251, 0.98), rgba(238, 246, 234, 0.98));
  color: var(--ink);
  border: 1px solid rgba(230, 239, 226, 0.72);
  box-shadow: 0 24px 60px rgba(20, 34, 27, 0.18);
  transform: translateY(var(--lift, 0)) rotate(var(--tilt, -0.7deg));
}

.private-why-card:nth-child(2) {
  --tilt: 0.7deg;
  --lift: 0.8rem;
}

.private-why-card:nth-child(3) {
  --tilt: -0.55deg;
  --lift: 0.2rem;
}

.private-why-card:nth-child(4) {
  --tilt: 0.65deg;
  --lift: 0.8rem;
}

.private-why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1.6rem;
  border-radius: 20px;
  background: rgba(230, 239, 226, 0.88);
  color: var(--sage-900);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(47, 81, 65, 0.1);
}

.private-why-card h3 {
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(1.8rem, 2.7vw, 2.45rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.private-why-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.private-leaf {
  position: absolute;
  z-index: 0;
  display: block;
  border-radius: 100% 0 100% 0;
  background: rgba(173, 193, 169, 0.32);
  transform: rotate(-18deg);
}

.private-leaf::before {
  content: "";
  position: absolute;
  top: 18%;
  left: 47%;
  width: 4px;
  height: 72%;
  border-radius: 999px;
  background: rgba(49, 93, 36, 0.45);
  transform: rotate(-28deg);
}

.private-leaf-large {
  top: 2.6rem;
  left: 17vw;
  width: 105px;
  height: 150px;
}

.private-leaf-small {
  top: 2rem;
  right: 19vw;
  width: 58px;
  height: 88px;
  opacity: 0.78;
}

.service-bullets {
  margin: 0;
  padding-left: 1.1rem;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(47, 81, 65, 0.1);
}

.pricing-note {
  margin-top: 1rem;
}

.contact-grid {
  grid-template-columns: 0.88fr 1.12fr;
}

.contact-split {
  display: grid;
  gap: 1rem;
}

.contact-list {
  display: grid;
  gap: 0.9rem;
}

.contact-row {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(230, 239, 226, 0.72);
}

.contact-row strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--sage-900);
}

.booking-panel {
  display: grid;
  gap: 1rem;
}

.booking-type-switch {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.type-option {
  border: 1px solid rgba(47, 81, 65, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--sage-900);
  padding: 0.85rem 1.15rem;
  font-weight: 800;
  cursor: pointer;
}

.type-option.is-active {
  background: linear-gradient(135deg, var(--sage-900), var(--sage-800));
  color: #fff;
  box-shadow: 0 12px 28px rgba(47, 81, 65, 0.18);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.booking-panel label {
  display: grid;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--sage-900);
  min-width: 0;
}

.booking-panel input,
.booking-panel select,
.booking-panel textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(47, 81, 65, 0.12);
  background: #fff;
  color: var(--ink);
}

.booking-panel input[type="date"] {
  min-height: 3.3rem;
}

.booking-panel input:invalid,
.booking-panel select:invalid,
.booking-panel textarea:invalid {
  box-shadow: none;
}

.booking-panel input[aria-invalid="true"],
.booking-panel select[aria-invalid="true"],
.booking-panel textarea[aria-invalid="true"] {
  border-color: #b14f4f;
  background: #fff8f8;
}

.booking-panel input:focus,
.booking-panel select:focus,
.booking-panel textarea:focus {
  outline: 2px solid rgba(109, 141, 115, 0.18);
}

.booking-note {
  margin: 0;
}

.consent-check {
  display: flex !important;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(230, 239, 226, 0.52);
  color: var(--ink);
}

.consent-check input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.18rem;
  flex: 0 0 auto;
}

.consent-check span {
  line-height: 1.6;
  color: var(--ink-soft);
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--sage-900);
  font-weight: 700;
}

.form-status.is-success {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(173, 193, 169, 0.24);
  border: 1px solid rgba(47, 81, 65, 0.12);
}

.form-status.is-error {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: #fff4f4;
  border: 1px solid rgba(177, 79, 79, 0.22);
  color: #8b2f2f;
}

#submit-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

main > .page-hero + .section .info-card {
  max-width: 1120px;
  margin: -5rem auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.6rem;
  padding: 2rem;
}

main > .page-hero + .section .info-card h2,
main > .page-hero + .section .info-card p,
main > .page-hero + .section .info-card ul {
  grid-column: 1 / 2;
}

main > .page-hero + .section .info-card a {
  align-self: start;
  justify-self: start;
  grid-column: 2 / 3;
}

main > .page-hero + .section .info-card::before {
  content: "Tjänstinformation";
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(230, 239, 226, 0.92);
  color: var(--sage-900);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(230px, auto) minmax(280px, 1fr) minmax(300px, auto);
  align-items: center;
  gap: 1rem clamp(1.2rem, 3vw, 2.4rem);
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background:
    radial-gradient(circle at top left, rgba(173, 193, 169, 0.14), transparent 24%),
    rgba(255, 254, 251, 0.96);
  border-top: 1px solid rgba(47, 81, 65, 0.1);
}

.site-footer .footer-branding {
  flex: 0 0 auto;
}

.site-footer .footer-branding img {
  width: 54px;
  height: 54px;
}

.site-footer .footer-branding strong {
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
}

.site-footer .footer-branding span {
  font-size: 0.76rem;
}

.site-footer .footer-links {
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  font-size: 0.96rem;
}

.site-footer .footer-contact {
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.site-footer .footer-contact a,
.site-footer .footer-contact span {
  min-height: 38px;
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  background: rgba(230, 239, 226, 0.72);
  border: 1px solid rgba(47, 81, 65, 0.08);
  color: var(--sage-900);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 4vw 1.4rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(47, 81, 65, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem;
}

.footer-bottom a {
  color: var(--ink-soft);
  font-weight: 700;
}

.footer-bottom a:hover {
  color: var(--sage-900);
}

.current-link {
  color: var(--sage-900);
  font-weight: 800;
}

.notice-strip {
  display: grid;
  gap: 0.85rem;
  padding: 1.3rem 1.4rem;
  border-radius: 24px;
  border: 1px solid rgba(47, 81, 65, 0.14);
  background:
    linear-gradient(135deg, rgba(230, 239, 226, 0.92), rgba(255, 255, 255, 0.96));
  box-shadow: var(--shadow-soft);
}

.notice-strip p,
.notice-strip li,
.notice-strip a {
  color: var(--ink-soft);
}

.notice-strip strong {
  color: var(--sage-900);
}

.notice-strip ul {
  margin: 0;
  padding-left: 1.1rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.legal-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.legal-card h3 {
  margin: 0;
  font-size: 2rem;
}

.legal-card p,
.legal-card li {
  color: var(--ink-soft);
  line-height: 1.7;
}

.legal-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.legal-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.legal-link-list a {
  color: var(--sage-900);
  font-weight: 700;
}

.contact-disclaimer {
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(230, 239, 226, 0.52);
  color: var(--ink-soft);
  line-height: 1.7;
}

.policy-stack {
  display: grid;
  gap: 1.2rem;
}

.section.policy-stack .info-card {
  max-width: none !important;
  margin: 0 !important;
  position: static !important;
  z-index: auto !important;
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  padding: 1.7rem !important;
}

.section.policy-stack .info-card::before {
  content: none !important;
  display: none !important;
}

.section.policy-stack .info-card h2,
.section.policy-stack .info-card p,
.section.policy-stack .info-card ul,
.section.policy-stack .info-card a {
  grid-column: auto !important;
}

.section.policy-stack .info-card h2 {
  margin-bottom: 0.9rem;
}

.section.policy-stack .info-card p,
.section.policy-stack .info-card ul {
  margin-top: 0;
}

.field-help {
  display: inline-block;
  margin-top: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.5;
}

.alternating-section {
  padding: 2rem 0;
  margin-bottom: 1.5rem;
}

.alternating-left .alternating-content {
  animation: slideInLeft 0.8s ease-out forwards;
}

.alternating-right .alternating-content {
  animation: slideInRight 0.8s ease-out forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cookie-banner {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 120;
  width: min(460px, calc(100vw - 2rem));
  display: grid;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(47, 81, 65, 0.14);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 60px rgba(32, 49, 40, 0.18);
  backdrop-filter: blur(16px);
}

.cookie-banner-copy {
  display: grid;
  gap: 0.45rem;
}

.cookie-banner-copy strong {
  color: var(--sage-900);
  font-size: 1rem;
}

.cookie-banner-copy p,
.cookie-banner-copy a {
  color: var(--ink-soft);
  line-height: 1.65;
}

.cookie-banner-copy a {
  color: var(--sage-900);
  font-weight: 700;
}

.cookie-banner-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.cookie-banner .button {
  min-width: 146px;
}

.policy-meta {
  color: var(--sage-700);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 640ms ease,
    transform 640ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible,
.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .desktop-nav,
  .phone-pill {
    display: none;
  }

  .hero-home,
  .home-service-lists,
  .service-summary-grid,
  .service-detail-grid,
  .private-why-grid,
  .hero-promo-strip,
  .legal-grid,
  .pricing-grid,
  .contact-grid,
  .form-grid,
  .news-grid,
  .home-trust-layout,
  main > .page-hero + .section .info-card {
    grid-template-columns: 1fr;
  }

  .cta-band,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
  }

  .site-footer .footer-links,
  .site-footer .footer-contact {
    justify-content: flex-start;
  }

  .hero-copy-panel {
    border-right: 1px solid var(--line);
    border-bottom: 0;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  }

  .hero-image-panel {
    border-left: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    min-height: 460px;
  }

  .page-hero-image {
    min-height: 360px;
  }

  main > .page-hero + .section .info-card {
    margin-top: -2rem;
  }

  main > .page-hero + .section .info-card a,
  main > .page-hero + .section .info-card h2,
  main > .page-hero + .section .info-card p,
  main > .page-hero + .section .info-card ul {
    grid-column: auto;
  }

  .private-why-card {
    min-height: auto;
    transform: none;
  }

  .private-leaf-large {
    left: 6vw;
  }

  .private-leaf-small {
    right: 8vw;
  }
}

@media (max-width: 720px) {
  .topbar,
  .section,
  .site-footer,
  .footer-bottom,
  .hero-home,
  .page-hero {
    padding-inline: 1rem;
  }

  .topbar {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    flex-wrap: nowrap;
    align-items: center;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-copy {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-copy strong {
    display: inline-block;
    max-width: calc(100vw - 180px);
  }

  .topbar-actions {
    flex: 0 0 auto;
    gap: 0.6rem;
  }

  .phone-pill {
    display: none;
  }

  .book-pill {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
  }

  .brand-copy strong,
  .footer-branding strong {
    font-size: 1.6rem;
  }

  .trust-copy-panel,
  .copy-panel,
  .booking-panel,
  .service-detail-card,
  .info-card,
  .pricing-card,
  .contact-split,
  .cta-band,
  .news-card {
    padding: 1.2rem;
  }

  .hero-image-panel {
    min-height: 380px;
  }

  .title-badge {
    left: 1rem;
    right: 1rem;
    max-width: none;
    bottom: 1rem;
  }

  .hero-media-topbar {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .hero-slider-dots {
    left: 1rem;
    bottom: 1rem;
  }

  .service-row-link {
    font-size: 1.85rem;
  }

  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: auto;
  }

  /* Extra fix för mobil-scroll */
  body {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .hero-home,
  .section,
  .topbar,
  .site-footer,
  .footer-bottom,
  .page-hero {
    padding-inline: 0.5rem;
  }

  .footer-bottom {
    margin-inline: 0.5rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom nav {
    justify-content: flex-start;
  }

  .hero-media-topbar,
  .hero-slider-dots {
    left: 0.5rem;
    right: 0.5rem;
  }

  .booking-panel {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .private-why-section {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }

  .private-why-section::before {
    inset: 0.65rem;
    border-radius: 24px;
  }

  .private-why-heading {
    text-align: left;
  }

  .private-why-heading .eyebrow {
    margin-inline: 0;
  }

  .private-why-card {
    padding: 1.2rem;
    border-radius: 24px;
  }

  .private-why-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 1.1rem;
  }

  .booking-panel label,
  .booking-panel input,
  .booking-panel select,
  .booking-panel textarea,
  .form-grid {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .topbar {
    gap: 0.5rem;
    align-items: center;
  }

  .brand,
  .footer-branding {
    gap: 0.7rem;
  }

  .brand img,
  .footer-branding img {
    width: 48px;
    height: 48px;
  }

  .brand-copy span {
    display: none;
  }

  .brand-copy strong,
  .footer-branding strong {
    font-size: 1.35rem;
    line-height: 0.95;
  }

  .brand-copy strong {
    max-width: calc(100vw - 150px);
  }

  .topbar-actions {
    gap: 0.45rem;
  }

  .book-pill {
    padding: 0.7rem 0.82rem;
    font-size: 0.84rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .site-footer {
    gap: 1.1rem;
  }

  .footer-links,
  .footer-contact {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.7rem 1rem;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 1rem;
  }

  .footer-links a,
  .footer-contact a,
  .footer-contact span,
  .side-menu-links a {
    display: block;
    padding: 0.35rem 0;
  }

  .footer-links a,
  .footer-contact a,
  .footer-contact span {
    min-width: 0;
    word-break: break-word;
  }
}

@media (max-width: 400px) {
  .topbar,
  .section,
  .site-footer,
  .footer-bottom,
  .hero-home,
  .page-hero {
    padding-inline: 0.45rem;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand-copy strong {
    font-size: 1.18rem;
    max-width: calc(100vw - 138px);
  }

  .book-pill {
    padding: 0.62rem 0.72rem;
    font-size: 0.78rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
