:root {
  --sand: #f5efe6;
  --sand-2: #ede4d8;
  --sand-3: #d9cebf;
  --linen: #faf7f3;
  --clay: #5b9fcc;
  --clay-dark: #3f7fa9;
  --clay-light: #d5e8f5;
  --moss: #bcc4cc;
  --moss-dark: #727d88;
  --moss-light: #e5e9ed;
  --ink: #2c2318;
  --ink-mid: #5a4e42;
  --ink-light: #9a8e83;
  --white: #fefcf9;
  --danger-soft: #f7d7cf;
  --danger-text: #7f4330;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --shadow-soft: 0 12px 36px rgba(44, 35, 24, 0.08);
  --shadow-medium: 0 18px 44px rgba(44, 35, 24, 0.1);
  --page-gutter: 20px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(91, 159, 204, 0.12), transparent 24%),
    radial-gradient(circle at 10% 18%, rgba(188, 196, 204, 0.08), transparent 20%),
    var(--linen);
  overflow-x: hidden;
}

main {
  min-height: calc(100vh - 160px);
}

.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl,
.container-fluid {
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

.home-intro,
.trust,
.about,
.services,
.journey,
.reviews,
.cta,
.page-banner,
.page-banner-compact {
  margin-left: var(--page-gutter);
  margin-right: var(--page-gutter);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-name,
.sec-title,
.cta-title {
  font-family: "Lora", Georgia, serif;
}

.main-content {
  position: relative;
}

.text-secondary,
.text-muted {
  color: var(--ink-light) !important;
}

.text-primary {
  color: var(--clay-dark) !important;
}

.section-heading {
  max-width: 700px;
}

.section-kicker,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay);
}

.section-kicker::before,
.kicker::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--clay);
}

.kicker-centered {
  justify-content: center;
}

.sec-title {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.soft-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(91, 159, 204, 0.24);
  border-radius: 999px;
  background: rgba(91, 159, 204, 0.12);
  color: var(--clay-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.check-list,
.important-list {
  display: grid;
  gap: 0.95rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.important-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--ink-mid);
  line-height: 1.7;
}

.check-list li i,
.important-list li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  margin-top: 0.05rem;
  border-radius: 50%;
  background: rgba(188, 196, 204, 0.12);
  color: var(--moss-dark);
  font-size: 0.78rem;
  flex-shrink: 0;
}

.btn-primary,
.btn-warm,
.site-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--clay);
  color: #fff !important;
  border: 1px solid var(--clay);
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease);
  box-shadow: 0 6px 18px rgba(91, 159, 204, 0.26);
}

.btn-primary:hover,
.btn-warm:hover,
.site-cta-button:hover {
  background: var(--clay-dark);
  border-color: var(--clay-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(91, 159, 204, 0.32);
}

.btn-outline-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  color: var(--moss-dark) !important;
  border: 1.5px solid rgba(188, 196, 204, 0.4);
  border-radius: 999px;
  padding: 0.82rem 1.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn-outline-primary:hover,
.btn-outline:hover {
  background: rgba(188, 196, 204, 0.08);
  border-color: var(--moss);
  transform: translateY(-1px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #fff;
  color: var(--clay-dark);
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  padding: 0.82rem 1.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-1px);
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.12rem rgba(255, 255, 255, 1), 0 0 0 0.3rem rgba(91, 159, 204, 0.22);
}

.form-control,
.form-select {
  min-height: 3.15rem;
  border: 1px solid var(--sand-3);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 0.9rem 1rem;
}

.form-control::placeholder {
  color: var(--ink-light);
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(91, 159, 204, 0.48);
}

.form-check-input {
  border-color: var(--sand-3);
}

.contact-link {
  color: var(--moss-dark);
  font-weight: 700;
  text-decoration: none;
}

.contact-link:hover {
  color: var(--clay-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
}

.site-navbar {
  padding: 0;
  background: rgba(250, 247, 243, 0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(91, 159, 204, 0.18);
}

.site-navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 2rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}

.site-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.site-brand-leaf {
  width: 28px;
  height: 28px;
  background: var(--moss);
  border-radius: 50% 50% 50% 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(188, 196, 204, 0.2);
}

.site-brand-leaf svg {
  width: 14px;
  height: 14px;
}

.site-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
}

.brand-name {
  color: var(--moss-dark);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  color: var(--ink-light);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav-shell {
  justify-content: flex-end;
  min-width: 0;
}

.site-nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.site-nav-link {
  color: var(--ink-mid) !important;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0 !important;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.site-nav-link:hover,
.site-nav-link.is-active {
  color: var(--moss) !important;
}

.nav-item-cta {
  margin-left: 0.35rem;
}

.site-navbar-toggler {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(91, 159, 204, 0.1);
  display: none;
  align-items: center;
  justify-content: center;
}

.site-navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2890,78,66,0.92%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-footer {
  background: var(--moss-dark);
  padding: 2.5rem 0;
}

.organic-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.organic-footer-brand {
  font-family: "Lora", Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.organic-footer-info {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.7;
  text-align: center;
  color: rgba(255, 255, 255, 0.42);
}

.organic-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.35rem;
  justify-content: flex-end;
}

.organic-footer-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.organic-footer-links a:hover {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: inherit;
  transition: color 0.2s var(--ease);
}

.site-footer-button:hover {
  color: rgba(255, 255, 255, 0.86);
}

body.has-cookie-banner {
  padding-bottom: 12rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  padding: 0 0 1rem;
}

.cookie-banner-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.6rem;
  background: rgba(44, 35, 24, 0.96);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.cookie-banner-copy h2 {
  margin: 0 0 0.4rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
}

.cookie-banner-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.7;
}

.cookie-banner-copy a {
  color: #fff;
  font-weight: 700;
}

.cookie-banner-tag {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn-primary {
  background: var(--clay);
  border-color: var(--clay);
  color: #fff;
}

.cookie-btn-primary:hover {
  background: var(--clay-dark);
  border-color: var(--clay-dark);
}

.cookie-btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.9);
}

.cookie-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cookie-inline-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  padding: 0.62rem 0.95rem;
  border: 1px solid rgba(91, 159, 204, 0.24);
  border-radius: 999px;
  background: rgba(91, 159, 204, 0.1);
  color: var(--clay-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.cookie-embed {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 15rem;
  background: rgba(245, 239, 230, 0.72);
}

.cookie-embed-placeholder,
.cookie-service-note {
  max-width: 30rem;
  padding: 1.3rem 1.2rem;
  border: 1px dashed rgba(91, 159, 204, 0.22);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-mid);
  font-size: 0.85rem;
  line-height: 1.7;
}

.cookie-embed-placeholder {
  text-align: center;
}

.cookie-embed-placeholder strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ink);
}

.cookie-managed-recaptcha:not(.is-external-enabled) .g-recaptcha {
  display: none;
}

.cookie-managed-recaptcha.is-external-enabled [data-cookie-service-placeholder] {
  display: none;
}

.cookie-embed.is-external-enabled .cookie-embed-placeholder {
  display: none;
}

.home-intro {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  overflow: hidden;
}

.home-intro-glow-primary,
.home-intro-glow-secondary {
  position: absolute;
  pointer-events: none;
}

.home-intro-glow-primary {
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(91, 159, 204, 0.12) 0%, transparent 70%);
}

.home-intro-glow-secondary {
  bottom: -60px;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(188, 196, 204, 0.08) 0%, transparent 70%);
}

.home-intro-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem 4.5rem 4rem;
}

.intro-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 1.75rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(188, 196, 204, 0.2);
  border-radius: 999px;
  background: rgba(188, 196, 204, 0.1);
  color: var(--moss-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.intro-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--moss);
}

.intro-title {
  margin: 0 0 1.5rem;
  font-size: clamp(2.1rem, 3.4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.14;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.intro-title em {
  color: var(--clay);
  font-style: italic;
}

.intro-summary {
  max-width: 440px;
  margin-bottom: 2rem;
  color: var(--ink-mid);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.2rem;
}

.intro-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.intro-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--sand-3);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-mid);
  font-size: 0.82rem;
  font-weight: 600;
}

.pill-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--moss-light);
  color: #fff;
  font-size: 0.55rem;
  flex-shrink: 0;
}

.home-intro-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--sand);
}

.home-intro-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(91, 159, 204, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(188, 196, 204, 0.1) 0%, transparent 50%);
}

.intro-photo-frame {
  position: relative;
  z-index: 1;
  width: 76%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 120px 120px 60px 60px;
  background: linear-gradient(160deg, var(--moss-light) 0%, var(--moss) 40%, var(--moss-dark) 100%);
  box-shadow: 0 18px 42px rgba(44, 35, 24, 0.16);
}

.intro-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-bubble {
  position: absolute;
  z-index: 2;
  bottom: 10%;
  left: -1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 8px 32px rgba(44, 35, 24, 0.12);
}

.stat-bubble strong {
  display: block;
  color: var(--moss-dark);
  font-family: "Lora", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.1;
}

.stat-bubble span {
  display: block;
  color: var(--ink-light);
  font-size: 0.75rem;
  font-weight: 500;
}

.award-badge {
  position: absolute;
  z-index: 2;
  top: 1.25rem;
  right: 1.25rem;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 8px 24px rgba(91, 159, 204, 0.38);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.award-badge strong {
  color: #fff;
  font-family: "Lora", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
}

.award-badge span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 1rem 4rem;
  background: var(--moss-dark);
}

.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.75rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
}

.trust-item span {
  display: block;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.about-img {
  position: relative;
  overflow: hidden;
  background: var(--sand-2);
}

.about-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(188, 196, 204, 0.24) 0%, transparent 62%);
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  background: var(--linen);
}

.sec-body {
  margin-bottom: 2rem;
  color: var(--ink-mid);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.85;
}

.organic-list {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.organic-li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-mid);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.7;
}

.organic-li-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-top: 0.08rem;
  border-radius: 8px;
  background: rgba(188, 196, 204, 0.12);
  color: var(--moss-dark);
  font-size: 0.65rem;
  flex-shrink: 0;
}

.address-warm {
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--clay);
  border-radius: var(--radius-md);
  background: var(--sand);
}

.address-warm strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.address-warm span {
  display: block;
  color: var(--ink-light);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.65;
}

.services,
.journey,
.reviews {
  padding: 4.75rem 4rem;
}

.services {
  background: var(--white);
}

.journey {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}

.journey::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(91, 159, 204, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.reviews {
  background: var(--linen);
}

.sec-header,
.journey-header {
  max-width: 520px;
  margin: 0 auto 3rem;
  text-align: center;
}

.sec-header p:last-child,
.journey-header p:last-child {
  color: var(--ink-light);
  font-size: 0.95rem;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.svc-card {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.75rem;
  border: 1px solid var(--sand-3);
  border-radius: var(--radius-lg);
  background: var(--linen);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(91, 159, 204, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.svc-card:hover {
  transform: translateY(-4px);
  border-color: var(--clay-light);
  box-shadow: var(--shadow-soft);
}

.svc-card:hover::before {
  opacity: 1;
}

.svc-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.25rem;
  border-radius: 14px;
  background: rgba(91, 159, 204, 0.12);
  color: var(--clay);
  font-size: 1.15rem;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}

.svc-card:hover .svc-icon {
  background: var(--clay);
  color: #fff;
}

.svc-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.6rem;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 600;
}

.svc-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
  color: var(--ink-light);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
}

.svc-link,
.service-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--clay);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s var(--ease), color 0.2s var(--ease);
}

.svc-card:hover .svc-link,
.service-link:hover {
  gap: 0.7rem;
  color: var(--clay-dark);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
}

.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 1px;
  border-top: 1.5px dashed rgba(91, 159, 204, 0.4);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  border: 2px solid var(--clay-light);
  border-radius: 50%;
  background: var(--white);
  color: var(--clay);
  font-family: "Lora", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.step:hover .step-num {
  background: var(--clay);
  border-color: var(--clay);
  color: #fff;
}

.step h3 {
  margin: 0 0 0.65rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.step p {
  margin: 0;
  color: var(--ink-light);
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.75;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.reviews-header p:last-child {
  max-width: 280px;
  margin: 0;
  text-align: right;
  color: var(--ink-light);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.rev-card {
  padding: 1.75rem;
  border: 1px solid var(--sand-3);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.rev-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(44, 35, 24, 0.08);
}

.rev-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.rev-star {
  color: var(--clay);
  font-size: 0.95rem;
}

.rev-star-muted {
  color: rgba(91, 159, 204, 0.34);
}

.rev-text {
  margin-bottom: 1.25rem;
  color: var(--ink-mid);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  font-style: italic;
}

.rev-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 1rem;
  border-top: 1px solid var(--sand-3);
}

.rev-ava {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--moss-light), var(--moss));
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  flex-shrink: 0;
}

.rev-name {
  display: block;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.rev-date {
  display: block;
  color: var(--ink-light);
  font-size: 0.72rem;
}

.reviews-loading-card,
.reviews-empty {
  box-shadow: none;
}

.reviews-empty {
  grid-column: 1 / -1;
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.cta,
.home-cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 3.25rem 4rem;
  background: var(--clay);
}

.home-cta-panel {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
}

.cta::before,
.home-cta-panel::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.cta::after,
.home-cta-panel::after {
  content: "";
  position: absolute;
  left: -40px;
  bottom: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.cta-text,
.home-cta-panel > div:first-child {
  position: relative;
  z-index: 1;
}

.cta-text .kicker,
.home-cta-panel .section-kicker {
  color: rgba(255, 255, 255, 0.74);
}

.cta-text .kicker::before,
.home-cta-panel .section-kicker::before {
  background: rgba(255, 255, 255, 0.5);
}

.cta-title,
.home-cta-panel h2 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.24;
}

.cta-sub,
.home-cta-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.95rem;
  font-weight: 300;
}

.cta-btns,
.home-cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.home-cta-panel-compact {
  padding: 2.7rem 2.5rem;
}

.page-banner,
.page-banner-compact {
  position: relative;
  overflow: hidden;
  padding: 5.25rem 0 4.25rem;
  background:
    linear-gradient(135deg, var(--moss-dark), var(--moss)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 28%);
  color: #fff;
}

.page-banner::before,
.page-banner::after,
.page-banner-compact::before,
.page-banner-compact::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.page-banner::before,
.page-banner-compact::before {
  width: 18rem;
  height: 18rem;
  top: -8rem;
  right: -6rem;
}

.page-banner::after,
.page-banner-compact::after {
  width: 10rem;
  height: 10rem;
  bottom: -4rem;
  left: -3rem;
}

.page-banner .container,
.page-banner-compact .container {
  position: relative;
  z-index: 1;
}

.page-banner h1,
.page-banner-compact h1 {
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.page-banner .lead,
.page-banner-compact .lead {
  color: rgba(255, 255, 255, 0.86);
}

.page-banner-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-media-card,
.contact-arrival-card,
.booking-intro-card,
.privacy-card,
.value-card,
.feature-panel,
.contact-info-card,
.contact-form-card,
.info-panel,
.booking-form-card,
.booking-aside-card,
.faq-wrap,
.service-category-card,
.service-mini-card,
.service-detail-card {
  border: 1px solid var(--sand-3);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.editorial-media-card,
.service-detail-card,
.map-card {
  overflow: hidden;
}

.editorial-media-card {
  min-height: 26rem;
}

.editorial-media-tall {
  min-height: 32rem;
}

.editorial-media-image,
.about-image,
.service-detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-arrival-card,
.booking-intro-card,
.privacy-card,
.service-mini-card {
  padding: 1.6rem;
}

.value-card .card-body,
.feature-panel .card-body,
.contact-info-card .card-body,
.contact-form-card .card-body,
.info-panel .card-body,
.booking-form-card .card-body,
.booking-aside-card .card-body,
.service-detail-card .card-body {
  padding: 1.75rem;
}

.service-detail-title {
  color: var(--ink);
}

.service-category-image {
  width: 100%;
  height: 15rem;
  object-fit: cover;
}

.service-category-body {
  padding: 1.6rem;
}

.service-bullet-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-mid);
  line-height: 1.7;
}

.service-mini-card {
  height: 100%;
}

.service-mini-tag {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(91, 159, 204, 0.12);
  color: var(--clay-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.value-icon,
.contact-icon,
.cert-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 18px;
  background: rgba(91, 159, 204, 0.12);
  color: var(--clay);
  font-size: 1.35rem;
}

.feature-panel h5,
.contact-form-card h3,
.booking-form-card h3,
.info-panel h5,
.contact-info-card h5 {
  color: var(--ink);
  font-weight: 700;
}

.schedule-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.schedule-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--sand-3);
}

.schedule-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.map-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.faq-wrap {
  padding: 0.25rem;
}

.accordion-item {
  border-color: rgba(217, 206, 191, 0.72);
}

.accordion-button {
  color: var(--ink);
  font-weight: 700;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--clay-dark);
  background: rgba(91, 159, 204, 0.08);
}

.step-list {
  display: grid;
  gap: 1rem;
}

.step-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(91, 159, 204, 0.12);
  color: var(--clay-dark);
  font-family: "Lora", Georgia, serif;
  font-weight: 700;
  flex-shrink: 0;
}

.emergency-banner {
  border: 1px solid rgba(91, 159, 204, 0.24);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(91, 159, 204, 0.16), rgba(245, 239, 230, 0.92));
  color: var(--danger-text);
  box-shadow: var(--shadow-soft);
}

.emergency-banner i {
  color: var(--clay-dark);
}

.privacy-card p {
  line-height: 1.8;
}

@media (max-width: 1199.98px) {
  .home-intro-content,
  .about-content,
  .services,
  .journey,
  .reviews,
  .cta,
  .home-cta-panel {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (max-width: 991.98px) {
  .site-navbar-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .site-brand {
    width: 100%;
    max-width: none;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-subtitle {
    letter-spacing: 0.1em;
  }

  .site-nav-shell {
    width: 100%;
    margin-top: 0;
  }

  .site-nav-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .site-nav-list > .nav-item {
    min-width: 0;
  }

  .site-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.75rem;
    padding: 0.72rem 0.85rem !important;
    border: 1px solid rgba(91, 159, 204, 0.16);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.98);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
  }

  .nav-item-cta {
    margin-left: 0;
  }

  .site-cta-button {
    width: 100%;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.72rem 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .home-intro,
  .about {
    grid-template-columns: 1fr;
  }

  .home-intro-visual {
    min-height: 34rem;
    padding: 2rem 0 3rem;
  }

  .about-img {
    min-height: 24rem;
  }

  .trust {
    flex-direction: column;
    padding: 1.25rem 2rem;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .steps::before {
    display: none;
  }

  .reviews-header,
  .cta,
  .home-cta-panel,
  .organic-footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .reviews-header {
    align-items: flex-start;
  }

  .reviews-header p:last-child {
    max-width: none;
    text-align: left;
  }

  .organic-footer-brand,
  .organic-footer-info,
  .organic-footer-links {
    text-align: center;
    justify-content: center;
  }

  .cookie-banner-card {
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions {
    justify-content: stretch;
  }

  .cookie-btn {
    width: 100%;
  }

  .editorial-media-card,
  .editorial-media-tall {
    min-height: 24rem;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 15px;
  }

  body.has-cookie-banner {
    padding-bottom: 16rem;
  }

  .home-intro-content,
  .about-content,
  .services,
  .journey,
  .reviews,
  .cta,
  .home-cta-panel {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .site-navbar-container {
    min-height: auto;
    gap: 0.7rem;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .site-brand {
    gap: 0.65rem;
    max-width: calc(100% - 52px);
  }

  .site-brand-mark,
  .site-brand-leaf {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .site-brand-leaf svg {
    width: 12px;
    height: 12px;
  }

  .brand-name {
    font-size: 0.96rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-subtitle {
    display: none;
  }

  .site-nav-list {
    gap: 0.55rem;
  }

  .site-nav-link,
  .site-cta-button {
    min-height: 2.55rem;
    padding: 0.62rem 0.7rem !important;
    font-size: 0.8rem;
  }

  .site-cta-button {
    gap: 0.35rem;
  }

  .site-cta-button i {
    display: none;
  }
}

@media (max-width: 379.98px) {
  .site-nav-link,
  .site-cta-button {
    font-size: 0.76rem;
  }

  .site-cta-button {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }
}

@media (max-width: 767.98px) {
  .home-intro-content {
    padding-top: 4.25rem;
    padding-bottom: 3rem;
  }

  .home-intro-visual {
    min-height: 24rem;
  }

  .intro-photo-frame {
    width: 82%;
    border-radius: 72px 72px 36px 36px;
  }

  .stat-bubble {
    left: 1rem;
    bottom: 1rem;
  }

  .award-badge {
    right: 1rem;
    top: 1rem;
    width: 72px;
    height: 72px;
  }

  .services,
  .journey,
  .reviews {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .page-banner,
  .page-banner-compact {
    padding: 4.25rem 0 3.25rem;
  }

  .page-banner h1,
  .page-banner-compact h1 {
    font-size: 2.15rem;
  }

  .value-card .card-body,
  .feature-panel .card-body,
  .contact-info-card .card-body,
  .contact-form-card .card-body,
  .info-panel .card-body,
  .booking-form-card .card-body,
  .booking-aside-card .card-body,
  .service-detail-card .card-body,
  .service-category-body,
  .contact-arrival-card,
  .booking-intro-card,
  .privacy-card,
  .service-mini-card {
    padding: 1.25rem;
  }
}
