:root {
  --ink: #29251f;
  --muted: #70695d;
  --paper: #fffaf0;
  --surface: #ffffff;
  --sage: #536b58;
  --sage-dark: #304235;
  --clay: #c96d4e;
  --sun: #f3bd60;
  --line: rgba(41, 37, 31, 0.14);
  --shadow: 0 24px 70px rgba(41, 37, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100vw;
  max-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 3vw, 54px);
  background: rgba(255, 250, 240, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: transform 220ms ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--sage);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 250, 240, 0.18);
}

.brand-mark svg {
  display: block;
  width: 32px;
  height: 32px;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.brand > img {
  display: block;
  width: 42px;
  height: 42px;
  padding: 7px;
  border-radius: 8px;
  background: var(--sage);
}

.logo-roof,
.logo-house {
  fill: none;
  stroke: #fffaf0;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-pad,
.logo-toe {
  fill: #fffaf0;
}

.logo-heart {
  fill: var(--clay);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.45vw, 24px);
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

html[lang="ka"] .nav,
html[lang="ru"] .nav {
  gap: clamp(10px, 1.15vw, 18px);
  font-size: 13px;
}

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

.language-button {
  display: inline-flex;
  min-width: 42px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
}

.language-button:hover,
.language-button.is-active {
  color: #fff;
  background: var(--sage);
}

.nav a,
.header-action,
.button,
.site-footer a,
.contact-line a {
  text-decoration: none;
}

.nav a:hover,
.site-footer a:hover,
.contact-line a:hover {
  color: var(--sage-dark);
}

.header-action,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 750;
  white-space: nowrap;
}

.header-action {
  color: var(--sage-dark);
  border-color: var(--line);
  background: #fff;
}

.phone-action {
  width: 46px;
  min-width: 46px;
  padding: 0;
}

.phone-action svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.phone-action:hover {
  color: #fff;
  background: var(--sage);
  border-color: var(--sage);
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

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

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(31, 31, 23, 0.82), rgba(31, 31, 23, 0.24)),
    linear-gradient(0deg, rgba(31, 31, 23, 0.55), transparent 45%);
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-content {
  position: relative;
  width: min(880px, calc(100% - 36px));
  margin: 0 0 clamp(42px, 8vw, 90px) clamp(18px, 7vw, 92px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(42px, 5.5vw, 82px);
  line-height: 1.04;
  letter-spacing: 0;
}

html[lang="ka"] h1 {
  max-width: 760px;
  font-size: clamp(34px, 4.25vw, 62px);
  line-height: 1.12;
}

html[lang="ru"] h1 {
  max-width: 820px;
  font-size: clamp(38px, 4.65vw, 72px);
  line-height: 1.08;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 22px);
}

html[lang="ka"] .hero-copy,
html[lang="ru"] .hero-copy {
  max-width: 680px;
  font-size: clamp(17px, 1.45vw, 21px);
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.hero-trust span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(136, 180, 140, 0.74);
  border-radius: 999px;
  padding: 0 11px 0 9px;
  color: rgba(244, 250, 244, 0.95);
  background: rgba(45, 78, 57, 0.28);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  backdrop-filter: blur(7px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.hero-trust span::before {
  content: "✓";
  display: grid;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  place-items: center;
  border-radius: 50%;
  color: #f7fff4;
  background: #4f714f;
  font-size: 11px;
  font-weight: 900;
}

.slider-dots {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(24px, 5vw, 52px);
  z-index: 2;
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition:
    background 200ms ease,
    width 200ms ease;
}

.slider-dot.is-active {
  width: 48px;
  background: var(--sun);
}

.button.primary {
  color: #fff;
  background: var(--clay);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-band div {
  min-height: 126px;
  padding: 26px clamp(16px, 3vw, 36px);
  background: #fff;
}

.intro-band strong {
  display: block;
  margin-bottom: 5px;
  color: var(--sage-dark);
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.12;
}

html[lang="ka"] .intro-band strong,
html[lang="ru"] .intro-band strong {
  font-size: clamp(23px, 2.7vw, 34px);
}

.intro-band span {
  color: var(--muted);
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.about-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.98), rgba(255, 255, 255, 0.72)),
    #fff;
}

.about-background-word {
  position: absolute;
  right: clamp(18px, 6vw, 96px);
  bottom: -54px;
  color: rgba(83, 107, 88, 0.07);
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 900;
  line-height: 0.8;
  pointer-events: none;
}

.about-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.about-copy h2 {
  margin-bottom: 26px;
}

.about-text {
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-size: 17px;
}

.about-text p {
  margin: 0;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-badges span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(83, 107, 88, 0.2);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
}

.about-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: 0.9fr 1fr;
  gap: 14px;
  min-height: clamp(560px, 55vw, 760px);
}

.about-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 62px rgba(41, 37, 31, 0.13);
}

.about-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(41, 37, 31, 0.16), transparent 45%);
  pointer-events: none;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-large {
  grid-row: 1;
}

.about-photo-small {
  align-self: end;
  height: 82%;
  transform: translateY(34px);
}

.about-photo-wide {
  grid-column: 1;
  grid-row: 2;
  height: 88%;
}

.about-photo-tall {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  height: 82%;
  transform: translateY(54px);
}

.two-column,
.care-section,
.gallery-preview {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(420px, 1.38fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  background: #fffaf0;
}

.section.gallery-preview {
  padding-top: clamp(42px, 5vw, 68px);
  padding-bottom: clamp(42px, 5vw, 68px);
  background: #fff;
}

.gallery-preview-copy {
  max-width: 480px;
}

.gallery-preview-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.02;
}

.gallery-preview-copy p:not(.eyebrow) {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--clay);
  font-weight: 850;
  text-decoration: none;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.gallery-mosaic img,
.gallery-full-grid img,
.gallery-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-mosaic img {
  aspect-ratio: 1 / 1;
  min-height: 0;
  max-height: 180px;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(32, 27, 20, 0.1);
}

.gallery-preview .gallery-mosaic img:nth-child(n + 6) {
  display: none;
}

.gallery-preview .gallery-mosaic .is-tall,
.gallery-preview .gallery-mosaic .is-wide {
  grid-column: auto;
  grid-row: auto;
}

.gallery-hero {
  background: #fffaf0;
}

.gallery-hero img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-chapter {
  padding: clamp(34px, 5vw, 68px) clamp(20px, 5vw, 72px);
  background: var(--paper);
}

.gallery-chapter:nth-of-type(even) {
  background: #fffaf0;
}

.gallery-full-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-full-grid img {
  min-height: 230px;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(39, 34, 27, 0.08);
}

.gallery-full-grid .is-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-cta {
  border-top: 1px solid var(--line);
  background: #fff;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 96px;
}

.section-copy p:not(.eyebrow),
.booking-copy p:not(.eyebrow) {
  max-width: 540px;
  color: var(--muted);
}

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

.service-card,
.review-grid article,
.booking-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 34px rgba(41, 37, 31, 0.06);
}

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

.service-card span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  place-items: center;
  color: #fff;
  background: var(--sage);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
}

.service-card p,
.review-grid p {
  color: var(--muted);
}

.prices-section {
  background:
    linear-gradient(180deg, #fff, #fffaf0);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.prices-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.prices-heading p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.prices-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: stretch;
}

.price-table-card,
.condition-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(41, 37, 31, 0.08);
}

.price-table-card {
  overflow: hidden;
}

.price-table-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 26px;
  color: #fff;
  background: var(--sage-dark);
}

.price-table-title span {
  font-size: 22px;
  font-weight: 850;
}

.price-table-title strong {
  color: var(--sun);
  font-size: 14px;
  text-transform: uppercase;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 18px 26px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.price-table th {
  color: var(--muted);
  background: #fffaf6;
  font-size: 13px;
  text-transform: uppercase;
}

.price-table td {
  color: var(--sage-dark);
  font-size: 22px;
  font-weight: 850;
}

.holiday-note {
  margin: 0;
  padding: 22px 26px 26px;
  color: var(--muted);
  background: #fff;
}

.conditions-grid {
  display: grid;
  gap: 18px;
}

.condition-card {
  padding: clamp(24px, 3vw, 34px);
}

.condition-card span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: var(--clay);
  font-size: 13px;
  font-weight: 850;
}

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

.seo-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(83, 107, 88, 0.12), rgba(214, 111, 77, 0.08)),
    #fff;
}

.seo-section::before {
  position: absolute;
  top: -42px;
  right: clamp(18px, 7vw, 110px);
  color: rgba(83, 107, 88, 0.08);
  content: "Piko Care";
  font-size: clamp(70px, 12vw, 180px);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.seo-kicker {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.seo-kicker span {
  border: 1px solid rgba(83, 107, 88, 0.18);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.seo-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.seo-lead h2 {
  max-width: 760px;
}

.seo-text {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.75;
}

.seo-text p {
  margin: 0;
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.faq-item {
  min-height: 240px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #fffaf6;
}

.faq-item h3 {
  color: var(--sage-dark);
  font-size: 20px;
}

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

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

.care-image {
  min-height: 650px;
}

.care-image img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: center 48%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.care-panel {
  align-self: center;
}

.care-panel .eyebrow {
  color: var(--sun);
}

.steps {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding-left: 22px;
  border-left: 3px solid var(--sun);
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  color: rgba(255, 255, 255, 0.72);
}

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

.gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 16px;
}

.gallery img {
  width: 100%;
  height: clamp(260px, 36vw, 520px);
  object-fit: cover;
  border-radius: 8px;
}

.gallery img:nth-child(2) {
  margin-top: 54px;
}

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

.guest-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(32, 45, 39, 0.08);
}

.guest-card img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.guest-card-copy {
  padding: 22px;
}

.guest-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.35rem;
}

.guest-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.guest-story-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--clay);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

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

.reviews {
  background: #f4eadb;
}

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

.review-grid article {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  gap: 22px;
  padding: 28px;
}

.review-grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-author img {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(41, 37, 31, 0.14);
  object-fit: cover;
}

.review-author strong {
  display: block;
  color: var(--sage-dark);
  font-size: 18px;
}

.review-author span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
}

.booking-section {
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 72px);
  background: #fff;
}

.contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-line a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--sage-dark);
  font-weight: 750;
}

.contact-note {
  margin: 10px 0 0;
  color: rgba(104, 96, 84, 0.82);
  font-size: 13px;
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  background: var(--sage);
  text-decoration: none;
}

.social-links a:hover {
  background: var(--sage-dark);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffaf6;
  font: inherit;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: var(--sage);
  outline: 3px solid rgba(83, 107, 88, 0.16);
}

.booking-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--sage-dark);
  font-weight: 750;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.site-footer span:first-child {
  color: #fff;
  font-weight: 850;
}

#top-ge-counter-container {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.mobile-action-bar {
  display: none;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(74px, 10vw, 130px) clamp(20px, 5vw, 92px);
  background: #fffaf0;
  border-bottom: 1px solid var(--line);
}

.subpage-hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--sage-dark);
  font-size: clamp(46px, 7vw, 90px);
  line-height: 0.98;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.6;
}

.subpage-hero img {
  width: 100%;
  height: clamp(320px, 44vw, 560px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(41, 37, 31, 0.18);
}

.price-page-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: stretch;
}

.price-page-table {
  align-self: start;
}

.price-info-grid {
  display: grid;
  gap: 18px;
}

.price-cta {
  padding: clamp(50px, 8vw, 90px) clamp(20px, 5vw, 92px);
  color: #fff;
  background: var(--sage-dark);
}

.price-cta h2 {
  margin: 0 0 14px;
  max-width: 780px;
  color: #fff;
}

.price-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.story-page {
  background: #fffaf0;
}

.story-page .site-header {
  position: sticky;
}

.story-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(64px, 8vw, 116px) clamp(18px, 5vw, 72px);
}

.story-hero h1 {
  color: var(--ink);
}

.story-hero p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.6;
}

.story-hero > img {
  width: 100%;
  height: clamp(360px, 42vw, 610px);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(41, 37, 31, 0.18);
  object-fit: cover;
}

.story-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--sage);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.story-back::before {
  content: "←";
  margin-right: 8px;
}

.story-back-bottom {
  margin-top: 24px;
  margin-bottom: 0;
}

.button.ghost.dark {
  color: var(--ink);
  border-color: rgba(32, 45, 39, 0.32);
}

.story-content {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 5vw, 72px);
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-copy {
  position: sticky;
  top: 96px;
  align-self: start;
}

.story-copy p:not(.eyebrow),
.story-copy blockquote {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.story-copy blockquote {
  margin: 30px 0 0;
  padding: 24px;
  border-left: 4px solid var(--clay);
  border-radius: 8px;
  background: #fffaf0;
}

.story-copy blockquote p {
  margin-bottom: 14px;
}

.story-copy cite {
  color: var(--sage-dark);
  font-style: normal;
  font-weight: 850;
}

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

.story-gallery img {
  width: 100%;
  height: clamp(220px, 24vw, 360px);
  border-radius: 8px;
  object-fit: cover;
}

.story-video-section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
  background: #f4eadb;
}

.story-video {
  overflow: hidden;
  max-width: 1040px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(41, 37, 31, 0.16);
  aspect-ratio: 16 / 9;
  background: #000;
}

.story-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.story-cta {
  padding: clamp(64px, 8vw, 108px) clamp(18px, 5vw, 72px);
  background: #fff;
}

.story-cta h2,
.story-cta p {
  max-width: 760px;
}

.story-cta p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.contact-page-note {
  grid-column: 1 / -1;
  margin-top: 0;
}

.contact-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 34px);
  background: #fff;
  box-shadow: 0 18px 52px rgba(41, 37, 31, 0.08);
}

.contact-card span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: var(--clay);
  font-size: 13px;
  font-weight: 850;
}

.contact-card h2 {
  margin: 8px 0 4px;
  font-size: clamp(24px, 3vw, 36px);
}

.contact-card a {
  color: var(--sage-dark);
  font-weight: 850;
}

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

@media (max-width: 920px) {
  .site-header {
    align-items: center;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .intro-band,
  .about-section,
  .prices-layout,
  .seo-content,
  .subpage-hero,
  .price-page-section,
  .contact-page-section,
  .story-hero,
  .story-content,
  .service-grid,
  .faq-grid,
  .review-grid,
  .two-column,
  .care-section,
  .gallery-preview,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

  .story-copy {
    position: static;
  }

  .about-gallery {
    min-height: auto;
  }

  .about-photo-small,
  .about-photo-tall {
    transform: none;
  }

  .about-photo,
  .about-photo-small,
  .about-photo-wide,
  .about-photo-tall {
    height: 320px;
  }

  .care-image,
  .care-image img {
    min-height: 420px;
  }

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

  .gallery img,
  .gallery img:nth-child(2) {
    height: 320px;
    margin-top: 0;
  }

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

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

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

  .gallery-preview .gallery-mosaic img:nth-child(n + 7) {
    display: none;
  }

  .gallery-preview-copy {
    max-width: 620px;
  }

  .gallery-full-grid img {
    min-height: 190px;
  }

  .story-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .site-header {
    position: sticky;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding-right: 180px;
    padding-left: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong,
  .brand small {
    max-width: 116px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small {
    display: block;
    font-size: 11px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand > img {
    width: 38px;
    height: 38px;
    padding: 6px;
  }

  .header-controls {
    position: absolute;
    top: 16px;
    right: auto;
    left: calc(100vw - 168px);
    margin-left: 0;
    gap: 6px;
  }

  .language-button {
    min-width: 29px;
    min-height: 34px;
    padding-right: 6px;
    padding-left: 6px;
    font-size: 12px;
  }

  .phone-action {
    display: inline-flex;
    width: 36px;
    min-width: 36px;
    min-height: 36px;
  }

  .phone-action svg {
    width: 16px;
    height: 16px;
  }

  .hero {
    min-height: 680px;
  }

  h1,
  html[lang="ka"] h1,
  html[lang="ru"] h1 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.08;
  }

  .hero-content {
    width: calc(100% - 44px);
    margin-bottom: 64px;
    margin-right: 16px;
    margin-left: 16px;
  }

  html[lang="ka"] h1 {
    font-size: clamp(27px, 7.4vw, 32px);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  h1,
  .hero-copy {
    max-width: 100%;
  }

  .hero-copy,
  html[lang="ka"] .hero-copy,
  html[lang="ru"] .hero-copy {
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 18px;
    max-width: 280px;
  }

  .hero-trust span {
    min-width: 0;
    min-height: 32px;
    padding: 7px 9px;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 48px;
  }

  .hero-actions a[href*="wa.me"] {
    display: none;
  }

  .slider-dots {
    right: 16px;
    bottom: 20px;
  }

  .slider-dot {
    width: 24px;
  }

  .slider-dot.is-active {
    width: 36px;
  }

  .button {
    width: 100%;
  }

  .intro-band {
    grid-template-columns: 1fr 1fr;
  }

  .guest-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-preview {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .gallery-preview-copy h2 {
    font-size: clamp(28px, 8.4vw, 36px);
    line-height: 1.08;
  }

  .gallery-preview-copy p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.65;
  }

  .gallery-mosaic,
  .gallery-full-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .gallery-preview .gallery-mosaic img:nth-child(n + 5) {
    display: none;
  }

  .gallery-mosaic img {
    min-height: 118px;
  }

  .gallery-mosaic .is-tall {
    grid-row: span 1;
  }

  .gallery-mosaic .is-wide,
  .gallery-full-grid .is-large {
    grid-column: span 2;
  }

  .gallery-full-grid .is-large {
    grid-row: span 1;
  }

  .gallery-full-grid img {
    min-height: 150px;
  }

  .gallery-chapter {
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .guest-card img {
    height: 280px;
  }

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

  .about-photo,
  .about-photo-large,
  .about-photo-small,
  .about-photo-wide,
  .about-photo-tall {
    grid-column: auto;
    grid-row: auto;
    height: 260px;
  }

  .intro-band div {
    min-height: 112px;
    padding: 20px 16px;
  }

  .service-card {
    min-height: auto;
  }

  .mobile-action-bar {
    position: fixed;
    right: 8px;
    bottom: 0;
    left: 8px;
    width: auto;
    max-width: calc(100vw - 16px);
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 250, 240, 0.96);
    box-shadow: 0 -14px 34px rgba(41, 37, 31, 0.14);
    backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 8px));
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

  .mobile-action-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-action-bar a {
    display: inline-flex;
    min-width: 0;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--sage-dark);
    background: #fff;
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
    white-space: nowrap;
  }

  html[lang="ka"] .mobile-action-bar a,
  html[lang="ru"] .mobile-action-bar a {
    font-size: 11px;
  }

  .mobile-action-bar .is-primary {
    color: #fff;
    border-color: var(--clay);
    background: var(--clay);
  }

  .story-hero,
  .story-content,
  .story-video-section,
  .story-cta {
    padding-right: 16px;
    padding-left: 16px;
  }

  .story-hero > img {
    height: 320px;
  }

  .story-hero p:not(.eyebrow),
  .story-copy p:not(.eyebrow),
  .story-copy blockquote,
  .story-cta p {
    font-size: 16px;
  }

  .story-gallery img {
    height: 260px;
  }
}
