:root {
  --bg: #f3e8d6;
  --surface: rgba(250, 242, 228, 0.82);
  --surface-strong: #fff9ef;
  --ink: #24120d;
  --muted: #67453b;
  --primary: #8f2f21;
  --primary-dark: #5f160e;
  --gold: #d7a84f;
  --gold-soft: #f2d7a5;
  --outline: rgba(63, 31, 24, 0.12);
  --shadow: 0 18px 40px rgba(43, 18, 12, 0.16);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(215, 168, 79, 0.24), transparent 28%),
    radial-gradient(circle at left center, rgba(143, 47, 33, 0.14), transparent 26%),
    linear-gradient(180deg, #fbf4e8 0%, #f1e4d2 48%, #efe1cf 100%);
  line-height: 1.65;
}

.background-icons {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-icon {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(116, 60, 31, 0.22);
  text-shadow: 0 0 26px rgba(215, 168, 79, 0.14);
  user-select: none;
  will-change: transform, opacity;
  animation: driftIcon 18s ease-in-out infinite;
}

.icon-shell {
  font-size: 2.6rem;
}

.icon-ring {
  font-size: 3.2rem;
}

.icon-diamond {
  font-size: 2.4rem;
}

.icon-sun {
  font-size: 2.9rem;
}

.icon-mark {
  font-size: 3.4rem;
}

.icon-orbit {
  font-size: 3rem;
}

.bg-icon:nth-child(1) {
  top: 9%;
  left: 5%;
  animation-duration: 20s;
}

.bg-icon:nth-child(2) {
  top: 16%;
  right: 8%;
  animation-duration: 24s;
  animation-delay: -4s;
}

.bg-icon:nth-child(3) {
  top: 32%;
  left: 12%;
  animation-duration: 19s;
  animation-delay: -7s;
}

.bg-icon:nth-child(4) {
  top: 44%;
  right: 5%;
  animation-duration: 23s;
  animation-delay: -10s;
}

.bg-icon:nth-child(5) {
  top: 58%;
  left: 6%;
  animation-duration: 21s;
  animation-delay: -6s;
}

.bg-icon:nth-child(6) {
  top: 68%;
  right: 11%;
  animation-duration: 26s;
  animation-delay: -12s;
}

.bg-icon:nth-child(7) {
  top: 79%;
  left: 18%;
  animation-duration: 18s;
  animation-delay: -8s;
}

.bg-icon:nth-child(8) {
  top: 84%;
  right: 24%;
  animation-duration: 22s;
  animation-delay: -3s;
}

.bg-icon:nth-child(9) {
  top: 24%;
  left: 48%;
  animation-duration: 25s;
  animation-delay: -11s;
}

.bg-icon:nth-child(10) {
  top: 72%;
  left: 50%;
  animation-duration: 20s;
  animation-delay: -5s;
}

.site-header,
main,
.site-footer,
.floating-whatsapp {
  position: relative;
  z-index: 1;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link,
.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;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  margin: 1rem;
  padding: 0.7rem 1rem;
  background: var(--primary-dark);
  color: #fff;
  z-index: 1000;
  border-radius: 999px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.topbar {
  position: relative;
  z-index: 101;
  background: linear-gradient(90deg, rgba(72, 29, 20, 0.96), rgba(111, 36, 25, 0.92));
  color: rgba(255, 244, 227, 0.92);
  border-bottom: 1px solid rgba(255, 234, 199, 0.1);
}

.topbar-wrap {
  min-height: 2.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.topbar-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.topbar-info a {
  color: rgba(255, 244, 227, 0.92);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: transform 0.32s ease, background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 248, 237, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(45, 20, 13, 0.05);
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 0.5rem));
}

.nav-wrap {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
}

.brand-logo,
.footer-logo {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  filter: contrast(1.08) saturate(1.04);
}

.brand-logo {
  max-width: 280px;
}

.footer-logo {
  max-width: 340px;
  margin-bottom: 0.75rem;
}

.hero-copy h1,
.section-heading h2,
.section-copy h2,
.contact-copy h2,
.hero-card h2,
.site-footer h2 {
  font-family: "Cormorant Garamond", serif;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  justify-self: center;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 248, 237, 0.62);
  border: 1px solid rgba(117, 68, 39, 0.1);
  box-shadow: 0 10px 24px rgba(52, 24, 17, 0.06);
}

.site-nav a {
  position: relative;
  font-weight: 600;
  color: #44241b;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), var(--primary));
  transition: transform 0.25s ease;
}

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

.site-nav a.is-active {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--outline);
  background: rgba(255, 250, 244, 0.82);
  border-radius: 14px;
  padding: 0.7rem;
  cursor: pointer;
  justify-self: end;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--ink);
  margin: 0.24rem 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(143, 47, 33, 0.96), rgba(95, 22, 14, 0.96));
  color: #fff6ea;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(110, 24, 17, 0.18);
}

.hero-section {
  position: relative;
  padding: 4.2rem 0 3.4rem;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(36, 18, 13, 0.08) 0, rgba(36, 18, 13, 0.08) 2px, transparent 2px, transparent 22px),
    linear-gradient(45deg, rgba(215, 168, 79, 0.12) 0, rgba(215, 168, 79, 0.12) 2px, transparent 2px, transparent 22px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.9), transparent 80%);
  opacity: 0.55;
  pointer-events: none;
  animation: patternDrift 20s linear infinite;
}

.hero-grid,
.section-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: center;
}

.eyebrow,
.section-tag,
.card-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
}

.eyebrow::before,
.section-tag::before,
.card-label::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-copy h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.95;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 250, 244, 0.92), rgba(242, 215, 165, 0.6));
  border: 1px solid rgba(128, 77, 45, 0.12);
  color: #4c2d20;
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(80, 38, 22, 0.08);
}

.hero-lead {
  max-width: 42rem;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn:hover,
.btn:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.contact-pill:hover,
.contact-pill:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff6ea;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 14px 28px rgba(110, 24, 17, 0.24);
}

.btn-secondary {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(255, 250, 244, 0.95), rgba(241, 223, 190, 0.92));
  border: 1px solid rgba(124, 68, 33, 0.16);
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-points li {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 248, 237, 0.72);
  border: 1px solid rgba(116, 72, 45, 0.12);
  color: #4a2b20;
  font-weight: 600;
  animation: softFloat 7s ease-in-out infinite;
}

.trust-points li:nth-child(2) {
  animation-delay: 0.7s;
}

.trust-points li:nth-child(3) {
  animation-delay: 1.4s;
}

.country-note {
  margin-top: 1rem;
  color: #5d392d;
  font-weight: 700;
}

.hero-card,
.about-panel,
.service-card,
.reason-card,
.testimonial-card,
.contact-form {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(121, 71, 43, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card::before,
.about-panel::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: calc(var(--radius-lg) - 10px);
  border: 1px solid rgba(215, 168, 79, 0.26);
  pointer-events: none;
}

.hero-card-inner,
.about-panel,
.contact-form {
  padding: 2rem;
}

.hero-image-frame {
  position: relative;
  min-height: 250px;
  margin-bottom: 1.5rem;
  border-radius: calc(var(--radius-lg) - 8px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(35, 17, 13, 0.08), rgba(35, 17, 13, 0.26)),
    radial-gradient(circle at top left, rgba(242, 215, 165, 0.55), transparent 34%),
    linear-gradient(135deg, #6f2419 0%, #2d120e 100%);
  border: 1px solid rgba(215, 168, 79, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 245, 221, 0.2);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 10, 8, 0.08), rgba(26, 10, 8, 0.36)),
    radial-gradient(circle at top right, rgba(255, 221, 145, 0.2), transparent 24%);
  pointer-events: none;
}

.hero-image-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 235, 187, 0.7), rgba(255, 235, 187, 0.08) 65%, transparent 68%);
  filter: blur(2px);
  animation: orbPulse 8s ease-in-out infinite;
}

.orb-one {
  width: 160px;
  height: 160px;
  right: -10px;
  top: -10px;
}

.orb-two {
  width: 120px;
  height: 120px;
  left: -20px;
  bottom: -10px;
  animation-delay: 1.2s;
}

.hero-card h2 {
  margin: 0.8rem 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
}

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

.hero-contact-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.contact-pill {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 251, 245, 0.84);
  border: 1px solid rgba(138, 90, 52, 0.14);
}

.contact-pill span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-pill strong {
  font-size: 1.05rem;
}

.contact-pill.whatsapp {
  background: linear-gradient(135deg, rgba(236, 252, 240, 0.94), rgba(198, 244, 212, 0.9));
}

.section {
  padding: 2rem 0 4.4rem;
}

.section-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: start;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.section-copy h2,
.contact-copy h2 {
  margin: 0.7rem 0 0.9rem;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
}

.section-heading p,
.section-copy p,
.contact-copy p,
.feature-list p,
.service-card p,
.reason-card p,
.testimonial-card p,
.form-note {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 1rem;
}

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

.about-photo-card {
  display: grid;
  gap: 0.9rem;
}

.about-photo-frame {
  min-height: 240px;
}

.about-photo-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.about-photo-copy span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.82);
  border: 1px solid rgba(117, 68, 39, 0.12);
  color: #4c2d20;
  font-size: 0.88rem;
  font-weight: 700;
}

.gallery-card {
  margin: 0;
  padding: 0.9rem;
  background: rgba(255, 249, 239, 0.74);
  border: 1px solid rgba(121, 71, 43, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-card figcaption {
  padding: 1rem 0.35rem 0.2rem;
  color: #4f3024;
  font-weight: 700;
}

.photo-frame {
  position: relative;
  min-height: 240px;
  border-radius: calc(var(--radius-lg) - 10px);
  overflow: hidden;
  border: 1px solid rgba(255, 248, 237, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 244, 227, 0.28);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(33, 14, 10, 0.04), rgba(33, 14, 10, 0.28)),
    radial-gradient(circle at top right, rgba(255, 214, 124, 0.22), transparent 24%);
  pointer-events: none;
}

.gallery-photo,
.service-photo,
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s ease, filter 0.9s ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px rgba(43, 18, 12, 0.18);
}

.spirit-image {
  position: relative;
  min-height: 240px;
  border-radius: calc(var(--radius-lg) - 10px);
  overflow: hidden;
  border: 1px solid rgba(255, 248, 237, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 244, 227, 0.28);
  transition: transform 0.9s ease, filter 0.9s ease;
}

.spirit-image::before,
.spirit-image::after {
  content: "";
  position: absolute;
  inset: 0;
}

.spirit-image::before {
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 228, 164, 0.72), transparent 18%),
    radial-gradient(circle at 80% 20%, rgba(255, 229, 187, 0.46), transparent 16%),
    linear-gradient(180deg, rgba(26, 10, 8, 0.08), rgba(26, 10, 8, 0.28));
  mix-blend-mode: screen;
}

.spirit-image::after {
  background:
    linear-gradient(135deg, rgba(255, 251, 244, 0.16) 0 12%, transparent 12% 24%, rgba(255, 251, 244, 0.08) 24% 36%, transparent 36% 100%),
    linear-gradient(45deg, transparent 0 58%, rgba(255, 219, 143, 0.14) 58% 64%, transparent 64% 100%);
  opacity: 0.75;
  animation: shimmerSweep 9s linear infinite;
}

.image-guidance {
  min-height: 100%;
  background:
    radial-gradient(circle at 50% 26%, rgba(249, 212, 133, 0.95), rgba(249, 212, 133, 0.08) 16%, transparent 18%),
    radial-gradient(circle at 28% 66%, rgba(90, 23, 16, 0.9), transparent 23%),
    radial-gradient(circle at 72% 64%, rgba(58, 17, 11, 0.88), transparent 25%),
    linear-gradient(180deg, rgba(135, 46, 34, 0.74), rgba(37, 13, 10, 0.98)),
    linear-gradient(90deg, rgba(222, 178, 94, 0.35), transparent 50%, rgba(222, 178, 94, 0.2));
}

.image-herbs {
  background:
    radial-gradient(circle at 18% 70%, rgba(98, 135, 80, 0.88), transparent 14%),
    radial-gradient(circle at 34% 62%, rgba(127, 162, 86, 0.86), transparent 16%),
    radial-gradient(circle at 52% 66%, rgba(72, 112, 58, 0.86), transparent 15%),
    radial-gradient(circle at 76% 34%, rgba(224, 183, 96, 0.7), transparent 12%),
    linear-gradient(180deg, rgba(82, 42, 22, 0.2), rgba(28, 11, 8, 0.6)),
    linear-gradient(135deg, #9a5e2f 0%, #432014 45%, #1d0d0a 100%);
}

.image-protection {
  background:
    radial-gradient(circle at 50% 28%, rgba(245, 209, 137, 0.95), rgba(245, 209, 137, 0.08) 18%, transparent 20%),
    radial-gradient(circle at 50% 62%, rgba(110, 32, 24, 0.92), transparent 26%),
    radial-gradient(circle at 24% 76%, rgba(218, 160, 74, 0.34), transparent 18%),
    radial-gradient(circle at 76% 76%, rgba(218, 160, 74, 0.34), transparent 18%),
    linear-gradient(180deg, #682319 0%, #250f0c 100%);
}

.image-blessing {
  background:
    radial-gradient(circle at 28% 28%, rgba(255, 231, 183, 0.82), transparent 16%),
    radial-gradient(circle at 72% 24%, rgba(255, 212, 122, 0.66), transparent 14%),
    radial-gradient(circle at 50% 72%, rgba(108, 31, 24, 0.9), transparent 28%),
    linear-gradient(180deg, rgba(170, 61, 42, 0.6), rgba(38, 15, 11, 0.95)),
    linear-gradient(90deg, rgba(231, 197, 120, 0.16), transparent 50%, rgba(231, 197, 120, 0.16));
}

.feature-list article,
.service-card,
.reason-card {
  padding: 1.5rem;
}

.feature-list article {
  border-radius: var(--radius-md);
  background: rgba(255, 251, 245, 0.8);
  border: 1px solid rgba(115, 71, 42, 0.12);
}

.feature-list h3,
.service-card h3,
.reason-card h3,
.testimonial-card footer,
.site-footer h3 {
  margin-top: 0;
}

.services-grid,
.reasons-grid,
.testimonials-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

.service-card,
.reason-card,
.testimonial-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card {
  min-height: 300px;
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.94), rgba(248, 238, 220, 0.9));
  isolation: isolate;
}

.service-card-photo {
  min-height: 360px;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(215, 168, 79, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%);
  opacity: 0.9;
  transition: transform 0.5s ease, opacity 0.35s ease;
  z-index: 0;
}

.service-card::after,
.reason-card::after,
.testimonial-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--primary));
}

.service-card > * ,
.reason-card > * ,
.testimonial-card > * {
  position: relative;
  z-index: 1;
}

.service-card h3,
.reason-card h3 {
  line-height: 1.18;
  font-size: clamp(1.45rem, 2vw, 1.7rem);
  margin-bottom: 1rem;
}

.service-photo-wrap {
  position: relative;
  height: 160px;
  margin: -0.15rem 0 1rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 26px rgba(42, 18, 12, 0.14);
}

.service-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 11, 8, 0.02), rgba(24, 11, 8, 0.24)),
    linear-gradient(135deg, rgba(255, 226, 156, 0.18), transparent 42%);
  pointer-events: none;
}

.service-card p,
.reason-card p {
  margin-top: 0;
}

.text-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}

.service-card:hover,
.reason-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(43, 18, 12, 0.2);
  border-color: rgba(143, 47, 33, 0.18);
}

.service-card:hover::before {
  transform: scale(1.06);
}

.gallery-card:hover .spirit-image,
.gallery-card:hover .gallery-photo,
.hero-image-frame:hover .hero-photo,
.hero-image-frame:hover .spirit-image {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.service-card:hover .service-photo {
  transform: scale(1.05);
}

.testimonial-card {
  margin: 0;
  padding: 1.6rem;
}

.testimonial-card p {
  margin-top: 0;
}

.testimonial-card footer {
  font-weight: 800;
  color: #4b2c20;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: stretch;
}

.contact-details {
  margin-top: 1.4rem;
}

.contact-details p {
  margin: 0.4rem 0;
}

.contact-details a {
  font-weight: 800;
  color: var(--primary);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.social-icons {
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.88);
  border: 1px solid rgba(117, 68, 39, 0.12);
  color: #4a2b20;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.social-icons .social-link {
  width: 2.7rem;
  min-width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  border-radius: 50%;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(43, 18, 12, 0.12);
  border-color: rgba(143, 47, 33, 0.18);
}

.social-link::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.social-icons .social-link span {
  font-size: 0;
}

.social-link[aria-label="TikTok"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234a2b20' d='M16.7 3c.3 1.7 1.3 3.1 2.9 4.1.9.5 1.7.8 2.4.9v3.3c-1.4-.1-2.7-.5-3.9-1.2v6.6c0 3.3-2.7 6-6 6s-6-2.7-6-6 2.7-6 6-6c.3 0 .6 0 .9.1v3.4a2.8 2.8 0 0 0-.9-.2c-1.5 0-2.7 1.2-2.7 2.7S10.5 19 12 19s2.7-1.2 2.7-2.7V3h2Z'/%3E%3C/svg%3E");
}

.social-link[aria-label="X"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234a2b20' d='M18.9 2H22l-6.8 7.8L23 22h-6.1l-4.8-6.3L6.6 22H3.5l7.3-8.4L1 2h6.3l4.4 5.8L18.9 2Zm-1.1 18h1.7L6.4 3.9H4.6L17.8 20Z'/%3E%3C/svg%3E");
}

.social-link[aria-label="Instagram"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234a2b20' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5Zm0 2.2A2.8 2.8 0 0 0 4.2 7v10A2.8 2.8 0 0 0 7 19.8h10a2.8 2.8 0 0 0 2.8-2.8V7A2.8 2.8 0 0 0 17 4.2H7Zm10.5 1.7a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2.2A2.8 2.8 0 1 0 12 15a2.8 2.8 0 0 0 0-5.6Z'/%3E%3C/svg%3E");
}

.social-link[aria-label="Snapchat"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234a2b20' d='M12 2c2.7 0 4.9 2.1 5 4.8.1 1.2.1 2 .3 2.5.2.5.7.9 1.3 1.3.5.2.9.4.9.9 0 .6-.7.9-1.5 1.1-.4.1-.5.2-.5.4-.2 1.3-1.2 2.1-2.6 2.2-.3 0-.4.1-.5.3-.3.8-1.1 1.3-2.4 1.3s-2.1-.5-2.4-1.3c-.1-.2-.2-.3-.5-.3-1.4-.1-2.4-.9-2.6-2.2 0-.2-.1-.3-.5-.4-.8-.2-1.5-.5-1.5-1.1 0-.5.4-.7.9-.9.6-.4 1.1-.8 1.3-1.3.2-.5.2-1.3.3-2.5C7.1 4.1 9.3 2 12 2Zm0 12.9c.6 0 1 .2 1.3.4.1-.4.4-.8 1-.9.9-.1 1.3-.5 1.4-1 .1-.6.4-1 .9-1.1-.7-.5-1.2-1.1-1.4-1.9-.3-.8-.3-1.8-.3-3.1A2.8 2.8 0 0 0 12 4.2a2.8 2.8 0 0 0-2.8 2.7c0 1.3 0 2.3-.3 3.1-.2.8-.7 1.4-1.4 1.9.5.1.8.5.9 1.1.1.5.5.9 1.4 1 .6.1.9.5 1 .9.3-.2.7-.4 1.2-.4Z'/%3E%3C/svg%3E");
}

.contact-form {
  display: grid;
  gap: 0.7rem;
}

.contact-form label {
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(103, 69, 59, 0.18);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: rgba(255, 251, 245, 0.92);
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(215, 168, 79, 0.5);
  border-color: rgba(143, 47, 33, 0.4);
}

.site-footer {
  padding-top: 1.5rem;
  background: linear-gradient(180deg, rgba(58, 27, 21, 0.98), rgba(24, 11, 8, 1));
  color: rgba(255, 244, 227, 0.9);
}

.footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 2rem 0;
  align-items: start;
}

.footer-grid > div:first-child {
  max-width: 420px;
}

.site-footer a {
  color: var(--gold-soft);
}

.footer-email {
  display: block;
  margin-top: 0.55rem;
}

.footer-socials .social-link {
  background: rgba(255, 244, 227, 0.08);
  border-color: rgba(255, 243, 221, 0.14);
  color: #fff0d5;
}

.footer-socials .social-link::before {
  filter: brightness(3.2);
}

.topbar-socials {
  margin-top: 0;
}

.topbar-socials .social-link {
  background: rgba(255, 244, 227, 0.1);
  border-color: rgba(255, 243, 221, 0.12);
}

.topbar-socials .social-link::before {
  filter: brightness(3.2);
}

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

.footer-grid > div:last-child {
  justify-self: end;
  text-align: right;
}

.footer-bottom {
  padding: 1rem;
  border-top: 1px solid rgba(255, 243, 221, 0.12);
  text-align: center;
  color: rgba(255, 244, 227, 0.7);
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 8.3rem;
  padding: 0.85rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #24c768, #0f8f46);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(15, 143, 70, 0.28);
  animation: whatsappPulse 3.4s ease-in-out infinite;
}

.floating-whatsapp::before {
  content: "";
  width: 1.15rem;
  height: 1.15rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill='white' d='M19.05 4.94A9.9 9.9 0 0 0 12 2a9.94 9.94 0 0 0-8.6 14.93L2 22l5.22-1.37A9.94 9.94 0 0 0 12 22h.01A10 10 0 0 0 22 12a9.93 9.93 0 0 0-2.95-7.06ZM12 20.13h-.01a8.08 8.08 0 0 1-4.12-1.13l-.3-.18-3.1.81.83-3.02-.2-.31A8.07 8.07 0 0 1 3.88 12 8.13 8.13 0 0 1 12 3.88 8.13 8.13 0 0 1 20.13 12 8.12 8.12 0 0 1 12 20.13Zm4.46-6.08c-.24-.12-1.4-.69-1.62-.77-.22-.08-.38-.12-.54.12-.16.24-.62.77-.76.93-.14.16-.28.18-.52.06-.24-.12-1-.37-1.9-1.18-.7-.62-1.17-1.38-1.3-1.62-.14-.24-.01-.36.1-.48.1-.1.24-.28.36-.42.12-.14.16-.24.24-.4.08-.16.04-.3-.02-.42-.06-.12-.54-1.3-.74-1.78-.2-.47-.4-.4-.54-.41h-.46c-.16 0-.42.06-.64.3-.22.24-.84.82-.84 2s.86 2.32.98 2.48c.12.16 1.7 2.6 4.11 3.65.57.25 1.02.4 1.37.52.58.18 1.1.15 1.51.09.46-.07 1.4-.57 1.6-1.12.2-.55.2-1.02.14-1.12-.06-.1-.22-.16-.46-.28Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 5.6rem;
  z-index: 89;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.5rem;
  height: 3.5rem;
  padding: 0.75rem;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(143, 47, 33, 0.96), rgba(95, 22, 14, 0.96));
  color: #fff6ea;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(110, 24, 17, 0.22);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 0.7s ease var(--reveal-delay, 0ms),
    transform 0.7s ease var(--reveal-delay, 0ms);
}

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

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes orbPulse {
  0%,
  100% {
    transform: scale(1) translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.08) translateY(-8px);
    opacity: 1;
  }
}

@keyframes shimmerSweep {
  0% {
    transform: translateX(-8%);
  }
  50% {
    transform: translateX(8%);
  }
  100% {
    transform: translateX(-8%);
  }
}

@keyframes patternDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(10px, -10px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 18px 30px rgba(15, 143, 70, 0.28);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 24px 38px rgba(15, 143, 70, 0.38);
    transform: translateY(-3px);
  }
}

@keyframes driftIcon {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 0.75;
  }
  25% {
    transform: translate3d(14px, -18px, 0) rotate(6deg);
    opacity: 0.46;
  }
  50% {
    transform: translate3d(-10px, -34px, 0) rotate(-4deg);
    opacity: 0.68;
  }
  75% {
    transform: translate3d(18px, -12px, 0) rotate(5deg);
    opacity: 0.42;
  }
}

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

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

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

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

@media (max-width: 860px) {
  :root {
    --header-height: 78px;
  }

  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .brand-logo {
    max-width: 200px;
  }

  .topbar-wrap {
    padding: 0.65rem 0;
  }

  .topbar-info {
    justify-content: center;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(255, 249, 239, 0.98);
    border: 1px solid rgba(117, 68, 39, 0.12);
    border-radius: 20px;
    box-shadow: 0 18px 30px rgba(43, 18, 12, 0.12);
    justify-self: stretch;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

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

  .hero-grid,
  .section-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:last-child {
    justify-self: start;
    text-align: left;
  }

  .nav-cta {
    display: none;
  }

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

  .hero-copy h1 {
    font-size: clamp(2.6rem, 14vw, 4.1rem);
  }

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

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .hero-card-inner,
  .about-panel,
  .contact-form {
    padding: 1.35rem;
  }

  .brand-logo {
    max-width: 160px;
  }

  .footer-logo {
    max-width: 240px;
  }

  .topbar-info {
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
  }

  .service-card {
    min-height: auto;
  }

  .services-grid,
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .btn,
  .floating-whatsapp {
    width: 100%;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .trust-points {
    flex-direction: column;
  }

  .hero-badge-row {
    flex-direction: column;
  }

  .floating-whatsapp {
    width: 4.1rem;
    min-width: 4.1rem;
    height: 4.1rem;
    padding: 0;
    right: 0.85rem;
    left: auto;
    bottom: 0.75rem;
    border-radius: 50%;
    box-shadow: 0 18px 32px rgba(15, 143, 70, 0.34);
  }

  .back-to-top {
    right: 0.85rem;
    bottom: 5.5rem;
    width: 3.3rem;
    min-width: 3.3rem;
    height: 3.3rem;
  }

  .floating-whatsapp span {
    font-size: 0;
  }

  .floating-whatsapp::before {
    width: 1.65rem;
    height: 1.65rem;
  }

  .bg-icon {
    transform: scale(0.78);
  }
}

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

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

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