:root {
  --bg: #fbfbfa;
  --surface: #ffffff;
  --surface-warm: #f7f2f0;
  --surface-sage: #edf2ee;
  --ink: #2f2a27;
  --muted: #746965;
  --rose: #9a6f66;
  --rose-dark: #765249;
  --pink: #f4aaa3;
  --pink-soft: #fff0ee;
  --gold: #c5a86a;
  --sage: #6f7d70;
  --line: rgba(90, 70, 58, 0.16);
  --shadow: 0 24px 70px rgba(69, 53, 44, 0.14);
  --radius: 8px;
  --radius-sm: 6px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

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

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    radial-gradient(circle at 12% 50%, rgba(244, 170, 163, 0.12), transparent 30%),
    rgba(251, 251, 250, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 94px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 286px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
}

.brand img {
  width: 286px;
  height: 86px;
  object-fit: contain;
  object-position: center;
  transform: scale(1.18);
  transform-origin: center;
  filter: saturate(1.25) contrast(1.08);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.main-nav a,
.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  padding: 0 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  background: var(--surface-warm);
  color: var(--rose-dark);
  outline: none;
}

.header-cta {
  min-width: 104px;
  color: #fff;
  background: var(--rose);
  box-shadow: 0 10px 24px rgba(154, 111, 102, 0.22);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--rose-dark);
  outline: none;
}

.hero {
  position: relative;
  padding: 42px 0 28px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(244, 170, 163, 0.18), transparent 28%),
    linear-gradient(120deg, rgba(237, 242, 238, 0.75), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 242, 240, 0.55));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(440px, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: 78px;
}

.hero-copy {
  padding: 18px 0 22px;
}

.hero-logo {
  width: min(460px, 100%);
  height: 236px;
  object-fit: contain;
  object-position: center;
  margin: -42px 0 -18px -12px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: saturate(1.2) contrast(1.06);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.65vw, 52px);
  line-height: 1.07;
  font-weight: 500;
  color: var(--ink);
}

.hero-lead {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--pink));
  box-shadow: 0 16px 34px rgba(244, 170, 163, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, var(--rose-dark), #e99891);
}

.button-secondary {
  color: var(--rose-dark);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(154, 111, 102, 0.28);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #fff;
  border-color: rgba(154, 111, 102, 0.46);
}

.button-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
}

.button-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-media {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame-main {
  width: min(100%, 530px);
  aspect-ratio: 0.9;
}

.media-frame-main::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  border: 1px solid rgba(197, 168, 106, 0.56);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.hero-card {
  position: absolute;
  right: 0;
  bottom: 46px;
  width: min(318px, 60%);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 60px rgba(47, 42, 39, 0.16);
}

.hero-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-card strong {
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.16;
  font-weight: 500;
}

.hero-card p {
  margin: 12px 0 0;
  color: var(--rose-dark);
  font-weight: 900;
}

.price-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.package-offers {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.package-card {
  display: flex;
  min-height: 246px;
  flex-direction: column;
  border: 1px solid rgba(154, 111, 102, 0.18);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 52px rgba(154, 111, 102, 0.09);
}

.package-card-featured {
  border-color: rgba(244, 170, 163, 0.62);
  background:
    radial-gradient(circle at 90% 0%, rgba(244, 170, 163, 0.3), transparent 34%),
    #fff;
  box-shadow: 0 24px 70px rgba(244, 170, 163, 0.22);
}

.package-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package-card h2 {
  margin: 16px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1.05;
  font-weight: 500;
}

.package-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.package-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 24px;
}

.package-meta strong {
  color: var(--rose-dark);
  font-size: 24px;
  font-weight: 950;
}

.package-meta small {
  color: var(--muted);
  font-weight: 850;
}

.package-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--pink));
  font-size: 14px;
  font-weight: 900;
}

.quick-strip {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.quick-strip a {
  min-height: 48px;
  flex: 1 1 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(154, 111, 102, 0.22);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--rose-dark);
  font-weight: 850;
  text-align: center;
  transition: background 180ms ease, color 180ms ease;
}

.quick-strip a:hover,
.quick-strip a:focus-visible {
  background: var(--rose);
  color: #fff;
  outline: none;
}

.section {
  padding: 86px 0;
}

.intro-section {
  background: var(--surface);
}

.problem-section {
  background:
    radial-gradient(circle at 14% 16%, rgba(244, 170, 163, 0.15), transparent 30%),
    #fff;
}

.problem-top,
.why-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 52px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.problem-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(69, 53, 44, 0.06);
}

.problem-card span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.problem-card h3 {
  margin: 20px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.12;
  font-weight: 500;
}

.problem-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.problem-card a {
  margin-top: auto;
  padding-top: 22px;
  color: var(--rose-dark);
  font-weight: 950;
}

.why-section {
  background:
    linear-gradient(135deg, var(--ink), #5d4842 54%, #7b625b);
  color: #fff;
}

.why-section .section-number {
  color: var(--pink);
}

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

.why-list article {
  min-height: 168px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.why-list strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.12;
  font-weight: 500;
}

.why-list p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.62;
}

.intro-grid,
.price-top,
.process-grid,
.booking-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 52px;
}

.section-heading {
  display: grid;
  gap: 14px;
  align-content: start;
}

.section-number {
  display: none;
}

.section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  font-weight: 500;
}

.section-lead {
  max-width: 700px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(69, 53, 44, 0.06);
}

.service-card-dark {
  background: var(--ink);
  color: #fff;
}

.service-card-dark p,
.service-card-dark span {
  color: rgba(255, 255, 255, 0.76);
}

.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  color: var(--rose);
  background: var(--surface-warm);
}

.service-card-dark .service-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 24px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 500;
}

.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.service-card span {
  margin-top: auto;
  padding-top: 22px;
  color: var(--rose-dark);
  font-weight: 900;
}

.work-section {
  background:
    linear-gradient(180deg, #fff, var(--pink-soft));
  overflow: hidden;
}

.work-top {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 52px;
}

.work-carousel {
  position: relative;
  margin-top: 42px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.work-track {
  display: flex;
  width: max-content;
  animation: workSlide 34s linear infinite;
}

.work-carousel:hover .work-track,
.work-carousel:focus-within .work-track {
  animation-play-state: paused;
}

.work-set {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}

@keyframes workSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.work-card {
  position: relative;
  flex: 0 0 clamp(320px, 28vw, 420px);
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 70px rgba(154, 111, 102, 0.13);
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(255, 255, 255, 0.14) 54%, rgba(255, 255, 255, 0.94) 100%);
  pointer-events: none;
}

.work-card div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 60px rgba(69, 53, 44, 0.12);
}

.work-card span {
  display: block;
  color: var(--sage);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-card h3 {
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.12;
  font-weight: 500;
}

.work-card strong {
  display: block;
  margin-top: 14px;
  color: var(--rose-dark);
  font-size: 20px;
  font-weight: 900;
}

.about-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(244, 170, 163, 0.16), transparent 30%),
    linear-gradient(180deg, #fff, var(--pink-soft));
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 64px;
}

.bielenda-section {
  background:
    radial-gradient(circle at 78% 12%, rgba(244, 170, 163, 0.16), transparent 28%),
    linear-gradient(135deg, var(--surface-sage), #fff 52%, var(--pink-soft));
}

.bielenda-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 58px;
}

.bielenda-copy > p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.76;
}

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

.bielenda-points article {
  min-height: 220px;
  border: 1px solid rgba(154, 111, 102, 0.16);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(69, 53, 44, 0.06);
}

.bielenda-points span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.bielenda-points h3 {
  margin: 36px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 500;
}

.bielenda-points p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.owner-card {
  border: 1px solid rgba(154, 111, 102, 0.16);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 70px rgba(154, 111, 102, 0.12);
}

.owner-photo {
  height: 420px;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(244, 170, 163, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(247, 242, 240, 0.96), rgba(237, 242, 238, 0.88));
  border: 1px solid rgba(197, 168, 106, 0.34);
}

.owner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.owner-photo span {
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--rose-dark);
  background: rgba(255, 255, 255, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  box-shadow: 0 18px 46px rgba(154, 111, 102, 0.16);
}

.owner-card-body {
  display: grid;
  justify-items: center;
  gap: 5px;
  margin-top: 18px;
  text-align: center;
}

.owner-card-body img {
  width: 230px;
  height: 104px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
}

.owner-card-body h3 {
  margin: 8px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.owner-card-body p,
.about-copy p {
  color: var(--muted);
}

.owner-card-body p {
  margin: 0;
  font-weight: 850;
}

.about-copy p {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.76;
}

.about-copy h1 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.6vw, 70px);
  line-height: 1.04;
  font-weight: 500;
  color: var(--ink);
}

.about-page-section {
  padding-top: 108px;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.credentials-section {
  background: #fff;
}

.credentials-top {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 52px;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.credential-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(154, 111, 102, 0.16);
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 240, 238, 0.82), rgba(255, 255, 255, 0.95));
  box-shadow: 0 18px 50px rgba(69, 53, 44, 0.06);
}

.credential-card-image {
  min-height: auto;
  padding: 16px;
}

.credential-card-image img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: contain;
  border: 1px solid rgba(197, 168, 106, 0.24);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 14px 34px rgba(69, 53, 44, 0.08);
}

.credential-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--rose-dark);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.credential-card-image span {
  margin-top: 18px;
}

.credential-card h3 {
  margin: 48px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.12;
  font-weight: 500;
}

.credential-card-image h3 {
  margin-top: 18px;
}

.credential-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.credential-card-upload {
  border-style: dashed;
  background: var(--surface-warm);
}

.image-band-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 64px;
}

.image-band .media-frame {
  aspect-ratio: 0.92;
}

.image-band-copy p {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 0;
}

.mini-stats div {
  min-height: 108px;
  border-top: 2px solid var(--gold);
  padding-top: 16px;
}

.mini-stats dt {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
}

.mini-stats dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.price-section {
  background: var(--bg);
}

.price-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
}

.price-tab {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.price-tab:hover,
.price-tab:focus-visible,
.price-tab.is-active {
  border-color: var(--rose);
  background: var(--rose);
  color: #fff;
  outline: none;
}

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

.price-item {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(69, 53, 44, 0.05);
}

.price-item[hidden] {
  display: none;
}

.price-item h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.1;
  font-weight: 500;
}

.price-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.price-item strong {
  display: block;
  margin-top: 20px;
  color: var(--rose-dark);
  font-size: 21px;
  font-weight: 900;
}

.process-section {
  background: var(--surface);
}

.process-list {
  display: grid;
  gap: 16px;
}

.process-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 0 0 24px;
}

.process-list article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.process-list span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--rose-dark);
  background: var(--surface-warm);
  font-weight: 900;
}

.process-list h3 {
  grid-column: 2;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
}

.process-list p {
  grid-column: 2;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.booking-section {
  background:
    radial-gradient(circle at 70% 22%, rgba(244, 170, 163, 0.2), transparent 28%),
    linear-gradient(135deg, var(--ink), #5d4842 48%, #7b625b);
  color: #fff;
}

.booking-logo {
  width: min(430px, 100%);
  height: 260px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  margin: -58px 0 -8px -18px;
}

.booking-copy p {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.7;
}

.booking-section .section-number {
  color: var(--gold);
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-details span,
.contact-details a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
}

.location-note {
  max-width: 640px;
  margin-top: 18px;
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.1);
}

.location-note strong {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 950;
}

.location-note p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.62;
}

.booking-section .button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.booking-section .button-secondary:hover,
.booking-section .button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 15px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(197, 168, 106, 0.24);
}

.contact-form .button {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 240, 238, 0.7), #fff 42%, rgba(237, 242, 238, 0.54));
}

.footer-inner {
  min-height: 124px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.footer-logo {
  width: 228px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-logo img {
  width: 228px;
  height: 92px;
  object-fit: contain;
  object-position: center;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(154, 111, 102, 0.2);
  border-radius: 999px;
  color: var(--rose-dark);
  background: #fff;
  box-shadow: 0 10px 30px rgba(154, 111, 102, 0.08);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-1px);
  color: #fff;
  background: var(--rose);
  outline: none;
}

.social-links svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:first-child svg {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 1020px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav {
    display: none;
  }

  .hero-grid,
  .intro-grid,
  .price-top,
  .credentials-top,
  .work-top,
  .bielenda-grid,
  .process-grid,
  .booking-grid,
  .about-grid,
  .problem-top,
  .why-grid,
  .image-band-grid {
    grid-template-columns: 1fr;
  }

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

  .media-frame-main {
    width: 100%;
    aspect-ratio: 1.2;
  }

  .hero-card {
    right: 18px;
    bottom: 18px;
    width: min(340px, 62%);
  }

  .quick-strip,
  .service-grid,
  .credential-grid,
  .package-offers,
  .problem-grid,
  .bielenda-points,
  .price-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    position: static;
  }

  .header-inner {
    min-height: 84px;
    gap: 14px;
  }

  .brand {
    width: 190px;
    height: 64px;
  }

  .brand img {
    width: 190px;
    height: 64px;
    transform: scale(1.5);
  }

  .header-cta {
    min-width: 88px;
    min-height: 40px;
    padding: 0 12px;
  }

  .hero {
    padding: 28px 0 18px;
  }

  .hero-grid {
    gap: 26px;
  }

  .hero-copy {
    padding: 8px 0 0;
  }

  .hero-logo {
    width: min(330px, 100%);
    height: 180px;
    margin: -34px 0 -10px -8px;
  }

  .hero h1 {
    font-size: clamp(31px, 9vw, 43px);
    line-height: 1.08;
  }

  .hero-lead,
  .section-lead,
  .about-copy p,
  .bielenda-copy > p,
  .image-band-copy p,
  .booking-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .media-frame-main {
    aspect-ratio: 0.92;
  }

  .hero-card {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 18px;
  }

  .hero-card strong {
    font-size: 22px;
  }

  .quick-strip,
  .service-grid,
  .credential-grid,
  .package-offers,
  .problem-grid,
  .why-list,
  .price-list,
  .mini-stats {
    grid-template-columns: 1fr;
  }

  .work-carousel {
    margin-top: 28px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }

  .work-track {
    animation-duration: 26s;
  }

  .work-card {
    flex-basis: 82vw;
    min-height: 430px;
  }

  .work-card div {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }

  .work-card h3 {
    font-size: 23px;
  }

  .owner-photo {
    height: 320px;
    min-height: 320px;
  }

  .about-page-section {
    padding-top: 60px;
  }

  .booking-logo {
    width: min(320px, 100%);
    height: 220px;
    margin: -48px 0 -14px -10px;
  }

  .owner-card {
    padding: 16px;
  }

  .credential-card {
    min-height: 220px;
  }

  .bielenda-points {
    grid-template-columns: 1fr;
  }

  .bielenda-points article {
    min-height: auto;
  }

  .quick-strip a {
    min-height: 50px;
    flex-basis: 100%;
  }

  .section {
    padding: 60px 0;
  }

  .service-card {
    min-height: 220px;
  }

  .image-band-grid {
    gap: 34px;
  }

  .image-band .media-frame {
    aspect-ratio: 1;
  }

  .process-list article {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .process-list span {
    width: 38px;
    height: 38px;
  }

  .contact-form {
    padding: 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 24px 0;
  }

  .footer-logo {
    width: 190px;
    height: 76px;
  }

  .social-links {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .work-track {
    animation: none !important;
  }

  .work-carousel {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

.review-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 16%, rgba(244, 170, 163, 0.22), transparent 28%),
    radial-gradient(circle at 78% 72%, rgba(197, 168, 106, 0.14), transparent 30%),
    linear-gradient(135deg, #fffaf9, #f7f2f0 48%, #edf2ee);
}

.review-toolbar {
  width: min(1040px, calc(100% - 36px));
  margin: 22px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.review-back {
  color: var(--rose-dark);
  font-size: 14px;
  font-weight: 900;
}

.review-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.review-toolbar button {
  border: 0;
  cursor: pointer;
}

.review-stage {
  min-height: calc(100vh - 90px);
  display: grid;
  place-items: start center;
  padding: 22px 18px 44px;
}

.review-sheet {
  position: relative;
  width: min(794px, 100%);
  min-height: 1123px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 56px 70px 50px;
  background:
    radial-gradient(circle at 18% 8%, rgba(244, 170, 163, 0.22), transparent 24%),
    radial-gradient(circle at 82% 92%, rgba(237, 242, 238, 0.78), transparent 28%),
    linear-gradient(180deg, #fff, #fffafa 68%, #f9f3f1);
  border: 1px solid rgba(197, 168, 106, 0.45);
  box-shadow: 0 30px 90px rgba(69, 53, 44, 0.2);
  color: var(--ink);
}

.review-sheet::before,
.review-sheet::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.16;
  background:
    repeating-radial-gradient(ellipse at bottom left, transparent 0 16px, rgba(197, 168, 106, 0.8) 17px, transparent 18px 30px);
}

.review-sheet::before {
  left: -120px;
  bottom: -40px;
  width: 370px;
  height: 270px;
  transform: rotate(14deg);
}

.review-sheet::after {
  right: -140px;
  top: -10px;
  width: 360px;
  height: 260px;
  transform: rotate(194deg);
}

.review-corner {
  position: absolute;
  pointer-events: none;
  width: 230px;
  height: 230px;
  background: linear-gradient(135deg, rgba(154, 111, 102, 0.94), rgba(244, 170, 163, 0.78));
}

.review-corner::after {
  content: "";
  position: absolute;
  inset: 52px 0 0 62px;
  background: rgba(197, 168, 106, 0.38);
}

.review-corner-top {
  top: -116px;
  right: -92px;
  transform: rotate(45deg);
}

.review-corner-bottom {
  bottom: -116px;
  left: -92px;
  transform: rotate(225deg);
}

.review-sheet-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}

.review-sheet-header img {
  width: 330px;
  height: 150px;
  object-fit: contain;
  filter: saturate(1.2) contrast(1.06);
}

.review-sheet-copy {
  position: relative;
  z-index: 1;
  text-align: center;
}

.review-sheet-copy h1 {
  max-width: 660px;
  margin: 0 auto;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 700;
}

.review-highlight {
  margin: 34px 0 0;
  color: var(--rose-dark);
  font-size: 26px;
  font-weight: 950;
  font-style: italic;
}

.review-sheet-copy p:not(.review-highlight) {
  max-width: 620px;
  margin: 48px auto 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.62;
  text-align: left;
}

.review-qr-block {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 20px;
  margin: 78px auto 0;
}

.review-qr-block span {
  color: var(--ink);
  font-size: 21px;
  font-weight: 950;
  font-style: italic;
}

.review-qr-block img {
  width: 236px;
  height: 236px;
  padding: 14px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(90, 70, 58, 0.16);
  box-shadow: 0 18px 46px rgba(69, 53, 44, 0.14);
}

.review-sheet-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.review-sheet-footer strong {
  display: block;
  color: var(--rose-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
}

.review-sheet-footer span {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-sheet-footer ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  list-style: none;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .review-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .review-toolbar-actions {
    justify-content: flex-start;
  }

  .review-stage {
    padding-inline: 10px;
  }

  .review-sheet {
    min-height: auto;
    padding: 38px 24px 42px;
  }

  .review-corner {
    width: 170px;
    height: 170px;
  }

  .review-sheet-header img {
    width: 250px;
    height: 118px;
  }

  .review-sheet-copy h1 {
    font-size: 34px;
  }

  .review-highlight {
    font-size: 22px;
  }

  .review-sheet-copy p:not(.review-highlight) {
    margin-top: 34px;
    font-size: 17px;
  }

  .review-qr-block {
    margin-top: 52px;
  }
}

@media print {
  @page {
    size: A4;
    margin: 0;
  }

  body.review-body {
    background: #fff;
  }

  .review-toolbar {
    display: none;
  }

  .review-stage {
    min-height: 0;
    padding: 0;
    display: block;
  }

  .review-sheet {
    width: 210mm;
    min-height: 297mm;
    box-shadow: none;
    border: 0;
  }
}
