/* Bundled Styles for AlphaZhen */

/* --- variables.css --- */
@font-face {
  font-family: "The Seasons";
  src: local("The Seasons"), local("The Seasons Regular"), local("TheSeasons");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "The Seasons";
  src: local("The Seasons"), local("The Seasons Regular"), local("TheSeasons");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --background: #eedadb;
  --background-soft: #f7efec;
  --surface: rgba(255, 252, 250, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --rose: #d89c98;
  --rose-deep: #bd6265;
  --rose-soft: #f3d8d7;
  --olive: #616541;
  --olive-deep: #4d5032;
  --text: #463f31;
  --muted: #7c725f;
  --line: rgba(97, 101, 65, 0.16);
  --shadow-soft: 0 22px 60px rgba(98, 83, 67, 0.10);
  --shadow-strong: 0 28px 80px rgba(79, 61, 49, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --font-sans: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --font-display: "The Seasons", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --container: 1180px;
  --header-height: 96px;
  --whatsapp: #25d366;
  --whatsapp-deep: #16a955;
  --title-reduction: 1rem;
  --hero-title-reduction: 2rem;
}


/* --- base.css --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.65), transparent 26%),
    var(--background);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--olive-deep), var(--olive));
  color: #fff;
  box-shadow: 0 18px 36px rgba(77, 80, 50, 0.20);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.88);
  color: #181818;
  border-color: rgba(24, 24, 24, 0.12);
  box-shadow: 0 16px 32px rgba(24, 24, 24, 0.08);
}

.button-light {
  background: rgba(255, 255, 255, 0.72);
  color: var(--olive-deep);
  border-color: rgba(97, 101, 65, 0.12);
}

.button-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-deep));
  color: #fff;
  box-shadow: 0 18px 36px rgba(22, 169, 85, 0.24);
}

.button-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 52%, #8134af 82%, #515bd4);
  color: #fff;
  box-shadow: 0 18px 36px rgba(221, 42, 123, 0.22);
}

.whatsapp-icon,
.instagram-icon,
.arrow-down-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.section {
  padding: 104px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.22));
}

.section-light {
  background: var(--background-soft);
}

.section-head {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 52px;
}

.section-tag {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--rose-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-heading {
  font-family: var(--font-display);
  font-size: 2.0rem;
  line-height: 1.02;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  color: var(--olive-deep);
}

.section-description {
  font-size: 1.08rem;
  color: var(--muted);
}

.section-body {
  display: grid;
  gap: 20px;
}

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

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

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

  .section {
    padding: 82px 0;
  }

  .section-description,
  .section-body p {
    font-size: 0.98rem;
  }
}

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

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


/* --- components/header.css --- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  background: transparent;
  padding-top: clamp(20px, 2.8vw, 36px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #fff;
}

.brand-logo {
  width: clamp(148px, 15vw, 212px);
  max-height: 108px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: #181818;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(24, 24, 24, 0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-toggle-icon {
  width: 22px;
  height: 22px;
  display: block;
}

.nav-toggle-icon path {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.nav {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  position: relative;
}

.nav-links {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 26px);
}

.nav-cta {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta .button {
  min-height: 44px;
  padding: 0 22px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu {
  display: none;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.34);
  transition: background-color 0.25s ease, color 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  outline: none;
}

@media (max-width: 1080px) {
  .brand-logo {
    width: 148px;
    max-height: 100px;
  }

  .nav {
    gap: 20px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-link {
    font-size: 0.88rem;
  }

  .nav-cta .button {
    padding: 0 16px;
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 76px;
  }

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

  .brand-logo {
    width: 138px;
    max-height: 86px;
  }

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

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(300px, calc(100vw - 48px));
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 252, 250, 0.94);
    border: 1px solid rgba(97, 101, 65, 0.10);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav-link,
  .nav-menu .button {
    width: 100%;
  }

  .nav-menu .nav-link {
    color: var(--olive-deep);
    text-shadow: none;
  }
}


/* --- components/hero.css --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #3b2a1e;
}

.hero-media,
.hero-overlay,
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media {
  z-index: -3;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85) contrast(1.02);
}

.hero-slide--drenagem img {
  object-position: center 36%;
}

.hero-slide--facial img {
  object-position: center 42%;
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(32, 22, 18, 0.62) 0%,
    rgba(45, 30, 22, 0.45) 35%,
    rgba(45, 30, 22, 0.22) 70%,
    rgba(45, 30, 22, 0.10) 100%
  );
  z-index: -1;
}

.hero-glow {
  z-index: -2;
  background:
    radial-gradient(circle at 64% 40%, rgba(248, 216, 180, 0.12), transparent 34%),
    radial-gradient(circle at 12% 94%, rgba(216, 156, 152, 0.10), transparent 28%);
  filter: blur(18px);
}

.hero-inner {
  display: grid;
  align-content: center;
  gap: 26px;
  justify-items: start;
  min-height: 100vh;
  min-height: 100svh;
  text-align: left;
  padding: clamp(128px, 16vh, 172px) 0 72px;
}

.hero-logo {
  display: none;
}

.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #e5aba9;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.30);
}

.hero-copy {
  width: min(100%, 560px);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  padding-top: 30px;
}

.hero-text-slide {
  grid-area: 1 / 1;
  display: grid;
  gap: 18px;
  align-content: start;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.65s;
  pointer-events: none;
}

.hero-text-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
  margin: 0;
  color: #fffaf5;
  font-weight: 400;
  text-shadow: 0 12px 42px rgba(0, 0, 0, 0.32);
}

.hero h1 .accent {
  color: #e7a5a5;
}

.hero p {
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  color: rgba(255, 250, 245, 0.88);
  max-width: 34rem;
  margin: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

.hero-copy .hero-lead {
  font-size: clamp(1.06rem, 1.45vw, 1.28rem);
  font-weight: 400;
  line-height: 1.35;
  color: #fffdf9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 4px;
}

.hero .button,
.nav-cta .button {
  min-height: 44px;
  border-color: rgba(255, 255, 255, 0.50);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.hero .button {
  padding: 0 24px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .button-whatsapp,
.nav-cta .button-whatsapp {
  background: rgba(99, 104, 76, 0.88);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(22, 21, 16, 0.26);
}

.hero .button-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.66);
  box-shadow: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 10;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.hero-dots button:hover,
.hero-dots button:focus-visible {
  transform: scale(1.18);
  outline: none;
}

.hero-dots button.is-active {
  background: var(--rose);
}

.hero-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 840px;
}

.hero-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-highlights li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 6px rgba(216, 156, 152, 0.18);
}

@media (max-width: 880px) {
  .hero-inner {
    align-content: center;
    padding: 96px 0 48px;
  }

  .hero-copy {
    width: min(100%, 500px);
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.7rem);
  }
}

@media (max-width: 640px) {
  .hero-inner {
    align-content: center;
    gap: 18px;
    padding: 80px 0 36px;
  }

  .hero-copy {
    padding-top: 0;
  }



  .hero h1 {
    font-size: clamp(1.5rem, 8.5vw, 2.3rem);
  }

  .hero p {
    max-width: 28rem;
    font-size: 0.98rem;
  }

  .hero-dots {
    bottom: 16px;
  }

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

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

  .hero-highlights {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-highlights li {
    justify-content: center;
  }
}


/* --- components/services.css --- */
.services-grid,
.about-list,
.experience-list,
.journey-grid,
.cta-notes {
  display: grid;
  gap: 22px;
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid rgba(97, 101, 65, 0.10);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.service-visual {
  position: relative;
  min-height: 248px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(97, 101, 65, 0.10);
}

.service-visual::before,
.service-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  z-index: -1;
}

.service-visual::before {
  width: 190px;
  height: 190px;
  top: -34px;
  left: -18px;
  background: rgba(255, 255, 255, 0.36);
}

.service-visual::after {
  width: 180px;
  height: 180px;
  right: -16px;
  bottom: -46px;
  background: rgba(216, 156, 152, 0.28);
}

.service-card--body .service-visual {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.62), transparent 28%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 52%),
    linear-gradient(145deg, #e9d2cc, #d8bdb6);
}

.service-card--face .service-visual {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.58), transparent 26%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04) 58%),
    linear-gradient(145deg, #e7d8d4, #d8c7c2);
}

.service-card--touch .service-visual {
  background:
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.56), transparent 30%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 48%),
    linear-gradient(145deg, #dccabb, #c8b59f);
}

.service-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.service-copy {
  display: grid;
  gap: 18px;
  flex: 1;
  padding: 28px 26px 30px;
}

.service-copy-header {
  display: grid;
  gap: 12px;
}

.service-kind {
  display: none !important;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--olive-deep);
  max-width: none;
}

.service-card p {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 34ch;
}

.service-features,
.service-catalog {
  list-style: none;
}

.service-features {
  display: grid;
  gap: 12px;
}

.service-feature {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(97, 101, 65, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.service-feature-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 216, 215, 0.76));
  color: var(--olive-deep);
  box-shadow:
    0 12px 22px rgba(79, 61, 49, 0.10),
    inset 0 0 0 1px rgba(97, 101, 65, 0.08);
}

.service-feature-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-feature-copy {
  display: grid;
  gap: 2px;
}

.service-feature-copy strong {
  color: var(--olive-deep);
  font-size: 0.96rem;
}

.service-feature-copy span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.service-cta {
  width: 100%;
  margin-top: auto;
  padding: 9px 16px;
  font-size: 0.84rem;
  border-radius: 999px;
  gap: 6px;
}

.service-cta .whatsapp-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.service-filter-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(97, 101, 65, 0.15);
  color: var(--olive-deep);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--olive-deep);
  color: #ffffff;
  border-color: var(--olive-deep);
  box-shadow: 0 4px 14px rgba(79, 61, 49, 0.18);
}

/* Horizontal Carousel Slider */
.services-slider-container {
  position: relative;
  padding: 0 54px;
}

.services-slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 10px 16px 24px 4px;
  scrollbar-width: none;
}

.services-slider-track::after {
  content: "";
  flex: 0 0 1px;
  padding-right: 16px;
}

.services-slider-track::-webkit-scrollbar {
  display: none;
}

.services-slider-track .service-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 270px;
  scroll-snap-align: start;
  border-radius: 20px;
  border: 1px solid rgba(97, 101, 65, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-slider-track .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(97, 101, 65, 0.18);
  color: var(--olive-deep);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.slider-arrow:hover {
  background: var(--surface-strong);
  border-color: var(--rose-deep);
  color: var(--rose-deep);
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow--prev {
  left: 0;
}

.slider-arrow--next {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(97, 101, 65, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.slider-dot.active {
  background: var(--rose-deep);
  width: 26px;
  border-radius: 12px;
}

.catalog-cta-wrapper {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

.catalog-modal-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.service-catalog-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  padding: 8px 14px;
  background: rgba(216, 156, 152, 0.10);
  border: 1px dashed rgba(179, 109, 104, 0.30);
  border-radius: 12px;
  color: var(--rose-deep);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  text-align: center;
}

.service-catalog-trigger:hover {
  background: rgba(216, 156, 152, 0.20);
  border-color: var(--rose-deep);
}

@media (max-width: 1200px) {
  .services-slider-track .service-card {
    flex: 0 0 calc(33.333% - 14px);
  }
}

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

  .service-card--touch {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .services-slider-container {
    padding: 0 40px;
  }
  .services-slider-track .service-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 600px) {
  .services-slider-container {
    padding: 0 34px;
  }
  .slider-arrow {
    width: 40px;
    height: 40px;
  }
  .services-slider-track .service-card {
    flex: 0 0 100%;
  }

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

  .service-card--touch {
    grid-column: auto;
  }

  .service-visual {
    min-height: 218px;
  }

  .service-copy {
    padding: 24px;
  }

  .service-card {
    border-radius: 24px;
  }

  .service-feature {
    grid-template-columns: 60px 1fr;
    padding: 13px 14px;
  }

  .service-feature-icon {
    width: 60px;
    height: 60px;
  }
}


/* --- components/about.css --- */
.about-section {
  position: relative;
  background: #fbf6f0;
  overflow: hidden;
  padding: clamp(64px, 9vh, 104px) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-video-wrapper {
  width: 100%;
}

.about-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(70, 50, 40, 0.12);
  background: #1e1916;
}

.about-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.about-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(216, 156, 152, 0.88);
  border: 2.5px solid rgba(255, 255, 255, 0.85);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, opacity 0.3s ease;
  z-index: 2;
}

.about-video-play-btn svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}

.about-video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(202, 138, 134, 0.96);
}

.about-video-container.is-playing .about-video-play-btn {
  opacity: 0;
  pointer-events: none;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b87a75;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: #2b221e;
  margin: 0;
}

.about-title-accent {
  font-style: italic;
  color: #b87a75;
  font-weight: 400;
}

.about-lotus-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 2px 0 10px;
  max-width: 420px;
}

.about-lotus-divider .divider-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(184, 122, 117, 0.35), transparent);
}

.about-lotus-divider .divider-line:first-child {
  background: linear-gradient(90deg, transparent, rgba(184, 122, 117, 0.35));
}

.about-lotus-divider .lotus-icon {
  color: #b87a75;
  width: 22px;
  height: 22px;
}

.about-text {
  font-size: clamp(0.98rem, 1.1vw, 1.06rem);
  line-height: 1.65;
  color: #564c46;
  margin: 0;
  max-width: 52ch;
}

.about-text strong {
  color: #2b221e;
  font-weight: 600;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 14px;
  padding-top: 16px;
}

.about-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.about-feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(184, 122, 117, 0.20);
  overflow: hidden;
  flex-shrink: 0;
}

.about-feature-icon svg,
.about-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-feature-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #4a403a;
  line-height: 1.3;
}

.about-item::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--rose);
  box-shadow: 0 0 0 6px rgba(216, 156, 152, 0.18);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.experience-grid {
  display: grid;
  gap: 32px;
  align-items: stretch;
  grid-template-columns: 1.06fr 0.94fr;
}

.experience-list {
  list-style: none;
  display: grid;
  gap: 18px;
}

.experience-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.experience-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.experience-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(216, 156, 152, 0.16);
  color: var(--olive-deep);
  box-shadow: inset 0 0 0 1px rgba(97, 101, 65, 0.10);
}

.experience-check svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.experience-copy {
  display: grid;
  gap: 8px;
}

.experience-item h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--olive-deep);
}

.experience-item p {
  color: var(--muted);
  font-size: 0.98rem;
}

.media-card {
  background: var(--surface);
  border: 1px solid rgba(97, 101, 65, 0.10);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  min-height: 100%;
  position: relative;
}

.media-card video {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  opacity: 0.88;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(238, 218, 219, 0.10), rgba(49, 37, 30, 0.18));
}

@media (max-width: 1080px) {
  .about-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  .about-photo-frame {
    order: -1;
  }
}

@media (max-width: 640px) {
  .about-actions {
    flex-direction: column;
  }

  .about-actions .button {
    width: 100%;
  }

  .media-card video {
    min-height: 360px;
  }
}


/* --- components/reviews.css --- */
.reviews-layout {
  display: block;
}

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

.reviews-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.review-card {
  background: var(--surface);
  border: 1px solid rgba(97, 101, 65, 0.10);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 26px 24px;
  display: grid;
  gap: 16px;
  min-height: 100%;
}

.review-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.review-author-block {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.review-avatar-source {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.review-avatar,
.review-avatar-fallback {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.review-avatar {
  object-fit: cover;
  background: rgba(216, 156, 152, 0.12);
  box-shadow: inset 0 0 0 1px rgba(97, 101, 65, 0.10);
}

.review-avatar-fallback {
  display: grid;
  place-items: center;
  background: rgba(216, 156, 152, 0.18);
  color: var(--olive-deep);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(97, 101, 65, 0.10);
}

.review-google-logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  padding: 5px;
  background: #fff;
  object-fit: contain;
  box-shadow:
    0 8px 16px rgba(79, 61, 49, 0.12),
    inset 0 0 0 1px rgba(97, 101, 65, 0.10);
}

.review-author {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.review-author strong {
  color: var(--olive-deep);
  font-size: 1rem;
}

.review-author-link {
  color: inherit;
}

.review-author-link:hover,
.review-author-link:focus-visible {
  text-decoration: underline;
  outline: none;
}

.review-stars {
  letter-spacing: 0.14em;
  color: #d8a64b;
  white-space: nowrap;
  font-size: 0.9rem;
}

.reviews-meta,
.review-card p,
.review-date {
  color: var(--muted);
}

.reviews-meta {
  font-size: 0.96rem;
}

.review-date {
  font-size: 0.9rem;
}

.review-card p {
  font-size: 0.98rem;
}

.review-more-button {
  display: inline;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--rose-deep);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  white-space: nowrap;
}

.review-more-button:hover,
.review-more-button:focus-visible {
  text-decoration: underline;
  outline: none;
}

.review-card-empty {
  grid-column: 1 / -1;
  text-align: center;
  justify-items: center;
  padding: 34px 28px;
}

.review-card-empty p {
  max-width: 420px;
}

@media (max-width: 1080px) {
  .reviews-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 880px) {
  .reviews-cards {
    grid-template-columns: 1fr;
  }
}


/* --- components/faq.css --- */
.faq-layout {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 16px 20px;
}

.faq-item {
  background: var(--surface-strong);
  border: 1px solid rgba(97, 101, 65, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.faq-item summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  min-height: 88px;
  color: var(--olive-deep);
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
  box-sizing: border-box;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(216, 156, 152, 0.18);
  color: var(--rose-deep);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item[open] summary::after {
  content: "-";
  transform: rotate(180deg);
  background: rgba(97, 101, 65, 0.12);
  color: var(--olive-deep);
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 0.98rem;
}

.faq-action {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

@media (max-width: 840px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .faq-item {
    border-radius: 20px;
  }

  .faq-item summary {
    grid-template-columns: 1fr 32px;
    gap: 14px;
    padding: 20px;
  }

  .faq-item summary::after {
    width: 32px;
    height: 32px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }
}


/* --- components/modal.css --- */
/* Service Catalog Modal */
.services-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(26, 22, 19, 0.65);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.services-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.services-modal-content {
  position: relative;
  width: 100%;
  max-width: 860px;
  max-height: 88vh;
  background: #fdfbf7;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(216, 189, 182, 0.4);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}

.services-modal.is-open .services-modal-content {
  transform: translateY(0) scale(1);
}

.services-modal-header {
  padding: 24px 30px;
  background: #f7f0e8;
  border-bottom: 1px solid rgba(97, 101, 65, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.services-modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--olive-deep);
  margin: 0;
}

.services-modal-close {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  color: #555;
  transition: background 0.2s;
}

.services-modal-close:hover {
  background: #ffffff;
  color: #000;
}

.services-modal-tabs {
  display: flex;
  gap: 8px;
  padding: 14px 30px 0;
  background: #f7f0e8;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  overflow-x: auto;
}

.services-tab-btn {
  padding: 10px 18px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.services-tab-btn.active {
  color: var(--olive-deep);
  border-bottom-color: var(--rose-deep);
}

.services-modal-body {
  padding: 24px 30px 30px;
  overflow-y: auto;
  flex: 1;
}

.services-tab-content {
  display: none;
}

.services-tab-content.active {
  display: block;
}

.catalog-category-desc {
  background: rgba(216, 156, 152, 0.1);
  border-left: 4px solid var(--rose-deep);
  padding: 14px 18px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 24px;
  font-size: 0.95rem;
  color: var(--olive-deep);
}

.catalog-services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 640px) {
  .catalog-services-list {
    grid-template-columns: 1fr;
  }
}

.catalog-item-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid rgba(97, 101, 65, 0.12);
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.catalog-item-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--olive-deep);
  display: flex;
  align-items: center;
  gap: 8px;
}

.catalog-item-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose-deep);
  flex-shrink: 0;
}

.catalog-item-action {
  flex-shrink: 0;
  padding: 6px 12px;
  background: #25d366;
  color: #fff;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background 0.2s;
}

.catalog-item-action:hover {
  background: #1eb957;
}


/* --- components/floating-cta.css --- */
.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 48px;
  background:
    radial-gradient(circle at top right, rgba(243, 216, 215, 0.82), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 239, 236, 0.92));
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(97, 101, 65, 0.10);
  border-radius: var(--radius-xl);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 156, 152, 0.28), transparent 68%);
  pointer-events: none;
}

.cta-grid {
  display: grid;
  gap: 32px;
  align-items: center;
  grid-template-columns: 1.1fr 0.9fr;
  position: relative;
  z-index: 1;
}

.cta-copy {
  display: grid;
  gap: 20px;
}

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

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.cta-notes {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  align-self: stretch;
}

.cta-note {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(97, 101, 65, 0.08);
  display: grid;
  gap: 14px;
}

.cta-note h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--olive-deep);
}

.cta-note p {
  color: var(--muted);
  font-size: 0.98rem;
}

.journey-number,
.note-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.journey-step {
  position: relative;
  padding: 30px 28px;
  display: grid;
  gap: 18px;
  background: var(--surface);
  border: 1px solid rgba(97, 101, 65, 0.10);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.journey-grid {
  position: relative;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journey-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 57px;
  right: -42px;
  width: 62px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(189, 98, 101, 0.26), rgba(97, 101, 65, 0.14));
  pointer-events: none;
}

.journey-number {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--rose-deep);
  color: #fff;
  box-shadow:
    0 14px 28px rgba(189, 98, 101, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.note-number {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-size: 0.82rem;
  background: rgba(216, 156, 152, 0.18);
  color: var(--rose-deep);
  letter-spacing: 0.08em;
}

@media (max-width: 1080px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .journey-step::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .cta-panel,
  .journey-step {
    padding: 24px;
    border-radius: 24px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .button {
    width: 100%;
  }

  .cta-copy p {
    font-size: 0.98rem;
  }
}


/* --- components/footer.css --- */
.site-footer {
  padding: 0;
  background: #2f5b47;
  color: rgba(255, 255, 255, 0.88);
}

.map-section {
  width: 100%;
  background: #efe6e3;
}

.map-embed {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

.footer-shell {
  padding: 58px 0 26px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(160px, 0.55fr) minmax(280px, 0.95fr);
  gap: 44px;
  align-items: start;
}

.footer-brand-block {
  max-width: 360px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.footer-mark {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.10);
  flex-shrink: 0;
}

.footer-brand-name,
.footer-column-title {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand-name {
  font-size: 1.65rem;
  color: #f9f3ef;
  margin-bottom: 4px;
}

.footer-brand-subtitle {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.footer-text,
.footer-links a,
.footer-contact-list a,
.footer-hours-summary,
.footer-stack p,
.footer-bottom,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
}

.footer-text {
  line-height: 1.8;
}

.footer-column-title {
  font-size: 1.02rem;
  color: #f9f3ef;
  margin-bottom: 18px;
}

.footer-links,
.footer-stack,
.footer-contact-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-contact {
  display: grid;
  gap: 20px;
}

.footer-contact-row,
.footer-hours-summary {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
}

.footer-contact-icon-whatsapp {
  background: var(--whatsapp);
}

.footer-contact-icon-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 52%, #8134af 82%, #515bd4);
}

.footer-contact-icon-hours {
  background: rgba(255, 255, 255, 0.14);
  color: #f9f3ef;
}

.footer-contact-label {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact-value {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  line-height: 1.45;
}

.footer-links a,
.footer-contact-list a {
  transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact-list a:hover,
.footer-contact-list a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #ffffff;
  outline: none;
}

.footer-stack strong {
  display: block;
  margin-bottom: 4px;
  color: #f9f3ef;
  font-weight: 600;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

@media (max-width: 1080px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-block {
    max-width: none;
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

@media (max-width: 640px) {
  .footer-shell {
    padding: 44px 0 22px;
  }

  .map-embed {
    height: 360px;
  }

  .footer-logo-row {
    align-items: center;
  }

  .footer-mark {
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }
}


/* --- Banner CTA Section --- */
.banner-cta-section {
  position: relative;
  background-color: #eedadb;
  padding: 52px 0;
  border-top: 1px solid rgba(184, 122, 117, 0.12);
  border-bottom: 1px solid rgba(184, 122, 117, 0.12);
  overflow: hidden;
}

.banner-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/39.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: 0;
}

.banner-cta-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.banner-cta-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
  font-weight: 400;
  line-height: 1.25;
  color: #3d352e;
  margin: 0;
}

.banner-cta-accent {
  font-style: italic;
  color: #b87a75;
  font-weight: 400;
}

.banner-cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.banner-cta-button {
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0 28px;
  min-height: 48px;
}

.banner-cta-subtext {
  font-size: 0.94rem;
  color: #5c5246;
  margin: 0;
}

@media (max-width: 768px) {
  .banner-cta-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .banner-cta-heading h2 {
    text-align: center;
  }
}

/* --- Stats Bar Section --- */
.stats-bar-section {
  background-color: var(--olive-deep, #4d5032);
  padding: 28px 0;
  color: #ffffff;
}

.stats-bar-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 16px;
}

.stats-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 12px;
  position: relative;
}

.stats-bar-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.18);
}

.stats-bar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  overflow: hidden;
}

.stats-bar-img {
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.stats-bar-content {
  display: flex;
  flex-direction: column;
}

.stats-bar-number {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 2.1rem);
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.stats-star {
  color: #d89c98;
  font-size: 1.1rem;
  vertical-align: middle;
  margin-left: 2px;
}

.stats-bar-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 4px;
  letter-spacing: 0.01em;
  font-weight: 400;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .stats-bar-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .stats-bar-item {
    gap: 8px;
    padding: 0 4px;
  }

  .stats-bar-number {
    font-size: 1.25rem;
  }

  .stats-bar-label {
    font-size: 0.72rem;
  }
}

@media (max-width: 640px) {
  .stats-bar-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }

  .stats-bar-item:nth-child(2)::after {
    display: none;
  }

  .stats-bar-item {
    justify-content: flex-start;
  }

  .stats-bar-label {
    white-space: normal;
  }
}

