:root {
  --bg: #121214;
  --bg-alt: #18181b;
  --card: #1f1f23;
  --text: #f5f5f5;
  --muted: #b3b3b3;
  --accent: #c8a873;
  --accent-soft: rgba(200, 168, 115, 0.16);
  --danger: #d35f5f;
  --radius-lg: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1c1c22 0, #101014 55%, #050508 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* HEADER */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 12, 0.95),
    rgba(10, 10, 12, 0.8) 60%,
    transparent 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at 30% 0, #f1e3c5, #c8a873 35%, #2c2520 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(200, 168, 115, 0.45);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #151010;
}

.logo-text-main {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo-text-sub {
  font-size: 11px;
  color: var(--muted);
}

nav {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}

nav a {
  position: relative;
  padding-bottom: 4px;
  cursor: pointer;
}

nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease-out;
}

nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-pill {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.8);
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
}

.phone-pill strong {
  color: var(--text);
  font-weight: 600;
}

.btn {
  border-radius: 999px;
  padding: 8px 16px;
  border: 1px solid var(--accent);
  background: radial-gradient(circle at top, var(--accent-soft), rgba(8, 8, 8, 0.2));
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out;
  box-shadow: 0 0 0 rgba(200, 168, 115, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.6);
  background: radial-gradient(circle at top, rgba(200, 168, 115, 0.35), rgba(8, 8, 8, 0.95));
}

.btn-primary {
  background: linear-gradient(135deg, #f1e3c5, var(--accent));
  color: #151010;
  border-color: rgba(0, 0, 0, 0.25);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fff3d8, #dabb7e);
}

.btn-sm {
  padding: 6px 12px;
  font-size: 12px;
}

/* HERO */

.hero {
  padding: 32px 0 56px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4px 10px;
  background: rgba(11, 11, 11, 0.8);
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 14px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #32d483;
  box-shadow: 0 0 12px #32d483;
}

.hero-title {
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-title span {
  background: linear-gradient(120deg, #f6e7c6, var(--accent));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 15px;
  max-width: 450px;
  margin-bottom: 18px;
}

.hero-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-list li::before {
  content: "•";
  color: var(--accent);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 12px;
  color: var(--muted);
}

.hero-right {
  position: relative;
}

.hero-card {
  background: radial-gradient(circle at top, #242329, #151318);
  border-radius: 22px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.hero-card-title {
  font-size: 14px;
  font-weight: 600;
}

.hero-card-sub {
  font-size: 11px;
  color: var(--muted);
}

.hero-form {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.field label {
  color: var(--muted);
}

.field input,
.field textarea {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.85);
  padding: 10px 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  outline: none;
  transition: border 0.12s ease-out, box-shadow 0.12s ease-out;
}

.field textarea {
  border-radius: 14px;
  min-height: 70px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(200, 168, 115, 0.25);
}

.field small {
  font-size: 11px;
  color: var(--muted);
}

.hero-form-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}

.hero-form-note {
  font-size: 11px;
  color: var(--muted);
}

.hero-card-foot {
  margin-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
}

.hero-card-foot span strong {
  color: var(--accent);
}

/* SECTIONS */

section {
  padding: 40px 0;
}

.section-header {
  margin-bottom: 20px;
}

.section-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 6px;
}

.section-title {
  font-size: 22px;
  margin-bottom: 6px;
}

.section-sub {
  color: var(--muted);
  font-size: 14px;
  max-width: 560px;
}

/* FEATURES */

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

.feature-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.feature-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-bottom: 10px;
}

.feature-title {
  font-size: 14px;
  margin-bottom: 4px;
}

.feature-text {
  font-size: 13px;
  color: var(--muted);
}

/* SERVICES GRID */

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

.service-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 16px 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.service-title {
  font-size: 15px;
  margin-bottom: 4px;
}

.service-text {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
  font-size: 13px;
  color: var(--muted);
}

.service-list li::before {
  content: "– ";
  color: var(--accent);
}

/* PACKAGES */

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

.package-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.package-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.package-title {
  font-size: 16px;
  font-weight: 600;
}

.package-desc {
  font-size: 13px;
  color: var(--muted);
}

.package-price {
  font-size: 14px;
  margin-top: 4px;
}

.package-price strong {
  font-size: 16px;
  color: var(--accent);
}

.package-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 10px;
  display: grid;
  gap: 4px;
  font-size: 13px;
  color: var(--muted);
}

.package-list li::before {
  content: "• ";
  color: var(--accent);
}

.package-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* PROCESS */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  font-size: 13px;
  margin-top: 10px;
}

.process-step {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 12px 12px 10px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

.process-num {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 4px;
}

.process-title {
  font-size: 14px;
  margin-bottom: 4px;
}

.process-text {
  font-size: 12px;
  color: var(--muted);
}

/* GALLERY PLACEHOLDER */

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: radial-gradient(circle at top, #2a2622, #0e0d10);
  border: 1px solid rgba(255, 255, 255, 0.04);
  min-height: 140px;
  display: flex;
  align-items: flex-end;
  padding: 10px;
  color: var(--muted);
  font-size: 12px;
}

.gallery-item span {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent);
  padding: 4px 8px;
  border-radius: 999px;
}

/* REVIEWS */

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

.review-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 13px;
  color: var(--muted);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.review-avatar {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2a2b30, #151515);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #f9f9f9;
}

.review-name {
  font-size: 13px;
  color: var(--text);
}

.review-tag {
  font-size: 11px;
  color: var(--muted);
}

.review-meta {
  margin-top: 6px;
  font-size: 11px;
  color: var(--muted);
}

/* CONTACTS */

.contacts-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: flex-start;
}

.contacts-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.contacts-list li {
  color: var(--muted);
}

.contacts-list strong {
  color: var(--text);
}

.contact-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.map-placeholder {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at top, #24252a, #101117);
  padding: 14px;
  font-size: 12px;
  color: var(--muted);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* FOOTER */

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 14px 0 20px;
  font-size: 11px;
  color: var(--muted);
}

footer .container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-right {
    order: -1;
  }
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .contacts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  nav {
    display: none; /* якщо треба – зробимо мобільне меню окремо */
  }
  .features-grid,
  .packages-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero-card {
    padding: 16px 14px 14px;
  }
}
/* === КОРЕКЦІЯ РОЗМІРІВ ШРИФТУ v2 (крупніше) === */

/* Базовий розмір для всього сайту */
body {
  font-size: 18px;
  line-height: 1.7;
}

/* Заголовки */
.hero-title {
  font-size: clamp(34px, 4.4vw, 44px);
}

.section-title {
  font-size: 26px;
}

.service-title,
.feature-title,
.package-title,
.process-title,
.review-name {
  font-size: 18px;
}

/* Основні тексти / абзаци */
.hero-subtitle,
.section-sub,
.service-text,
.feature-text,
.package-desc,
.process-text,
.contacts-list li,
.contact-note,
.review-card {
  font-size: 16px;
}

/* Списки */
.hero-list,
.service-list,
.package-list {
  font-size: 16px;
}

/* Текст у формах */
.field {
  font-size: 14px;
}

.field input,
.field textarea {
  font-size: 16px;
}

/* Навігація, кнопки, бейджі */
nav,
.phone-pill,
.btn {
  font-size: 15px;
}

/* Дрібний допоміжний текст */
.field small,
.hero-form-note,
.review-meta,
.section-eyebrow,
.hero-card-sub,
.badge {
  font-size: 13px;
}

/* Футер */
footer {
  font-size: 13px;
}
