: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 {
  max-width: 100%;
  display: block;
}

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,
.pricing-name {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.15;
  color: var(--text);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

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);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(227, 221, 210, 0.9);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
}

.logo-image {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.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;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 999px;
}

.hero {
  padding-top: 130px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-description {
  font-size: 1.08rem;
  max-width: 680px;
}

.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;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid #ead8b0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-card,
.info-card,
.pricing-card,
.contact-form,
.contact-box,
.team-card,
.feature-card,
.step-card,
.reviews-placeholder,
.custom-offer-box {
  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);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 460px;
}

.hero-card-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(227, 221, 210, 0.9);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.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 {
  background: var(--accent);
  color: #ffffff;
}

.btn-primary:hover {
  background: #000000;
}

.btn-secondary {
  background: var(--gold-soft);
  color: var(--text);
  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;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #f4efe4, #e7dcc3);
  border: 1px solid var(--line);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-role {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px;
  margin-bottom: 22px;
}

.feature-card {
  padding: 28px;
  border-color: #ead8b0;
  background: linear-gradient(180deg, #fffdf9 0%, #fbf7ef 100%);
}

.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;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 600;
  box-shadow: var(--shadow);
}

.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;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.pricing-card {
  position: relative;
  padding: 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}


.pricing-card.featured {
  border: 1px solid #d7b76b;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  transform: none;
}

.pricing-name {
  min-height: 20px;
}

.pricing-card h3 {
  min-height: 50px;
}

.price-tag {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  min-height: 44px;
}

.badge {
  position: absolute;
  top: 18px;
  right: -38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 34px;
  padding: 0 18px;
  background: var(--gold);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: rotate(38deg);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  z-index: 2;
  pointer-events: none;
}


.addon-card {
  background: linear-gradient(180deg, #fffdf9 0%, #f8f2e5 100%);
}

.addon-note {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 18px;
}

.packages-action {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.custom-offer-box {
  margin-top: 28px;
  padding: 28px;
  text-align: center;
}

.faq-list {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin-top: 12px;
  margin-bottom: 0;
}

.reviews-placeholder {
  padding: 32px;
  margin-top: 24px;
  text-align: center;
}

.section-contact {
  background: linear-gradient(to bottom, var(--background), #f7f3ed);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.contact-box {
  padding: 24px;
  margin-top: 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;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fcfcfa;
  color: var(--text);
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: #ffffff;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 0.3rem;
  width: auto;
}

.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 {
  border-top: 1px solid var(--line);
  background: #f3efe8;
}

.footer-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.legal-content h1 {
  margin-bottom: 20px;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin-top: 38px;
  margin-bottom: 12px;
}

.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);
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .pricing-grid,
  .pricing-grid-4,
  .card-grid,
  .feature-grid,
  .steps-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    background: rgba(251, 250, 248, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 10px 20px 20px;
    display: none;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .section {
    padding: 80px 0;
  }

  .hero {
    padding-top: 110px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
    text-align: center;
  }

  .legal-nav {
    display: block;
    position: static;
    background: transparent;
    border-bottom: 0;
    padding: 0;
  }

  .legal-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 16px;
    justify-content: flex-end;
  }

  .hero-card-overlay {
    position: static;
    margin: 16px;
  }

  .hero-image-card {
    min-height: auto;
  }

  .hero-photo {
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .badge {
    top: 16px;
    right: -46px;
    min-width: 155px;
    height: 30px;
    font-size: 0.68rem;
  }
}

@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 {
    border-radius: 16px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .logo-image {
    height: 44px;
  }

  .legal-nav ul {
    justify-content: flex-start;
  }

  .hero-highlights {
    flex-direction: column;
  }

  .team-photo-placeholder {
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #f4efe4, #e7dcc3);
  border: 1px solid var(--line);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}

.review-text {
  margin-bottom: 18px;
}

.review-author {
  color: var(--text);
  font-weight: 700;
  margin-bottom: 0;
}

.reviews-action {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

@media (max-width: 980px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}