@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap");

:root {
  --navy-950: #081a2d;
  --navy-900: #0a2340;
  --navy-850: #0d2f52;
  --teal-600: #1296a8;
  --teal-500: #13b6c8;
  --aqua-300: #90e6ef;
  --gold-500: #d4a33f;
  --sand-100: #f5f5f1;
  --white: #ffffff;
  --text-900: #122338;
  --text-700: #435266;
  --text-500: #6b7888;
  --line: rgba(10, 35, 64, 0.1);
  --shadow-soft: 0 20px 50px rgba(10, 35, 64, 0.08);
  --shadow-hero: 0 30px 90px rgba(7, 24, 38, 0.22);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text-900);
  background: linear-gradient(180deg, #fbfbf8 0%, #f4f5ef 100%);
  overflow-x: hidden;
}

body.is-loaded .hero__copy > * {
  opacity: 1;
  transform: none;
}

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

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

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

p,
ul {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -8rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: var(--navy-900);
}

.skip-link:focus {
  top: 1rem;
}

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

.shell,
.site-header__shell {
  width: min(1440px, calc(100% - 4rem));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.section--light {
  background: linear-gradient(180deg, #fafaf7 0%, #f4f4ef 100%);
}

.section-label,
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--teal-600);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-label::before,
.hero__eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.section-heading {
  max-width: 40rem;
  margin-bottom: 2.4rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .section-label {
  justify-content: center;
}

.section-heading h2 {
  margin-top: 1rem;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.06;
  color: var(--navy-950);
}

.section-heading p {
  margin-top: 1rem;
  color: var(--text-700);
  font-size: 1.05rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.6rem;
  padding: 0.95rem 1.45rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button__icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
}

.button__icon svg {
  width: 100%;
  fill: currentColor;
}

.button--primary {
  background: linear-gradient(180deg, #18c5d4 0%, #0fa1b2 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(19, 182, 200, 0.28);
}

.button--secondary,
.button--ghost {
  background: #fff;
  color: var(--navy-900);
  border-color: rgba(10, 35, 64, 0.16);
}

.button--ghost-light {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}

.button:focus-visible,
.site-nav a:focus-visible,
.header-utility:focus-visible,
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible,
.footer-links a:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(144, 230, 239, 0.38);
  outline-offset: 2px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 26, 45, 0.82);
  box-shadow: 0 10px 40px rgba(6, 18, 32, 0.16);
  backdrop-filter: blur(18px);
}

.site-header__shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: #fff;
}

.brand__mark {
  display: block;
  width: 4.8rem;
  height: auto;
  flex: none;
  filter:
    drop-shadow(0 0 2px rgba(255, 255, 255, 0.22))
    drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
}

.brand__lockup {
  display: grid;
  gap: 0.2rem;
}

.brand__title,
.brand__subtitle {
  display: block;
  text-transform: uppercase;
}

.brand__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.12rem;
  line-height: 0.88;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.brand__subtitle {
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.6em;
  color: var(--teal-500);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 2.6rem;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.7rem;
  width: 100%;
  height: 2px;
  background: var(--teal-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-utility {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

.header-utility svg {
  width: 1rem;
  fill: currentColor;
}

.header-utility--pill {
  min-height: 3rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.46);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 0.25rem auto;
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero__media,
.hero__media img,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04) translate3d(0, var(--parallax-shift, 0px), 0);
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(8, 26, 45, 0.9) 0%, rgba(8, 26, 45, 0.7) 36%, rgba(8, 26, 45, 0.28) 72%, rgba(8, 26, 45, 0.22) 100%),
    linear-gradient(180deg, rgba(7, 18, 31, 0.15), rgba(7, 18, 31, 0.4));
}

.hero--home {
  min-height: 100svh;
}

.hero__layout {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 42rem);
  justify-content: start;
  align-items: end;
  gap: 2rem;
  padding: 10rem 0 4.5rem;
}

.hero__copy {
  color: #fff;
}

.hero__copy > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.hero__copy > :nth-child(1) {
  transition-delay: 60ms;
}

.hero__copy > :nth-child(2) {
  transition-delay: 160ms;
}

.hero__copy > :nth-child(3) {
  transition-delay: 260ms;
}

.hero__copy > :nth-child(4) {
  transition-delay: 340ms;
}

.hero__copy > :nth-child(5) {
  transition-delay: 420ms;
}

.hero__copy h1,
.hero__page-shell h1 {
  margin-top: 1.3rem;
  max-width: 10ch;
  color: #fff;
  font-size: clamp(3.6rem, 6vw, 6.2rem);
  line-height: 0.98;
}

.hero__lead {
  margin-top: 1.5rem;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.23rem;
  line-height: 1.65;
}

.hero__lead--compact {
  max-width: 44rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.trust-chips {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 1.2rem 1.6rem;
  align-items: center;
  margin-top: 2rem;
}

.trust-chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.98);
  font-size: 1rem;
  font-weight: 600;
}

.trust-chips svg {
  width: 1.25rem;
  fill: var(--teal-500);
}

.hero--page {
  min-height: 74svh;
}

.hero__page-shell {
  position: relative;
  z-index: 1;
  min-height: 74svh;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #fff;
  padding: 10rem 0 4.8rem;
}

.trust-strip {
  background: #fff;
}

.trust-strip__shell {
  padding: 3rem 0 3.8rem;
}

.trust-strip__shell h2 {
  text-align: center;
  color: var(--navy-950);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 2.6rem;
}

.trust-item {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.65rem;
  padding: 0 1.25rem;
  border-left: 1px solid rgba(10, 35, 64, 0.14);
}

.trust-item:first-child {
  border-left: 0;
}

.trust-item__icon {
  width: 2rem;
  height: 2rem;
  color: var(--navy-900);
}

.trust-item__icon svg {
  width: 100%;
  fill: currentColor;
}

.trust-item h3 {
  font-size: 1.1rem;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-weight: 800;
}

.trust-item p {
  color: var(--text-700);
  font-size: 0.95rem;
}

.care-grid,
.package-detail-grid,
.addon-grid,
.footer-links,
.contact-layout,
.local-pillars {
  display: grid;
}

.care-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
}

.care-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(10, 35, 64, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.care-card__media img {
  width: 100%;
  aspect-ratio: 1.08 / 0.9;
  object-fit: cover;
}

.care-card__body {
  position: relative;
  padding: 2.3rem 1.25rem 1.35rem;
}

.care-card__badge {
  position: absolute;
  top: -1.45rem;
  left: 1.25rem;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #18c5d4 0%, #0fa1b2 100%);
  box-shadow: 0 12px 24px rgba(19, 182, 200, 0.22);
}

.care-card__badge svg {
  width: 1.2rem;
  fill: currentColor;
}

.care-card h3 {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.care-card p {
  margin-top: 0.8rem;
  color: var(--text-700);
  line-height: 1.75;
}

.local-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 2.2rem;
  align-items: center;
}

.local-section__media img {
  width: 100%;
  min-height: 32rem;
  object-fit: cover;
  border-radius: 1.4rem;
  box-shadow: var(--shadow-soft);
}

.local-section__copy h2 {
  margin-top: 1rem;
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  line-height: 1.06;
  color: var(--navy-950);
}

.local-section__copy p {
  margin-top: 1rem;
  color: var(--text-700);
  line-height: 1.8;
}

.local-pillars {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.local-pillar {
  display: grid;
  gap: 0.8rem;
}

.local-pillar__icon {
  width: 2rem;
  height: 2rem;
  color: var(--navy-900);
}

.local-pillar__icon svg {
  width: 100%;
  fill: currentColor;
}

.local-pillar h3 {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.local-pillar p {
  margin-top: 0.3rem;
  font-size: 0.95rem;
}

.packages-preview {
  color: #fff;
  background: linear-gradient(180deg, #08203a 0%, #071728 100%);
}

.packages-preview .section-label {
  color: var(--teal-500);
}

.packages-preview__shell {
  display: grid;
  grid-template-columns: 20rem minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.packages-preview__intro h2 {
  margin-top: 1rem;
  font-size: clamp(2.4rem, 3.8vw, 4rem);
  line-height: 1.05;
}

.packages-preview__intro p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.packages-preview__intro .button {
  margin-top: 2rem;
}

.packages-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.package-card {
  position: relative;
  background: #fff;
  border-radius: 1.35rem;
  box-shadow: var(--shadow-soft);
}

.package-card--preview {
  padding: 1.6rem 1.35rem 1.5rem;
  text-align: center;
}

.package-card--detail {
  padding: 1.8rem;
  border: 1px solid rgba(10, 35, 64, 0.08);
}

.package-card--featured {
  border: 2px solid rgba(19, 182, 200, 0.7);
  box-shadow: 0 22px 60px rgba(15, 161, 178, 0.22);
  transform: translateY(-0.9rem);
}

.package-card__flag {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  border-radius: 1.2rem 1.2rem 0 0;
  background: linear-gradient(180deg, #18c5d4 0%, #0fa1b2 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

.package-card--preview.package-card--featured {
  padding-top: 3.3rem;
}

.package-card--detail.package-card--featured {
  padding-top: 4.5rem;
}

.package-card h3 {
  color: var(--navy-950);
  font-size: 1.5rem;
}

.package-card__from {
  margin-top: 1.15rem;
  color: var(--text-500);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-card__value {
  margin-top: 0.35rem;
  color: var(--navy-900);
  font-size: clamp(3rem, 4vw, 4rem);
  line-height: 1;
}

.package-card__unit {
  color: var(--text-500);
}

.package-card__summary,
.package-card__bestfor,
.addon-card p:last-child,
.pricing-note p,
.contact-panel > p,
.success-card > p,
.field input,
.field select,
.field textarea,
.form-note,
.contact-quicklink span,
.sidebar-list,
.success-card__summary p {
  color: var(--text-700);
}

.package-card__summary {
  margin-top: 1.2rem;
  line-height: 1.7;
}

.package-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.4rem;
  color: var(--teal-600);
  font-weight: 700;
}

.package-card__link::after {
  content: "→";
}

.package-card__price {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--teal-600);
}

.billing-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.3rem;
  margin-top: 1rem;
  padding: 0.3rem;
  background: rgba(10, 35, 64, 0.06);
  border: 1px solid rgba(10, 35, 64, 0.1);
  border-radius: 0.9rem;
}

.billing-toggle__button {
  min-height: 2.4rem;
  border: 0;
  border-radius: 0.65rem;
  background: transparent;
  color: var(--text-700);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.billing-toggle__button.is-active {
  background: #fff;
  color: var(--navy-950);
  box-shadow: 0 8px 18px rgba(10, 35, 64, 0.08);
}

.package-card__billing-note {
  margin-top: 0.55rem;
  color: var(--text-500);
  font-size: 0.9rem;
  line-height: 1.55;
}

.package-card__bestfor {
  margin-top: 1rem;
  line-height: 1.7;
}

.package-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.package-list li {
  position: relative;
  padding-left: 1.25rem;
  line-height: 1.7;
}

.package-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--teal-600);
}

.package-card--detail .button {
  width: 100%;
  margin-top: 1.5rem;
}

.package-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.addon-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 2rem;
}

.addon-card {
  padding: 1.45rem;
  background: #fff;
  border: 1px solid rgba(10, 35, 64, 0.08);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.addon-card__icon {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #18c5d4 0%, #0fa1b2 100%);
}

.addon-card__icon svg {
  width: 1.15rem;
  fill: currentColor;
}

.addon-card h3 {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: var(--navy-950);
}

.addon-card__price {
  margin-top: 0.5rem;
  font-weight: 800;
  color: var(--teal-600);
}

.addon-card p:last-child {
  margin-top: 0.7rem;
  line-height: 1.7;
}

.pricing-note {
  margin-top: 1.5rem;
  padding: 1.35rem 1.45rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(10, 35, 64, 0.08);
  border-radius: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.pricing-note strong {
  display: block;
  color: var(--navy-950);
}

.pricing-note p {
  margin-top: 0.55rem;
}

.closing-section {
  padding: 0;
  background: linear-gradient(180deg, #081a2d 0%, #061220 100%);
  color: #fff;
}

.closing-section__shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 33rem);
  gap: 2rem;
  align-items: end;
  padding-top: 3.8rem;
}

.closing-section__copy {
  padding-bottom: 3.2rem;
}

.closing-section__copy h2 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1.06;
}

.closing-section__copy p {
  margin-top: 1rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.closing-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.closing-section__media img {
  width: 100%;
  min-height: 22rem;
  object-fit: cover;
  border-radius: 1.6rem 1.6rem 0 0;
}

.closing-section--page .closing-section__copy h2 {
  max-width: 16ch;
}

.site-footer {
  background: #061220;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 12rem 18rem auto;
  gap: 2rem;
  align-items: end;
  padding: 1.9rem 0 1.25rem;
}

.brand--footer .brand__mark {
  width: 4.3rem;
}

.brand--footer .brand__title {
  font-size: 1.95rem;
}

.brand--footer .brand__subtitle {
  font-size: 0.72rem;
  letter-spacing: 0.56em;
}

.site-footer__tagline {
  margin-top: 0.85rem;
  color: var(--teal-500);
  font-size: 0.95rem;
}

.site-footer__column h2 {
  margin-bottom: 0.75rem;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  gap: 0.45rem;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
}

.footer-links a:hover {
  color: #fff;
}

.site-footer__socials {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
}

.site-footer__socials a {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.site-footer__socials svg {
  width: 1.05rem;
  fill: #fff;
}

.site-footer__bottom {
  padding: 0.85rem 0 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.contact-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 28rem);
  gap: 1.5rem;
  align-items: start;
}

.contact-panel,
.success-card {
  padding: 1.8rem;
  background: #fff;
  border: 1px solid rgba(10, 35, 64, 0.08);
  border-radius: 1.6rem;
  box-shadow: var(--shadow-soft);
}

.contact-panel h2,
.success-card h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--navy-950);
}

.contact-panel > p,
.success-card > p {
  margin-top: 0.9rem;
  line-height: 1.75;
}

.contact-form {
  margin-top: 1.5rem;
}

.contact-form__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field span {
  color: var(--navy-950);
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  font: inherit;
  background: #fbfbfa;
  border: 1px solid rgba(10, 35, 64, 0.12);
  border-radius: 14px;
}

.field textarea {
  resize: vertical;
}

.contact-form .button {
  margin-top: 1rem;
}

.form-note {
  margin-top: 1rem;
  line-height: 1.7;
}

.contact-quicklink {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  background: linear-gradient(180deg, rgba(19, 182, 200, 0.1), rgba(19, 182, 200, 0.04));
  border: 1px solid rgba(19, 182, 200, 0.18);
  border-radius: 1rem;
}

.contact-quicklink__icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  color: var(--teal-600);
}

.contact-quicklink__icon svg {
  width: 100%;
  fill: currentColor;
}

.contact-quicklink strong {
  display: block;
  color: var(--navy-950);
  font-size: 1rem;
}

.contact-sidebar__group {
  margin-top: 1.5rem;
}

.contact-sidebar__group h3 {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy-950);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-sidebar__group p {
  margin-top: 0.6rem;
  color: var(--text-700);
}

.sidebar-list {
  margin-top: 0.65rem;
  padding-left: 1.1rem;
  line-height: 1.85;
}

.sidebar-list--links {
  padding-left: 0;
  list-style: none;
}

.success-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.success-card__summary {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  background: rgba(19, 182, 200, 0.08);
  border-radius: 1rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #18c5d4 0%, #0fa1b2 100%);
  box-shadow: 0 14px 28px rgba(15, 161, 178, 0.28);
  animation: pulse 2.8s ease-in-out infinite;
}

.mobile-contact-bar {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 14px 28px rgba(15, 161, 178, 0.28);
  }
  50% {
    box-shadow: 0 14px 32px rgba(15, 161, 178, 0.36), 0 0 0 10px rgba(19, 182, 200, 0.12);
  }
}

@media (max-width: 1200px) {
  .hero__layout,
  .local-section,
  .packages-preview__shell,
  .closing-section__shell,
  .contact-layout,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__layout {
    padding-bottom: 3.5rem;
  }

  .trust-strip__grid,
  .care-grid,
  .package-detail-grid,
  .packages-preview__grid,
  .addon-grid,
  .local-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__socials {
    justify-content: flex-start;
  }
}

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

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(8, 26, 45, 0.96);
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
  }

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

  .header-actions {
    display: none;
  }

  .hero__layout,
  .hero__page-shell {
    padding-top: 8.8rem;
  }

  .trust-strip__grid {
    gap: 1.5rem 0;
  }

  .trust-item {
    border-left: 1px solid rgba(10, 35, 64, 0.14);
  }

  .trust-item:nth-child(2n + 1) {
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .shell,
  .site-header__shell {
    width: min(100% - 1.4rem, 1440px);
  }

  .section {
    padding: 4.2rem 0;
  }

  .site-header__shell {
    grid-template-columns: auto auto;
  }

  .brand {
    gap: 0.72rem;
  }

  .brand__mark {
    width: 3.6rem;
  }

  .brand__title {
    font-size: 1.68rem;
    letter-spacing: 0.13em;
  }

  .brand__subtitle {
    font-size: 0.62rem;
    letter-spacing: 0.5em;
  }

  .brand--footer .brand__mark {
    width: 3.7rem;
  }

  .brand--footer .brand__title {
    font-size: 1.72rem;
  }

  .brand--footer .brand__subtitle {
    font-size: 0.64rem;
    letter-spacing: 0.46em;
  }

  .hero__copy h1,
  .hero__page-shell h1 {
    font-size: clamp(3rem, 12vw, 4.3rem);
  }

  .hero__lead {
    font-size: 1.05rem;
  }

  .hero__layout {
    min-height: auto;
    padding-bottom: 2.6rem;
  }

  .hero__actions,
  .closing-section__actions,
  .success-card__actions {
    width: 100%;
  }

  .hero__actions .button,
  .closing-section__actions .button,
  .success-card__actions .button {
    flex: 1 1 100%;
  }

  .trust-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 1.35rem;
  }

  .trust-chips span {
    min-height: 2.55rem;
    padding: 0.45rem 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0.85rem;
    background: rgba(8, 26, 45, 0.28);
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .trust-chips svg {
    width: 1rem;
    flex: none;
  }

  .trust-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem 0;
  }

  .trust-item {
    padding: 0 0.85rem;
    border-left: 1px solid rgba(10, 35, 64, 0.14);
  }

  .trust-item:nth-child(2n + 1) {
    border-left: 0;
  }

  .trust-chips span:last-child {
    grid-column: 1 / -1;
  }

  .care-grid,
  .package-detail-grid,
  .packages-preview__grid,
  .addon-grid,
  .local-pillars,
  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .local-section__media img,
  .closing-section__media img {
    min-height: 20rem;
  }

  .floating-whatsapp {
    bottom: 5rem;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
    z-index: 45;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    padding: 0.45rem;
    background: rgba(8, 26, 45, 0.94);
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
  }

  .mobile-contact-bar a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 2.8rem;
    border-radius: 0.8rem;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.08);
  }

  .site-footer__bottom {
    padding-bottom: 7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal],
  body .hero__copy > * {
    opacity: 1 !important;
    transform: none !important;
  }
}
