:root {
  color-scheme: light;
  --ink: #17201c;
  --muted: #5d6963;
  --surface: #ffffff;
  --surface-2: #f4f7f2;
  --surface-3: #edf4f0;
  --line: #d9e2dd;
  --primary: #d94f1f;
  --primary-dark: #a93616;
  --secondary: #08756f;
  --secondary-dark: #055652;
  --accent: #e6ad13;
  --blue: #2457a6;
  --shadow: 0 16px 40px rgba(23, 32, 28, 0.12);
  --shadow-soft: 0 8px 24px rgba(23, 32, 28, 0.08);
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  padding-bottom: 116px;
}

img,
iframe {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(230, 173, 19, 0.7);
  outline-offset: 3px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 226, 221, 0.86);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
  color: var(--ink);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  box-shadow: var(--shadow-soft);
  font-weight: 900;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #26312d;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-menu a:hover {
  background: var(--surface-2);
  color: var(--secondary-dark);
}

.nav-menu .nav-cta {
  color: #fff;
  background: var(--secondary);
}

.nav-menu .nav-cta:hover {
  background: var(--secondary-dark);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: #101612;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 18, 15, 0.9), rgba(10, 18, 15, 0.64) 48%, rgba(10, 18, 15, 0.22)),
    linear-gradient(0deg, rgba(10, 18, 15, 0.76), rgba(10, 18, 15, 0.05) 45%);
}

.hero-content {
  width: min(860px, 100%);
  padding: 126px 0 84px;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.86rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.14;
}

h1 {
  max-width: 790px;
  margin-top: 18px;
  font-size: clamp(2.25rem, 7vw, 5.35rem);
  font-weight: 900;
}

.hero-lead {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid rgba(23, 32, 28, 0.12);
  color: var(--ink);
  background: var(--surface);
  font-weight: 850;
  box-shadow: 0 7px 18px rgba(23, 32, 28, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(23, 32, 28, 0.14);
}

.btn-primary {
  color: #fff;
  background: var(--secondary);
  border-color: var(--secondary);
}

.btn-primary:hover {
  background: var(--secondary-dark);
}

.btn-warm {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.btn-warm:hover {
  background: var(--primary-dark);
}

.btn-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: inherit;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.82rem;
  font-weight: 900;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 750;
}

.section {
  padding: 82px 0;
}

.section-muted {
  background: var(--surface-2);
}

.section-tint {
  background: linear-gradient(180deg, var(--surface-3), var(--surface));
}

.section-kicker {
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section-title {
  max-width: 760px;
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
}

.section-intro {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface);
}

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

.feature-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
}

.check {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--secondary);
  font-weight: 900;
}

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

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

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.card-body {
  padding: 20px;
}

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

.card h3 {
  font-size: 1.25rem;
}

.card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.price {
  display: inline-flex;
  margin-top: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: #fff4ed;
  font-weight: 900;
}

.card .btn {
  width: 100%;
  margin-top: 18px;
}

.activity-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.activity-pill {
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  font-weight: 850;
}

.activity-pill span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
  margin-top: 32px;
}

.gallery-grid figure {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-2);
}

.gallery-grid figure:nth-child(1),
.gallery-grid figure:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid figcaption {
  position: absolute;
  inset: auto 10px 10px 10px;
  padding: 8px 10px;
  border-radius: 6px;
  color: #fff;
  background: rgba(10, 18, 15, 0.68);
  font-weight: 800;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  cursor: pointer;
  padding: 19px 20px;
  font-weight: 850;
}

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

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 24px;
  margin-top: 32px;
}

.map-embed {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-3);
  box-shadow: var(--shadow-soft);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.info-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.info-panel h3 + p {
  margin-top: 12px;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--muted);
}

.info-list b {
  color: var(--ink);
}

.mini-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-weight: 900;
}

.cta-band {
  color: #fff;
  background: linear-gradient(135deg, var(--secondary-dark), #0c2f35);
}

.cta-band .section-intro {
  color: rgba(255, 255, 255, 0.84);
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer {
  color: rgba(255, 255, 255, 0.84);
  background: #111916;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  gap: 30px;
}

.footer h2,
.footer h3 {
  color: #fff;
  font-size: 1.08rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.74);
}

.footer a {
  color: rgba(255, 255, 255, 0.86);
}

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

.footer ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-actions a {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  box-shadow: var(--shadow);
  font-weight: 950;
  transition: transform 0.18s ease;
}

.floating-actions a:hover {
  transform: translateY(-2px);
}

.floating-whatsapp {
  background: #128c53;
}

.floating-phone {
  background: var(--primary);
}

.floating-email {
  background: var(--blue);
}

.page-hero {
  padding: 86px 0 58px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10, 18, 15, 0.88), rgba(10, 18, 15, 0.52)),
    var(--page-image, url("../../8.jpg")) center / cover no-repeat;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 5vw, 4.4rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.content-main {
  display: grid;
  gap: 28px;
}

.content-block {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.content-block h2 {
  margin-bottom: 12px;
  font-size: 1.7rem;
}

.content-block h3 {
  margin-top: 20px;
  font-size: 1.18rem;
}

.content-block p,
.content-block li {
  color: var(--muted);
}

.content-block ul,
.content-block ol {
  padding-left: 22px;
}

.sidebar {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  display: grid;
  gap: 16px;
}

.sidebar-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.sidebar-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.sidebar-card a {
  color: var(--secondary-dark);
  font-weight: 800;
}

.article-meta {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
}

.wide-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.wide-image img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}

.callout {
  padding: 20px;
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  background: #fff9e7;
  color: #4e3a00;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--ink);
  background: var(--surface-2);
}

tr:last-child td {
  border-bottom: 0;
}

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

@media (max-width: 1060px) {
  .nav-menu {
    position: fixed;
    inset: var(--header-height) 12px auto 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

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

  .nav-menu a {
    justify-content: center;
    border-radius: var(--radius);
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 900px) {
  .split,
  .location-grid,
  .cta-box,
  .content-grid {
    grid-template-columns: 1fr;
  }

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

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

  .sidebar {
    position: static;
  }

  .cta-box .button-row {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 88px;
  }

  .container {
    width: min(100% - 24px, 1120px);
  }

  .hero {
    min-height: 84svh;
  }

  .hero-content {
    padding: 92px 0 54px;
  }

  .section {
    padding: 62px 0;
  }

  .hero-actions .btn,
  .button-row .btn,
  .cta-box .btn {
    width: 100%;
  }

  .cards-grid,
  .cards-grid.four,
  .gallery-grid,
  .activity-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid figure:nth-child(1),
  .gallery-grid figure:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-actions {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: row;
    justify-content: center;
  }

  .floating-actions a {
    width: 52px;
    height: 52px;
  }
}

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

/* Premium visual pass */
:root {
  --ink: #111816;
  --muted: #5f6d68;
  --surface: #ffffff;
  --surface-2: #f6f2e8;
  --surface-3: #eef7f3;
  --line: rgba(17, 24, 22, 0.12);
  --primary: #e85a24;
  --primary-dark: #bd3d12;
  --secondary: #087a71;
  --secondary-dark: #075750;
  --accent: #d9a21b;
  --blue: #2459b8;
  --shadow: 0 24px 70px rgba(17, 24, 22, 0.18);
  --shadow-soft: 0 14px 36px rgba(17, 24, 22, 0.1);
  --header-height: 82px;
}

body {
  background:
    linear-gradient(180deg, #ffffff 0, #fffaf0 42%, #f4f7f2 100%);
}

.site-header {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(17, 24, 22, 0.1);
  box-shadow: 0 10px 32px rgba(17, 24, 22, 0.07);
}

.brand {
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, #0b6f67 0%, #26352f 48%, #e85a24 100%);
  border: 2px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 30px rgba(8, 122, 113, 0.22);
}

.brand > span:last-child {
  font-size: 1.05rem;
  line-height: 1.15;
}

.nav-menu {
  gap: 5px;
}

.nav-menu a {
  min-height: 44px;
  padding: 9px 13px;
  color: #1f2a27;
}

.nav-menu .nav-cta {
  padding-inline: 18px;
  background: linear-gradient(135deg, var(--secondary), #0c9589);
  box-shadow: 0 12px 24px rgba(8, 122, 113, 0.22);
}

.hero {
  min-height: calc(100svh - var(--header-height));
  align-items: center;
}

.hero-media {
  filter: saturate(1.08) contrast(1.05);
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(8, 14, 12, 0.95) 0%, rgba(8, 14, 12, 0.76) 44%, rgba(8, 14, 12, 0.34) 100%),
    linear-gradient(0deg, rgba(8, 14, 12, 0.86), rgba(8, 14, 12, 0.1) 48%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 380px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 64px 0 58px;
}

.hero-content {
  width: auto;
  padding: 0;
}

.eyebrow {
  min-height: 38px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

h1 {
  max-width: 850px;
  font-size: clamp(2.35rem, 4.85vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.hero .hero-actions {
  margin-top: 16px;
}

.hero .trust-row {
  margin-top: 14px;
}

.btn {
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 999px;
  letter-spacing: 0;
}

.btn i {
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), #10a093);
  border-color: transparent;
}

.btn-warm {
  background: linear-gradient(135deg, var(--primary), #f07a28);
  border-color: transparent;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.trust-badge {
  min-height: 40px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

@media (min-width: 901px) {
  .trust-row {
    flex-wrap: nowrap;
  }

  .trust-badge {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 0.82rem;
    white-space: nowrap;
  }
}

.hero-card {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)),
    rgba(8, 14, 12, 0.4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.hero-card-media {
  display: grid;
  grid-template-columns: 1fr 0.76fr;
  gap: 8px;
  padding: 10px;
}

.hero-card-media img {
  width: 100%;
  height: 118px;
  border-radius: 6px;
  object-fit: cover;
}

.hero-card-media img:first-child {
  height: 244px;
}

.hero-card-media .stack {
  display: grid;
  gap: 8px;
}

.hero-card-body {
  padding: 18px;
}

.hero-card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffe2b1;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.77rem;
}

.hero-card h2 {
  margin-top: 8px;
  font-size: 1.35rem;
}

.hero-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.hero-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.hero-card-stat {
  padding: 12px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  text-align: center;
}

.hero-card-stat strong {
  display: block;
  color: #fff;
  font-size: 1.08rem;
}

.hero-card-stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 750;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-muted {
  background:
    linear-gradient(180deg, #fbf5e8, #f6f2e8);
}

.section-tint {
  background:
    linear-gradient(180deg, #eef7f3, #ffffff);
}

.section-kicker {
  color: var(--primary);
  letter-spacing: 0.08em;
}

.section-title {
  max-width: 820px;
  color: #111816;
}

.split {
  gap: 52px;
}

.media-frame {
  position: relative;
  box-shadow: var(--shadow);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  pointer-events: none;
}

.feature-list li,
.activity-pill,
.faq-item,
.info-panel,
.content-block,
.sidebar-card {
  border-color: rgba(17, 24, 22, 0.1);
}

.check,
.mini-icon {
  background: linear-gradient(135deg, var(--secondary), #10a093);
  box-shadow: 0 10px 20px rgba(8, 122, 113, 0.16);
}

.cards-grid {
  gap: 22px;
}

.card {
  border: 1px solid rgba(17, 24, 22, 0.1);
  background: #fff;
  box-shadow: 0 18px 50px rgba(17, 24, 22, 0.11);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(17, 24, 22, 0.16);
}

.card img {
  aspect-ratio: 5 / 4;
}

.card-body {
  padding: 22px;
}

.price {
  color: #8f2f10;
  background: #fff0e8;
  border: 1px solid rgba(232, 90, 36, 0.18);
}

.activity-pill {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff, #fbf5e8);
  box-shadow: 0 16px 42px rgba(17, 24, 22, 0.09);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.activity-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 90, 36, 0.35);
}

.activity-pill i {
  color: var(--primary);
  font-size: 1.35rem;
}

.gallery-grid {
  gap: 14px;
}

.gallery-grid figure {
  box-shadow: 0 14px 36px rgba(17, 24, 22, 0.12);
}

.gallery-grid img {
  transition: transform 0.45s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.045);
}

.faq-item,
.info-panel,
.content-block,
.sidebar-card {
  box-shadow: 0 16px 42px rgba(17, 24, 22, 0.08);
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(7, 87, 80, 0.98), rgba(17, 24, 22, 0.98)),
    url("../../7.jpg") center / cover no-repeat;
}

.footer {
  position: relative;
  background:
    linear-gradient(135deg, #0c1512 0%, #10231f 52%, #06100e 100%);
  padding: 70px 0 30px;
}

.footer-grid {
  grid-template-columns: 1.25fr repeat(4, minmax(150px, 1fr));
  gap: 28px;
}

.footer-brand {
  max-width: 330px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 900;
}

.footer-logo .brand-mark {
  flex: 0 0 auto;
}

.footer h2,
.footer h3 {
  font-size: 1.02rem;
  letter-spacing: 0;
}

.footer p {
  margin: 14px 0 0;
}

.footer li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
}

.footer li a:hover {
  color: #fff;
}

.footer li a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.78;
}

.footer-contact a::before {
  display: none;
}

.footer-contact i {
  width: 18px;
  color: #ffb35d;
}

.footer-cta {
  margin-top: 20px;
}

.footer-bottom {
  align-items: center;
}

.floating-actions {
  right: 22px;
  bottom: 22px;
  gap: 12px;
}

.floating-actions a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.23);
  animation: none;
}

.floating-actions a i {
  line-height: 1;
}

.floating-whatsapp {
  background: #25d366;
}

.floating-phone {
  background: var(--primary);
}

.floating-email {
  background: var(--blue);
}

.floating-actions a:hover {
  transform: scale(1.08);
}

.page-hero {
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: 110px 0 72px;
  background:
    linear-gradient(90deg, rgba(8, 14, 12, 0.92), rgba(8, 14, 12, 0.5)),
    var(--page-image, url("../../8.jpg")) center / cover no-repeat;
}

.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1060px) {
  .nav-menu {
    background: rgba(255, 255, 255, 0.98);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding: 78px 0 62px;
  }

  .hero-card {
    max-width: 620px;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 92px;
  }

  .hero-layout {
    padding: 70px 0 52px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .hero-card-media {
    display: none;
  }

  .hero-card {
    margin-top: 8px;
  }

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

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

  .trust-badge {
    justify-content: center;
    text-align: center;
  }

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

  .floating-actions {
    left: auto;
    right: 12px;
    bottom: 10px;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    pointer-events: none;
  }

  .floating-actions a {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    pointer-events: auto;
  }
}
