:root {
  --ink: #101312;
  --muted: #5c6461;
  --paper: #f7f8f5;
  --panel: #ffffff;
  --line: #d9ded8;
  --teal: #159447;
  --teal-dark: #0d6f34;
  --coral: #2d3432;
  --gold: #8ea39a;
  --blue: #46677e;
  --shadow: 0 24px 70px rgba(24, 32, 31, 0.13);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.intro-running {
  overflow: hidden;
}

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

.brand-intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 233, 220, 0.94)),
    var(--paper);
  animation: intro-exit 0.48s cubic-bezier(0.22, 1, 0.36, 1) 1.82s forwards;
}

.brand-intro::before,
.brand-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.brand-intro::before {
  background:
    linear-gradient(rgba(24, 32, 31, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 32, 31, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, #000 0 34%, transparent 68%);
  opacity: 0;
  animation: intro-grid 1.05s ease-out 0.08s forwards;
}

.brand-intro::after {
  background: linear-gradient(100deg, transparent 8%, rgba(255, 255, 255, 0.68) 46%, transparent 64%);
  transform: translateX(-120%);
  animation: intro-sheen 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.72s forwards;
}

.intro-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(86vw, 920px);
}

.intro-logo-lockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  filter: drop-shadow(0 26px 50px rgba(24, 32, 31, 0.16));
  transform: translateY(10px) scale(0.94);
  opacity: 0;
  animation: intro-mark-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.04s forwards;
}

.intro-mark {
  position: relative;
  z-index: 2;
  width: clamp(170px, 31vw, 360px);
  max-width: none;
}

.intro-word-mask {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(230px, 43vw, 520px);
  margin-left: clamp(-24px, -2.8vw, -12px);
  overflow: hidden;
}

.intro-word {
  width: 100%;
  max-width: none;
  transform: translateX(-108%);
  opacity: 0;
  animation: intro-word-out 0.72s cubic-bezier(0.16, 1, 0.3, 1) 0.46s forwards;
}

.intro-line {
  display: block;
  width: min(520px, 64vw);
  height: 2px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(24, 32, 31, 0.1);
}

.intro-line::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  transform: translateX(-110%);
  animation: intro-line-run 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.62s forwards;
}

body.intro-complete .brand-intro {
  display: none;
}

@keyframes intro-mark-in {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes intro-word-out {
  0% {
    opacity: 0;
    transform: translateX(-108%);
  }
  22% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes intro-line-run {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(110%);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(46px) scale(0.985);
  filter: blur(8px);
  will-change: transform, opacity, filter;
}

[data-reveal].is-visible {
  animation: buoy-rise 0.86s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms) both;
}

@keyframes buoy-rise {
  0% {
    opacity: 0;
    transform: translateY(54px) scale(0.982);
    filter: blur(10px);
  }
  58% {
    opacity: 1;
    transform: translateY(-9px) scale(1.006);
    filter: blur(0);
  }
  76% {
    transform: translateY(5px) scale(0.998);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes intro-grid {
  0% {
    opacity: 0;
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes intro-sheen {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes intro-exit {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.cookie-notice {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 95;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(24, 32, 31, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(24, 32, 31, 0.18);
  backdrop-filter: blur(18px);
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1rem;
}

.cookie-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-notice__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-notice .button {
  min-width: 150px;
  padding: 12px 16px;
}

.cookie-settings {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-settings:hover,
.cookie-settings:focus-visible {
  outline: none;
  color: #8fd2c4;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(222, 216, 204, 0.78);
  background: rgba(251, 248, 242, 0.88);
  backdrop-filter: blur(18px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: min(156px, 38vw);
  height: auto;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 40px;
  padding: 9px 13px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #efe9dc;
  color: var(--ink);
  outline: none;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.language-switcher button {
  min-width: 40px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
}

.language-switcher button:hover,
.language-switcher button:focus-visible {
  color: var(--ink);
  outline: none;
}

.language-switcher button.is-active {
  background: var(--ink);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  background: var(--ink);
}

.section-band {
  position: relative;
  padding: 96px 0;
}

.hero {
  min-height: min(760px, calc(100svh - 96px));
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 92px 0 86px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(247, 248, 245, 1) 0%, rgba(247, 248, 245, 0.98) 31%, rgba(247, 248, 245, 0.64) 52%, rgba(247, 248, 245, 0.1) 78%),
    linear-gradient(0deg, rgba(247, 248, 245, 0.96), rgba(247, 248, 245, 0.06) 46%);
}

.hero-content {
  position: relative;
  max-width: 720px;
  margin-left: max(20px, calc((100vw - var(--container)) / 2));
  padding: 34px 36px 36px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(247, 248, 245, 0.7));
  box-shadow: 0 28px 80px rgba(16, 19, 18, 0.12);
  backdrop-filter: blur(10px);
}

.eyebrow,
.tag {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(2.55rem, 6vw, 5.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 630px;
  margin: 26px 0 0;
  color: #33403b;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
}

.button-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 28px rgba(21, 148, 71, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-dark);
  outline: none;
}

.button-secondary {
  border-color: rgba(24, 32, 31, 0.18);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
}

.proof-strip {
  padding: 26px 0;
  border-block: 1px solid var(--line);
  background: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.proof-grid div {
  display: grid;
  gap: 2px;
}

.proof-grid strong {
  font-size: 1.6rem;
  line-height: 1;
}

.proof-grid span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section-heading {
  max-width: 790px;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.split-heading > p,
.contact-layout p {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading p:not(.eyebrow) {
  margin: 20px auto 0;
}

.align-left {
  text-align: left;
}

.align-left p:not(.eyebrow) {
  margin-left: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.service-card,
.template-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 16px 42px rgba(24, 32, 31, 0.06);
}

.service-card {
  min-height: 260px;
  padding: 28px;
}

.service-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 8px;
  background: #e8f0ed;
  color: var(--teal);
  font-weight: 900;
}

.service-card p,
.template-body p,
.process-list p {
  margin: 0;
  color: var(--muted);
}

.offer-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 72px;
  align-items: end;
}

.offer-intro__copy {
  display: grid;
  gap: 16px;
  padding-left: 28px;
  border-left: 3px solid var(--teal);
}

.offer-intro__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.offer-intro__copy .offer-lead {
  color: var(--ink);
  font-size: 1.24rem;
  font-weight: 800;
  line-height: 1.45;
}

.offer-details {
  display: grid;
  grid-template-columns: minmax(230px, 0.55fr) minmax(0, 1.45fr);
  gap: 64px;
  align-items: start;
  margin-top: 72px;
}

.offer-details > h3 {
  max-width: 260px;
  font-size: 1.55rem;
  line-height: 1.22;
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.offer-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  min-height: 230px;
  padding: 28px 24px 30px 0;
  border-bottom: 1px solid var(--line);
}

.offer-list article:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.offer-list article:last-child {
  grid-column: 1 / -1;
  min-height: 0;
}

.offer-list article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: #e8f0ed;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 950;
}

.offer-list h3 {
  margin-bottom: 9px;
}

.offer-list p {
  margin: 0;
  color: var(--muted);
}

.offer-bonus {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(230px, 0.7fr) minmax(260px, 1fr);
  gap: 36px;
  align-items: center;
  margin-top: 52px;
  padding: 34px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 22px 58px rgba(16, 19, 18, 0.17);
}

.offer-bonus .eyebrow {
  margin-bottom: 8px;
  color: #8fd2c4;
}

.offer-bonus h3 {
  margin: 0;
  font-size: 1.55rem;
}

.offer-bonus p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.offer-bonus > p {
  margin: 0;
  font-size: 1.02rem;
}

.offer-bonus ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-bonus li {
  position: relative;
  padding-left: 22px;
  font-weight: 850;
}

.offer-bonus li::before {
  content: "";
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: #33b765;
}

.why-section {
  border-block: 1px solid #d2ded7;
  background: #e8f0ed;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(340px, 1.2fr);
  gap: 72px;
  align-items: start;
}

.why-heading h2 {
  max-width: 520px;
}

.why-copy {
  display: grid;
  gap: 20px;
}

.why-copy p {
  margin: 0;
  color: #3e4945;
  font-size: 1.06rem;
}

.why-benefits {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 28px 54px;
  margin-top: 56px;
  padding-top: 34px;
  border-top: 1px solid #bdcec5;
}

.why-benefits > p:first-child {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 900;
}

.why-benefits ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-benefits li {
  position: relative;
  padding-left: 22px;
  color: #27332f;
  font-weight: 780;
}

.why-benefits li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--teal);
  border-radius: 99px;
}

.why-benefits .why-summary {
  grid-column: 1 / -1;
  max-width: 900px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 900;
  line-height: 1.3;
}

.offer-scope {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) 1.35fr;
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.offer-scope > p {
  margin: 0;
  font-weight: 900;
}

.offer-scope > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.offer-scope span {
  padding: 9px 12px;
  border: 1px solid #cfd8d2;
  border-radius: 8px;
  background: #fff;
  color: #34403c;
  font-size: 0.9rem;
  font-weight: 800;
}

.section-muted {
  background: #efe9dc;
}

.templates-showcase {
  border-block: 1px solid #ded4c3;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 40px;
  align-items: end;
}

.split-heading > p {
  margin: 0;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.template-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.template-preview {
  position: relative;
  display: grid;
  min-height: 280px;
  padding: 18px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.template-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.94;
}

.demo-badge {
  position: absolute;
  top: 52px;
  right: 16px;
  z-index: 3;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  background: #159447;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(13, 111, 52, 0.3);
}

.restaurant-preview::before {
  background:
    linear-gradient(135deg, rgba(16, 12, 9, 0.92), rgba(55, 34, 20, 0.68) 52%, rgba(16, 12, 9, 0.82)),
    url("assets/restaurant/restaurant-interior.webp") center / cover;
}

.restaurant-preview .browser-bar {
  background: rgba(239, 227, 206, 0.88);
}

.restaurant-preview-copy,
.restaurant-preview-menu {
  position: relative;
  z-index: 1;
}

.restaurant-preview-copy {
  align-self: center;
  display: grid;
  gap: 5px;
  max-width: 82%;
  margin-top: 38px;
  color: #fff8ec;
}

.restaurant-preview-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.62rem;
  line-height: 1;
}

.restaurant-preview-copy small {
  color: #d2a35c;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.restaurant-preview-menu {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  width: 100%;
  margin-top: 28px;
}

.restaurant-preview-menu i {
  display: block;
  height: 48px;
  border: 1px solid rgba(239, 227, 206, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(16, 12, 9, 0.52);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.restaurant-preview-menu i:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(16, 12, 9, 0.48)),
    url("assets/restaurant/dish-pierogi.webp") center / cover;
}

.restaurant-preview-menu i:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(16, 12, 9, 0.48)),
    url("assets/restaurant/dish-zurek.webp") center / cover;
}

.restaurant-preview-menu i:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(16, 12, 9, 0.48)),
    url("assets/restaurant/dish-schabowy.webp") center / cover;
}

.clinic-preview::before {
  background:
    linear-gradient(135deg, rgba(247, 254, 253, 0.96), rgba(14, 165, 164, 0.24) 52%, rgba(8, 77, 86, 0.5)),
    url("assets/clinic/dentist-hero.webp") center right / cover;
}

.clinic-preview-copy,
.clinic-preview-calendar {
  position: relative;
  z-index: 1;
}

.clinic-preview-copy {
  align-self: center;
  display: grid;
  gap: 5px;
  width: min(76%, 260px);
  margin-top: 34px;
  padding: 14px;
  border: 1px solid rgba(14, 165, 164, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: #103538;
  box-shadow: 0 18px 38px rgba(8, 77, 86, 0.12);
}

.clinic-preview-copy strong {
  font-size: 1.3rem;
  line-height: 1.05;
}

.clinic-preview-copy small {
  color: #0e8f8e;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clinic-preview-calendar {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 72%;
  margin-top: 26px;
}

.clinic-preview-calendar i {
  display: block;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(8, 77, 86, 0.1);
}

.clinic-preview-calendar i:nth-child(2),
.clinic-preview-calendar i:nth-child(6) {
  background: #0ea5a4;
}

.clinic-preview-calendar i:nth-child(4),
.clinic-preview-calendar i:nth-child(7) {
  opacity: 0.46;
}

.service-preview::before {
  background:
    linear-gradient(135deg, rgba(246, 239, 226, 0.7), rgba(15, 14, 13, 0.56)),
    url("assets/developer/estate-hero.webp") center / cover;
}

.developer-preview-copy,
.developer-preview-plans {
  position: relative;
  z-index: 1;
}

.developer-preview-copy {
  align-self: center;
  display: grid;
  gap: 5px;
  max-width: 78%;
  margin-top: 34px;
  padding: 14px;
  border: 1px solid rgba(15, 14, 13, 0.12);
  border-radius: 8px;
  background: rgba(246, 239, 226, 0.9);
  color: #171513;
  box-shadow: 0 18px 38px rgba(15, 14, 13, 0.16);
}

.developer-preview-copy strong {
  font-size: 1.3rem;
  line-height: 1.05;
}

.developer-preview-copy small {
  color: #7c6448;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.developer-preview-plans {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  width: 100%;
  margin-top: 26px;
}

.developer-preview-plans i {
  height: 52px;
  border: 1px solid rgba(15, 14, 13, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(15, 14, 13, 0.28) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(15, 14, 13, 0.2) 50%, transparent 51%),
    rgba(246, 239, 226, 0.86);
}

.browser-bar,
.preview-hero,
.preview-lines,
.preview-stack,
.preview-metrics {
  position: relative;
  z-index: 1;
}

.browser-bar {
  display: flex;
  gap: 6px;
  width: 100%;
  height: 24px;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px 8px 0 0;
  background: rgba(255, 255, 255, 0.78);
}

.browser-bar i {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--coral);
}

.browser-bar i:nth-child(2) {
  background: var(--gold);
}

.browser-bar i:nth-child(3) {
  background: var(--teal);
}

.preview-hero {
  align-self: end;
  width: 70%;
  height: 78px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.preview-lines,
.preview-stack,
.preview-metrics {
  display: grid;
  gap: 9px;
  width: 58%;
  margin-top: 16px;
}

.preview-lines i,
.preview-stack i,
.preview-metrics i {
  display: block;
  height: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.preview-stack {
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.preview-stack i {
  height: 58px;
}

.preview-metrics {
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.preview-metrics i {
  height: 48px;
}

.template-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.template-body .tag {
  margin-bottom: 10px;
  color: var(--coral);
}

.template-features {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.template-features li {
  position: relative;
  padding-left: 18px;
  color: #39433f;
  font-size: 0.9rem;
  font-weight: 750;
}

.template-features li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 1px;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--teal);
}

.text-link {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 900;
}

.template-body .text-link {
  margin-top: auto;
  padding-top: 22px;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
}

.templates-cta {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding: 24px 0 0;
  border-top: 1px solid #d7cbb9;
}

.templates-cta p {
  max-width: 640px;
  margin: 0;
  color: #3f443f;
  font-size: 1.05rem;
  font-weight: 800;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
  gap: 60px;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.process-list span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

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

.section-dark .eyebrow {
  color: #8fd2c4;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 520px);
  gap: 56px;
  align-items: start;
}

.contact-layout p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-methods {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin-top: 28px;
}

.contact-methods a,
.contact-methods div {
  display: grid;
  gap: 2px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-methods span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-methods strong {
  color: #fff;
  font-size: 1.04rem;
  overflow-wrap: anywhere;
}

.contact-methods a:hover,
.contact-methods a:focus-visible {
  border-color: rgba(143, 210, 196, 0.6);
  outline: none;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  outline: none;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #8fd2c4;
  box-shadow: 0 0 0 3px rgba(143, 210, 196, 0.2);
}

.contact-form .form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-form .form-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  cursor: pointer;
  font-weight: 650;
}

.contact-form .form-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--teal);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-security,
.form-status {
  margin: 0;
  font-size: 0.84rem;
}

.contact-layout .form-security {
  color: rgba(255, 255, 255, 0.6);
}

.contact-layout .form-status {
  color: #fff;
  font-weight: 800;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="success"] {
  color: #a6edbd;
}

.form-status[data-state="error"] {
  color: #ffd0c9;
}

.site-footer {
  padding: 26px 0;
  background: #111715;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.footer-inner span:first-child {
  color: #fff;
  font-weight: 900;
}

.footer-brand {
  display: inline-flex;
  max-width: 148px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.demo-body {
  background: #fff;
}

.demo-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.demo-header .header-actions {
  gap: 16px;
}

.demo-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 950;
}

.demo-logo img {
  width: min(138px, 34vw);
  height: auto;
}

.demo-nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 800;
}

.demo-hero {
  min-height: min(690px, calc(100svh - 92px));
  display: grid;
  align-items: end;
  padding: 96px 0 70px;
  color: #fff;
}

.demo-hero.restaurant {
  background:
    linear-gradient(90deg, rgba(24, 32, 31, 0.78), rgba(24, 32, 31, 0.18)),
    url("assets/restaurant/restaurant-interior.webp") center / cover;
}

.demo-hero.clinic {
  background:
    linear-gradient(90deg, rgba(10, 62, 64, 0.84), rgba(70, 103, 126, 0.2)),
    linear-gradient(135deg, #6f918c, #e8eee9);
}

.demo-hero.services {
  background:
    linear-gradient(90deg, rgba(19, 39, 41, 0.86), rgba(217, 118, 97, 0.28)),
    linear-gradient(135deg, #143f42, #d97661);
}

.demo-hero h1 {
  max-width: 780px;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
}

.demo-hero p {
  max-width: 620px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
}

.demo-section {
  padding: 82px 0;
}

.demo-section.alt {
  background: #f3efe7;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.demo-card {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.demo-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
}

.demo-card span {
  color: var(--muted);
}

.demo-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 34px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.demo-cta p {
  max-width: 560px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.restaurant-page {
  --restaurant-bg: #100c09;
  --restaurant-panel: #1d1510;
  --restaurant-panel-soft: #261b13;
  --restaurant-cream: #efe3ce;
  --restaurant-muted: #c7b69d;
  --restaurant-gold: #c8964a;
  --restaurant-line: rgba(239, 227, 206, 0.16);
  background: var(--restaurant-bg);
  color: var(--restaurant-cream);
}

.restaurant-header {
  border-bottom-color: rgba(239, 227, 206, 0.14);
  background: rgba(16, 12, 9, 0.86);
}

.restaurant-header .demo-logo,
.restaurant-header .demo-nav,
.restaurant-header .site-nav a {
  color: var(--restaurant-cream);
}

.restaurant-header .language-switcher {
  border-color: rgba(239, 227, 206, 0.22);
  background: rgba(239, 227, 206, 0.08);
}

.restaurant-header .language-switcher button {
  color: var(--restaurant-muted);
}

.restaurant-header .language-switcher button.is-active {
  background: var(--restaurant-cream);
  color: var(--restaurant-bg);
}

.restaurant-hero {
  position: relative;
  min-height: min(760px, calc(100svh - 72px));
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 130px 0 82px;
}

.restaurant-hero__image,
.restaurant-hero__shade {
  position: absolute;
  inset: 0;
}

.restaurant-hero__image {
  background: url("assets/restaurant/restaurant-interior.webp") center / cover;
  transform: scale(1.02);
}

.restaurant-hero__shade {
  background:
    linear-gradient(90deg, rgba(16, 12, 9, 0.92), rgba(16, 12, 9, 0.58) 48%, rgba(16, 12, 9, 0.2)),
    linear-gradient(0deg, var(--restaurant-bg), rgba(16, 12, 9, 0.04) 46%);
}

.restaurant-hero__content {
  position: relative;
  max-width: 760px;
}

.restaurant-page .eyebrow {
  color: var(--restaurant-gold);
}

.restaurant-hero h1 {
  max-width: 760px;
  color: #fff8ec;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.restaurant-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(239, 227, 206, 0.82);
  font-size: clamp(1.04rem, 1.8vw, 1.25rem);
}

.restaurant-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.restaurant-button {
  min-width: 178px;
  background: var(--restaurant-gold);
  color: #120d09;
  box-shadow: 0 18px 36px rgba(200, 150, 74, 0.2);
}

.restaurant-button:hover,
.restaurant-button:focus-visible {
  background: #e0b66e;
  color: #120d09;
}

.restaurant-button.ghost {
  border-color: rgba(239, 227, 206, 0.28);
  background: rgba(239, 227, 206, 0.08);
  color: var(--restaurant-cream);
  box-shadow: none;
}

.restaurant-section {
  padding: 92px 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(200, 150, 74, 0.13), transparent 34%),
    var(--restaurant-bg);
}

.restaurant-menu-section {
  padding-top: 86px;
}

.restaurant-section-heading {
  max-width: 800px;
  margin-bottom: 40px;
}

.restaurant-section-heading h2,
.restaurant-reservation h2,
.restaurant-contact h2,
.restaurant-story h2 {
  color: #fff8ec;
  font-family: Georgia, "Times New Roman", serif;
}

.restaurant-section-heading p {
  text-align: left;
}

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

.restaurant-dish {
  display: grid;
  grid-template-columns: minmax(160px, 0.9fr) 1.1fr;
  gap: 22px;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--restaurant-line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.restaurant-dish img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.restaurant-dish div {
  display: grid;
  align-content: center;
  padding: 24px 24px 24px 0;
}

.restaurant-dish__meta {
  margin: 0 0 10px;
  color: var(--restaurant-gold);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.restaurant-dish h3 {
  color: #fff8ec;
  font-size: 1.28rem;
}

.restaurant-dish p:not(.restaurant-dish__meta) {
  margin: 0;
  color: var(--restaurant-muted);
}

.restaurant-dish strong {
  margin-top: 18px;
  color: #fff8ec;
  font-size: 1.45rem;
}

.restaurant-reservation {
  background:
    linear-gradient(135deg, rgba(38, 27, 19, 0.96), rgba(16, 12, 9, 0.96)),
    var(--restaurant-panel);
}

.restaurant-reservation__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border: 1px solid rgba(200, 150, 74, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.restaurant-reservation p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--restaurant-muted);
}

.call-button {
  white-space: nowrap;
}

.restaurant-contact {
  background: var(--restaurant-panel);
}

.restaurant-contact__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: 38px;
  align-items: stretch;
}

.restaurant-contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.restaurant-contact-list a,
.restaurant-contact-list div {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--restaurant-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.restaurant-contact-list span {
  color: var(--restaurant-gold);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.restaurant-contact-list strong {
  color: #fff8ec;
  overflow-wrap: anywhere;
}

.restaurant-map {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--restaurant-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(239, 227, 206, 0.08), transparent 44%),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(239, 227, 206, 0.05) 35px 36px),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(239, 227, 206, 0.05) 35px 36px),
    #120d09;
}

.map-road {
  position: absolute;
  display: block;
  height: 28px;
  border-radius: 999px;
  background: rgba(239, 227, 206, 0.18);
}

.road-a {
  top: 44%;
  left: -10%;
  width: 120%;
  transform: rotate(-12deg);
}

.road-b {
  top: 18%;
  left: 16%;
  width: 28px;
  height: 90%;
  transform: rotate(24deg);
}

.road-c {
  right: 4%;
  bottom: 20%;
  width: 58%;
  transform: rotate(28deg);
}

.map-pin {
  position: absolute;
  top: 43%;
  left: 52%;
  width: 28px;
  height: 28px;
  border: 6px solid var(--restaurant-gold);
  border-radius: 50% 50% 50% 0;
  background: #100c09;
  transform: rotate(-45deg);
  box-shadow: 0 0 0 12px rgba(200, 150, 74, 0.12);
}

.map-label {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  max-width: 250px;
  padding: 16px;
  border: 1px solid rgba(200, 150, 74, 0.3);
  border-radius: 8px;
  background: rgba(16, 12, 9, 0.84);
  backdrop-filter: blur(12px);
}

.map-label strong {
  color: #fff8ec;
}

.map-label span {
  color: var(--restaurant-muted);
}

.restaurant-story {
  background:
    linear-gradient(180deg, rgba(38, 27, 19, 0.82), rgba(16, 12, 9, 1)),
    var(--restaurant-bg);
}

.restaurant-story__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) 1.18fr;
  gap: 48px;
}

.restaurant-story p:not(.eyebrow) {
  margin-top: 0;
  color: var(--restaurant-muted);
  font-size: 1.05rem;
}

.restaurant-footer {
  padding: 26px 0;
  border-top: 1px solid var(--restaurant-line);
  background: #090604;
  color: var(--restaurant-muted);
}

.restaurant-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.restaurant-footer img {
  width: 120px;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.clinic-page {
  --clinic-bg: #f3fbfb;
  --clinic-ink: #123337;
  --clinic-muted: #5b7376;
  --clinic-teal: #0ea5a4;
  --clinic-teal-dark: #087c83;
  --clinic-mint: #dff8f5;
  --clinic-line: rgba(18, 51, 55, 0.12);
  --clinic-panel: #ffffff;
  background: var(--clinic-bg);
  color: var(--clinic-ink);
}

.clinic-header {
  border-bottom-color: rgba(18, 51, 55, 0.1);
  background: rgba(243, 251, 251, 0.9);
}

.clinic-page .demo-logo,
.clinic-page .demo-nav {
  color: var(--clinic-ink);
}

.clinic-page .language-switcher {
  border-color: rgba(14, 165, 164, 0.24);
  background: rgba(255, 255, 255, 0.74);
}

.clinic-page .language-switcher button.is-active {
  background: var(--clinic-teal);
}

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

.clinic-hero {
  position: relative;
  min-height: min(760px, calc(100svh - 72px));
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 96px 0 78px;
}

.clinic-hero__image,
.clinic-hero__shade {
  position: absolute;
  inset: 0;
}

.clinic-hero__image {
  background: url("assets/clinic/dentist-hero.webp") center right / cover;
  transform: scale(1.02);
}

.clinic-hero__shade {
  background:
    linear-gradient(90deg, rgba(243, 251, 251, 0.98) 0%, rgba(243, 251, 251, 0.92) 36%, rgba(243, 251, 251, 0.5) 64%, rgba(243, 251, 251, 0.06)),
    linear-gradient(0deg, rgba(243, 251, 251, 1), rgba(243, 251, 251, 0) 42%);
}

.clinic-hero__content {
  position: relative;
  max-width: 690px;
}

.clinic-hero h1 {
  max-width: 680px;
  color: var(--clinic-ink);
  font-size: clamp(2.7rem, 6.2vw, 5.8rem);
}

.clinic-hero p:not(.eyebrow) {
  max-width: 600px;
  margin: 22px 0 0;
  color: var(--clinic-muted);
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
}

.clinic-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.clinic-button {
  background: var(--clinic-teal);
  color: #fff;
  box-shadow: 0 18px 34px rgba(14, 165, 164, 0.24);
}

.clinic-button:hover,
.clinic-button:focus-visible {
  background: var(--clinic-teal-dark);
  color: #fff;
}

.clinic-button.ghost {
  border-color: rgba(18, 51, 55, 0.16);
  background: rgba(255, 255, 255, 0.76);
  color: var(--clinic-ink);
  box-shadow: none;
}

.clinic-section {
  padding: 92px 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(14, 165, 164, 0.11), transparent 34%),
    var(--clinic-bg);
}

.clinic-section-heading {
  max-width: 810px;
  margin-bottom: 36px;
}

.clinic-section-heading h2,
.clinic-booking h2,
.clinic-contact h2 {
  color: var(--clinic-ink);
}

.clinic-section-heading p:not(.eyebrow) {
  color: var(--clinic-muted);
}

.clinic-service-grid,
.clinic-tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.clinic-service-card,
.clinic-tips-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--clinic-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 52px rgba(8, 77, 86, 0.08);
}

.clinic-service-card span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 8px;
  background: var(--clinic-mint);
  color: var(--clinic-teal-dark);
  font-weight: 950;
}

.clinic-service-card h3,
.clinic-tips-grid strong {
  color: var(--clinic-ink);
}

.clinic-service-card p,
.clinic-tips-grid p {
  margin: 10px 0 0;
  color: var(--clinic-muted);
}

.clinic-booking {
  background:
    linear-gradient(135deg, rgba(223, 248, 245, 0.72), rgba(255, 255, 255, 0.6)),
    #eef9f8;
}

.clinic-booking__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(330px, 1.18fr);
  gap: 44px;
  align-items: start;
}

.clinic-hours {
  display: grid;
  gap: 5px;
  max-width: 420px;
  margin-top: 28px;
  padding: 17px;
  border: 1px solid rgba(14, 165, 164, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.clinic-hours span {
  color: var(--clinic-teal-dark);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.clinic-calendar {
  padding: 22px;
  border: 1px solid rgba(14, 165, 164, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(8, 77, 86, 0.12);
}

.calendar-toolbar {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.calendar-toolbar strong {
  text-align: center;
  font-size: 1.12rem;
}

.calendar-nav-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--clinic-line);
  border-radius: 8px;
  background: #fff;
  color: var(--clinic-ink);
  cursor: pointer;
  font-size: 1.65rem;
  font-weight: 850;
}

.calendar-nav-button:hover,
.calendar-nav-button:focus-visible {
  border-color: rgba(14, 165, 164, 0.5);
  outline: none;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
}

.calendar-weekdays {
  margin-bottom: 8px;
  color: var(--clinic-muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  position: relative;
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid var(--clinic-line);
  border-radius: 8px;
  background: #fff;
  color: var(--clinic-ink);
  cursor: pointer;
  font-weight: 850;
}

.calendar-day:hover,
.calendar-day:focus-visible {
  border-color: rgba(14, 165, 164, 0.62);
  outline: none;
}

.calendar-day.is-muted,
.calendar-day.is-disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.calendar-day.is-weekend {
  background: #eef4f4;
}

.calendar-day.is-selected {
  border-color: var(--clinic-teal);
  background: var(--clinic-teal);
  color: #fff;
}

.calendar-day.is-booked::after,
.calendar-day.has-booking::after {
  content: "";
  position: absolute;
  right: 7px;
  bottom: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clinic-teal);
}

.calendar-day.is-selected::after {
  background: #fff;
}

.slot-panel {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--clinic-line);
}

.slot-panel__title {
  margin: 0 0 12px;
  color: var(--clinic-muted);
  font-weight: 850;
}

.slot-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.slot-button {
  min-height: 42px;
  border: 1px solid rgba(14, 165, 164, 0.22);
  border-radius: 8px;
  background: var(--clinic-mint);
  color: var(--clinic-ink);
  cursor: pointer;
  font-weight: 900;
}

.slot-button:hover,
.slot-button:focus-visible {
  border-color: var(--clinic-teal);
  outline: none;
}

.slot-button.is-booked,
.slot-button:disabled {
  cursor: not-allowed;
  background: #edf3f3;
  color: rgba(18, 51, 55, 0.42);
}

.slot-button.is-selected {
  border-color: var(--clinic-teal);
  background: var(--clinic-teal);
  color: #fff;
}

.appointment-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(14, 165, 164, 0.2);
  border-radius: 8px;
  background: rgba(243, 251, 251, 0.88);
}

.appointment-form[hidden] {
  display: none;
}

.appointment-form__title {
  margin: 0;
  color: var(--clinic-ink);
  font-weight: 900;
}

.appointment-form label {
  display: grid;
  gap: 7px;
  color: var(--clinic-muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.appointment-form input {
  width: 100%;
  border: 1px solid rgba(18, 51, 55, 0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--clinic-ink);
  outline: none;
  padding: 12px 13px;
}

.appointment-form input:focus {
  border-color: var(--clinic-teal);
  box-shadow: 0 0 0 3px rgba(14, 165, 164, 0.14);
}

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

.booking-message {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--clinic-teal-dark);
  font-weight: 850;
}

.clinic-contact {
  background: #fff;
}

.clinic-contact__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: 38px;
  align-items: stretch;
}

.clinic-contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.clinic-contact-list a,
.clinic-contact-list div {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--clinic-line);
  border-radius: 8px;
  background: var(--clinic-bg);
}

.clinic-contact-list span {
  color: var(--clinic-teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.clinic-contact-list strong {
  color: var(--clinic-ink);
  overflow-wrap: anywhere;
}

.clinic-map {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--clinic-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(14, 165, 164, 0.12), transparent 44%),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(18, 51, 55, 0.045) 35px 36px),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(18, 51, 55, 0.045) 35px 36px),
    #eef9f8;
}

.clinic-road {
  position: absolute;
  display: block;
  height: 26px;
  border-radius: 999px;
  background: rgba(18, 51, 55, 0.1);
}

.road-one {
  top: 48%;
  left: -10%;
  width: 118%;
  transform: rotate(-10deg);
}

.road-two {
  top: 12%;
  left: 20%;
  width: 26px;
  height: 92%;
  transform: rotate(22deg);
}

.road-three {
  right: 2%;
  bottom: 20%;
  width: 58%;
  transform: rotate(28deg);
}

.clinic-map-pin {
  position: absolute;
  top: 44%;
  left: 51%;
  width: 28px;
  height: 28px;
  border: 6px solid var(--clinic-teal);
  border-radius: 50% 50% 50% 0;
  background: #fff;
  transform: rotate(-45deg);
  box-shadow: 0 0 0 12px rgba(14, 165, 164, 0.14);
}

.clinic-map-label {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  max-width: 260px;
  padding: 16px;
  border: 1px solid rgba(14, 165, 164, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 42px rgba(8, 77, 86, 0.1);
}

.clinic-map-label strong {
  color: var(--clinic-ink);
}

.clinic-map-label span {
  color: var(--clinic-muted);
}

.clinic-tips {
  background:
    linear-gradient(180deg, rgba(223, 248, 245, 0.48), rgba(243, 251, 251, 1)),
    var(--clinic-bg);
}

.clinic-tips-grid {
  grid-template-columns: repeat(4, 1fr);
}

.clinic-tips-grid article {
  min-height: 210px;
}

.clinic-footer {
  padding: 26px 0;
  border-top: 1px solid var(--clinic-line);
  background: #102f33;
  color: rgba(255, 255, 255, 0.72);
}

.clinic-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.clinic-footer img {
  width: 120px;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.developer-page {
  --developer-bg: #f4ecdf;
  --developer-panel: #fbf7ef;
  --developer-ink: #151311;
  --developer-muted: #746959;
  --developer-gold: #a7875d;
  --developer-line: rgba(21, 19, 17, 0.14);
  background: var(--developer-bg);
  color: var(--developer-ink);
}

.developer-header {
  border-bottom-color: rgba(21, 19, 17, 0.12);
  background: rgba(244, 236, 223, 0.88);
}

.developer-header .demo-logo,
.developer-header .demo-nav {
  color: var(--developer-ink);
}

.developer-header .language-switcher {
  border-color: rgba(21, 19, 17, 0.18);
  background: rgba(251, 247, 239, 0.72);
}

.developer-header .language-switcher button.is-active {
  background: var(--developer-ink);
}

.developer-page .eyebrow {
  color: var(--developer-gold);
}

.developer-hero {
  position: relative;
  min-height: min(780px, calc(100svh - 72px));
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 130px 0 86px;
}

.developer-hero__image,
.developer-hero__shade {
  position: absolute;
  inset: 0;
}

.developer-hero__image {
  background: url("assets/developer/estate-hero.webp") center / cover;
  transform: scale(1.02);
}

.developer-hero__shade {
  background:
    linear-gradient(90deg, rgba(244, 236, 223, 0.98), rgba(244, 236, 223, 0.8) 42%, rgba(244, 236, 223, 0.1)),
    linear-gradient(0deg, var(--developer-bg), rgba(244, 236, 223, 0) 46%);
}

.developer-hero__content {
  position: relative;
  max-width: 760px;
}

.developer-hero h1 {
  max-width: 760px;
  color: var(--developer-ink);
  font-size: clamp(2.8rem, 6.2vw, 5.9rem);
}

.developer-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--developer-muted);
  font-size: clamp(1.04rem, 1.8vw, 1.24rem);
}

.developer-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.developer-button {
  background: var(--developer-ink);
  color: #fff;
  box-shadow: 0 18px 34px rgba(21, 19, 17, 0.2);
}

.developer-button:hover,
.developer-button:focus-visible {
  background: #2c2823;
  color: #fff;
}

.developer-button.ghost {
  border-color: rgba(21, 19, 17, 0.18);
  background: rgba(251, 247, 239, 0.78);
  color: var(--developer-ink);
  box-shadow: none;
}

.developer-section {
  padding: 92px 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(167, 135, 93, 0.14), transparent 35%),
    var(--developer-bg);
}

.developer-section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.developer-section-heading h2,
.developer-story h2,
.developer-contact h2 {
  color: var(--developer-ink);
}

.developer-section-heading p:not(.eyebrow),
.developer-story p,
.developer-contact p {
  color: var(--developer-muted);
}

.developer-story__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) 1.18fr;
  gap: 54px;
  align-items: start;
}

.developer-story__grid p {
  margin-top: 0;
  font-size: 1.05rem;
}

.developer-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.developer-highlights article {
  min-height: 135px;
  padding: 24px;
  border: 1px solid var(--developer-line);
  border-radius: 8px;
  background: rgba(251, 247, 239, 0.78);
}

.developer-highlights strong {
  display: block;
  margin-bottom: 12px;
  color: var(--developer-ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.developer-highlights span {
  color: var(--developer-muted);
  font-weight: 850;
}

.developer-apartments,
.developer-status {
  background: var(--developer-panel);
}

.apartment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.apartment-card {
  overflow: hidden;
  border: 1px solid var(--developer-line);
  border-radius: 8px;
  background: var(--developer-bg);
  box-shadow: 0 24px 60px rgba(21, 19, 17, 0.08);
}

.floorplan {
  position: relative;
  height: 310px;
  margin: 18px;
  border: 3px solid var(--developer-ink);
  background:
    linear-gradient(90deg, rgba(21, 19, 17, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(21, 19, 17, 0.08) 1px, transparent 1px),
    #fdfbf6;
  background-size: 22px 22px;
}

.room {
  position: absolute;
  display: grid;
  place-items: center;
  border: 2px solid var(--developer-ink);
  color: var(--developer-ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.room-balcony,
.room-garden {
  border-style: dashed;
  background: rgba(167, 135, 93, 0.12);
}

.studio-plan .room-living {
  inset: 12px 12px 88px 82px;
}

.studio-plan .room-bath {
  left: 12px;
  top: 12px;
  width: 70px;
  height: 92px;
}

.studio-plan .room-hall {
  left: 12px;
  top: 104px;
  width: 70px;
  bottom: 88px;
}

.studio-plan .room-balcony {
  left: 84px;
  right: 12px;
  bottom: 12px;
  height: 62px;
}

.couple-plan .room-living {
  left: 12px;
  right: 12px;
  bottom: 82px;
  height: 112px;
}

.couple-plan .room-kitchen {
  left: 12px;
  top: 12px;
  width: 42%;
  height: 88px;
}

.couple-plan .room-bedroom {
  right: 12px;
  top: 12px;
  width: 48%;
  height: 118px;
}

.couple-plan .room-bath {
  left: 12px;
  top: 100px;
  width: 42%;
  height: 76px;
}

.couple-plan .room-balcony {
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 54px;
}

.family-plan .room-living {
  left: 12px;
  right: 12px;
  bottom: 74px;
  height: 94px;
}

.family-plan .room-kitchen {
  left: 12px;
  top: 12px;
  width: 34%;
  height: 82px;
}

.family-plan .room-bedroom {
  left: 39%;
  top: 12px;
  width: 28%;
  height: 82px;
}

.family-plan .room-child {
  right: 12px;
  top: 12px;
  width: 27%;
  height: 82px;
}

.family-plan .room-work {
  left: 12px;
  right: 12px;
  top: 102px;
  height: 58px;
}

.family-plan .room-garden {
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 48px;
}

.apartment-card__body {
  padding: 0 22px 24px;
}

.apartment-card__body h3 {
  color: var(--developer-ink);
}

.apartment-card__body p:not(.eyebrow) {
  color: var(--developer-muted);
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.visual-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}

.visual-card--wide {
  grid-column: span 3;
  min-height: 420px;
}

.visual-card img,
.status-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.developer-page .visual-card img,
.developer-page .status-grid img {
  cursor: zoom-in;
}

.developer-page .visual-card img:focus-visible,
.developer-page .status-grid img:focus-visible {
  outline: 3px solid var(--developer-gold);
  outline-offset: -5px;
}

.visual-card > div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid rgba(246, 239, 226, 0.18);
  border-radius: 8px;
  background: rgba(21, 19, 17, 0.78);
  color: #fff;
  backdrop-filter: blur(12px);
}

.visual-card span {
  color: rgba(255, 255, 255, 0.76);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.status-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--developer-line);
  border-radius: 8px;
  background: var(--developer-bg);
}

.status-grid img {
  display: block;
  height: 260px;
}

.status-grid figcaption {
  padding: 16px;
  color: var(--developer-ink);
  font-weight: 900;
}

.developer-contact {
  background: #151311;
  color: #fff;
}

.developer-contact .eyebrow {
  color: #d1b58d;
}

.developer-contact h2 {
  color: #fff;
}

.developer-contact p {
  color: rgba(255, 255, 255, 0.72);
}

.developer-contact__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 520px);
  gap: 56px;
  align-items: start;
}

.developer-contact-list {
  display: grid;
  gap: 12px;
}

.developer-contact-list a,
.developer-contact-list div {
  display: grid;
  gap: 3px;
  padding: 16px;
  border: 1px solid rgba(246, 239, 226, 0.18);
  border-radius: 8px;
  background: rgba(246, 239, 226, 0.08);
}

.developer-contact-list span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.developer-contact-list strong {
  color: #fff;
  overflow-wrap: anywhere;
}

.developer-footer {
  padding: 26px 0;
  border-top: 1px solid rgba(246, 239, 226, 0.14);
  background: #0f0e0d;
  color: rgba(255, 255, 255, 0.72);
}

.developer-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.developer-footer img {
  width: 120px;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 34px;
  background: rgba(8, 7, 6, 0.88);
  backdrop-filter: blur(14px);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox figure {
  display: grid;
  gap: 12px;
  width: min(1120px, 100%);
  max-height: 92svh;
  margin: 0;
}

.image-lightbox img {
  width: 100%;
  max-height: calc(92svh - 52px);
  object-fit: contain;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.image-lightbox figcaption {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
  text-align: center;
}

.image-lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.image-lightbox__close:hover,
.image-lightbox__close:focus-visible {
  border-color: rgba(255, 255, 255, 0.62);
  outline: none;
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
  }

  .header-actions {
    gap: 10px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .hero {
    min-height: min(680px, calc(100svh - 86px));
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(247, 248, 245, 1), rgba(247, 248, 245, 0.88)),
      linear-gradient(0deg, rgba(247, 248, 245, 0.98), rgba(247, 248, 245, 0.28));
  }

  .proof-grid,
  .service-grid,
  .template-grid,
  .split-heading,
  .offer-intro,
  .offer-details,
  .offer-bonus,
  .why-layout,
  .why-benefits,
  .offer-scope,
  .process-layout,
  .contact-layout,
  .demo-grid,
  .restaurant-menu-grid,
  .restaurant-reservation__inner,
  .restaurant-contact__grid,
  .restaurant-story__grid,
  .clinic-service-grid,
  .clinic-booking__layout,
  .clinic-contact__grid,
  .clinic-tips-grid,
  .developer-story__grid,
  .developer-highlights,
  .apartment-grid,
  .visual-grid,
  .status-grid,
  .developer-contact__grid {
    grid-template-columns: 1fr;
  }

  .offer-intro__copy {
    padding: 0 0 0 22px;
  }

  .offer-details {
    gap: 30px;
    margin-top: 52px;
  }

  .offer-details > h3 {
    max-width: 520px;
  }

  .offer-bonus {
    gap: 22px;
  }

  .why-benefits ul {
    grid-template-columns: 1fr;
  }

  .section-band,
  .demo-section,
  .restaurant-section,
  .clinic-section,
  .developer-section {
    padding: 72px 0;
  }

  .clinic-hero {
    min-height: min(700px, calc(100svh - 72px));
    align-items: end;
    padding: 110px 0 64px;
  }

  .clinic-hero__image {
    background-position: 68% center;
  }

  .clinic-hero__shade {
    background:
      linear-gradient(90deg, rgba(243, 251, 251, 0.98), rgba(243, 251, 251, 0.92)),
      linear-gradient(0deg, rgba(243, 251, 251, 1), rgba(243, 251, 251, 0.34));
  }

  .developer-hero {
    min-height: min(720px, calc(100svh - 72px));
    padding: 112px 0 64px;
  }

  .developer-hero__image {
    background-position: 66% center;
  }

  .developer-hero__shade {
    background:
      linear-gradient(90deg, rgba(244, 236, 223, 0.98), rgba(244, 236, 223, 0.88)),
      linear-gradient(0deg, rgba(244, 236, 223, 1), rgba(244, 236, 223, 0.2));
  }

  .visual-card--wide {
    grid-column: auto;
    min-height: 330px;
  }

  .floorplan {
    height: 280px;
  }

  .restaurant-dish {
    display: block;
  }

  .restaurant-dish div {
    position: relative;
    z-index: 1;
    padding: 22px;
    background: rgba(16, 12, 9, 0.96);
  }

  .restaurant-dish img {
    display: block;
    height: auto;
    min-height: 230px;
    aspect-ratio: 16 / 10;
  }

  .restaurant-reservation__inner {
    padding: 26px;
  }

  .demo-nav {
    display: none;
  }

  .demo-header {
    gap: 16px;
  }
}

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

  .hero {
    padding: 70px 0 58px;
  }

  .hero-content {
    padding: 24px 20px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .templates-cta {
    display: grid;
    gap: 18px;
  }

  .cookie-notice {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .cookie-notice__actions,
  .cookie-notice .button {
    width: 100%;
  }

  .site-header,
  .demo-header {
    padding-inline: 14px;
  }

  .brand-logo {
    width: 118px;
  }

  .intro-mark {
    width: min(38vw, 190px);
  }

  .intro-word-mask {
    width: min(50vw, 250px);
    margin-left: -10px;
  }

  .language-switcher button {
    min-width: 36px;
  }

  .service-card,
  .template-body,
  .process-list li,
  .contact-form,
  .demo-card,
  .demo-cta,
  .restaurant-reservation__inner {
    padding: 20px;
  }

  .offer-intro {
    gap: 26px;
  }

  .offer-intro__copy {
    padding-left: 16px;
  }

  .offer-list {
    grid-template-columns: 1fr;
  }

  .offer-list article,
  .offer-list article:nth-child(even) {
    min-height: 0;
    padding: 24px 0;
    border-left: 0;
  }

  .offer-list article:last-child {
    grid-column: auto;
  }

  .offer-bonus {
    padding: 24px 20px;
  }

  .why-benefits {
    gap: 22px;
    margin-top: 42px;
  }

  .restaurant-hero {
    min-height: min(680px, calc(100svh - 72px));
    padding: 96px 0 64px;
  }

  .restaurant-hero__actions,
  .restaurant-button,
  .clinic-hero__actions,
  .clinic-button,
  .developer-hero__actions,
  .developer-button {
    width: 100%;
  }

  .restaurant-map {
    min-height: 310px;
  }

  .clinic-calendar {
    padding: 16px;
  }

  .calendar-grid,
  .calendar-weekdays {
    gap: 5px;
  }

  .calendar-day {
    min-height: 42px;
    font-size: 0.9rem;
  }

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

  .clinic-map {
    min-height: 310px;
  }

  .image-lightbox {
    padding: 16px;
  }

  .image-lightbox figure {
    max-height: 88svh;
  }

  .image-lightbox img {
    max-height: calc(88svh - 52px);
  }

  .proof-grid strong {
    font-size: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-intro {
    animation-duration: 0.25s;
    animation-delay: 0.45s;
  }

  .brand-intro::before,
  .brand-intro::after,
  .intro-logo-lockup,
  .intro-word,
  .intro-line::before {
    animation-duration: 0.01ms;
    animation-delay: 0s;
  }

  [data-reveal],
  [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
}
