/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

@font-face {
  font-family: 'Alegreya Sans';
  src: url('../fonts/Alegreya_Sans/AlegreyaSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Alegreya Sans';
  src: url('../fonts/Alegreya_Sans/AlegreyaSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Alegreya Sans';
  src: url('../fonts/Alegreya_Sans/AlegreyaSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AlegreyaSans-Italic';
  src: url('../fonts/Alegreya_Sans/AlegreyaSans-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/Fraunces/Fraunces_72pt-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/Fraunces/Fraunces_72pt-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/Fraunces/Fraunces_72pt-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ms Madi';
  src: url('../fonts/Ms_Madi/MsMadi-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oooh Baby';
  src: url('../fonts/Oooh_Baby/OoohBaby-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Backgrounds */
  --bg: #f0fdf8;
  --surface: #ffffff;
  --surface-soft: rgb(52, 101, 104);
  --surface-warm: #94e5d3;

  /* Text */
  --text: #213238;
  --muted: #5a6d74;

  /* Borders */
  --line: #a0e8d4;
  --line-soft: #8ce0c8;
  --line-warm: #ead8c4;

  /* Brand accent */
  --accent: #1acea0;
  --accent-strong: #005044;
  --accent-soft: #b8ffe8;
  --focus-line: #50ffc4;

  /* Structural */
  --bg-gradient-left: #b8ffe8;
  --header-bg: rgba(240, 255, 249, 0.9);
  --cta-start: #004a38;
  --cta-end: #003830;
  --footer-link: #005044;

  /* Unique one-offs */
  --include-text: #7d5d3d;
  --review-star: #f4a825;
  --review-status-error: #8e4539;

  /* Shadows & radii */
  --shadow: 0 12px 35px rgba(10, 44, 38, 0.1);
  --radius-lg: 1.25rem;
  --radius-md: 0.9rem;
}

body {
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 19px;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, var(--bg-gradient-left) 0%, transparent 28%),
    radial-gradient(circle at 92% 12%, var(--surface-warm) 0%, transparent 35%),
    var(--bg);
  line-height: 1.6;
}

p {
  margin-bottom: 1rem;
}

em {
  font-family: 'AlegreyaSans-Italic', 'Alegreya Sans', sans-serif;
  font-style: normal;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main {
  flex: 1;
  padding-bottom: 4rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: var(--header-bg);
  border-bottom: 1px solid rgba(100, 155, 135, 0.26);
  transition: box-shadow 0.24s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 106px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
}

.brand-logo-slot {
  width: 6rem;
  aspect-ratio: 1 / 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.brand-logo-shell {
  width: 70%;
  height: auto;
  overflow: visible;
}

.brand-logo-shell .logo-seed {
  opacity: 0.5;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  transform-origin: center;
  transform-box: fill-box;
  will-change: transform, opacity;
  transition: opacity 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) var(--seed-delay, 0s);
  pointer-events: auto;
  cursor: pointer;
}

.brand-logo-shell .logo-seed.is-seed-flight {
  animation: seedDrift 6s cubic-bezier(0.22, 0.58, 0.2, 1) forwards;
  animation-delay: 0s;
}

.brand-logo-shell .logo-seed.is-seed-return {
  opacity: 0;
}

@keyframes seedDrift {
  0% {
    opacity: 0.5;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  38% {
    opacity: 0.48;
  }

  78% {
    opacity: 0.28;
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--seed-dx, 0), var(--seed-dy, 0), 0) rotate(var(--seed-rot, 0deg)) scale(0.88);
  }
}

.brand-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  color: var(--muted);
}

.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 600;
  color: var(--accent-strong);
}

.ambient-floating-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  overflow: hidden;
  z-index: 5;
}

.ambient-float {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--size, 24px);
  height: var(--size, 24px);
  transform-origin: center;
  will-change: transform, opacity;
  opacity: 0.32;
}

.ambient-float svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 2px 4px rgba(10, 60, 44, 0.16));
  shape-rendering: geometricPrecision;
}

.site-nav>ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-nav li {
  position: relative;
}

.has-subnav {
  position: static;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: var(--accent-soft);
  color: var(--accent-strong);
  outline: none;
}

.header-subnav-wrap {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--accent-soft);
  border-top: 1px solid transparent;
  transition: max-height 0.24s ease, opacity 0.2s ease, border-color 0.2s ease;
}

.site-header.is-subnav-open .header-subnav-wrap {
  max-height: 3.35rem;
  opacity: 1;
  pointer-events: auto;
  border-top-color: rgba(0, 80, 68, 0.15);
}

.header-subnav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.52rem;
  min-height: 3.35rem;
  padding: 0.34rem 0;
}

.header-subnav a {
  display: block;
  white-space: nowrap;
  font-size: 0.95rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--accent);
  padding: 0.34rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(0, 80, 68, 0.38);
  background: var(--surface);
  box-shadow: 0 2px 8px rgba(0, 80, 68, 0.13);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-subnav a:hover,
.header-subnav a:focus-visible,
.header-subnav a.is-active {
  background: rgba(0, 80, 68, 0.18);
  color: var(--accent-strong);
  border-color: rgba(0, 80, 68, 0.58);
  box-shadow: 0 4px 12px rgba(0, 80, 68, 0.17);
  outline: none;
}

.has-subnav.is-active>a {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 0.75rem;
  padding: 0.5rem 0.8rem;
  font: inherit;
  font-weight: 600;
  color: var(--accent-strong);
  cursor: pointer;
}

.script-quote {
  font-family: 'Oooh Baby', cursive;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  line-height: 1.4;
  color: #B78A3D;
  margin: 0 0 2rem;
  padding: 0;
  border: none;
  max-width: 42ch;
}

.page-hero {
  padding-top: clamp(1rem, 3vw, 2rem);
  padding-bottom: clamp(1.5rem, 5vw, 2.8rem);
  display: flex;
  flex-direction: column;
  align-items: start;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(1.2rem, 3vw, 2.3rem);
  align-items: start;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--surface-warm);
  color: var(--accent-strong);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 0.28rem 0.76rem;
  font-size: 0.87rem;
  font-weight: 700;
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4.6vw, 3rem);
  line-height: 1.13;
  margin: 0.7rem 0 0;
}

.hero-title .callout {
  color: var(--accent-strong);
}

.hero-subtitle {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 2.2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0.4rem 0 0;
  color: var(--accent-strong);
}

.hero-lead {
  font-size: clamp(1.06rem, 1.35vw, 1.34rem);
  color: var(--muted);
  margin-top: 1rem;
  max-width: 65ch;
}

.hero-note {
  font-family: 'AlegreyaSans-Italic', 'Alegreya Sans', sans-serif;
  font-style: normal;
  font-size: clamp(1.2rem, 1vw, 1.34rem);
  color: var(--muted);
  margin-top: 0.55rem;
  max-width: 72ch;
}

.hero-side,
.panel {
  background: linear-gradient(170deg, var(--surface) 10%, var(--bg) 90%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.1rem, 2.4vw, 1.65rem);
}

.panel.narrow {
  max-width: 800px;
}

.panel.centered {
  margin-left: auto;
  margin-right: auto;
}

.hero-side-column {
  align-self: start;
}

.hero-profile-image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-bottom: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hero-side-column .hero-side {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.hero-side p {
  margin: 0;
}

.hero-side p+p {
  margin-top: 0.9rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: none;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  padding: 0.68rem 1.15rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-strong);
  box-shadow: 0 9px 20px rgba(0, 80, 68, 0.24);
}

.btn-secondary {
  background: var(--surface);
  color: var(--accent-strong);
  border: 1px solid var(--line);
}

.section {
  padding: clamp(1.6rem, 4vw, 3rem) 0;
}

.section-title {
  margin-bottom: 16px;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.45rem, 2.6vw, 2.4rem);
  line-height: 1.2;
}

.section-subtitle {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0.4rem 0 0;
  color: var(--accent-strong);
}

article h2,
article h2.section-title {
  margin-top: 0;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
}

.section-intro {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 74ch;
}

.legal-credit-title {
  margin: 1rem 0 0;
  font-weight: 700;
  color: var(--text);
}

.legal-credit {
  margin-top: 0.4rem;
}

.columns-2,
.columns-3 {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem 1.8rem;
  padding-bottom: 2rem;
  box-shadow: 0 7px 20px rgba(20, 45, 40, 0.07);
  transition: background 0.4s ease;
}

.panel .card:hover {
  background: var(--bg);
}

.card a {
  margin: 12px;
  margin-left: auto;
  margin-right: auto;
}

article h3 {
  font-family: 'Alegreya Sans', sans-serif;
  margin: 1rem 0 0;
  margin-top: 0;
  font-weight: 700;
  color: var(--text);
}

h3 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
}

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

.card .button-row {
  margin-top: 0.95rem;
}

/* Leistungen cards */
#leistungen .columns-3,
.leistungen-card-grid {
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-top: 1.5rem;
}

@media (max-width: 980px) {

  #leistungen .columns-3,
  .leistungen-card-grid {
    gap: 5rem;
  }
}

.leistungen-card {
  position: relative;
  padding-top: 3.6rem;
  padding-bottom: 2.8rem;
}

.leistungen-card__title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  text-align: center;
  white-space: nowrap;
  background: var(--accent-strong);
  color: #fff;
  border-radius: 999px;
  padding: 0.5em 1.8em 0.6em;
  line-height: 1.2;
  z-index: 1;
}

.leistungen-card__title-main {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}

.leistungen-card__title-sub {
  display: block;
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.85;
}

.leistungen-card__cta {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  white-space: nowrap;
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
  z-index: 1;
}

.leistungen-card__cta:hover,
.leistungen-card__cta:focus-visible {
  transform: translateX(-50%) translateY(calc(50% - 2px));
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
  margin-bottom: 1.8rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-soft);
  background: var(--bg);
  border-radius: 999px;
  padding: 0.2rem 0.63rem;
  font-size: 0.84rem;
  color: var(--accent-strong);
  font-weight: 600;
}

.faq-list {
  margin-top: 1.2rem;
  display: grid;
}

.faq-entry {
  border-top: 1px solid var(--line);
  transition: background-color 0.5s ease;
}

.faq-entry:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-entry:hover {
  background: var(--accent-soft);
}

.faq-entry__heading {
  margin: 0;
}

.faq-entry__trigger {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  text-align: left;
  border-radius: inherit;
}

.faq-entry__trigger:focus-visible {
  outline: 2px solid var(--focus-line);
  outline-offset: -2px;
}

.faq-entry__title {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--text);
}

.faq-entry__icon {
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 1.45rem;
  background-color: var(--accent);
  -webkit-mask: url('/assets/icons/expand.svg') center / contain no-repeat;
  mask: url('/assets/icons/expand.svg') center / contain no-repeat;
  transition: transform 0.24s ease;
}

.faq-entry__content {
  display: none;
  padding: 0 1rem 1rem;
}

.faq-entry__content p {
  margin: 0;
  color: var(--muted);
}

.faq-entry.is-open .faq-entry__content {
  display: block;
}

.faq-entry.is-open .faq-entry__icon {
  transform: rotate(180deg);
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.2rem;
}

.quote {
  background: var(--surface-warm);
  border: 1px solid var(--line-warm);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.2rem;
}

.quote p {
  margin: 0;
  font-size: 1.08rem;
  color: var(--text);
}

.quote p+p {
  margin-top: 0.7rem;
  font-size: 0.96rem;
  color: var(--muted);
}

.center-quote-text {
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
  font-family: 'AlegreyaSans-Italic', 'Alegreya Sans', sans-serif;
  font-size: clamp(1.24rem, 1.9vw, 1.56rem);
  line-height: 1.6;
  color: var(--text);
}

.check-list,
.number-list,
.process-list {
  max-width: 650px;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.number-list li,
.process-list li {
  position: relative;
  padding-left: 1.55rem;
  margin-top: 0.58rem;
}

.check-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: -0.03rem;
  font-weight: 700;
  color: var(--accent);
}

.number-list {
  counter-reset: process;
}

.number-list li {
  padding-left: 1.85rem;
}

.number-list li::before {
  counter-increment: process;
  content: counter(process) '.';
  position: absolute;
  left: 0;
  color: var(--accent-strong);
  font-weight: 700;
}

.process-list li::before {
  content: '->';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 0.82rem;
  margin-top: 1rem;
}

.timeline-item {
  border-left: 2px solid var(--line-soft);
  padding-left: 0.88rem;
}

.timeline-item h3 {
  margin: 0;
  font-size: 1.08rem;
}

.timeline-item p {
  margin: 0.34rem 0 0;
  color: var(--muted);
}

.cta-band {
  margin-top: 1.2rem;
  background: linear-gradient(145deg, var(--cta-start) 0%, var(--cta-end) 100%);
  color: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 3vw, 1.7rem);
  box-shadow: 0 18px 40px rgba(10, 52, 46, 0.26);
}

.cta-band h2 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.cta-band p {
  margin: 0.6rem 0 0;
  max-width: 70ch;
}

.cta-band .btn-primary {
  background: var(--accent-soft);
  color: var(--accent-strong);
  box-shadow: none;
}

.contact-teaser-section {
  padding-top: 0.8rem;
  padding-bottom: 4rem;
}

.google-reviews-section {
  padding-top: 0.7rem;
  padding-bottom: 0.4rem;
}

.google-reviews-head {
  display: grid;
  gap: 0.32rem;
}

.google-reviews-grid {
  margin-top: 1.08rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.google-review-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(247, 251, 249, 0.92) 100%);
  box-shadow: 0 14px 26px rgba(25, 45, 51, 0.07);
  padding: 0.95rem;
  display: flex;
  flex-direction: column;
  max-height: 20rem;
  overflow: hidden;
  transition:
    opacity 1.2s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1),
    max-height 0.7s ease;
}

.google-review-card.is-expanded {
  max-height: 200rem;
}

.google-review-card.is-swapping {
  opacity: 0;
  transform: translateY(8px);
}

.google-review-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.google-review-card__stars {
  letter-spacing: 0.06em;
  color: var(--review-star);
  font-size: 0.98rem;
}

.google-review-card__rating-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.google-review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.55rem;
}

.google-review-card__author {
  margin: 0;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.2;
}

.google-review-card__time {
  margin-top: 0.14rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.google-review-card__text {
  margin-top: 0.72rem;
  color: var(--text);
  line-height: 1.52;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  transition: -webkit-line-clamp 0.35s ease;
}

.google-review-card.is-expanded .google-review-card__text {
  -webkit-line-clamp: unset;
}

.google-review-card__toggle {
  margin: 0;
  flex-shrink: 0;
  border: 0;
  background: none;
  color: var(--accent-strong);
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.13em;
}

.google-review-card__toggle:hover,
.google-review-card__toggle:focus-visible {
  color: var(--accent);
}

.google-review-card__toggle[hidden] {
  display: none;
}

.google-reviews-status {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.google-reviews-status.is-error {
  color: var(--review-status-error);
}

.contact-teaser-details {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
}

.contact-teaser-details a {
  color: var(--surface);
}

.contact-teaser-details a:hover,
.contact-teaser-details a:focus-visible {
  text-decoration: none;
}

.notice {
  border: 1px dashed var(--line-soft);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.9rem;
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 0.9rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1rem;
}

.form-grid {
  display: grid;
  gap: 0.75rem;
}

.form-grid label {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
  color: var(--text);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: 0.8rem;
  padding: 0.62rem 0.72rem;
  background: var(--surface);
  font: inherit;
  color: var(--text);
}

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

.form-grid input:focus-visible,
.form-grid select:focus-visible,
.form-grid textarea:focus-visible {
  border-color: var(--accent);
  outline: 2px solid var(--focus-line);
  outline-offset: 1px;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.72);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1.2rem;
  padding-bottom: 5rem;
}

.footer-title {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 900;
}

.footer-subtitle {
  margin: 0;
  font-weight: 700;
  color: var(--text);
}

.footer-text {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.footer-links {
  margin: 0.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--footer-link);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
}

.footer-cta-link {
  display: inline-flex;
  margin-top: 0.6rem;
  color: var(--footer-link);
  text-decoration: none;
  font-weight: 700;
}

.footer-cta-link:hover,
.footer-cta-link:focus-visible {
  text-decoration: underline;
}

.footer-seals {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  padding-bottom: 2rem;
}

.footer-seals img {
  height: 150px;
  width: auto;
}

.footer-back-to-top {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 1.5rem;
}

.back-to-top-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--muted);
  padding: 0;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 0.9;
}

.back-to-top-btn:hover {
  color: var(--accent);
  opacity: 1;
}

.footer-bottom {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-bottom a {
  color: var(--footer-link);
}

.footer-credit {
  margin: 0;
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.35rem;
  color: var(--muted);
  line-height: 1.2;
  white-space: nowrap;
}

.footer-credit a {
  color: var(--footer-link);
  text-decoration: none;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  text-decoration: underline;
}

.footer-credit-icon {
  width: 1.41em;
  height: 1.41em;
  flex: 0 0 1.41em;
  background-color: var(--footer-link);
  -webkit-mask: url('/assets/icons/cjk-icon.svg') center / contain no-repeat;
  mask: url('/assets/icons/cjk-icon.svg') center / contain no-repeat;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 1rem;
  z-index: 50;
  padding: 0 1rem;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.cookie-banner--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.cookie-banner__inner {
  width: min(960px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.95rem;
  padding: 1rem 1.05rem;
}

.cookie-banner__text h4 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: 1.06rem;
  line-height: 1.25;
  color: var(--accent-strong);
}

.cookie-banner__text p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.cookie-banner__text a {
  color: var(--footer-link);
}

.cookie-banner__text a:hover,
.cookie-banner__text a:focus-visible {
  text-decoration: none;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.52rem;
  flex-wrap: nowrap;
  width: 100%;
}

.cookie-banner__actions .btn {
  padding: 0.52rem 1rem;
}

.include-error-wrap {
  background: var(--surface-warm);
  border: 1px solid var(--line-warm);
  border-radius: 0.8rem;
  margin: 1rem auto;
  width: min(1120px, 92vw);
  padding: 0.7rem 0.9rem;
}

.include-error {
  margin: 0;
  color: var(--include-text);
}

.hidden {
  display: none !important;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-delay='1'] {
  transition-delay: 0.08s;
}

[data-delay='2'] {
  transition-delay: 0.16s;
}

[data-delay='3'] {
  transition-delay: 0.24s;
}

@media (max-width: 980px) {

  .hero-grid,
  .split,
  .contact-grid,
  .columns-3 {
    grid-template-columns: 1fr;
  }

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

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

  .footer-seals {
    justify-content: center;
  }

  .footer-seals img {
    height: 120px;
  }
}

@media (max-width: 860px) {
  .brand {
    gap: 0.42rem;
  }

  .brand-logo-slot {
    width: clamp(5.1rem, 22vw, 6.2rem);
    min-width: clamp(5.1rem, 22vw, 6.2rem);
  }

  .brand-kicker {
    font-size: 1rem;
    letter-spacing: 0.07em;
  }

  .cookie-banner {
    bottom: 0.7rem;
    padding: 0 0.75rem;
  }

  .cookie-banner__inner {
    gap: 0.75rem;
    padding: 0.85rem 0.8rem;
  }

  .cookie-banner__actions {
    gap: 0.45rem;
  }

  .header-subnav-wrap {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 106px;
    left: 4vw;
    right: 4vw;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 0.65rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav>ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .site-nav a {
    display: block;
  }

  .google-reviews-grid {
    grid-template-columns: 1fr;
  }

}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}