:root {
  --brown: #5a3e2b;
  --brown-deep: #3f2b1d;
  --muted: #6b5546;
  --muted-2: #8c7563;
  --muted-3: #a8907c;
  --cream: #fffdfa;
  --line: #f2e6d9;
  --line-2: #f5ece2;
  --green: #8cc63e;
  --green-dark: #6fa22b;
  --green-text: #4d6e1f;
  --green-soft: #e7f2d9;
  --coral: #ef5b4c;
  --coral-dark: #c94435;
  --blue: #2ca9e1;
  --blue-dark: #1b87b8;
  --yellow: #f5c21a;
  --yellow-dark: #c99a00;
  --pink: #e8799b;
  --wrap: 1120px;
  --radius: 26px;
  --shadow: 0 14px 34px rgba(90, 62, 43, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--brown);
  font-family: "Nunito Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  background-color: var(--cream);
  background-repeat: repeat;
  background-size: 660px 660px;
  background-image:
    radial-gradient(circle at 7% 16%, #fbe3e7 0 26px, transparent 27px),
    radial-gradient(circle at 22% 58%, #dceaf6 0 15px, transparent 16px),
    radial-gradient(circle at 44% 9%, #fcf0cd 0 22px, transparent 23px),
    radial-gradient(circle at 58% 40%, #e7f2d9 0 30px, transparent 31px),
    radial-gradient(circle at 77% 72%, #fbe3e7 0 14px, transparent 15px),
    radial-gradient(circle at 90% 22%, #dceaf6 0 25px, transparent 26px),
    radial-gradient(circle at 34% 87%, #fcf0cd 0 17px, transparent 18px),
    radial-gradient(circle at 68% 95%, #e7f2d9 0 12px, transparent 13px),
    radial-gradient(circle at 96% 53%, #fcf0cd 0 10px, transparent 11px);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--blue);
}

a:hover {
  color: var(--coral);
}

h1,
h2,
h3 {
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  letter-spacing: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 100;
  background: var(--brown);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
  color: #fff;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 253, 250, 0.93);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--line);
}

.site-header__inner {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.site-logo {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
  background: #fff;
  border-radius: 14px;
  padding: 4px 8px;
}

.site-logo img {
  height: 50px;
  width: auto;
  display: block;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  height: 44px;
  border: 2px solid var(--line);
  border-radius: 99px;
  background: #fff;
  cursor: pointer;
  padding: 0 14px 0 12px;
  box-sizing: border-box;
  color: var(--brown);
  font-family: "Baloo 2", cursive;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-toggle:hover {
  border-color: var(--green);
}

.nav-toggle__icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 16px;
  height: 12px;
  flex-shrink: 0;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--brown);
  border-radius: 99px;
}

.nav-toggle__label {
  line-height: 1;
}

.site-nav {
  display: flex;
  gap: 2px;
  align-items: stretch;
}

.site-nav__link {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 10px 13px 7px;
  border-radius: 13px;
  font-family: "Baloo 2", cursive;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
  white-space: nowrap;
}

.site-nav__link:hover {
  background: #f6efe5;
  color: var(--brown);
}

.site-nav__link::after {
  content: "";
  height: 4px;
  display: block;
  border-radius: 99px;
  background: transparent;
}

.site-nav__link.is-active[data-accent="green"]::after { background: var(--green); }
.site-nav__link.is-active[data-accent="yellow"]::after { background: var(--yellow); }
.site-nav__link.is-active[data-accent="blue"]::after { background: var(--blue); }
.site-nav__link.is-active[data-accent="coral"]::after { background: var(--coral); }
.site-nav__link.is-active[data-accent="pink"]::after { background: var(--pink); }
.site-nav__link.is-active[data-accent="brown"]::after { background: var(--brown); }

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 44px;
  align-items: center;
  padding-top: 44px;
  padding-bottom: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 99px;
  background: #fff;
  border: 2px solid var(--green-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 20px;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.05;
  text-wrap: pretty;
}

.lead {
  margin: 0 0 26px;
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 520px;
  text-wrap: pretty;
}

.lead-wide {
  max-width: 700px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 99px;
  font-family: "Baloo 2", cursive;
  font-size: 19px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  color: inherit;
}

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 0 var(--green-dark);
}

.btn-green:hover { color: #fff; }

.btn-outline {
  background: #fff;
  border: 2px solid var(--line);
  color: var(--brown);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--brown);
}

.btn-white {
  background: #fff;
  color: var(--brown);
  box-shadow: 0 6px 0 rgba(90, 62, 43, 0.15);
}

.btn-white:hover { color: var(--brown); }

.btn-brown {
  background: var(--brown);
  color: #fff;
  box-shadow: 0 6px 0 rgba(90, 62, 43, 0.25);
}

.btn-brown:hover { color: #fff; }

.btn-coral {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 5px 0 var(--coral-dark);
}

.btn-coral:hover { color: #fff; }

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 99px;
  background: #fff;
  border: 2px solid var(--line);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.pill-green {
  background: var(--green-soft);
  border: none;
  color: #5b7f26;
  padding: 7px 13px;
  font-size: 14px;
}

.pill-blue {
  background: #dceaf6;
  border: none;
  color: #1b6f96;
  padding: 7px 13px;
  font-size: 14px;
}

.hero-photo {
  position: relative;
  justify-self: center;
}

.hero-photo__back {
  position: absolute;
  inset: -18px 22px 34px -14px;
  background: #fcf0cd;
  border-radius: 40px;
  transform: rotate(-4deg);
}

.hero-photo__frame {
  position: relative;
  padding: 12px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 20px 46px rgba(90, 62, 43, 0.12);
  transform: rotate(2deg);
}

.hero-photo__frame img {
  display: block;
  width: 100%;
  max-width: 380px;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
}

.hero-photo__badge {
  position: absolute;
  bottom: -22px;
  left: -16px;
  background: var(--blue);
  color: #fff;
  padding: 14px 20px;
  border-radius: 20px;
  font-family: "Baloo 2", cursive;
  font-size: 18px;
  line-height: 1.25;
  box-shadow: 0 10px 24px rgba(44, 169, 225, 0.3);
}

.stats {
  padding: 64px 18px 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.stat {
  border-radius: var(--radius);
  padding: 32px 28px;
  color: #fff;
}

.stat-green {
  background: var(--green);
  box-shadow: 0 14px 32px rgba(140, 198, 62, 0.24);
}

.stat-coral {
  background: var(--coral);
  box-shadow: 0 14px 32px rgba(239, 91, 76, 0.24);
}

.stat-blue {
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(44, 169, 225, 0.24);
}

.stat__label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stat-green .stat__label { color: #eaffcf; }
.stat-coral .stat__label { color: #ffe2dd; }
.stat-blue .stat__label { color: #dcf1fb; }

.stat__value {
  font-family: "Baloo 2", cursive;
  font-size: 46px;
  line-height: 1.1;
  margin: 6px 0 10px;
}

.stat-coral .stat__value { font-size: 40px; }

.stat p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

.stat-green p { color: #f4ffe4; }
.stat-coral p { color: #ffeae6; }

.stat-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.5;
}

.card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.ritme {
  padding-bottom: 64px;
}

.ritme .card {
  padding: 40px 34px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.section-head h2,
.page-intro h1,
.gallery-head h2 {
  margin: 0;
}

.eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.eyebrow-yellow { color: var(--yellow); }
.eyebrow-coral { color: var(--coral); }
.eyebrow-pink { color: var(--pink); }
.eyebrow-green { color: var(--green); }
.eyebrow-blue { color: var(--blue); }

h2 {
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.1;
}

.text-link {
  font-family: "Baloo 2", cursive;
  font-size: 17px;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 2px solid #cfe9f7;
  padding-bottom: 2px;
}

.text-link:hover { color: var(--coral); }

.ritme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}

.ritme-item {
  padding-top: 14px;
}

.ritme-item--green { border-top: 4px solid var(--green); }
.ritme-item--yellow { border-top: 4px solid var(--yellow); }
.ritme-item--coral { border-top: 4px solid var(--coral); }
.ritme-item--blue { border-top: 4px solid var(--blue); }

.ritme-time {
  font-family: "Baloo 2", cursive;
  font-size: 24px;
}

.ritme-item--green .ritme-time { color: var(--green-dark); }
.ritme-item--yellow .ritme-time { color: var(--yellow-dark); }
.ritme-item--coral .ritme-time { color: #d84433; }
.ritme-item--blue .ritme-time { color: var(--blue-dark); }

.ritme-item p {
  margin: 4px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.space-preview {
  padding-bottom: 64px;
}

.photo-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.photo-row img,
.gallery-grid img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 22px;
}

.review-strip {
  padding: 12px 18px 64px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.review-card {
  border-radius: 22px;
  padding: 26px;
}

.stars {
  display: inline-flex;
  align-items: center;
  font-size: 17px;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 12px;
}

.star {
  color: var(--yellow);
}

.star--empty {
  color: #e6d5c4;
}

.star--half {
  background: linear-gradient(90deg, var(--yellow) 50%, #e6d5c4 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.review-card h3,
.review-full h2 {
  margin: 0 0 10px;
}

.review-card p,
.review-full p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  text-wrap: pretty;
}

.review-author {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.cta-section {
  padding-bottom: 64px;
}

.cta-band {
  background: var(--green);
  border-radius: 28px;
  padding: 40px 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  box-shadow: 0 16px 40px rgba(140, 198, 62, 0.28);
}

.cta-band__copy {
  max-width: 520px;
}

.cta-band h2 {
  margin: 0 0 8px;
  color: #fff;
}

.cta-band p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: #f4ffe4;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  background: var(--brown);
  color: #f3e6d9;
}

.footer-grid {
  padding: 52px 18px 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 36px;
}

.footer-brand {
  font-family: "Baloo 2", cursive;
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.site-footer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #d9c6b4;
}

.footer-heading {
  font-family: "Baloo 2", cursive;
  font-size: 19px;
  color: var(--yellow);
  margin-bottom: 10px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
}

.footer-links a {
  color: #f3e6d9;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-bar {
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 13px;
  color: #bda893;
}

.page-intro {
  padding-top: 48px;
}

.page-intro h1 {
  margin-bottom: 14px;
  font-size: clamp(34px, 6vw, 50px);
}

.page-intro .lead {
  margin-bottom: 0;
}

.banner {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(90, 62, 43, 0.12);
}

.banner img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 40%;
}

.banner__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(90, 62, 43, 0.72) 0%, rgba(90, 62, 43, 0.25) 70%);
}

.banner__text {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 34px 34px 30px;
}

.banner__text h1 {
  margin: 0;
  color: #fff;
}

.about-grid {
  padding: 52px 18px 64px;
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  align-items: flex-start;
}

.about-copy {
  flex: 1 1 420px;
  min-width: 0;
}

.about-copy h2 {
  margin: 0 0 18px;
  font-size: 36px;
}

.about-copy p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  text-wrap: pretty;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.mini-stat {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 20px;
  padding: 20px;
}

.mini-stat strong {
  display: block;
  font-family: "Baloo 2", cursive;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 700;
}

.mini-stat span {
  display: block;
  font-size: 15px;
  color: var(--muted);
  margin-top: 4px;
}

.about-aside {
  flex: 1 1 280px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aside-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}

.aside-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.aside-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 16px;
  color: var(--muted);
}

.info-cards {
  padding: 40px 18px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.info-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
}

.info-bar {
  width: 44px;
  height: 8px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.info-card h2 {
  margin: 0 0 12px;
  font-size: 27px;
}

.info-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  text-wrap: pretty;
}

.info-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-card--blue {
  background: var(--blue);
  border: none;
  color: #fff;
}

.info-card--blue h2,
.info-card--blue p {
  color: #fff;
}

.info-card--blue p { color: #e4f4fc; }

.info-card--blue .text-link {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.info-card--blue .text-link:hover { color: #fff; }

.werkplan {
  padding: 64px 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 34px;
  align-items: start;
}

.werkplan p {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

.werkplan img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
}

.schedule {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 28px;
}

.schedule-row {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 0 18px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 17px;
  line-height: 1.5;
  color: var(--muted);
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-row:nth-child(-n+2) time { color: var(--green); }
.schedule-row:nth-child(n+3):nth-child(-n+4) time { color: var(--yellow-dark); }
.schedule-row:nth-child(n+5):nth-child(-n+6) time { color: var(--coral); }
.schedule-row:nth-child(n+7):nth-child(-n+8) time { color: var(--blue); }
.schedule-row:nth-child(n+9) time { color: var(--pink); }

.schedule-row time {
  font-family: "Baloo 2", cursive;
  font-size: 20px;
}

.gallery-section {
  padding: 36px 18px 0;
}

.gallery-section.is-last {
  padding-bottom: 64px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}

.gallery-item {
  margin: 0;
  cursor: zoom-in;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 26px rgba(90, 62, 43, 0.08);
  transition: transform 0.15s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
}

.gallery-item figcaption {
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
}

.visit-card {
  border: 2px dashed #e6d5c4;
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background: #fffaf3;
}

.visit-card h3 {
  margin: 0;
  font-size: 22px;
}

.visit-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(52, 35, 24, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  cursor: zoom-out;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(760px, 92vw);
  max-height: 86vh;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 99px;
  border: none;
  background: #fff;
  color: var(--brown);
  font-size: 22px;
  font-family: "Baloo 2", cursive;
  cursor: pointer;
}

.review-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 34px 0 44px;
}

.score-card {
  background: var(--brown);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px 28px;
}

.score-card strong {
  display: block;
  font-family: "Baloo 2", cursive;
  font-size: 58px;
  line-height: 1;
  font-weight: 700;
}

.score-card .stars {
  font-size: 20px;
  margin: 6px 0 8px;
}

.score-card span {
  font-size: 15px;
  color: #d9c6b4;
}

.bars-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bar-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 7px;
}

.bar {
  height: 10px;
  border-radius: 99px;
  background: #f3ece4;
}

.bar > span {
  display: block;
  width: 100%;
  height: 10px;
  border-radius: 99px;
}

.write-card {
  background: var(--green-soft);
  border-radius: var(--radius);
  padding: 30px 28px;
}

.write-card h2 {
  margin: 0 0 12px;
  font-size: 24px;
  color: var(--green-text);
}

.write-card p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #5b7f26;
}

.write-card .text-link {
  color: var(--green-text);
  border-bottom-color: rgba(77, 110, 31, 0.3);
}

.review-list {
  padding: 0 18px 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 22px;
}

.review-full {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: 0 12px 30px rgba(90, 62, 43, 0.06);
}

.review-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 99px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Baloo 2", cursive;
  font-size: 22px;
}

.review-person strong {
  display: block;
  font-family: "Baloo 2", cursive;
  font-size: 20px;
  font-weight: 700;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line-2);
}

.review-tags > span {
  padding: 6px 12px;
  border-radius: 99px;
  background: #f6f2ec;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.review-tags .stars {
  font-size: 13px;
  letter-spacing: 1px;
  margin: 0;
}

.contact-grid {
  padding: 36px 18px 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
  align-items: start;
}

.contact-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
}

.contact-block {
  margin-bottom: 22px;
}

.contact-block:last-of-type {
  margin-bottom: 0;
}

.contact-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-3);
  margin-bottom: 6px;
}

.phone-link {
  font-family: "Baloo 2", cursive;
  font-size: 30px;
  color: var(--brown);
  text-decoration: none;
}

.phone-link:hover {
  color: var(--coral);
}

.contact-block p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}

.map-card {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.map-card p {
  margin: 0;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    background: #fff;
    border: 2px solid var(--line);
    border-radius: 18px;
    padding: 8px;
    flex-direction: column;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-photo__badge {
    left: 8px;
  }

  .banner__text {
    padding: 22px;
  }

  .ritme .card,
  .cta-band {
    padding: 28px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn,
  .gallery-item { transition: none; }
}
