:root {
  --sand: #f4e7d0;
  --sand-light: #fff8eb;
  --sea: #0f6b7b;
  --sea-dark: #083f4f;
  --coral: #e66f5c;
  --gold: #d6a84f;
  --ink: #19313a;
  --muted: #687a7f;
  --white: #ffffff;
  --line: rgba(25, 49, 58, 0.14);
  --shadow: 0 24px 70px rgba(12, 63, 79, 0.16);
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--sand-light);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(16px, 4vw, 44px);
  background: rgba(255, 248, 235, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(8, 63, 79, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--sea-dark);
  white-space: nowrap;
  line-height: 1;
}

.brand-mark {
  display: grid;
  place-items: center;
  position: relative;
  width: 44px;
  height: 44px;
  border: 2px solid var(--sea-dark);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(8, 63, 79, 0.1);
}

.brand-mark::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
}

.brand-mark::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 8px;
  width: 16px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sea), var(--gold), var(--coral));
}

.brand-lens {
  width: 18px;
  height: 18px;
  border: 3px solid var(--sea-dark);
  border-radius: 50%;
  background:
    radial-gradient(circle at 58% 42%, rgba(255, 255, 255, 0.95) 0 16%, transparent 17%),
    radial-gradient(circle, var(--coral) 0 28%, var(--gold) 29% 45%, var(--sea) 46% 100%);
}

.brand-wordmark {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  column-gap: 3px;
}

.brand-selfie {
  color: #111;
  font-family: "Pacifico", cursive;
  font-size: clamp(1.55rem, 2.7vw, 2rem);
  font-weight: 400;
}

.brand-box {
  color: var(--sea-dark);
  font-size: clamp(1.18rem, 2.1vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-place {
  grid-column: 1 / -1;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 1.55vw, 20px);
  color: #304e57;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--sea-dark);
}

.home-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--sea);
  box-shadow: 0 12px 28px rgba(15, 107, 123, 0.22);
  font-weight: 800;
  font-size: 0.9rem;
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible,
.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--sea-dark);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 48px) 0 64px;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 63, 79, 0.88) 0%, rgba(8, 63, 79, 0.66) 38%, rgba(8, 63, 79, 0.12) 72%),
    linear-gradient(0deg, rgba(8, 63, 79, 0.26), rgba(8, 63, 79, 0.02));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 32px));
  margin-left: max(16px, calc((100vw - 1120px) / 2));
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd890;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 6vw, 5.65rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.9);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn-primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 16px 32px rgba(230, 111, 92, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #d85f4f;
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.btn-outline {
  color: var(--sea-dark);
  border-color: rgba(15, 107, 123, 0.28);
  background: var(--white);
}

.btn-whatsapp {
  color: var(--white);
  background: #1f8f5f;
  box-shadow: 0 16px 32px rgba(31, 143, 95, 0.22);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: #18794f;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
  border-radius: 50%;
  clip-path: circle(49%);
}

.footer-whatsapp {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.hero-offer {
  display: grid;
  gap: 14px;
  width: min(560px, 100%);
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 48px rgba(3, 25, 32, 0.18);
  backdrop-filter: blur(14px);
}

.hero-offer span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-offer strong {
  display: block;
  margin-top: 4px;
  color: #ffd890;
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1;
}

.hero-offer p {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.hero-price-card {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 5px 12px;
  max-width: 420px;
  margin-top: 28px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 48px rgba(3, 25, 32, 0.18);
  backdrop-filter: blur(14px);
}

.hero-price-card span {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.hero-price-card strong {
  color: #ffd890;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.hero-price-card em {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-style: normal;
}

.trust-line {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.quick-proof {
  position: relative;
  z-index: 2;
  padding: 18px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(8, 63, 79, 0.07);
}

.quick-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.quick-proof-grid div {
  display: grid;
  gap: 2px;
  min-height: 76px;
  align-content: center;
  padding: 14px 16px;
  border: 1px solid rgba(15, 107, 123, 0.14);
  border-radius: var(--radius);
  background: var(--sand-light);
}

.quick-proof-grid strong {
  color: var(--sea-dark);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
}

.quick-proof-grid span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.intro-band {
  padding: 44px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 54px;
  align-items: center;
}

.intro-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.intro-text {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2 + p,
.location-copy p,
.quote-copy p {
  color: var(--muted);
}

.steps-grid,
.packages-grid,
.events-grid,
.testimonials-grid,
.urgency-points {
  display: grid;
  gap: 20px;
}

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

.step-card,
.package-card,
.event-card,
.testimonial-card,
.quote-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 40px rgba(8, 63, 79, 0.08);
}

.step-card {
  padding: 24px;
  min-height: 260px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.step-card:hover,
.package-card:hover,
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--sea);
  border-radius: 8px;
  font-weight: 800;
}

.step-card p,
.package-subtitle,
.event-card p,
.testimonial-card blockquote,
.pricing-note,
.urgency-copy p,
.urgency-point span {
  color: var(--muted);
}

.urgency-section {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.74), rgba(244, 231, 208, 0.82)),
    var(--sand);
}

.urgency-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.urgency-copy h2 {
  max-width: 680px;
}

.urgency-points {
  grid-template-columns: 1fr;
}

.urgency-point {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px solid rgba(214, 168, 79, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(8, 63, 79, 0.08);
}

.urgency-point strong {
  color: var(--sea-dark);
  font-size: 1.08rem;
}

.packages-section {
  background: linear-gradient(180deg, #fff8eb 0%, #f7ebd6 100%);
}

.pricing-section {
  background: linear-gradient(180deg, #fff8eb 0%, #f7ebd6 100%);
}

.packages-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.package-card.featured {
  border-color: rgba(230, 111, 92, 0.48);
  background: var(--white);
  box-shadow: 0 26px 80px rgba(230, 111, 92, 0.16);
}

.badge {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
}

.package-subtitle {
  margin: 10px 0 0;
  min-height: 72px;
}

.price {
  margin: 24px 0 14px;
  color: var(--sea-dark);
  font-size: 2.1rem;
  font-weight: 800;
}

.package-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 26px;
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
}

.package-card .btn {
  margin-top: auto;
}

.pricing-note {
  max-width: 820px;
  margin: 28px 0 0;
  font-size: 0.95rem;
}

.pricing-note-box {
  margin-top: 34px;
  padding: 26px;
  border: 1px solid rgba(15, 107, 123, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(8, 63, 79, 0.1);
}

.pricing-note-box h3 {
  color: var(--sea-dark);
}

.pricing-note-box p {
  max-width: 950px;
  color: var(--muted);
}

.availability-section {
  background: var(--white);
}

.availability-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: start;
}

.calendar-card {
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sand-light);
  box-shadow: 0 18px 50px rgba(8, 63, 79, 0.1);
}

.calendar-header {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.calendar-header h3 {
  text-align: center;
  color: var(--sea-dark);
}

.calendar-nav {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(15, 107, 123, 0.2);
  border-radius: 8px;
  color: var(--sea-dark);
  background: var(--white);
  cursor: pointer;
}

.calendar-nav svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
}

.calendar-weekdays {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-align: center;
}

.calendar-day {
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.calendar-day.is-empty {
  visibility: hidden;
  pointer-events: none;
}

.calendar-day.is-available {
  color: #145b3d;
  background: rgba(31, 143, 95, 0.14);
  border-color: rgba(31, 143, 95, 0.34);
}

.calendar-day.is-booked {
  color: #7e2525;
  background: rgba(185, 52, 52, 0.13);
  border-color: rgba(185, 52, 52, 0.32);
}

.calendar-day.is-selected {
  outline: 3px solid rgba(15, 107, 123, 0.26);
  background: #1f8f5f;
  color: var(--white);
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.available-dot,
.booked-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.available-dot {
  background: #1f8f5f;
}

.booked-dot {
  background: #b93434;
}

.calendar-message,
.calendar-note {
  color: var(--muted);
}

.calendar-message {
  min-height: 26px;
  margin: 18px 0 8px;
  font-weight: 800;
}

.calendar-note {
  margin-bottom: 20px;
  font-size: 0.94rem;
}

.print-section {
  background: var(--white);
}

.print-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: start;
}

.print-grid .section-heading {
  margin-bottom: 0;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-item {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border-left: 4px solid var(--coral);
  border-radius: var(--radius);
  color: var(--sea-dark);
  background: var(--sand-light);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(8, 63, 79, 0.06);
}

.mid-cta {
  display: grid;
  grid-template-columns: 0.8fr 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding: 20px;
  border: 1px solid rgba(15, 107, 123, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(8, 63, 79, 0.1);
}

.mid-cta strong {
  color: var(--sea-dark);
  font-size: 1.1rem;
}

.mid-cta span {
  color: var(--muted);
}

.five-steps {
  grid-template-columns: repeat(5, 1fr);
}

.requirements-section {
  background: var(--sand-light);
}

.requirements-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.requirements-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.requirement-item {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border-left: 4px solid var(--sea);
  border-radius: var(--radius);
  color: var(--sea-dark);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(8, 63, 79, 0.06);
  font-weight: 800;
}

.product-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 231, 208, 0.7)),
    var(--sand);
}

.product-copy-card {
  max-width: 880px;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid rgba(15, 107, 123, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(8, 63, 79, 0.1);
}

.product-copy-card p {
  color: var(--muted);
}

.about-section {
  background: var(--white);
}

.about-card {
  max-width: 900px;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid rgba(15, 107, 123, 0.16);
  border-radius: var(--radius);
  background: var(--sand-light);
  box-shadow: 0 18px 50px rgba(8, 63, 79, 0.08);
}

.about-card p {
  color: var(--muted);
}

.comparison-wrap {
  margin-top: 36px;
  padding: 24px;
  border: 1px solid rgba(15, 107, 123, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 50px rgba(8, 63, 79, 0.1);
  overflow-x: auto;
}

.comparison-wrap h3 {
  margin-bottom: 16px;
  color: var(--sea-dark);
}

.comparison-table {
  min-width: 760px;
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
}

.comparison-row span {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.92rem;
}

.comparison-row span:first-child {
  color: var(--sea-dark);
  font-weight: 800;
  background: #fff7e7;
}

.comparison-row span:last-child {
  border-right: 0;
}

.comparison-row:last-child span {
  border-bottom: 0;
}

.comparison-head span {
  color: var(--white);
  background: var(--sea-dark);
  font-weight: 800;
}

.comparison-head span:first-child {
  color: var(--white);
  background: var(--sea-dark);
}

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

.event-card {
  min-height: 184px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(15, 107, 123, 0.1), rgba(230, 111, 92, 0.1)),
    var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.event-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--sea-dark);
  font-weight: 800;
  font-size: 1.05rem;
}

.locations-section {
  color: var(--white);
  background: var(--sea-dark);
}

.locations-section .eyebrow {
  color: #ffd890;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.location-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

.service-areas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-areas article {
  min-height: 160px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(3, 25, 32, 0.14);
}

.service-areas strong {
  color: var(--white);
  font-size: 1.05rem;
}

.service-areas span {
  color: rgba(255, 255, 255, 0.74);
}

.benefits-section {
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.benefit {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: var(--sand-light);
  font-weight: 800;
}

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

.examples-section {
  background: var(--sand-light);
}

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

.example-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 36px rgba(8, 63, 79, 0.08);
}

.example-card h3 {
  color: var(--sea-dark);
}

.example-card p {
  color: var(--muted);
}

.testimonial-card {
  margin: 0;
  padding: 26px;
}

.testimonial-card blockquote {
  margin: 0 0 22px;
  font-size: 1rem;
}

.testimonial-card figcaption {
  color: var(--sea-dark);
  font-weight: 800;
}

.faq-section {
  background: linear-gradient(180deg, #fff8eb 0%, #ffffff 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--sea-dark);
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.quote-section {
  background:
    linear-gradient(120deg, rgba(15, 107, 123, 0.92), rgba(8, 63, 79, 0.96)),
    var(--sea-dark);
  color: var(--white);
}

.quote-section .eyebrow {
  color: #ffd890;
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  align-items: start;
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-copy h3 {
  margin-top: 28px;
  color: var(--white);
  font-size: 1.4rem;
}

.final-summary {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 50px rgba(3, 25, 32, 0.18);
}

.final-summary p {
  color: rgba(255, 255, 255, 0.82);
}

.final-summary ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.final-summary li {
  position: relative;
  padding-left: 25px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.final-summary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ffd890;
}

.quote-form {
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  background: var(--white);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.two-columns {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  color: #31515b;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(25, 49, 58, 0.2);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfb;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(230, 111, 92, 0.22);
  border-color: var(--coral);
}

textarea {
  resize: vertical;
}

.photographer-option {
  margin: 6px 0 20px;
  padding: 16px;
  border: 1px solid rgba(15, 107, 123, 0.18);
  border-radius: 8px;
  background: rgba(15, 107, 123, 0.05);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--sea);
}

.photographer-note {
  margin: 10px 0 0 30px;
  color: var(--sea-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.photographer-note[hidden] {
  display: none;
}

.form-submit {
  width: 100%;
}

.form-success {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--sea);
  font-weight: 800;
}

.site-footer {
  padding: 22px 16px;
  color: var(--muted);
  background: var(--sand-light);
  border-top: 1px solid var(--line);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 16px 36px rgba(3, 25, 32, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float .whatsapp-icon {
  width: 100%;
  height: 100%;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(3, 25, 32, 0.3);
}

.mobile-sticky-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Versione essenziale: manteniamo solo le informazioni utili alla richiesta. */
.quick-proof,
.intro-band,
.availability-section,
#come-funziona,
.requirements-section,
.product-section,
.about-section,
#eventi,
.locations-section,
.examples-section,
.pricing-note-box {
  display: none;
}

.section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.compact-packages,
.packages-grid {
  align-items: stretch;
}

.package-card {
  min-height: 0;
}

.package-card ul,
.package-card > .btn {
  display: none;
}

.package-card .package-subtitle {
  min-height: 0;
  margin-bottom: 12px;
}

.package-card .price {
  margin-bottom: 10px;
}

.faq-list details:nth-child(n + 5) {
  display: none;
}

.direct-whatsapp {
  width: fit-content;
  margin-top: 24px;
}

.centered-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 14px auto 14px;
    z-index: 40;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav a {
    padding: 14px 12px;
    border-radius: 8px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--sand-light);
  }

  .site-nav a::after {
    display: none;
  }

  .nav-open .site-nav {
    display: flex;
  }

  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .steps-grid,
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .five-steps,
  .examples-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .packages-grid,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .location-grid,
  .benefits-grid,
  .faq-grid,
  .quote-grid,
  .intro-grid,
  .urgency-grid,
  .print-grid,
  .mid-cta,
  .availability-grid,
  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .service-areas {
    grid-template-columns: 1fr;
  }

  .mid-cta .btn {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding: 0 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .brand-lens {
    width: 16px;
    height: 16px;
  }

  .brand-selfie {
    font-size: 1.42rem;
  }

  .brand-box {
    font-size: 1.08rem;
  }

  .brand-place {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .hero {
    min-height: 680px;
    align-items: end;
    padding-bottom: 42px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(8, 63, 79, 0.92) 0%, rgba(8, 63, 79, 0.72) 48%, rgba(8, 63, 79, 0.12) 100%),
      rgba(8, 63, 79, 0.08);
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-offer {
    grid-template-columns: 1fr;
  }

  .hero-price-card {
    width: 100%;
    grid-template-columns: 1fr auto;
  }

  .section {
    padding: 68px 0;
  }

  .quick-proof {
    padding: 12px 0;
  }

  .quick-proof-grid {
  gap: 8px;
}

  .quick-proof-grid div {
    min-height: 68px;
    padding: 12px;
  }

  .quick-proof-grid strong {
    font-size: 1.35rem;
  }

  .quick-proof-grid span {
    font-size: 0.76rem;
  }

  .mid-cta {
    padding: 18px;
  }

  .mid-cta .btn {
    width: 100%;
  }

  .steps-grid,
  .packages-grid,
  .events-grid,
  .testimonials-grid,
  .benefits-list,
  .requirements-list,
  .two-columns,
  .five-steps,
  .examples-grid {
    grid-template-columns: 1fr;
  }

  .comparison-wrap {
    margin-left: -16px;
    margin-right: -16px;
    padding: 18px 16px;
    border-radius: 0;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 34;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 12px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(25, 49, 58, 0.14);
    background: rgba(255, 248, 235, 0.94);
    box-shadow: 0 -12px 34px rgba(8, 63, 79, 0.14);
    backdrop-filter: blur(14px);
  }

  .mobile-sticky-cta span {
    color: var(--sea-dark);
    font-size: 0.84rem;
    font-weight: 800;
  }

  .mobile-sticky-cta .btn {
    min-height: 44px;
    padding: 0 10px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .site-footer {
    padding-bottom: 82px;
  }

  .package-subtitle {
    min-height: auto;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
