:root {
  --brand-a: #5e83ea;
  --brand-b: #7b4fb3;
  --brand-c: #38c7f4;
  --ink: #333;
  --muted: #666;
  --paper: #fff;
  --soft: #f8f9ff;
  --soft-b: #e6e9ff;
  --navy: #1a1a2e;
  --line: rgba(102, 126, 234, 0.18);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #fff;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-a), var(--brand-b));
  box-shadow: 0 10px 25px rgba(48, 51, 107, 0.22);
}

.nav-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.98rem;
  opacity: 0.94;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  opacity: 1;
  transform: translateY(-1px);
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 110px 20px 80px;
  background:
    linear-gradient(rgba(12, 12, 22, 0.56), rgba(12, 12, 22, 0.6)),
    url("https://images.unsplash.com/photo-1553621042-f6e147245754?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero-content {
  max-width: 840px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.08;
}

.hero p {
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.section {
  padding: 80px 0;
}

.section.soft {
  background: linear-gradient(135deg, var(--soft), var(--soft-b));
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.16;
}

.section-lead {
  max-width: 760px;
  margin: 0 auto 38px;
  color: var(--muted);
  text-align: center;
  font-size: 1.08rem;
}

.page-hero {
  padding: 88px 0 64px;
  color: #fff;
  background:
    linear-gradient(rgba(24, 24, 43, 0.68), rgba(24, 24, 43, 0.7)),
    url("https://images.unsplash.com/photo-1569718212165-3a8278d5f624?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.35rem, 5vw, 3.7rem);
  line-height: 1.12;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  font-size: 1.15rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px;
  border: 0;
  border-radius: 50px;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, var(--brand-a), var(--brand-b));
  box-shadow: 0 12px 28px rgba(102, 126, 234, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(102, 126, 234, 0.34);
}

.btn.light {
  color: var(--brand-b);
  background: #fff;
}

.grid {
  display: grid;
  gap: 28px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

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

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.menu-grid {
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
}

.card,
.menu-card,
.info-card,
.review-card,
.job-card,
.package-card,
.legal-panel {
  background: var(--paper);
  border: 1px solid rgba(102, 126, 234, 0.08);
  border-radius: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-body,
.menu-card .content,
.info-card,
.review-card,
.job-card,
.package-card {
  padding: 24px;
}

.card img,
.menu-card img,
.team-card img {
  height: 250px;
  object-fit: cover;
}

.card,
.menu-card,
.info-card,
.review-card,
.job-card,
.package-card {
  transition: transform 0.22s ease;
}

.card:hover,
.menu-card:hover,
.info-card:hover,
.review-card:hover,
.job-card:hover,
.package-card:hover {
  transform: translateY(-5px);
}

.menu-card h3,
.info-card h3,
.job-card h3,
.package-card h3 {
  margin: 0 0 8px;
  font-size: 1.24rem;
}

.menu-card p,
.card p,
.info-card p,
.review-card p,
.job-card p,
.package-card p {
  color: var(--muted);
}

.price {
  margin-top: 12px;
  color: var(--brand-b);
  font-size: 1.24rem;
  font-weight: 900;
}

.split-image {
  border-radius: 15px;
  min-height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.stars {
  color: #ffbf47;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.avatar {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  object-fit: cover;
  margin-bottom: 14px;
}

.map-placeholder {
  min-height: 330px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 2px dashed rgba(102, 126, 234, 0.35);
  border-radius: 15px;
  color: var(--muted);
  background: linear-gradient(135deg, #fff, #f2f4ff);
}

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

.contact-item {
  padding: 20px;
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-item strong {
  display: block;
  color: var(--brand-b);
}

.form {
  display: grid;
  gap: 16px;
}

.form.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 13px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

.form textarea {
  min-height: 132px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: 10px;
  color: #194b28;
  background: #e9f8ee;
}

.form-status.is-visible {
  display: block;
}

.category {
  margin-top: 44px;
}

.category h2 {
  margin: 0 0 18px;
  color: var(--brand-b);
  font-size: 1.8rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.pill-list li {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--brand-b);
  background: rgba(102, 126, 234, 0.1);
  font-weight: 800;
}

.timeline {
  display: grid;
  gap: 18px;
  counter-reset: step;
}

.timeline-item {
  position: relative;
  padding: 22px 22px 22px 72px;
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow);
}

.timeline-item::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand-a), var(--brand-b));
}

.team-card {
  overflow: hidden;
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow);
}

.team-card .card-body {
  padding: 22px;
}

.site-footer {
  color: #e9ecff;
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 54px 20px 34px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  color: var(--brand-c);
}

.site-footer p,
.site-footer li {
  color: #ccd1f1;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--navy);
  background: var(--brand-c);
  font-weight: 900;
}

.copyright {
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #b8bee6;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: none;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.2);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cookie-inner p {
  margin: 0;
}

.cookie-inner a {
  color: var(--brand-c);
  font-weight: 800;
}

.legal-panel {
  padding: 34px;
}

.legal-panel h2 {
  margin-top: 30px;
  color: var(--brand-b);
}

.legal-panel h2:first-child {
  margin-top: 0;
}

.legal-panel p,
.legal-panel li {
  color: var(--muted);
}

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

.stat {
  padding: 22px;
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  color: var(--brand-b);
  font-size: 1.6rem;
}

@media (max-width: 900px) {
  .nav-shell,
  .cookie-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .footer-grid,
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .section {
    padding: 58px 0;
  }

  .hero {
    min-height: 720px;
  }

  .logo {
    font-size: 1.55rem;
  }

  .form.two-col,
  .grid.two,
  .grid.three,
  .grid.four,
  .footer-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .card img,
  .menu-card img,
  .team-card img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .nav-shell {
    padding: 13px 16px;
  }

  .nav-links {
    gap: 8px 12px;
  }

  .nav-links a {
    font-size: 0.92rem;
  }

  .hero {
    min-height: 670px;
    padding-top: 86px;
  }

  .page-hero {
    padding: 62px 0 48px;
  }

  .btn {
    width: 100%;
  }

  .legal-panel,
  .card-body,
  .menu-card .content,
  .info-card,
  .review-card,
  .job-card,
  .package-card {
    padding: 20px;
  }
}
