:root {
  --bg: #eef7f6;
  --bg-soft: #dff0ef;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-light: #f8fcfb;
  --line: rgba(16, 43, 49, 0.1);
  --line-soft: rgba(9, 38, 45, 0.08);
  --text: #16343a;
  --text-dark: #102b31;
  --text-soft: rgba(22, 52, 58, 0.74);
  --text-muted: #5c7277;
  --teal: #1f98ac;
  --teal-bright: #35b3c8;
  --lime: #a8d61f;
  --shadow: 0 18px 40px rgba(16, 43, 49, 0.07);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1240px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(168, 214, 31, 0.12), transparent 22%),
    radial-gradient(circle at 100% 10%, rgba(53, 179, 200, 0.14), transparent 26%),
    linear-gradient(180deg, #f4fbfb 0%, #ebf6f5 32%, #f8fbfb 100%);
  color: var(--text);
}

body.modal-open {
  overflow: hidden;
}

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

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

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

.page-shell {
  position: relative;
  width: 100%;
  isolation: isolate;
  overflow-x: clip;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.36) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.32) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.18;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 82%);
}

.page-ambient {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(82px);
  opacity: 0.72;
  pointer-events: none;
  animation: drift 16s ease-in-out infinite alternate;
}

.ambient-one {
  top: -140px;
  left: -180px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(168, 214, 31, 0.22), transparent 68%);
}

.ambient-two {
  top: 120px;
  right: -180px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(53, 179, 200, 0.18), transparent 70%);
  animation-duration: 19s;
}

.ambient-three {
  top: 960px;
  left: 8%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(31, 152, 172, 0.12), transparent 70%);
  animation-duration: 22s;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(18px, -14px, 0) scale(1.06);
  }
}

.site-header,
.hero,
.section {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  width: min(1380px, calc(100vw - 32px));
  position: sticky;
  top: 14px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transform-origin: center top;
  will-change: transform, width, padding, gap;
  transition:
    top 320ms cubic-bezier(0.22, 1, 0.36, 1),
    width 320ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 320ms cubic-bezier(0.22, 1, 0.36, 1),
    gap 320ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms cubic-bezier(0.22, 1, 0.36, 1);
  animation: headerReveal 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.site-header::before {
  inset: -1px;
  opacity: 0;
  background:
    linear-gradient(120deg, rgba(53, 179, 200, 0.18), rgba(168, 214, 31, 0.16), rgba(255, 255, 255, 0.16));
  filter: blur(16px);
  transform: scale(0.96);
  transition:
    opacity 320ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header::after {
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  opacity: 0.72;
}

@keyframes headerReveal {
  from {
    opacity: 0;
    transform: translateY(-18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.brand-lockup {
  display: flex;
  align-items: center;
}

.brand-logo {
  width: clamp(158px, 14vw, 232px);
  height: auto;
  object-fit: contain;
  transition:
    width 320ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-condensed {
  top: 6px;
  width: min(1240px, calc(100vw - 24px));
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(16, 43, 49, 0.12);
  box-shadow: 0 18px 42px rgba(16, 43, 49, 0.12);
  transform: translateY(-1px) scale(0.982);
}

.site-header.is-condensed::before {
  opacity: 1;
  transform: scale(1);
}

.site-header.is-condensed .brand-logo {
  width: clamp(96px, 9vw, 142px);
  transform: translateY(-1px) scale(0.98);
  filter: saturate(1.02) contrast(1.02);
}

.site-header.is-condensed .site-nav {
  gap: 8px;
  font-size: 1rem;
}

.site-header.is-condensed .header-cta {
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.94rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  flex-wrap: nowrap;
  gap: 10px;
  color: rgba(16, 43, 49, 0.76);
  font-size: clamp(1rem, 1.22vw, 1.12rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  transition:
    gap 320ms cubic-bezier(0.22, 1, 0.36, 1),
    font-size 320ms cubic-bezier(0.22, 1, 0.36, 1),
    color 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    color 240ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(227, 242, 245, 0.94));
  border: 1px solid rgba(16, 43, 49, 0.06);
  box-shadow: 0 10px 22px rgba(16, 43, 49, 0.05);
  opacity: 0;
  transform: scale(0.86);
  transition:
    opacity 240ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--lime));
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition:
    opacity 240ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a:hover::before,
.site-nav a:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text-dark);
  transform: translateY(-1px);
}

.site-nav a:focus-visible {
  outline: none;
}

.header-cta,
.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, min-height 180ms ease, padding 180ms ease;
}

.header-cta::after,
.button::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -24%;
  width: 40%;
  height: 320%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
  transform: rotate(18deg) translateX(-180%);
  pointer-events: none;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.header-cta,
.button-primary {
  background: linear-gradient(135deg, var(--lime), #c2e95b);
  color: #102126;
  box-shadow: 0 18px 34px rgba(168, 214, 31, 0.22);
}

.header-cta {
  flex-shrink: 0;
  min-height: 44px;
  padding: 0 18px;
  font-size: 1rem;
  white-space: nowrap;
}

.button-secondary {
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.76);
  border-color: var(--line);
}

.button-whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  border-color: rgba(22, 163, 74, 0.24);
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.22);
}

.button-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

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

.button:hover::after,
.header-cta:hover::after {
  transform: rotate(18deg) translateX(420%);
}

.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.button-full {
  width: 100%;
}

.hero {
  padding: 54px 0 82px;
}

.hero-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 0 4px 18px;
  color: rgba(22, 52, 58, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  padding: 58px 56px 52px;
  border-radius: 52px;
  border: 1px solid rgba(16, 43, 49, 0.08);
  background:
    radial-gradient(circle at 12% 16%, rgba(53, 179, 200, 0.16), transparent 16%),
    radial-gradient(circle at 84% 14%, rgba(16, 43, 49, 0.08), transparent 22%),
    radial-gradient(circle at 72% 108%, rgba(53, 179, 200, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 249, 0.96));
  box-shadow: 0 30px 72px rgba(16, 43, 49, 0.08);
}

.hero-grid::before {
  content: "";
  position: absolute;
  inset: -8% -6% auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(53, 179, 200, 0.14), transparent 68%);
  pointer-events: none;
}

.hero-grid::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 26px;
  right: 26px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-grid > * {
  position: relative;
  z-index: 1;
}

.hero-copy,
.support-card,
.value-card,
.service-card,
.booking-card,
.contact-card,
.admin-panel {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  grid-column: auto;
  min-height: auto;
  max-width: none;
  display: grid;
  justify-items: center;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  text-align: center;
}

.hero-watermark {
  position: absolute;
  inset: 48px auto auto 50%;
  z-index: 0;
  width: min(36vw, 460px);
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: multiply;
}

.hero-watermark-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
}

.hero-brand-inline {
  position: relative;
  margin: 0 0 22px;
  width: fit-content;
  display: inline-flex;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-brand-inline::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -16px;
  height: 36px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(53, 179, 200, 0.22), transparent 72%);
  filter: blur(18px);
  z-index: -1;
  pointer-events: none;
}

.hero-brand-inline-logo {
  width: min(100%, 760px);
  height: auto;
  object-fit: contain;
  object-position: center;
  transform: scale(1.05);
  filter: drop-shadow(0 18px 34px rgba(16, 43, 49, 0.08));
}

.hero-intro-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.hero-meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 248, 0.94));
  border: 1px solid rgba(16, 43, 49, 0.08);
  color: var(--text-dark);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(16, 43, 49, 0.05);
}

.visual-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(31, 152, 172, 0), rgba(31, 152, 172, 0.28), rgba(168, 214, 31, 0));
}

.section-photo-card,
.service-spotlight-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 32px;
  border: 1px solid rgba(16, 43, 49, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 36px rgba(16, 43, 49, 0.08);
}

.section-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.section-photo {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.section-photo-contain {
  object-fit: contain;
  padding: 18px;
  background:
    radial-gradient(circle at center, rgba(31, 152, 172, 0.06), rgba(31, 152, 172, 0) 62%),
    linear-gradient(180deg, rgba(11, 18, 21, 0.98), rgba(17, 26, 31, 0.96));
}

.section-photo-card::after,
.service-spotlight-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(10, 25, 29, 0), rgba(10, 25, 29, 0.78));
}

.section-photo-card figcaption,
.service-spotlight-media figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: calc(100% - 36px);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #103035;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal-bright);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.section-heading h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 18ch;
  font-size: clamp(3rem, 4vw, 5.05rem);
  text-wrap: balance;
  color: #14343a;
}

.hero-text,
.section-intro,
.about-story p,
.service-card p,
.booking-card p,
.contact-card p,
.admin-note {
  line-height: 1.65;
  font-size: 1rem;
}

.hero-text {
  max-width: 68ch;
  margin-top: 26px;
  color: rgba(20, 52, 58, 0.82);
  font-size: 1.12rem;
}

.hero .button-primary {
  background: linear-gradient(135deg, #14343a, #1f98ac);
  color: white;
  box-shadow: 0 18px 34px rgba(31, 152, 172, 0.22);
}

.hero-actions,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.hero-scene {
  position: relative;
  width: 100%;
  margin-top: 46px;
  padding-top: 18px;
}

.hero-scene::before {
  content: "";
  position: absolute;
  inset: 26px auto auto 50%;
  width: min(94%, 1060px);
  height: 300px;
  transform: translateX(-50%);
  border-radius: 48px;
  background: radial-gradient(circle, rgba(53, 179, 200, 0.12), rgba(255, 255, 255, 0) 72%);
  filter: blur(28px);
  pointer-events: none;
}

.hero-scene-ribbon {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: -18px;
}

.hero-scene-frame {
  position: relative;
  min-height: clamp(320px, 33vw, 420px);
  border-radius: 42px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.22), transparent 22%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(227, 238, 241, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: 0 30px 80px rgba(16, 43, 49, 0.12);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.hero-scene-frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  pointer-events: none;
}

.hero-scene-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(53, 179, 200, 0.18), transparent 18%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.12) 38%, rgba(16, 43, 49, 0.06) 66%, rgba(16, 43, 49, 0.26) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-scene-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(242, 248, 249, 0.88) 0%, rgba(242, 248, 249, 0.58) 20%, rgba(242, 248, 249, 0.12) 42%, rgba(16, 43, 49, 0.16) 76%, rgba(16, 43, 49, 0.3) 100%),
    url("./Screenshot 2026-03-15 alle 22.37.26.png") center / cover no-repeat;
  filter: saturate(0.98) contrast(1.04);
  transform: scale(1.04);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-scene-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 18%, rgba(53, 179, 200, 0.16), transparent 20%),
    radial-gradient(circle at 18% 82%, rgba(255, 255, 255, 0.2), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.hero-scene-copy {
  position: absolute;
  left: 30px;
  bottom: 28px;
  z-index: 3;
  display: grid;
  gap: 10px;
  max-width: min(470px, calc(100% - 60px));
  padding: 22px 22px 24px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 44px rgba(16, 43, 49, 0.12);
}

.hero-showcase-kicker {
  color: var(--teal);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 800;
}

.hero-scene-copy strong,
.hero-showcase-panel strong {
  color: var(--text-dark);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-showcase-meta {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 17px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 43, 49, 0.08);
  color: #13343a;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 24px rgba(16, 43, 49, 0.05);
}

.hero-scene-frame:hover {
  transform: translateY(-3px);
  box-shadow: 0 36px 88px rgba(16, 43, 49, 0.16);
  border-color: rgba(31, 152, 172, 0.18);
}

.hero-scene-frame:hover .hero-scene-image {
  transform: scale(1.08);
}

.hero-highlights {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.highlight-card {
  position: relative;
  overflow: hidden;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 43, 49, 0.08);
}

.highlight-card::before,
.support-card::before,
.value-card::before,
.service-card::before,
.booking-card::before,
.contact-card::before,
.activity-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(31, 152, 172, 0), rgba(31, 152, 172, 0.28), rgba(168, 214, 31, 0));
}

.highlight-card strong {
  display: block;
  font-size: 1.7rem;
  color: var(--text-dark);
}

.highlight-card span {
  color: var(--text-soft);
}

.hero-support {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
  margin-top: 22px;
  align-items: stretch;
}

.support-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(245, 251, 251, 0.86));
}

.support-card-services {
  background:
    radial-gradient(circle at top right, rgba(168, 214, 31, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(245, 251, 251, 0.92));
}

.quick-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.card-label {
  color: var(--teal-bright);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 800;
}

.support-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 20px;
  padding: 0;
  list-style: none;
}

.support-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(31, 152, 172, 0.08);
  color: var(--text-dark);
}

.support-card li strong {
  color: var(--teal);
  font-size: 0.98rem;
  font-weight: 800;
}

.inline-link {
  color: var(--teal);
  font-weight: 700;
}

.inline-link-strong {
  color: var(--text-dark);
}

.support-card h3 {
  margin: 12px 0 16px;
  font-size: 1.34rem;
  line-height: 1.15;
  color: var(--text-dark);
}

.support-card p {
  margin: 0 0 10px;
  color: var(--text-muted);
  line-height: 1.65;
}

.support-card p:last-of-type {
  margin-bottom: 0;
}

.section {
  padding: 72px 0 92px;
}

#booking-anchor,
#booking-title,
#prenotazioni,
#pet-focus {
  scroll-margin-top: 140px;
}

.section-light {
  color: var(--text-dark);
}

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

.section-heading h2 {
  position: relative;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  color: inherit;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: min(132px, 28vw);
  height: 4px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 152, 172, 0.92), rgba(168, 214, 31, 0.92));
  box-shadow: 0 10px 20px rgba(31, 152, 172, 0.16);
}

.section-heading.small h3 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--text-dark);
}

.section-light .eyebrow {
  color: var(--teal);
}

.section-light .section-intro,
.section-light .about-story p,
.section-light .contact-card p,
.section-light .admin-note,
.hours-row {
  color: var(--text-muted);
}

.section-intro-dark {
  color: var(--text-muted);
}

.about-grid,
.services-grid,
.booking-layout,
.contacts-grid {
  display: grid;
  gap: 22px;
}

.about-grid {
  grid-template-columns: 1fr;
  gap: 18px;
}

.about-story {
  display: grid;
  gap: 18px;
  grid-column: 1 / -1;
  max-width: 980px;
  padding-right: 0;
}

.about-photo-showcase {
  grid-column: 1 / -1;
  margin: 2px 0 8px;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(16, 43, 49, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(16, 43, 49, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.about-photo-showcase-image {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}

.about-photo-showcase:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 52px rgba(16, 43, 49, 0.1);
  border-color: rgba(31, 152, 172, 0.12);
}

.about-photo-showcase:hover .about-photo-showcase-image {
  transform: scale(1.018);
  filter: saturate(1.02) contrast(1.02);
}

.about-photo-showcase figcaption {
  padding: 16px 22px 20px;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.about-description-secondary {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.72;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.about-fact {
  padding: 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(16, 43, 49, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 28px rgba(16, 43, 49, 0.05);
}

.about-fact strong {
  display: block;
  font-size: 1rem;
  color: var(--text-dark);
}

.about-fact span {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-side {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(560px, 1.42fr) minmax(280px, 0.58fr);
  align-items: stretch;
  gap: 18px;
}

.visual-panel-about {
  min-height: 0;
  padding: 34px 40px;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0;
}

.visual-panel-about .visual-panel-copy {
  position: static;
  max-width: 100%;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.visual-panel-about .visual-panel-copy h3 {
  max-width: 13ch;
  font-size: clamp(2.4rem, 3.3vw, 3.9rem);
  line-height: 0.98;
  text-wrap: balance;
}

.visual-panel-about .visual-panel-copy p {
  max-width: 42ch;
  margin-top: 18px;
  font-size: 1.02rem;
}

.about-presence-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.about-presence-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 43, 49, 0.08);
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-values {
  display: grid;
  gap: 16px;
}

.service-spotlights {
  display: grid;
  gap: 22px;
  margin-bottom: 28px;
}

.service-spotlight {
  display: grid;
  grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.06fr);
  gap: 24px;
  align-items: stretch;
  padding: 24px;
  border-radius: 34px;
  border: 1px solid rgba(16, 43, 49, 0.08);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 36px rgba(16, 43, 49, 0.06);
}

.service-spotlight.is-reversed {
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
}

.service-spotlight.is-reversed .service-spotlight-media {
  order: 2;
}

.service-spotlight.is-reversed .service-spotlight-copy {
  order: 1;
}

.service-spotlight-media {
  position: relative;
  min-height: 320px;
}

.service-spotlight-copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.service-spotlight-copy h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text-dark);
}

.service-spotlight-copy p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.72;
}

.service-spotlight-points {
  display: grid;
  gap: 12px;
}

.spotlight-point {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(244, 251, 251, 0.94);
  border: 1px solid rgba(16, 43, 49, 0.06);
}

.spotlight-point h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--text-dark);
}

.spotlight-point p {
  font-size: 0.96rem;
}

.service-spotlight-button {
  width: fit-content;
  min-width: 220px;
}

.section-visual-row {
  margin-bottom: 24px;
}

.visual-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(250px, 0.86fr);
  gap: 18px;
  align-items: center;
  padding: 32px 34px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.visual-panel::after {
  content: "";
  position: absolute;
  inset: auto -60px -84px auto;
  width: 200px;
  height: 200px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(168, 214, 31, 0.16), transparent 72%);
  pointer-events: none;
}

.visual-panel-copy {
  position: relative;
  z-index: 1;
}

.visual-panel-copy h3 {
  margin: 12px 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text-dark);
}

.visual-panel-copy p {
  margin: 0;
  max-width: 54ch;
  color: var(--text-muted);
  line-height: 1.68;
}

.visual-panel-art {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.visual-panel-art-photo {
  min-height: 280px;
  height: 100%;
  align-self: stretch;
}

.visual-panel-art-graphic {
  min-height: 280px;
}

.visual-panel-art-schedule {
  min-height: 260px;
}

.schedule-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 360px;
}

.schedule-chip {
  display: grid;
  place-items: center;
  min-height: 72px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 250, 250, 0.98));
  border: 1px solid rgba(16, 43, 49, 0.08);
  box-shadow: 0 14px 28px rgba(16, 43, 49, 0.05);
  color: var(--text-dark);
  font-weight: 800;
}

.graphic-orbit {
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(31, 152, 172, 0.12), rgba(31, 152, 172, 0) 58%);
}

.graphic-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(16, 43, 49, 0.09);
}

.graphic-ring-one {
  inset: 14%;
}

.graphic-ring-two {
  inset: 28%;
  border-style: dashed;
  border-color: rgba(31, 152, 172, 0.26);
}

.graphic-plus {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 118px;
  height: 118px;
  transform: translate(-50%, -50%);
}

.graphic-plus::before,
.graphic-plus::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--teal), var(--lime));
}

.graphic-plus::before {
  width: 22px;
  height: 118px;
}

.graphic-plus::after {
  width: 118px;
  height: 22px;
}

.visual-panel-services {
  background:
    radial-gradient(circle at top right, rgba(168, 214, 31, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(245, 251, 251, 0.96));
}

.visual-panel-about {
  background:
    radial-gradient(circle at 18% 18%, rgba(31, 152, 172, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 251, 251, 1));
}

.visual-panel-booking {
  background:
    radial-gradient(circle at 86% 18%, rgba(168, 214, 31, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 251, 251, 1));
}

.section-photo-card {
  min-height: 260px;
}

.section-photo-card-wide {
  min-height: 290px;
}

.value-card,
.contact-card,
.booking-card,
.admin-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 30px;
  background: white;
  border: 1px solid var(--line-soft);
  box-shadow:
    0 16px 34px rgba(13, 35, 41, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.value-card h3,
.service-card h3,
.booking-card h3,
.contact-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.section-dark {
  position: relative;
  overflow: hidden;
  padding: 40px;
  background:
    radial-gradient(circle at top right, rgba(168, 214, 31, 0.12), transparent 20%),
    linear-gradient(180deg, #dff3f1 0%, #edf8f7 100%);
  border-radius: 42px;
  border: 1px solid rgba(16, 43, 49, 0.08);
  box-shadow: 0 16px 34px rgba(13, 35, 41, 0.06);
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: auto 8% -100px auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(168, 214, 31, 0.14), transparent 70%);
  pointer-events: none;
}

.section-dark > * {
  position: relative;
  z-index: 1;
}

.section-dark .eyebrow {
  color: var(--teal);
}

.section-dark .section-heading h2 {
  color: var(--text-dark);
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  align-content: start;
  min-height: 200px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(53, 179, 200, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 251, 0.94));
}

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.service-kicker,
.service-badge {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.service-kicker {
  color: var(--teal);
}

.service-badge {
  color: var(--lime);
}

.service-card h3 {
  color: var(--text-dark);
}

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

.service-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 20px;
  padding: 0;
  list-style: none;
}

.service-list li {
  padding: 0;
  border-radius: 18px;
  list-style: none;
}

.service-item-trigger {
  position: relative;
  width: 100%;
  display: grid;
  gap: 8px;
  padding: 15px 16px 14px;
  border: 1px solid rgba(16, 43, 49, 0.06);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(244, 251, 251, 0.98), rgba(236, 246, 247, 0.92));
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    filter 180ms ease;
}

.service-item-trigger::after {
  content: "↗";
  position: absolute;
  top: 16px;
  right: 16px;
  color: rgba(31, 152, 172, 0.72);
  font-size: 1rem;
  font-weight: 800;
}

.service-item-trigger:hover,
.service-item-trigger:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(31, 152, 172, 0.22);
  box-shadow: 0 16px 30px rgba(16, 43, 49, 0.08);
  filter: brightness(1.01);
}

.service-item-trigger:focus-visible {
  outline: 2px solid rgba(31, 152, 172, 0.28);
  outline-offset: 2px;
}

.service-item-name {
  display: block;
  max-width: calc(100% - 28px);
  line-height: 1.42;
}

.service-item-meta {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-note {
  margin: 0 0 16px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.accent-lime {
  border: 1px solid rgba(168, 214, 31, 0.28);
}

.accent-teal {
  border: 1px solid rgba(53, 179, 200, 0.26);
}

.accent-white {
  border: 1px solid rgba(16, 43, 49, 0.12);
}

.booking-layout {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: start;
  gap: 24px;
}

.activities-block {
  margin-top: 40px;
}

.activities-heading {
  margin-bottom: 18px;
}

.activities-heading h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text-dark);
}

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

.pet-focus {
  margin-bottom: 22px;
}

.pet-focus-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 26px;
  align-items: center;
  padding: 30px;
  border-radius: 32px;
  border: 1px solid rgba(16, 43, 49, 0.08);
  background:
    radial-gradient(circle at top right, rgba(168, 214, 31, 0.18), transparent 22%),
    radial-gradient(circle at left center, rgba(53, 179, 200, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 251, 250, 0.98));
  box-shadow: 0 22px 40px rgba(13, 35, 41, 0.08);
}

.pet-focus-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  pointer-events: none;
}

.pet-focus-copy,
.pet-focus-art {
  position: relative;
  z-index: 1;
}

.pet-focus-copy h3 {
  margin: 12px 0 14px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text-dark);
}

.pet-focus-copy p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.72;
}

.pet-focus-detail {
  margin-top: 14px !important;
}

.pet-focus-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pet-focus-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 43, 49, 0.08);
  color: var(--text-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pet-focus-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.pet-focus-feature {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 43, 49, 0.08);
}

.pet-focus-feature h4 {
  margin: 0 0 8px;
  color: var(--text-dark);
  font-size: 1rem;
}

.pet-focus-feature p {
  font-size: 0.96rem;
}

.pet-focus-cta {
  width: fit-content;
  min-width: 240px;
  margin-top: 22px;
}

.pet-focus-art {
  display: grid;
  place-items: center;
  min-height: 100%;
}

.pet-focus-orbit {
  position: absolute;
  width: min(100%, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(168, 214, 31, 0.16), rgba(168, 214, 31, 0) 58%);
  filter: blur(2px);
}

.pet-focus-orbit::before,
.pet-focus-orbit::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(16, 43, 49, 0.08);
}

.pet-focus-orbit::before {
  inset: 10%;
}

.pet-focus-orbit::after {
  inset: 22%;
  border-style: dashed;
  border-color: rgba(31, 152, 172, 0.24);
}

.pet-focus-frame {
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 30px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(237, 246, 247, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow:
    0 30px 60px rgba(16, 43, 49, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.pet-focus-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px solid rgba(31, 152, 172, 0.12);
  pointer-events: none;
}

.pet-focus-frame::after {
  content: "";
  position: absolute;
  inset: auto 24px 14px 24px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(53, 179, 200, 0.18), transparent 70%);
  filter: blur(18px);
}

.pet-focus-image {
  position: relative;
  z-index: 1;
  width: min(100%, 220px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(16, 43, 49, 0.18));
}

.activity-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 43, 49, 0.08);
  box-shadow: 0 16px 32px rgba(13, 35, 41, 0.06);
}

.activity-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  color: var(--text-dark);
}

.activity-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.booking-card-form {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
}

.booking-side {
  display: grid;
  gap: 18px;
  align-self: start;
  position: sticky;
  top: 118px;
}

.booking-side-order {
  background:
    radial-gradient(circle at top right, rgba(168, 214, 31, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 251, 1));
}

.booking-side-highlight {
  color: var(--text-dark);
  background:
    linear-gradient(180deg, rgba(216, 244, 247, 0.98), rgba(236, 250, 250, 1));
  border-color: rgba(31, 152, 172, 0.2);
}

.booking-card-form,
.booking-side-order,
.booking-side-highlight {
  box-shadow:
    0 18px 36px rgba(13, 35, 41, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.booking-side-highlight .card-label,
.booking-side-highlight p,
.booking-side-highlight li {
  color: var(--text-muted);
}

.booking-form {
  display: grid;
  gap: 14px;
}

.booking-form label,
.order-request-form label {
  display: grid;
  gap: 8px;
  color: var(--text-dark);
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.order-request-form input,
.order-request-form select,
.order-request-form textarea,
#config-editor {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(8, 35, 42, 0.12);
  background: #f8fbfb;
  color: var(--text-dark);
}

.order-request-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.order-request-form textarea {
  min-height: 140px;
  resize: vertical;
}

.order-request-feedback {
  margin-top: 12px;
}

.booking-form input[type="date"] {
  cursor: pointer;
}

.booking-field-note {
  min-height: 22px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
}

.steps-list {
  margin: 14px 0 0;
  padding-left: 20px;
  line-height: 1.8;
}

.booking-feedback {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--teal);
  font-weight: 700;
}

.booking-admin-inline {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.booking-admin-inline .button {
  min-height: 42px;
  padding: 0 18px;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}

.service-modal.is-hidden {
  display: none;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 23, 28, 0.38);
  backdrop-filter: blur(12px);
}

.service-modal-panel {
  position: relative;
  width: min(760px, calc(100vw - 32px));
  max-height: min(88vh, 920px);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    radial-gradient(circle at top right, rgba(168, 214, 31, 0.16), transparent 24%),
    radial-gradient(circle at left center, rgba(53, 179, 200, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 249, 250, 0.94));
  box-shadow: 0 36px 88px rgba(8, 23, 28, 0.26);
  overflow: hidden;
}

.service-modal-panel::after {
  content: "";
  position: absolute;
  inset: auto -80px -100px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 152, 172, 0.16), rgba(31, 152, 172, 0) 70%);
  pointer-events: none;
}

.service-modal-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  pointer-events: none;
}

.service-modal-shell {
  position: relative;
  padding: 38px 38px 34px;
  overflow-y: auto;
  max-height: min(88vh, 920px);
}

.service-modal-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 43, 49, 0.08);
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-modal-panel h3 {
  margin: 18px 0 14px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text-dark);
}

.service-modal-description {
  margin: 0;
  color: rgba(20, 52, 58, 0.82);
  line-height: 1.75;
  font-size: 1.04rem;
}

.service-modal-detail {
  margin: 16px 0 0;
  color: rgba(20, 52, 58, 0.78);
  line-height: 1.78;
  font-size: 1rem;
}

.service-modal-detail.is-hidden,
.service-modal-highlights.is-hidden {
  display: none;
}

.service-modal-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.service-modal-highlight {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 249, 0.94));
  border: 1px solid rgba(16, 43, 49, 0.08);
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.service-modal-purpose {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 43, 49, 0.08);
}

.service-modal-purpose-label {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-modal-purpose p {
  margin: 0;
  color: var(--text-dark);
  line-height: 1.68;
  font-weight: 600;
}

.service-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.service-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 43, 49, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text-dark);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-modal-close:hover,
.service-modal-close:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(16, 43, 49, 0.12);
}

.admin-panel {
  margin-top: 22px;
}

.admin-panel.is-hidden {
  display: none;
}

#config-editor {
  min-height: 340px;
  margin-top: 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.92rem;
}

.contacts-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-whatsapp-button {
  margin-top: 18px;
}

.contact-card-details {
  background:
    radial-gradient(circle at top right, rgba(31, 152, 172, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 251, 1));
}

.contact-card-details::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(168, 214, 31, 0.24), rgba(168, 214, 31, 0) 68%);
  box-shadow:
    0 0 0 26px rgba(31, 152, 172, 0.04),
    0 0 0 56px rgba(31, 152, 172, 0.02);
  pointer-events: none;
}

.contact-card-hours {
  background:
    radial-gradient(circle at top left, rgba(168, 214, 31, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 251, 1));
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.site-footer {
  width: var(--container);
  margin: 12px auto 32px;
  padding: 30px 0 0;
  border-top: 1px solid rgba(16, 43, 49, 0.08);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.92fr));
  gap: 20px;
}

.site-footer-brand,
.site-footer-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(16, 43, 49, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(245, 251, 251, 0.9));
  box-shadow: 0 16px 34px rgba(13, 35, 41, 0.06);
}

.site-footer-brand::before,
.site-footer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(31, 152, 172, 0), rgba(31, 152, 172, 0.28), rgba(168, 214, 31, 0));
}

.site-footer-kicker {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text-dark);
}

.site-footer p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.site-footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 43, 49, 0.08);
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(31, 152, 172, 0.18);
  box-shadow: 0 14px 28px rgba(16, 43, 49, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.highlight-card,
.visual-panel,
.section-photo-card,
.service-spotlight,
.service-spotlight-media,
.support-card,
.value-card,
.service-card,
.booking-card,
.contact-card,
.activity-card {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.highlight-card:hover,
.visual-panel:hover,
.section-photo-card:hover,
.service-spotlight:hover,
.service-spotlight-media:hover,
.support-card:hover,
.value-card:hover,
.service-card:hover,
.booking-card:hover,
.contact-card:hover,
.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(16, 43, 49, 0.09);
  border-color: rgba(31, 152, 172, 0.14);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(8, 35, 42, 0.08);
}

.hours-row:last-child {
  border-bottom: none;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr;
    border-radius: 30px;
  }

  .site-nav {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .hero-grid,
  .visual-panel,
  .about-grid,
  .booking-layout,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 28px;
  }

  .hero-watermark {
    inset: 92px auto auto 50%;
    width: min(58vw, 360px);
    transform: translateX(-50%);
    opacity: 0.035;
  }

  .visual-panel {
    padding: 28px;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-side {
    grid-template-columns: 1fr;
  }

  .visual-panel-about {
    min-height: 0;
  }

  .service-spotlight,
  .service-spotlight.is-reversed {
    grid-template-columns: 1fr;
  }

  .service-spotlight.is-reversed .service-spotlight-media,
  .service-spotlight.is-reversed .service-spotlight-copy {
    order: initial;
  }

  .contact-card-details::after {
    width: 180px;
    height: 180px;
    right: -12px;
    bottom: -12px;
  }

  .hero-support {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .pet-focus-card {
    grid-template-columns: 1fr;
  }

  .pet-focus-features {
    grid-template-columns: 1fr;
  }

  .booking-side {
    position: static;
    top: auto;
  }

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

  .hero-copy {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 28px, 1240px);
  }

  .site-header {
    top: 8px;
    padding: 16px;
  }

  .site-nav {
    gap: 10px;
    font-size: 0.98rem;
  }

  .page-shell::before {
    background-size: 34px 34px;
  }

  .page-ambient {
    filter: blur(62px);
  }

  .hero-topline {
    flex-direction: column;
    font-size: 0.7rem;
  }

  .hero-copy,
  .section-photo-card,
  .service-spotlight,
  .service-spotlight-media,
  .visual-panel,
  .support-card,
  .value-card,
  .service-card,
  .booking-card,
  .contact-card,
  .admin-panel {
    border-radius: 26px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .hero-grid {
    padding: 24px;
  }

  .hero-grid::before {
    inset: auto -24% -34% 34%;
  }

  .service-modal {
    padding: 14px;
  }

  .service-modal-shell {
    padding: 28px 22px 24px;
  }

  .service-modal-panel h3 {
    margin-top: 16px;
    font-size: clamp(1.8rem, 10vw, 2.4rem);
  }

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

  .hero-watermark {
    inset: 94px auto auto 50%;
    width: min(82vw, 360px);
    transform: translateX(-50%);
    opacity: 0.05;
  }

  .hero-brand-inline-logo {
    width: min(100%, 470px);
    transform: scale(1.03);
  }

  .hero-intro-line {
    gap: 10px;
  }

  .hero-showcase {
    margin-top: 28px;
  }

  .hero-scene {
    margin-top: 32px;
  }

  .hero-scene-frame {
    min-height: 360px;
    border-radius: 34px;
  }

  .hero-scene-frame::before {
    inset: 12px;
    border-radius: 28px;
  }

  .hero-scene-frame::after {
    background:
      radial-gradient(circle at 82% 18%, rgba(53, 179, 200, 0.16), transparent 18%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 38%, rgba(16, 43, 49, 0.18) 100%);
  }

  .hero-scene-copy {
    left: 16px;
    bottom: 16px;
    right: 16px;
    max-width: none;
  }

  .hero-scene-ribbon {
    margin-bottom: -10px;
  }

  .visual-panel {
    padding: 24px;
  }

  .visual-panel-art {
    min-height: 180px;
  }

  .service-spotlight {
    padding: 20px;
  }

  .service-spotlight-media {
    min-height: 240px;
  }

  .service-spotlight-button {
    width: 100%;
    min-width: 0;
  }

  .contact-card-details::after {
    width: 148px;
    height: 148px;
    right: -16px;
    bottom: -16px;
  }

  .hero-highlights,
  .services-grid,
  .activities-grid {
    grid-template-columns: 1fr;
  }

  .section-dark {
    padding: 24px;
  }

  .hours-row {
    flex-direction: column;
    gap: 6px;
  }

  .site-header.is-condensed .brand-logo {
    width: 118px;
  }

  .site-header.is-condensed .site-nav {
    gap: 10px;
    font-size: 0.88rem;
  }

  .site-header.is-condensed .header-cta {
    min-height: 30px;
    padding: 0 10px;
  }
}
