:root {
  --navy: #132841;
  --navy-soft: #203953;
  --rose: #f3c8c0;
  --rose-soft: #fde9e4;
  --cream: #fff8ef;
  --paper: #fffdf8;
  --sage: #f7ded8;
  --leaf: #132841;
  --gold: #b28a31;
  --muted: #6b746f;
  --line: rgba(19, 40, 65, 0.13);
  --shadow: 0 22px 60px rgba(19, 40, 65, 0.11);
  --content: 1120px;
  --content-wide: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--cream);
  font-family: "Montserrat", "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 74px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: rgba(255, 248, 239, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100%, var(--content));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
  color: var(--navy-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.main-nav a {
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
}

.main-nav a:hover {
  background: white;
}

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

.header-socials a {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  color: var(--navy);
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.header-socials a:hover {
  transform: translateY(-2px);
  background: white;
  box-shadow: 0 12px 28px rgba(19, 40, 65, 0.1);
}

.header-socials svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-socials .social-instagram {
  color: #e4405f;
}

.header-socials .social-whatsapp {
  color: #25d366;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(19, 40, 65, 0.08);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  padding: clamp(46px, 8vw, 88px) clamp(18px, 6vw, 82px);
  background:
    radial-gradient(circle at 14% 12%, rgba(243, 200, 192, 0.62), transparent 34%),
    radial-gradient(circle at 86% 20%, rgba(178, 138, 49, 0.12), transparent 36%),
    linear-gradient(135deg, #fff8ef 0%, #fdf1ea 58%, #fff8ef 100%);
}

.hero > * {
  width: 100%;
}

.hero {
  justify-content: center;
}

.hero-copy {
  max-width: 650px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  width: max-content;
  max-width: 100%;
  color: var(--navy-soft);
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(19, 40, 65, 0.08);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(19, 40, 65, 0.07);
  font-size: 0.8rem;
  font-weight: 800;
}

.badge i {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Poppins", "Montserrat", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  line-height: 1.04;
  font-weight: 700;
}

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(1.7rem, 3.1vw, 2.75rem);
  line-height: 1.12;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 700;
}

.hero-copy p,
.section-heading p,
.quote-intro p,
.profile-copy p,
.experience-copy p,
.final-cta p {
  max-width: 680px;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid rgba(19, 40, 65, 0.15);
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(19, 40, 65, 0.1);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(19, 40, 65, 0.13);
}

.button.primary {
  color: white;
  background: var(--leaf);
  border-color: var(--leaf);
}

.button.secondary {
  background: rgba(255, 253, 248, 0.92);
}

.button.full {
  width: 100%;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.hero-tags span {
  display: inline-flex;
  padding: 8px 11px;
  color: #56645f;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(19, 40, 65, 0.07);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-visual {
  perspective: 900px;
}

.meal-frame,
.profile-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(19, 40, 65, 0.14);
  box-shadow: var(--shadow);
}

.meal-frame {
  height: clamp(385px, 46vw, 490px);
  min-height: 0;
  border-radius: 30px;
}

.meal-frame::after,
.profile-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 253, 248, 0.14), transparent 45%);
  pointer-events: none;
}

.parallax-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(var(--image-x, 0px), var(--image-y, 0px), 0) scale(1.08);
  transition: transform 0.18s ease-out;
  will-change: transform;
}

.meal-frame .parallax-image {
  min-height: 100%;
}

video.parallax-image {
  display: block;
}

.section {
  padding: clamp(58px, 7vw, 96px) clamp(18px, 6vw, 82px);
  scroll-margin-top: 90px;
}

.section > * {
  width: min(100%, var(--content));
  margin-left: auto;
  margin-right: auto;
}

.gallery-section > *,
.hero {
  max-width: none;
}

.hero {
  grid-template-columns: minmax(0, 520px) minmax(320px, 500px);
}

.final-cta,
footer {
  width: min(calc(100% - 36px), var(--content));
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  max-width: none;
  margin-bottom: 28px;
  text-align: left;
}

.quote-intro {
  max-width: 820px;
  margin-bottom: 28px;
  text-align: left;
}

.section-heading.compact {
  max-width: none;
}

.section-heading h2 {
  max-width: 820px;
}

.kicker,
.service-number {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-grid,
.flow-grid,
.trust-grid,
.quote-info {
  display: grid;
  gap: 14px;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(0, 560px);
  justify-content: center;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: var(--paper);
}

.process-section > * {
  width: auto;
  margin-left: 0;
  margin-right: 0;
}

.process-video {
  overflow: hidden;
  aspect-ratio: 9 / 16;
  max-height: 560px;
  background: var(--rose-soft);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.process-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.process-copy {
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(19, 40, 65, 0.08);
}

.process-copy p {
  color: var(--muted);
  font-size: 0.98rem;
}

.quality-note {
  margin-top: 22px;
  padding: 18px;
  background: var(--rose-soft);
  border: 1px solid rgba(19, 40, 65, 0.1);
  border-radius: 18px;
}

.quality-note strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Poppins", "Montserrat", sans-serif;
}

.quality-note p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

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

.service-grid article,
.flow-grid article,
.trust-grid article,
.quote-info article {
  min-height: 190px;
  padding: 22px;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(19, 40, 65, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-grid article:hover,
.flow-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(178, 138, 49, 0.36);
  box-shadow: 0 22px 54px rgba(19, 40, 65, 0.13);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(19, 40, 65, 0.1);
  border-radius: 14px;
  font-size: 1.35rem;
}

.service-grid article:nth-child(2) {
  background: var(--rose-soft);
}

.service-grid article:nth-child(3) {
  background: #fff3ee;
}

.service-grid article:nth-child(4) {
  background: #f8efe0;
}

.service-grid p,
.flow-grid p,
.trust-grid p,
.quote-info p,
.certificate-placeholder p,
.profile-copy li,
.experience-copy li {
  color: var(--muted);
  font-size: 0.9rem;
}

.profile,
.credentials,
.quote-section {
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

.profile > *,
.credentials > *,
.quote-section > * {
  width: auto;
  margin-left: 0;
  margin-right: 0;
}

.profile {
  display: grid;
  grid-template-columns: minmax(280px, 410px) minmax(0, 600px);
  justify-content: center;
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  background: linear-gradient(135deg, var(--rose-soft), var(--cream));
}

.profile-photo {
  aspect-ratio: 4 / 5;
  border-radius: 26px;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-copy ul,
.experience-copy ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: 18px 0 0;
}

.trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.trust-grid article {
  min-height: 160px;
}

.trust-grid span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-grid strong {
  display: block;
  margin: 8px 0;
  font-family: "Poppins", "Montserrat", sans-serif;
  font-size: 1rem;
}

.credentials {
  display: grid;
  grid-template-columns: minmax(280px, 440px) minmax(0, 600px);
  justify-content: center;
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  background: var(--paper);
}

.certificate-card {
  padding: 18px;
  max-width: 390px;
  justify-self: center;
  background: linear-gradient(145deg, var(--rose-soft), #fff6ec);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.certificate-card img {
  width: 100%;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  border-radius: 18px;
}

.gallery-section,
.events-section {
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream), #fff1ea);
}

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

.event-grid figure {
  position: relative;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(19, 40, 65, 0.12);
  border-radius: 22px;
  box-shadow: 0 16px 44px rgba(19, 40, 65, 0.08);
}

.event-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.event-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  color: var(--navy);
  background: rgba(255, 253, 248, 0.9);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.gallery-track {
  overflow-x: auto;
  cursor: grab;
  scrollbar-width: none;
  user-select: none;
  touch-action: pan-y;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track.dragging {
  cursor: grabbing;
}

.gallery-rail {
  width: max-content;
  display: flex;
  gap: 16px;
  animation: galleryDrift 46s linear infinite;
}

.gallery-track:hover .gallery-rail,
.gallery-track.dragging .gallery-rail {
  animation-play-state: paused;
}

.gallery-rail figure {
  position: relative;
  flex: 0 0 clamp(230px, 24vw, 310px);
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(19, 40, 65, 0.12);
  border-radius: 22px;
  box-shadow: 0 16px 44px rgba(19, 40, 65, 0.08);
}

.gallery-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.gallery-rail figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  color: var(--navy);
  background: rgba(255, 253, 248, 0.9);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.delivery-section {
  background: var(--paper);
}

.delivery-section .section-heading {
  max-width: none;
  padding: clamp(24px, 4vw, 36px);
  background: var(--rose-soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(19, 40, 65, 0.08);
}

@keyframes galleryDrift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.menu-flow {
  background: var(--paper);
}

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

.flow-grid article {
  min-height: 170px;
  background: #f8efe0;
}

.flow-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  background: rgba(255, 253, 248, 0.8);
  border: 1px solid rgba(19, 40, 65, 0.1);
  border-radius: 14px;
  font-size: 1.25rem;
}

.flow-grid strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Poppins", "Montserrat", sans-serif;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(320px, 520px);
  justify-content: center;
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  background:
    radial-gradient(circle at 88% 16%, rgba(243, 200, 192, 0.5), transparent 32%),
    linear-gradient(180deg, #fffaf2, #fff1ea);
}

.quote-info {
  grid-template-columns: 1fr;
  margin-top: 24px;
}

.quote-info article {
  min-height: 0;
  padding: 16px 18px;
}

.quote-info strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Poppins", "Montserrat", sans-serif;
}

.quote-card {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 4vw, 28px);
  background: var(--paper);
  border: 1px solid rgba(19, 40, 65, 0.14);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 18px;
}

label,
legend {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

input[type="range"] {
  width: 100%;
  margin: 12px 0 4px;
  accent-color: var(--leaf);
}

input[type="number"] {
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  padding: 10px 14px;
  color: var(--navy);
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  font-weight: 700;
}

fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.radio-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  color: var(--muted);
}

.radio-row input {
  accent-color: var(--leaf);
}

.total-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: var(--rose-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.plan-pill {
  display: inline-flex;
  width: max-content;
  padding: 7px 10px;
  color: var(--navy);
  background: #f8efe0;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.total-label {
  color: var(--muted);
  font-weight: 700;
}

#totalPrice {
  display: block;
  font-family: "Poppins", "Montserrat", sans-serif;
  font-size: clamp(2.45rem, 6vw, 4.4rem);
  line-height: 0.98;
}

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

.total-meta span {
  padding: 11px;
  color: var(--muted);
  background: rgba(255, 253, 248, 0.78);
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
}

.total-meta b {
  display: block;
  color: var(--navy);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: clamp(42px, 7vw, 82px);
  margin-bottom: clamp(42px, 7vw, 82px);
  padding: clamp(28px, 5vw, 52px);
  background: linear-gradient(135deg, var(--rose), var(--rose-soft));
  border: 1px solid rgba(19, 40, 65, 0.14);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 760px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

.footer-logo {
  display: inline-flex;
  flex: 0 0 auto;
  text-decoration: none;
}

.footer-logo img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(19, 40, 65, 0.08);
}

.footer-copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
  text-align: right;
}

footer a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: 74px 18px auto 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  body.menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
    background: var(--cream);
  }

  .hero,
  .profile,
  .credentials,
  .process-section,
  .quote-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

  .flow-grid,
  .trust-grid,
  .event-grid {
    grid-template-columns: 1fr;
  }

  .meal-frame,
  .meal-frame .parallax-image {
    min-height: 100%;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .hero {
    min-height: auto;
  }

  .meal-frame,
  .meal-frame .parallax-image {
    min-height: 100%;
  }

  .service-grid,
  .total-meta {
    grid-template-columns: 1fr;
  }

  .service-grid article,
  .flow-grid article,
  .trust-grid article {
    min-height: 0;
  }

  .gallery-rail figure {
    flex-basis: 260px;
  }

  footer {
    align-items: flex-start;
  }

  .footer-logo img {
    width: 62px;
    height: 62px;
  }

  .footer-copy {
    justify-content: flex-start;
    text-align: left;
  }
}
