:root {
  --ink: #102033;
  --muted: #5c6b7a;
  --paper: #ffffff;
  --surface: #f6fbff;
  --blue: #0877c8;
  --teal: #13b4c8;
  --yellow: #ffe14a;
  --orange: #ff7a1a;
  --pink: #ff5d8f;
  --green: #44c767;
  --purple: #6a5cff;
  --line: #d8e1ec;
  --shadow: 0 18px 38px rgba(16, 32, 51, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfdff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.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;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 4px 4px 0 rgba(16, 32, 51, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-icon.whatsapp {
  background: #25d366;
}

.social-icon.instagram {
  background: #ff5d8f;
}

.social-icon:hover,
.social-icon:focus-visible {
  transform: translateY(-1px);
  box-shadow: 3px 3px 0 var(--yellow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 10px 28px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(216, 225, 236, 0.88);
  box-shadow: 0 8px 24px rgba(16, 32, 51, 0.08);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 128px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
  background: #edf8ff;
}

.site-nav .nav-cta {
  margin-left: 8px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--teal);
}

.nav-socials {
  margin-left: 8px;
}

.site-nav .social-icon {
  padding: 0;
  color: var(--paper);
}

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

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 32, 51, 0.86), rgba(16, 32, 51, 0.46) 50%, rgba(16, 32, 51, 0.16)),
    linear-gradient(135deg, rgba(255, 225, 74, 0.2), rgba(19, 180, 200, 0.14) 54%, rgba(255, 93, 143, 0.18));
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 82px;
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 5rem;
  line-height: 0.95;
  text-shadow: 4px 4px 0 rgba(8, 119, 200, 0.5);
}

.hero-copy {
  max-width: 600px;
  margin: 22px 0 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badges span {
  padding: 8px 12px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
  background: var(--paper);
  border: 2px solid rgba(16, 32, 51, 0.94);
  border-radius: 8px;
  box-shadow: 3px 3px 0 var(--orange);
}

.hero-badges span:nth-child(2) {
  box-shadow: 3px 3px 0 var(--teal);
}

.hero-badges span:nth-child(3) {
  box-shadow: 3px 3px 0 var(--pink);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button.primary {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--teal);
}

.button.secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 3px 3px 0 var(--orange);
}

.quick-facts {
  width: min(1120px, calc(100% - 40px));
  margin: 30px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-facts div {
  padding: 26px 28px;
  border-right: 1px solid var(--line);
  box-shadow: inset 0 6px 0 var(--yellow);
}

.quick-facts div:nth-child(2) {
  box-shadow: inset 0 6px 0 var(--teal);
}

.quick-facts div:nth-child(3) {
  box-shadow: inset 0 6px 0 var(--pink);
}

.quick-facts div:last-child {
  border-right: 0;
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts strong {
  font-size: 1.6rem;
  line-height: 1.1;
}

.quick-facts span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
  scroll-margin-top: 96px;
}

.section-tight {
  padding-top: 20px;
}

.split,
.about,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 64px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
}

.section h2 {
  margin: 0;
  font-size: 2.8rem;
  line-height: 1.05;
}

.section h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  line-height: 1.2;
}

.section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-copy p:last-child,
.band-content p {
  margin-bottom: 0;
}

.image-frame {
  border-radius: 8px;
  border: 6px solid var(--paper);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card,
.price-card {
  min-height: 250px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.08);
  overflow: hidden;
}

.card {
  border-top: 8px solid var(--yellow);
}

.card:nth-child(2) {
  border-top-color: var(--teal);
  background: #f0fcff;
}

.card:nth-child(3) {
  border-top-color: var(--pink);
  background: #fff4f8;
}

.tag {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-band {
  width: 100%;
  margin: 12px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  gap: 0;
  align-items: stretch;
  padding: 0;
  background: var(--ink);
  border-top: 10px solid var(--yellow);
  border-bottom: 10px solid var(--teal);
}

.band-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.band-content {
  padding: 72px;
  color: var(--paper);
  background:
    repeating-linear-gradient(135deg, rgba(255, 225, 74, 0.1) 0 10px, rgba(255, 255, 255, 0) 10px 22px),
    var(--ink);
}

.band-content p {
  color: #dbe7f4;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 32px;
}

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

.price-card {
  background: var(--paper);
  min-height: 310px;
}

.price-card.highlight {
  background: var(--yellow);
  border-color: var(--ink);
  box-shadow: 6px 6px 0 var(--teal);
}

.price-card:nth-child(2) {
  background: #eefcff;
}

.price-card:nth-child(3) {
  background: #fff8dc;
}

.price-card:nth-child(4) {
  background: #fff1f6;
}

.price {
  margin: 0 0 18px;
  color: var(--ink) !important;
  font-size: 2.15rem !important;
  font-weight: 900;
}

.price-card ul,
.check-list {
  padding-left: 20px;
  margin: 0;
  color: var(--muted);
}

.price-card li,
.check-list li {
  margin: 10px 0;
}

.note {
  max-width: 820px;
  margin: 28px 0 0;
  padding: 18px 22px;
  color: var(--ink) !important;
  background: #eaf9fb;
  border-left: 5px solid var(--teal);
  border-radius: 8px;
}

.gallery {
  width: 100%;
  padding-left: max(20px, calc((100% - 1120px) / 2));
  padding-right: max(20px, calc((100% - 1120px) / 2));
  background:
    linear-gradient(180deg, #eefbff 0, #fff9dc 100%);
  border-top: 1px solid #dff0f6;
  border-bottom: 1px solid #f1e4bc;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
  border: 6px solid var(--paper);
  box-shadow: 0 14px 28px rgba(16, 32, 51, 0.12);
}

.gallery-grid img:first-child {
  height: 440px;
}

.about {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
}

.about img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact {
  align-items: start;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-links a {
  color: var(--blue);
  font-weight: 800;
}

.contact-socials {
  flex-wrap: wrap;
  margin-top: 22px;
}

.contact-socials .social-icon {
  width: auto;
  min-width: 150px;
  gap: 10px;
  padding: 0 16px;
  color: var(--paper);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: #eefbff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--paper);
  border: 1px solid #bdc9d6;
  border-radius: 8px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(19, 180, 200, 0.32);
  border-color: var(--teal);
}

.contact-form .button {
  width: fit-content;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--blue) !important;
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 30px 20px;
  color: var(--paper);
  background:
    repeating-linear-gradient(135deg, rgba(255, 225, 74, 0.08) 0 10px, rgba(255, 255, 255, 0) 10px 22px),
    var(--ink);
}

.site-footer img {
  width: 92px;
}

.site-footer p {
  margin: 0;
  font-weight: 900;
}

.site-footer a {
  color: var(--yellow);
  font-weight: 800;
}

.footer-socials {
  margin-left: 4px;
}

.site-footer .social-icon {
  color: var(--paper);
}

@media (max-width: 980px) {
  .hero {
    min-height: 580px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .quick-facts,
  .cards,
  .price-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .split.reverse,
  .about,
  .contact,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .split.reverse .image-frame {
    order: 2;
  }

  .band-content {
    padding: 48px 28px;
  }

  .gallery-grid img,
  .gallery-grid img:first-child {
    height: 320px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 8px 18px;
  }

  .brand img {
    width: 104px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 18px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .site-nav .nav-cta {
    width: fit-content;
    margin-left: 0;
    padding: 10px 16px;
  }

  .nav-socials {
    margin-top: 8px;
    margin-left: 0;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    width: min(100% - 32px, 1120px);
    padding-top: 58px;
    padding-bottom: 82px;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

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

  .quick-facts {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    margin-top: 20px;
  }

  .quick-facts div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-facts div:last-child {
    border-bottom: 0;
  }

  .section {
    width: calc(100% - 32px);
    padding: 68px 0;
  }

  .section h2 {
    font-size: 2.1rem;
  }

  .cards,
  .price-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .price-card {
    min-height: auto;
  }

  .feature-band {
    width: 100%;
  }

  .band-media img {
    min-height: 300px;
  }

  .gallery {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .gallery-grid img,
  .gallery-grid img:first-child {
    height: 270px;
  }
}
