:root {
  --background: #fbfaf8;
  --background-alt: #f4f1eb;
  --surface: #ffffff;
  --text: #171717;
  --muted: #5f5a52;
  --line: #e3ddd2;
  --accent: #171717;
  --gold: #caa24a;
  --gold-soft: #f3ead6;
  --accent-soft: #f3f0ea;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--background-alt);
}

.section-label,
.eyebrow,
.card-label {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--text);
  line-height: 1.15;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

p {
  margin-top: 0;
  color: var(--muted);
}

.clean-list {
  padding-left: 20px;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 250, 248, 0.92);
  border-bottom: 1px solid rgba(227, 221, 210, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
}

.logo-image {
  width: auto;
  height: 80px;
  object-fit: contain;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.96rem;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  padding-top: 50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}

.hero-description {
  max-width: 680px;
  font-size: 1.08rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  color: var(--text);
  background: var(--gold-soft);
  border: 1px solid #ead8b0;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
  min-width: 180px;
}

.hero-card,
.info-card,
.pricing-card,
.contact-form,
.contact-box,
.team-card,
.feature-card,
.step-card,
.reviews-placeholder,
.custom-offer-box,
.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-image-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(135deg, #f4efe4, #e7dcc3);
  border: 1px solid #eadfca;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.hero-photo {
  width: 100%;
  min-height: 460px;
  height: 100%;
  object-fit: cover;
}

.hero-card-overlay {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(227, 221, 210, 0.9);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.hero-trust {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #ffffff;
  background: var(--accent);
}

.btn-primary:hover {
  background: #000000;
}

.btn-secondary {
  color: var(--text);
  background: var(--gold-soft);
  border: 1px solid #e5d5b2;
}

.btn-secondary:hover {
  background: #ebdfc5;
}

.team-section {
  margin-top: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.team-card {
  padding: 24px;
  text-align: center;
}

.team-photo-placeholder {
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #f4efe4, #e7dcc3);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-role {
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px;
  margin-bottom: 22px;
}

.feature-card {
  padding: 28px;
  background: linear-gradient(180deg, #fffdf9 0%, #fbf7ef 100%);
  border-color: #ead8b0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 22px;
}

.info-card {
  padding: 28px;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.event-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.step-card {
  padding: 28px;
}

.step-number {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.pricing-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.aligned-pricing {
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  padding: 32px 30px 30px;
}

.pricing-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.pricing-card ul li {
  margin-bottom: 8px;
}

.pricing-card.featured {
  border: 1px solid #d7b76b;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.pricing-name,
.addon-card .pricing-name {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: normal;
  text-transform: none;
}

.pricing-card h3,
.addon-card h3 {
  min-height: 36px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.35;
}

.price-tag {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-belt {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: auto;
  margin-right: -30px;
  margin-bottom: -30px;
  margin-left: -30px;
  color: #9b7421;
  background: var(--gold-soft);
  border-top: 1px solid #e5d5b2;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.addon-card {
  border-style: dashed;
  border-color: #dccfae;
}

.addon-note {
  margin-top: 18px;
  margin-bottom: 0;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.packages-action,
.reviews-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.custom-offer-box {
  margin-top: 28px;
  padding: 28px;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.faq-list details {
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.faq-list summary {
  color: var(--text);
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin-top: 12px;
  margin-bottom: 0;
}

.reviews-placeholder {
  margin-top: 24px;
  padding: 32px;
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 22px;
  margin-top: 32px;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
}

.review-stars {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  line-height: 1;
}

.review-text {
  flex-grow: 1;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.review-text::before {
  content: "“";
  margin-right: 4px;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 0;
  vertical-align: -0.2em;
}

.review-author {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.section-contact {
  background: linear-gradient(to bottom, var(--background), #f7f3ed);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 30px;
}

.contact-box {
  margin-top: 24px;
  padding: 24px;
}

.contact-box p:last-child {
  margin-bottom: 0;
}

.contact-box a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  padding: 28px;
}

.contact-form .btn {
  width: 100%;
  min-height: 54px;
  font-size: 1rem;
}

.contact-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  color: var(--text);
  background: #fcfcfa;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--gold);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 0.3rem;
}

.form-checkbox label {
  margin-bottom: 0;
  line-height: 1.5;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-status.success {
  color: #1f7a1f;
}

.form-status.error {
  color: #b42318;
}

.site-footer {
  background: #f3efe8;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.legal-content h1 {
  margin-bottom: 20px;
}

.legal-content h2 {
  margin-top: 38px;
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.legal-content p {
  margin-bottom: 14px;
}

.legal-actions {
  margin-top: 40px;
}

.legal-nav ul {
  gap: 18px;
}

@media (max-width: 1180px) {
  .pricing-grid-4,
  .feature-grid,
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .pricing-grid,
  .pricing-grid-4,
  .card-grid,
  .feature-grid,
  .steps-grid,
  .team-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 28px 24px 24px;
  }

  .pricing-belt {
    margin-right: -24px;
    margin-bottom: -24px;
    margin-left: -24px;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 92px;
    right: 0;
    left: 0;
    display: none;
    padding: 10px 20px 20px;
    background: rgba(251, 250, 248, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .section {
    padding: 80px 0;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-card-overlay {
    position: static;
    margin: 16px;
  }

  .hero-image-card {
    min-height: auto;
  }

  .hero-photo {
    min-height: 300px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
    text-align: center;
  }

  .legal-nav {
    position: static;
    display: block;
    padding: 0;
    background: transparent;
    border-bottom: 0;
  }

  .legal-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 560px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-card,
  .info-card,
  .pricing-card,
  .contact-form,
  .contact-box,
  .team-card,
  .feature-card,
  .step-card,
  .reviews-placeholder,
  .custom-offer-box,
  .review-card {
    border-radius: 16px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .hero-highlights {
    flex-direction: column;
  }

  .logo-image {
    height: 44px;
  }

  .legal-nav ul {
    justify-content: flex-start;
  }
}