:root {
  --primary: #722F37;
  --primary-dark: #5d252c;
  --gold: #C9A96E;
  --gold-light: #e6cf9d;
  --cream: #FFF8F0;
  --dark: #1A1A2E;
  --dark-soft: #243045;
  --text: #22232b;
  --text-light: #666c7a;
  --white: #ffffff;
  --border: #eadcca;
  --shadow: 0 12px 35px rgba(27, 26, 42, 0.08);
  --radius: 18px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #fffdfb;
  line-height: 1.65;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  display: block;
}

section {
  padding: 72px 0;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.section-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 2vw + 1rem, 2.8rem);
  line-height: 1.2;
  color: var(--dark);
}

.section-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-light);
}

.section-cream {
  background: var(--cream);
}

.section-alt {
  background: linear-gradient(180deg, #fffaf6 0%, #fff 100%);
}

.section-dark {
  background: linear-gradient(135deg, #1A1A2E 0%, #2c2037 100%);
  color: var(--white);
}

.section-gradient {
  background: linear-gradient(135deg, #5d252c 0%, #722F37 55%, #9b6b43 100%);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(114, 47, 55, 0.08);
}

.navbar.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.nav-container {
  width: min(var(--container), calc(100% - 24px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--dark);
}

.nav-logo span {
  color: var(--primary);
}

.nav-links,
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
  padding: 8px 2px;
  position: relative;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--primary);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
  font-weight: 700;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px auto;
  transition: 0.25s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary,
.nav-cta {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover,
.nav-cta:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: #2d210f;
}

.btn-gold:hover {
  background: #d9b980;
  color: #2d210f;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background: #1faf53;
  color: white;
}

.btn-outline {
  border-color: rgba(114, 47, 55, 0.25);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(114, 47, 55, 0.05);
}

.btn-lg {
  padding: 14px 24px;
  font-size: 1rem;
}

.btn-sm {
  padding: 9px 14px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-image,
.hero-bg-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-overlay {
  background: linear-gradient(120deg, rgba(17, 17, 28, 0.82), rgba(114, 47, 55, 0.7));
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 780px;
  color: var(--white);
  padding: 48px 0;
}

.hero-content h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.1;
}

.hero-content h1 span {
  color: var(--gold-light);
}

.hero-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff9ec;
  font-weight: 700;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.88);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-stats,
.trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.hero-stat,
.trust-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 18px;
}

.hero-stat-number,
.trust-number {
  font-size: 1.45rem;
  font-weight: 800;
}

.hero-stat-text {
  margin: 6px 0 0;
  color: rgba(255,255,255,0.82);
}

.trust-bar {
  margin-top: 0;
}

.trust-item {
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
}

.trust-item i {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.features-grid,
.services-grid,
.cuisine-grid,
.content-display-grid,
.pricing-grid,
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card,
.service-card,
.content-display-card,
.cuisine-card,
.pricing-card,
.sitemap-section,
.legal-content,
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--text);
}

.feature-card,
.service-card,
.content-display-card,
.sitemap-section,
.step-card,
.pricing-card {
  padding: 22px;
}

.icon-wrap,
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(114, 47, 55, 0.08);
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.service-card h3,
.feature-card h4,
.content-display-card h3,
.pricing-name,
.sitemap-section h3,
.step-card h4 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--dark);
}

.feature-card p,
.service-card p,
.content-display-card p,
.pricing-card p,
.step-card p,
.sitemap-section p,
.sitemap-section li,
.cuisine-card-body p {
  color: var(--text-light);
}

.price-tag,
.pricing-note {
  display: inline-block;
  margin-top: 8px;
  color: var(--primary);
  font-weight: 700;
}

.service-actions {
  margin-top: 14px;
}

.content-display-card i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.page-header {
  padding: 64px 0 48px;
  background: linear-gradient(180deg, #fbf3ea 0%, #fffdfb 100%);
  border-bottom: 1px solid rgba(114, 47, 55, 0.08);
}

.page-header h1 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--dark);
}

.page-header p {
  max-width: 760px;
  color: var(--text-light);
}

.breadcrumb {
  margin-top: 12px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.breadcrumb span {
  margin: 0 6px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: start;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #d8d6d1;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(114, 47, 55, 0.1);
}

.pricing-card.featured {
  border-color: rgba(201, 169, 110, 0.85);
  transform: translateY(-4px);
}

.pricing-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.pricing-price span {
  font-size: 0.95rem;
  color: var(--text-light);
}

.pricing-features,
.footer-links,
.sitemap-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li,
.footer-links li,
.sitemap-section li {
  margin-bottom: 10px;
}

.pricing-features i,
.footer-links i {
  color: var(--primary);
  margin-right: 8px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.step-card {
  height: 100%;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #2b210f;
  font-weight: 800;
  margin-bottom: 12px;
}

.cuisine-card {
  overflow: hidden;
}

.cuisine-img {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  position: relative;
}

.cuisine-card-body {
  padding: 18px;
}

.cuisine-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.cuisine-items span,
.cuisine-badge {
  display: inline-block;
  border-radius: 999px;
  background: rgba(114, 47, 55, 0.08);
  color: var(--primary);
  font-size: 0.8rem;
  padding: 6px 10px;
}

.cuisine-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.18);
  color: white;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 700;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--text-light);
}

.cta-banner {
  background: linear-gradient(135deg, #722F37 0%, #8a5144 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  margin-top: 0;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
}

.cta-banner p {
  max-width: 760px;
  margin: 0 auto 20px;
  color: rgba(255,255,255,0.85);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-content {
  padding: 28px;
}

.legal-content h2 {
  margin-top: 26px;
  color: var(--dark);
}

.legal-content h3 {
  margin-top: 18px;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 8px;
}

.sitemap-section ul {
  padding-left: 0;
}

.footer {
  background: #161722;
  color: #f1ede7;
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer .nav-logo,
.footer h4,
.footer a {
  color: #fff6eb;
}

.footer p,
.footer li,
.footer-contact-item p {
  color: rgba(255, 255, 255, 0.76);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 1000;
}

.whatsapp-float a {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.28);
}

.whatsapp-float .tooltip {
  position: absolute;
  right: 68px;
  bottom: 16px;
  white-space: nowrap;
  background: #1f2430;
  color: #fff;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.8rem;
  opacity: 0;
  transform: translateX(8px);
  transition: 0.2s ease;
  pointer-events: none;
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 92px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  cursor: pointer;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  transform: translateY(110%);
  transition: 0.3s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #1d2230;
  color: white;
  box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}

.cookie-inner p {
  margin: 0;
  color: rgba(255,255,255,0.84);
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.fade-in,
.slide-left,
.slide-right {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-left {
  transform: translateX(-24px);
}

.slide-right {
  transform: translateX(24px);
}

.fade-in.visible,
.slide-left.visible,
.slide-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .nav-right {
    display: none;
  }
}

@media (max-width: 768px) {
  section {
    padding: 56px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 12px;
    right: 12px;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float .tooltip {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 34px 0;
  }

  .btn,
  .btn-lg {
    width: 100%;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
  }

  .legal-content,
  .feature-card,
  .service-card,
  .pricing-card,
  .step-card,
  .sitemap-section,
  .content-display-card {
    padding: 18px;
  }
}