:root {
  --red: #B3282D;
  --red-dark: #8F1F23;
  --red-light: #F6E4E4;
  --ink: #262322;
  --ink-muted: #5B5654;
  --paper: #FFFFFF;
  --paper-alt: #FAF6F5;
  --border: #ECE4E3;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(38, 35, 34, 0.08);
  --container: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { overflow-x: hidden; }

body {
  margin: 0;
  font-family: "Noto Sans Georgian", "BPG Nino Mtavruli", "Sylfaen", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.25; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); text-align: center; margin-bottom: 1.5rem; }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; color: var(--ink-muted); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.logo {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.nav a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: .95rem;
}

.nav a:hover { color: var(--red); }

/* Buttons */
.btn {
  display: inline-block;
  padding: .7em 1.4em;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--paper);
  color: var(--red);
  border: 1.5px solid var(--red);
}

.btn-secondary:hover {
  background: var(--red-light);
}

.btn-lg { padding: .85em 1.8em; font-size: 1rem; }

/* Hero */
.hero {
  padding: 80px 0 64px;
  background: linear-gradient(180deg, var(--paper-alt), var(--paper));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.hero-sub {
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

/* Problem */
.problem {
  background: var(--red);
  color: #fff;
  padding: 28px 0;
  text-align: center;
}

.problem p {
  color: #fff;
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Services grid */
.services { padding: 72px 0; }

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

.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.card-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) - 6px);
  margin-bottom: 16px;
  display: block;
}

.card h3 { margin-bottom: .4em; }
.card p { margin: 0; }

/* Why us */
.why-us {
  background: var(--paper-alt);
  padding: 64px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}

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

.why-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.why-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

.disclaimer-inline {
  font-size: .88rem;
  color: var(--ink-muted);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 18px;
}

/* How it works */
.how { padding: 72px 0; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Packages */
.packages {
  background: var(--paper-alt);
  padding: 72px 0;
}

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

.package-card { text-align: center; }

.package-card.featured {
  border-color: var(--red);
  box-shadow: 0 10px 28px rgba(179, 40, 45, 0.18);
}

.price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--red);
  margin: .2em 0;
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-muted);
}

/* Contact */
.contact {
  padding: 72px 0;
  text-align: center;
}

.contact-inner { max-width: 620px; margin: 0 auto; }

.contact-methods {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #D8D3D1;
  padding: 32px 0;
}

.site-footer .disclaimer {
  font-size: .82rem;
  color: #B6B0AE;
  max-width: 820px;
  margin: 0 auto 12px;
  text-align: center;
}

.site-footer .copyright {
  font-size: .85rem;
  text-align: center;
  margin: 0;
  color: #B6B0AE;
}

.site-footer a { color: #E8B9BA; }

/* Responsive overrides — kept last so equal-specificity rules above always lose the cascade */
@media (max-width: 860px) {
  .nav { display: none; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .hero-grid, .why-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .why-text h2 { text-align: center; }
  .hero-media, .why-media { max-width: 460px; margin: 0 auto; }
}

@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .header-cta { display: none; }
  .logo { font-size: 1rem; }
}
