:root {
  --bg: #f5f1e8;
  --bg-alt: #efe7d8;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #fffdfa;
  --surface-dark: #0b1f31;
  --surface-dark-2: #10283d;
  --ink: #132435;
  --ink-soft: #4b5d6d;
  --ink-inverse: #f4f0e8;
  --line: rgba(19, 36, 53, 0.12);
  --line-strong: rgba(19, 36, 53, 0.2);
  --brand: #0f6a6e;
  --brand-deep: #0b5056;
  --accent: #c79b46;
  --accent-soft: #ead6aa;
  --accent-deep: #976f25;
  --success: #1ea97c;
  --shadow-sm: 0 12px 30px rgba(8, 22, 35, 0.08);
  --shadow-md: 0 18px 48px rgba(8, 22, 35, 0.12);
  --shadow-lg: 0 28px 70px rgba(8, 22, 35, 0.22);
  --radius-xs: 12px;
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --container: min(1180px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(199, 155, 70, 0.18), transparent 24%),
    radial-gradient(circle at right 12%, rgba(15, 106, 110, 0.12), transparent 24%),
    linear-gradient(180deg, #0b1d2f 0, #10253b 8rem, #f5f1e8 28rem, #efe6d8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 70%);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 6.5rem 0;
}

.section-tag,
.eyebrow,
.panel-label,
.mini-label {
  margin: 0 0 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

.section-tag,
.eyebrow,
.panel-label {
  color: var(--brand);
}

.mini-label {
  color: var(--accent-soft);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

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

.section-heading h2,
.trust-grid h2,
.about-content h2,
.cta-card h2,
.contact-content h2,
.promo-banner h2 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.topbar {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 18, 29, 0.72);
  color: rgba(244, 240, 232, 0.78);
  backdrop-filter: blur(14px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3rem;
  font-size: 0.94rem;
}

.topbar-inner p {
  color: inherit;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-weight: 600;
}

.topbar-actions a:last-child {
  color: var(--accent-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 1rem 0;
  transition:
    padding 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  padding: 0.7rem 0;
  background: rgba(8, 25, 39, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 30px rgba(5, 14, 24, 0.28);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(8, 25, 39, 0.62);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 16.5rem;
  max-width: min(48vw, 16.5rem);
  height: auto;
  filter: brightness(1.08);
}

.brand-logo-footer {
  width: 14rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
}

.site-nav a {
  position: relative;
  padding: 0.35rem 0;
  color: rgba(244, 240, 232, 0.72);
  font-size: 0.97rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0.24rem auto;
  background: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.35rem;
  padding: 0.9rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  color: #fefcf7;
  background: linear-gradient(135deg, #0f6a6e, #0b5056);
  box-shadow: 0 18px 35px rgba(15, 106, 110, 0.26);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(19, 36, 53, 0.08);
  box-shadow: var(--shadow-sm);
}

.button-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #c79b46, #976f25);
  box-shadow: 0 18px 35px rgba(151, 111, 37, 0.24);
}

.button-call {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
}

.button-tertiary,
.button-outline-light {
  color: var(--ink);
  background: transparent;
  border-color: var(--line-strong);
}

.button-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-section {
  padding: 2.5rem 0 5rem;
  background:
    linear-gradient(180deg, rgba(8, 25, 39, 0.96) 0, rgba(8, 25, 39, 0.88) 42%, rgba(8, 25, 39, 0.12) 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 2rem 0 auto;
  height: 40rem;
  background:
    radial-gradient(circle at 8% 12%, rgba(199, 155, 70, 0.18), transparent 22%),
    radial-gradient(circle at 92% 18%, rgba(15, 106, 110, 0.2), transparent 22%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 2rem;
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(7, 20, 31, 0.94), rgba(10, 31, 47, 0.9)),
    rgba(8, 25, 39, 0.86);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 10rem;
  background: linear-gradient(180deg, rgba(199, 155, 70, 0.12), transparent);
  pointer-events: none;
}

.hero-copy .eyebrow {
  color: var(--accent-soft);
}

.hero-copy > * {
  animation: lift-in 640ms ease both;
}

.hero-copy > :nth-child(2) {
  animation-delay: 70ms;
}

.hero-copy > :nth-child(3) {
  animation-delay: 120ms;
}

.hero-copy > :nth-child(4) {
  animation-delay: 170ms;
}

.hero-copy > :nth-child(5) {
  animation-delay: 220ms;
}

.hero-copy > :nth-child(6) {
  animation-delay: 270ms;
}

.hero-copy h1 {
  max-width: 12ch;
  color: #fefcf7;
  font-size: clamp(3.4rem, 7vw, 6.1rem);
}

.hero-lead {
  max-width: 40rem;
  margin-top: 1.3rem;
  font-size: 1.05rem;
  color: rgba(244, 240, 232, 0.8);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.hero-pills span {
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 250, 242, 0.96);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-banner-message {
  max-width: 36rem;
  margin-top: 1.5rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.hero-banner-message strong {
  display: block;
  margin-bottom: 0.55rem;
  color: #fff;
  font-size: 1.05rem;
}

.hero-banner-message p {
  color: rgba(255, 248, 238, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.hero-mini-proof,
.hero-proof {
  display: grid;
  gap: 1rem;
}

.hero-mini-proof {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.7rem;
}

.hero-mini-proof > div,
.hero-proof article {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.09);
}

.hero-mini-proof strong,
.hero-proof strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: 1rem;
}

.hero-mini-proof span,
.hero-proof span {
  color: rgba(255, 248, 238, 0.86);
  line-height: 1.55;
}

.hero-proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.hero-visual {
  position: relative;
  min-height: 42rem;
}

.hero-visual-backdrop {
  position: absolute;
  inset: 2rem 1.5rem 1rem auto;
  width: 78%;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(199, 155, 70, 0.16), rgba(15, 106, 110, 0.1)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
}

.hero-slider {
  position: relative;
  height: 100%;
  min-height: 42rem;
  padding: 0 0 2rem 2rem;
}

.hero-slider-track {
  position: relative;
  height: 100%;
  min-height: 36rem;
}

.hero-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 12, 20, 0.04), rgba(4, 12, 20, 0.72));
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

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

.hero-slide-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.55rem;
}

.hero-slide-overlay strong {
  display: block;
  max-width: 18ch;
  margin-bottom: 0.55rem;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.02;
}

.hero-slide-overlay p {
  max-width: 28rem;
  color: rgba(244, 240, 232, 0.82);
}

.hero-slider-ui {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-floating-card,
.hero-slider-controls {
  position: absolute;
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 25, 39, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}

.hero-floating-card {
  padding: 1rem 1.05rem;
  border-radius: 20px;
}

.stats-card {
  top: 1.3rem;
  left: 0;
  width: min(16rem, 54%);
}

.contact-card {
  right: 0;
  bottom: 5.5rem;
  width: min(16rem, 54%);
}

.contact-card a {
  display: inline-block;
  margin-top: 0.55rem;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
}

.hero-floating-card strong {
  display: block;
  color: #fff;
  line-height: 1.4;
}

.hero-slider-controls {
  left: 2.4rem;
  right: 2.4rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.85rem;
  border-radius: 999px;
}

.slider-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.slider-dot {
  width: 0.75rem;
  height: 0.75rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.slider-dot.is-active {
  transform: scale(1.2);
  background: var(--accent);
}

.promo-banner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin-top: 3.5rem;
  padding: 1.7rem 1.8rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(8, 25, 39, 0.94), rgba(14, 43, 65, 0.88)),
    var(--surface-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.promo-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(199, 155, 70, 0.08), transparent);
  pointer-events: none;
}

.promo-banner-copy h2 {
  color: #fff;
  font-size: clamp(2.05rem, 4vw, 3.2rem);
}

.promo-banner-copy p:last-child {
  margin-top: 0.8rem;
  color: rgba(244, 240, 232, 0.7);
}

.promo-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.hero-belt {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.hero-belt article {
  padding: 1.2rem 1.2rem 1.25rem;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-sm);
}

.hero-belt span,
.contact-info-grid span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-belt strong,
.contact-info-grid strong {
  color: var(--ink);
  font-size: 1rem;
}

.trust-section {
  padding-top: 5rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 1rem;
}

.trust-grid article {
  padding: 1.6rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 250, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
}

.trust-grid article:first-child {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(234, 214, 170, 0.38)),
    var(--surface);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 38rem;
}

.image-stack figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.stack-large {
  position: absolute;
  inset: 0 4.4rem 0 0;
}

.stack-small {
  position: absolute;
  right: 0;
  bottom: 1.6rem;
  width: 42%;
  border: 8px solid rgba(255, 253, 250, 0.85);
}

.image-stack img {
  height: 100%;
  object-fit: cover;
}

.about-content {
  display: grid;
  gap: 1rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.6rem;
}

.highlight-card {
  padding: 1.25rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
}

.highlight-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-size: 1rem;
}

.gallery-section {
  background:
    radial-gradient(circle at 10% 18%, rgba(199, 155, 70, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(12, 32, 49, 0.98), rgba(8, 25, 39, 0.98));
}

.gallery-section .section-tag,
.gallery-section h2,
.gallery-section p {
  color: var(--ink-inverse);
}

.gallery-section .section-tag {
  color: var(--accent-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  position: relative;
  grid-column: span 4;
  min-height: 18rem;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
}

.gallery-card-large {
  grid-column: span 6;
  grid-row: span 2;
  min-height: 37rem;
}

.gallery-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 18, 29, 0.08), rgba(6, 18, 29, 0.72));
}

.gallery-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.35rem;
}

.gallery-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: 1.1rem;
}

.gallery-card span {
  color: rgba(244, 240, 232, 0.78);
  line-height: 1.5;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.services-grid,
.packages-grid,
.testimonials-grid {
  display: grid;
  gap: 1rem;
}

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

.service-card,
.package-card,
.testimonial-card,
.hours-card,
.contact-form-card {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
}

.service-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.45rem;
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(15, 106, 110, 0.1);
  color: var(--brand-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.service-card h3,
.package-card h3,
.testimonial-author strong,
.hours-card h3,
.contact-form-card h3,
.site-footer h3 {
  font-size: 2rem;
  color: var(--ink);
}

.service-card-cta {
  background:
    linear-gradient(155deg, rgba(11, 31, 49, 0.96), rgba(15, 50, 74, 0.92)),
    var(--surface-dark);
  border-color: rgba(255, 255, 255, 0.08);
}

.service-card-cta h3,
.service-card-cta p {
  color: #fff;
}

.service-card-cta .service-index {
  background: rgba(199, 155, 70, 0.16);
  color: var(--accent-soft);
}

.packages-section {
  position: relative;
}

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

.package-card {
  display: grid;
  gap: 1rem;
  padding: 1.55rem;
}

.package-card strong {
  color: var(--brand-deep);
  font-size: 1.7rem;
  font-weight: 800;
}

.package-card ul {
  display: grid;
  gap: 0.75rem;
}

.package-card li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--ink-soft);
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.package-actions,
.cta-actions,
.contact-direct-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.featured-package {
  position: relative;
  background:
    linear-gradient(180deg, rgba(11, 31, 49, 0.98), rgba(15, 50, 74, 0.94)),
    var(--surface-dark);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.featured-package h3,
.featured-package p,
.featured-package li,
.featured-package strong {
  color: #fff;
}

.package-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(199, 155, 70, 0.18);
  color: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.cta-section {
  padding-top: 2rem;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top left, rgba(199, 155, 70, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(11, 31, 49, 0.97), rgba(15, 50, 74, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.cta-card h2,
.cta-card p {
  color: #fff;
}

.cta-card p {
  margin-top: 0.7rem;
  color: rgba(244, 240, 232, 0.72);
}

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

.testimonial-card {
  position: relative;
  display: grid;
  gap: 1.25rem;
  padding: 1.6rem;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  color: rgba(15, 106, 110, 0.12);
  font-family: "Cormorant Garamond", serif;
  font-size: 6rem;
  line-height: 1;
}

.testimonial-card p {
  position: relative;
  color: var(--ink);
  font-size: 1.02rem;
}

.testimonial-author span {
  color: var(--ink-soft);
}

.contact-content {
  display: grid;
  gap: 1rem;
  padding: 2.2rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(11, 31, 49, 0.98), rgba(15, 50, 74, 0.94)),
    var(--surface-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.contact-content .section-tag,
.contact-content h2,
.contact-content p,
.hours-card h3,
.hours-card li,
.hours-card span,
.contact-info-grid strong,
.contact-info-grid span {
  color: #fff;
}

.contact-content .section-tag {
  color: var(--accent-soft);
}

.contact-content > p {
  color: rgba(244, 240, 232, 0.74);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.contact-info-grid article {
  padding: 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hours-card {
  padding: 1.3rem;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.hours-card ul {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.hours-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hours-card li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-form-card {
  padding: 1.8rem;
  background: rgba(255, 253, 250, 0.9);
}

.callback-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.callback-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
}

.callback-form input,
.callback-form textarea {
  width: 100%;
  border: 1px solid rgba(19, 36, 53, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  padding: 0.95rem 1rem;
  color: var(--ink);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.callback-form input:focus,
.callback-form textarea:focus {
  border-color: rgba(15, 106, 110, 0.4);
  box-shadow: 0 0 0 4px rgba(15, 106, 110, 0.08);
}

.form-feedback {
  min-height: 1.5rem;
  color: var(--brand-deep);
  font-weight: 600;
}

.contact-direct-actions {
  margin-top: 1.25rem;
}

.site-footer {
  margin-top: 5rem;
  padding: 4rem 0 2rem;
  background:
    linear-gradient(180deg, rgba(8, 25, 39, 0.98), rgba(6, 18, 29, 1));
  color: rgba(244, 240, 232, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.7fr) minmax(0, 0.8fr);
  gap: 2rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.site-footer h3 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.75rem;
}

.site-footer p,
.footer-links a,
.footer-links li {
  color: rgba(244, 240, 232, 0.72);
}

.footer-links {
  display: grid;
  gap: 0.7rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.back-to-top {
  color: var(--accent-soft);
  font-weight: 600;
}

.floating-stack {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 35;
  display: grid;
  gap: 0.75rem;
}

.floating-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9.2rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.floating-action-call {
  background: rgba(8, 25, 39, 0.92);
}

.floating-action-whatsapp {
  background: linear-gradient(135deg, #c79b46, #976f25);
}

@keyframes lift-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .cta-card,
  .promo-banner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 34rem;
  }

  .hero-slider,
  .hero-slider-track {
    min-height: 34rem;
  }

  .hero-belt,
  .services-grid,
  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card {
    grid-column: span 6;
  }

  .gallery-card-large {
    min-height: 28rem;
  }

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

@media (max-width: 860px) {
  .topbar-inner {
    flex-direction: column;
    justify-content: center;
    padding: 0.7rem 0;
  }

  .site-header {
    padding-top: 0.75rem;
  }

  .header-inner {
    position: relative;
    grid-template-columns: auto auto;
    padding: 0.85rem 1rem;
    border-radius: 28px;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.35rem;
    padding: 0.9rem;
    border-radius: 24px;
    background: rgba(8, 25, 39, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header-cta {
    display: none;
  }

  .hero-copy {
    padding: 1.5rem;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }

  .hero-mini-proof,
  .hero-proof,
  .contact-info-grid,
  .testimonials-grid,
  .about-highlights,
  .hero-belt,
  .services-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 30rem;
  }

  .hero-slider,
  .hero-slider-track {
    min-height: 30rem;
    padding-left: 0;
  }

  .hero-visual-backdrop {
    inset: 1rem 0.75rem 0 auto;
  }

  .stats-card,
  .contact-card {
    width: min(14rem, 68%);
  }

  .hero-slider-controls {
    left: 1rem;
    right: 1rem;
  }

  .image-stack {
    min-height: 28rem;
  }

  .stack-large {
    inset: 0 2rem 0 0;
  }

  .stack-small {
    width: 44%;
  }

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

  .gallery-card,
  .gallery-card-large {
    grid-column: span 1;
    min-height: 18rem;
  }

  .floating-stack {
    right: 0.9rem;
    left: 0.9rem;
    bottom: 0.9rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .floating-action {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 5rem 0;
  }

  .hero-section {
    padding-top: 1.4rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 15vw, 4rem);
  }

  .hero-copy {
    padding: 1.2rem;
  }

  .section-heading h2,
  .trust-grid h2,
  .about-content h2,
  .cta-card h2,
  .contact-content h2,
  .promo-banner h2 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .topbar-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand-logo {
    width: 12rem;
  }

  .hero-pills {
    gap: 0.5rem;
  }

  .hero-actions,
  .promo-banner-actions,
  .cta-actions,
  .contact-direct-actions,
  .package-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-visual,
  .hero-slider,
  .hero-slider-track {
    min-height: 26rem;
  }

  .hero-slide-overlay {
    padding: 1rem;
  }

  .hero-slide-overlay strong {
    max-width: none;
    font-size: 1.8rem;
  }

  .stats-card,
  .contact-card {
    width: calc(100% - 2rem);
  }

  .stats-card {
    left: 1rem;
  }

  .contact-card {
    right: 1rem;
    bottom: 4.7rem;
  }

  .promo-banner,
  .cta-card,
  .contact-content,
  .contact-form-card {
    padding: 1.35rem;
  }

  .stack-large {
    inset: 0 1.2rem 0 0;
  }

  .stack-small {
    width: 50%;
    bottom: 1rem;
    border-width: 6px;
  }

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

  .gallery-card,
  .gallery-card-large {
    min-height: 16rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
